From: Andy Allan Date: Wed, 28 Apr 2021 10:58:10 +0000 (+0100) Subject: Merge pull request #3104 from fredrik-lindseth/patch-1 X-Git-Tag: live~2894 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/8ecb53b8692cbaac262fba5b1baa632d7cef5353?hp=7917c1cc92bb1109bd452cf7683cede5ac07df76 Merge pull request #3104 from fredrik-lindseth/patch-1 Format openstreetmap.org/stats/data_stats --- diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1867e1f0b..f764a804f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: with: ruby-version: ${{ env.ruby }} - name: Cache gems - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: vendor/bundle key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }} @@ -41,7 +41,7 @@ jobs: with: ruby-version: ${{ env.ruby }} - name: Cache gems - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: vendor/bundle key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }} @@ -65,14 +65,14 @@ jobs: with: ruby-version: ${{ env.ruby }} - name: Cache gems - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: vendor/bundle key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }} restore-keys: | bundle-${{ env.os }}-${{ env.ruby }}- - name: Cache node modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: node_modules key: yarn-${{ env.os }}-${{ hashFiles('yarn.lock') }} @@ -100,7 +100,7 @@ jobs: with: ruby-version: ${{ env.ruby }} - name: Cache gems - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: vendor/bundle key: bundle-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('Gemfile.lock') }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 87b7b51ea..04caddf41 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,14 +21,14 @@ jobs: with: ruby-version: ${{ matrix.ruby }} - name: Cache gems - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: vendor/bundle key: bundle-ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}-${{ hashFiles('Gemfile.lock') }} restore-keys: | bundle-ubuntu-${{ matrix.ubuntu }}-ruby-${{ matrix.ruby }}- - name: Cache node modules - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: node_modules key: yarn-ubuntu-${{ matrix.ubuntu }}-${{ hashFiles('yarn.lock') }} diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 219135dff..5833a6e35 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -52,7 +52,7 @@ Lint/DuplicateBranch: # Offense count: 487 # Configuration parameters: IgnoredMethods, CountRepeatedAttributes. Metrics/AbcSize: - Max: 234 + Max: 235 # Offense count: 62 # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods. @@ -68,7 +68,7 @@ Metrics/BlockNesting: # Offense count: 24 # Configuration parameters: CountComments, CountAsOne. Metrics/ClassLength: - Max: 582 + Max: 587 # Offense count: 52 # Configuration parameters: IgnoredMethods. @@ -155,6 +155,7 @@ Rails/NotNullColumn: # Offense count: 8 Rails/OutputSafety: Exclude: + - 'app/controllers/sessions_controller.rb' - 'app/controllers/users_controller.rb' - 'app/helpers/application_helper.rb' - 'lib/rich_text.rb' diff --git a/CONFIGURE.md b/CONFIGURE.md index 96aac9f96..c165c6d46 100644 --- a/CONFIGURE.md +++ b/CONFIGURE.md @@ -28,7 +28,7 @@ If you create a user by signing up to your local website, you need to confirm th ``` $ bundle exec rails console ->> user = User.find_by_display_name("My New User Name") +>> user = User.find_by(:display_name => "My New User Name") => #[ ... ] >> user.status = "active" => "active" @@ -43,7 +43,7 @@ To give administrator or moderator permissions: ``` $ bundle exec rails console ->> user = User.find_by_display_name("My New User Name") +>> user = User.find_by(:display_name => "My New User Name") => #[ ... ] >> user.roles.create(:role => "administrator", :granter_id => user.id) => #[ ... ] diff --git a/Gemfile b/Gemfile index ce35201ee..a5b7d401f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source "https://rubygems.org" # Require rails -gem "rails", "6.0.3.5" +gem "rails", "6.0.3.6" # Require json for multi_json gem "json" @@ -43,11 +43,10 @@ gem "cancancan" gem "composite_primary_keys", "~> 12.0.0" gem "config" gem "delayed_job_active_record" -gem "dynamic_form" gem "http_accept_language", "~> 2.1.1" gem "i18n-js", ">= 3.0.0" gem "oauth-plugin", ">= 0.5.1" -gem "openstreetmap-deadlock_retry", ">= 1.3.0", :require => "deadlock_retry" +gem "openstreetmap-deadlock_retry", ">= 1.3.1", :require => "deadlock_retry" gem "rack-cors" gem "rails-i18n", "~> 6.0.0" gem "rinku", ">= 2.0.6", :require => "rails_rinku" @@ -109,7 +108,7 @@ gem "logstasher" gem "bzip2-ffi" gem "ffi-libarchive" gem "gd2-ffij", ">= 0.4.0" -gem "mimemagic" +gem "marcel" # Used for browser detection gem "browser" @@ -125,7 +124,7 @@ group :development do gem "annotate" gem "better_errors" gem "binding_of_caller" - gem "debug_inspector", "< 1.0.0" + gem "debug_inspector" gem "listen" gem "vendorer" end diff --git a/Gemfile.lock b/Gemfile.lock index dc0833a98..31d64b6b8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,62 +3,62 @@ GEM specs: aasm (5.1.1) concurrent-ruby (~> 1.0) - actioncable (6.0.3.5) - actionpack (= 6.0.3.5) + actioncable (6.0.3.6) + actionpack (= 6.0.3.6) nio4r (~> 2.0) websocket-driver (>= 0.6.1) - actionmailbox (6.0.3.5) - actionpack (= 6.0.3.5) - activejob (= 6.0.3.5) - activerecord (= 6.0.3.5) - activestorage (= 6.0.3.5) - activesupport (= 6.0.3.5) + actionmailbox (6.0.3.6) + actionpack (= 6.0.3.6) + activejob (= 6.0.3.6) + activerecord (= 6.0.3.6) + activestorage (= 6.0.3.6) + activesupport (= 6.0.3.6) mail (>= 2.7.1) - actionmailer (6.0.3.5) - actionpack (= 6.0.3.5) - actionview (= 6.0.3.5) - activejob (= 6.0.3.5) + actionmailer (6.0.3.6) + actionpack (= 6.0.3.6) + actionview (= 6.0.3.6) + activejob (= 6.0.3.6) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 2.0) - actionpack (6.0.3.5) - actionview (= 6.0.3.5) - activesupport (= 6.0.3.5) + actionpack (6.0.3.6) + actionview (= 6.0.3.6) + activesupport (= 6.0.3.6) rack (~> 2.0, >= 2.0.8) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) actionpack-page_caching (1.2.3) actionpack (>= 5.0.0) - actiontext (6.0.3.5) - actionpack (= 6.0.3.5) - activerecord (= 6.0.3.5) - activestorage (= 6.0.3.5) - activesupport (= 6.0.3.5) + actiontext (6.0.3.6) + actionpack (= 6.0.3.6) + activerecord (= 6.0.3.6) + activestorage (= 6.0.3.6) + activesupport (= 6.0.3.6) nokogiri (>= 1.8.5) - actionview (6.0.3.5) - activesupport (= 6.0.3.5) + actionview (6.0.3.6) + activesupport (= 6.0.3.6) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) active_record_union (1.3.0) activerecord (>= 4.0) - activejob (6.0.3.5) - activesupport (= 6.0.3.5) + activejob (6.0.3.6) + activesupport (= 6.0.3.6) globalid (>= 0.3.6) - activemodel (6.0.3.5) - activesupport (= 6.0.3.5) - activerecord (6.0.3.5) - activemodel (= 6.0.3.5) - activesupport (= 6.0.3.5) - activerecord-import (1.0.7) + activemodel (6.0.3.6) + activesupport (= 6.0.3.6) + activerecord (6.0.3.6) + activemodel (= 6.0.3.6) + activesupport (= 6.0.3.6) + activerecord-import (1.0.8) activerecord (>= 3.2) - activestorage (6.0.3.5) - actionpack (= 6.0.3.5) - activejob (= 6.0.3.5) - activerecord (= 6.0.3.5) - marcel (~> 0.3.1) - activesupport (6.0.3.5) + activestorage (6.0.3.6) + actionpack (= 6.0.3.6) + activejob (= 6.0.3.6) + activerecord (= 6.0.3.6) + marcel (~> 1.0.0) + activesupport (6.0.3.6) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) @@ -72,21 +72,21 @@ GEM ast (2.4.2) autoprefixer-rails (10.2.4.0) execjs - aws-eventstream (1.1.0) - aws-partitions (1.427.0) - aws-sdk-core (3.112.0) + aws-eventstream (1.1.1) + aws-partitions (1.447.0) + aws-sdk-core (3.114.0) aws-eventstream (~> 1, >= 1.0.2) aws-partitions (~> 1, >= 1.239.0) aws-sigv4 (~> 1.1) jmespath (~> 1.0) - aws-sdk-kms (1.42.0) + aws-sdk-kms (1.43.0) aws-sdk-core (~> 3, >= 3.112.0) aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.88.1) + aws-sdk-s3 (1.93.1) aws-sdk-core (~> 3, >= 3.112.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.1) - aws-sigv4 (1.2.2) + aws-sigv4 (1.2.3) aws-eventstream (~> 1, >= 1.0.2) better_errors (2.9.1) coderay (>= 1.0.0) @@ -102,7 +102,7 @@ GEM smart_properties binding_of_caller (1.0.0) debug_inspector (>= 0.0.1) - bootsnap (1.7.2) + bootsnap (1.7.4) msgpack (~> 1.0) bootstrap (4.5.3) autoprefixer-rails (>= 9.1.0) @@ -112,9 +112,9 @@ GEM actionpack (>= 5.2) activemodel (>= 5.2) brakeman (5.0.0) - browser (5.3.0) + browser (5.3.1) builder (3.2.4) - bzip2-ffi (1.0.0) + bzip2-ffi (1.1.0) ffi (~> 1.0) cancancan (3.2.1) canonical-rails (0.2.11) @@ -129,21 +129,21 @@ GEM xpath (~> 3.2) childprocess (3.0.0) coderay (1.1.3) - composite_primary_keys (12.0.8) + composite_primary_keys (12.0.9) activerecord (~> 6.0.0) concurrent-ruby (1.1.8) - config (2.2.3) + config (3.1.0) deep_merge (~> 1.2, >= 1.2.1) dry-validation (~> 1.0, >= 1.0.0) crack (0.4.5) rexml crass (1.0.6) dalli (2.7.11) - debug_inspector (0.0.3) + debug_inspector (1.1.0) deep_merge (1.2.1) delayed_job (4.1.9) activesupport (>= 3.0, < 6.2) - delayed_job_active_record (4.1.5) + delayed_job_active_record (4.1.6) activerecord (>= 3.0, < 6.2) delayed_job (>= 3.0, < 5) docile (1.3.5) @@ -158,10 +158,10 @@ GEM dry-equalizer (0.3.0) dry-inflector (0.2.0) dry-initializer (3.0.4) - dry-logic (1.1.0) + dry-logic (1.2.0) concurrent-ruby (~> 1.0) dry-core (~> 0.5, >= 0.5) - dry-schema (1.6.1) + dry-schema (1.6.2) concurrent-ruby (~> 1.0) dry-configurable (~> 0.8, >= 0.8.3) dry-core (~> 0.5, >= 0.5) @@ -181,7 +181,6 @@ GEM dry-equalizer (~> 0.2) dry-initializer (~> 3.0) dry-schema (~> 1.5, >= 1.5.2) - dynamic_form (1.1.4) erb_lint (0.0.37) activesupport better_html (~> 1.0.7) @@ -198,12 +197,16 @@ GEM factory_bot_rails (6.1.0) factory_bot (~> 6.1.0) railties (>= 5.0.0) - faraday (1.3.0) + faraday (1.4.1) + faraday-excon (~> 1.1) faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.1) multipart-post (>= 1.2, < 3) - ruby2_keywords + ruby2_keywords (>= 0.0.4) + faraday-excon (1.1.0) faraday-net_http (1.0.1) - ffi (1.14.2) + faraday-net_http_persistent (1.1.0) + ffi (1.15.0) ffi-libarchive (1.0.17) ffi (~> 1.0) fspath (3.1.2) @@ -216,9 +219,9 @@ GEM html_tokenizer (0.0.7) htmlentities (4.3.4) http_accept_language (2.1.1) - i18n (1.8.9) + i18n (1.8.10) concurrent-ruby (~> 1.0) - i18n-js (3.8.0) + i18n-js (3.8.2) i18n (>= 0.6.6) image_optim (0.28.0) exifr (~> 1.2, >= 1.2.2) @@ -240,40 +243,38 @@ GEM railties (>= 4.2.0) thor (>= 0.14, < 2.0) json (2.5.1) - jwt (2.2.2) + jwt (2.2.3) kgio (2.11.3) - kramdown (2.3.0) + kramdown (2.3.1) rexml libxml-ruby (3.2.1) - listen (3.4.1) + listen (3.5.1) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) logstasher (2.1.5) activesupport (>= 5.2) request_store - loofah (2.9.0) + loofah (2.9.1) crass (~> 1.0.2) nokogiri (>= 1.5.9) mail (2.7.1) mini_mime (>= 0.1.1) - marcel (0.3.3) - mimemagic (~> 0.3.2) + marcel (1.0.1) maxminddb (0.1.22) method_source (1.0.0) - mimemagic (0.3.5) mini_magick (4.11.0) - mini_mime (1.0.2) + mini_mime (1.1.0) mini_portile2 (2.5.0) - minitest (5.14.3) + minitest (5.14.4) msgpack (1.4.2) multi_json (1.15.0) multi_xml (0.6.0) multipart-post (2.1.1) - nio4r (2.5.5) - nokogiri (1.11.1) + nio4r (2.5.7) + nokogiri (1.11.3) mini_portile2 (~> 2.5.0) racc (~> 1.4) - nokogumbo (2.0.4) + nokogumbo (2.0.5) nokogiri (~> 1.8, >= 1.8.4) oauth (0.4.7) oauth-plugin (0.5.1) @@ -281,13 +282,13 @@ GEM oauth (~> 0.4.4) oauth2 (>= 0.5.0) rack - oauth2 (1.4.4) + oauth2 (1.4.7) faraday (>= 0.8, < 2.0) jwt (>= 1.0, < 3.0) multi_json (~> 1.3) multi_xml (~> 0.5) rack (>= 1.2, < 3) - omniauth (2.0.2) + omniauth (2.0.4) hashie (>= 3.4.6) rack (>= 1.6.2, < 3) rack-protection @@ -296,11 +297,11 @@ GEM omniauth-github (2.0.0) omniauth (~> 2.0) omniauth-oauth2 (~> 1.7.1) - omniauth-google-oauth2 (0.8.1) + omniauth-google-oauth2 (1.0.0) jwt (>= 2.0) oauth2 (~> 1.1) - omniauth (>= 1.1.1) - omniauth-oauth2 (>= 1.6) + omniauth (~> 2.0) + omniauth-oauth2 (~> 1.7.1) omniauth-mediawiki (0.0.4) jwt (~> 2.0) omniauth-oauth (~> 1.0) @@ -319,15 +320,15 @@ GEM omniauth-windowslive (0.0.12) multi_json (~> 1.12) omniauth-oauth2 (~> 1.4) - openstreetmap-deadlock_retry (1.3.0) + openstreetmap-deadlock_retry (1.3.1) parallel (1.20.1) - parser (3.0.0.0) + parser (3.0.1.0) ast (~> 2.4.1) pg (1.2.3) popper_js (1.16.0) - progress (3.5.2) + progress (3.6.0) public_suffix (4.0.6) - puma (5.2.1) + puma (5.2.2) nio4r (~> 2.0) quad_tile (1.0.1) r2 (0.2.7) @@ -343,20 +344,20 @@ GEM rack-test (1.1.0) rack (>= 1.0, < 3) rack-uri_sanitizer (0.0.2) - rails (6.0.3.5) - actioncable (= 6.0.3.5) - actionmailbox (= 6.0.3.5) - actionmailer (= 6.0.3.5) - actionpack (= 6.0.3.5) - actiontext (= 6.0.3.5) - actionview (= 6.0.3.5) - activejob (= 6.0.3.5) - activemodel (= 6.0.3.5) - activerecord (= 6.0.3.5) - activestorage (= 6.0.3.5) - activesupport (= 6.0.3.5) + rails (6.0.3.6) + actioncable (= 6.0.3.6) + actionmailbox (= 6.0.3.6) + actionmailer (= 6.0.3.6) + actionpack (= 6.0.3.6) + actiontext (= 6.0.3.6) + actionview (= 6.0.3.6) + activejob (= 6.0.3.6) + activemodel (= 6.0.3.6) + activerecord (= 6.0.3.6) + activestorage (= 6.0.3.6) + activesupport (= 6.0.3.6) bundler (>= 1.3.0) - railties (= 6.0.3.5) + railties (= 6.0.3.6) sprockets-rails (>= 2.0.0) rails-controller-testing (1.0.5) actionpack (>= 5.0.1.rc1) @@ -370,9 +371,9 @@ GEM rails-i18n (6.0.0) i18n (>= 0.7, < 2) railties (>= 6.0.0, < 7) - railties (6.0.3.5) - actionpack (= 6.0.3.5) - activesupport (= 6.0.3.5) + railties (6.0.3.6) + actionpack (= 6.0.3.6) + activesupport (= 6.0.3.6) method_source rake (>= 0.8.7) thor (>= 0.20.3, < 2.0) @@ -381,13 +382,13 @@ GEM rb-fsevent (0.10.4) rb-inotify (0.10.1) ffi (~> 1.0) - regexp_parser (2.0.3) + regexp_parser (2.1.1) request_store (1.5.0) rack (>= 1.4) - rexml (3.2.4) + rexml (3.2.5) rinku (2.0.6) rotp (6.2.0) - rubocop (1.10.0) + rubocop (1.13.0) parallel (~> 1.10) parser (>= 3.0.0.0) rainbow (>= 2.2.2, < 4.0) @@ -398,10 +399,10 @@ GEM unicode-display_width (>= 1.4.0, < 3.0) rubocop-ast (1.4.1) parser (>= 2.7.1.5) - rubocop-minitest (0.10.3) - rubocop (>= 0.87, < 2.0) - rubocop-performance (1.9.2) - rubocop (>= 0.90.0, < 2.0) + rubocop-minitest (0.12.1) + rubocop (>= 0.90, < 2.0) + rubocop-performance (1.11.0) + rubocop (>= 1.7.0, < 2.0) rubocop-ast (>= 0.4.0) rubocop-rails (2.9.1) activesupport (>= 4.2.0) @@ -455,7 +456,7 @@ GEM validates_email_format_of (1.6.3) i18n vendorer (0.2.0) - webmock (3.11.2) + webmock (3.12.2) addressable (>= 2.3.6) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) @@ -491,9 +492,8 @@ DEPENDENCIES composite_primary_keys (~> 12.0.0) config dalli - debug_inspector (< 1.0.0) + debug_inspector delayed_job_active_record - dynamic_form erb_lint factory_bot_rails faraday @@ -511,8 +511,8 @@ DEPENDENCIES libxml-ruby (>= 2.0.5) listen logstasher + marcel maxminddb - mimemagic mini_magick minitest (~> 5.1) oauth-plugin (>= 0.5.1) @@ -524,14 +524,14 @@ DEPENDENCIES omniauth-openid omniauth-rails_csrf_protection (~> 1.0) omniauth-windowslive - openstreetmap-deadlock_retry (>= 1.3.0) + openstreetmap-deadlock_retry (>= 1.3.1) pg puma (~> 5.0) quad_tile (~> 1.0.1) r2 (~> 0.2.7) rack-cors rack-uri_sanitizer - rails (= 6.0.3.5) + rails (= 6.0.3.6) rails-controller-testing rails-i18n (~> 6.0.0) rinku (>= 2.0.6) @@ -553,4 +553,4 @@ DEPENDENCIES webmock BUNDLED WITH - 2.1.4 + 2.2.16 diff --git a/Vendorfile b/Vendorfile index d00557322..6b586f9ce 100644 --- a/Vendorfile +++ b/Vendorfile @@ -46,11 +46,4 @@ folder 'vendor/assets' do file 'es5.js', 'https://polyfill.io/v3/polyfill.js?features=es5&flags=gated,always' file 'es6.js', 'https://polyfill.io/v3/polyfill.js?features=es6&flags=gated,always' end - - folder 'swfobject' do - from 'git://github.com/swfobject/swfobject.git', :tag => '2.2' do - file 'expressInstall.swf', 'swfobject/expressInstall.swf' - file 'swfobject.js', 'swfobject/src/swfobject.js' - end - end end diff --git a/app/abilities/ability.rb b/app/abilities/ability.rb index d91b7a2e7..9c832b43a 100644 --- a/app/abilities/ability.rb +++ b/app/abilities/ability.rb @@ -16,11 +16,14 @@ class Ability if Settings.status != "database_offline" can [:index, :feed], Changeset can :index, ChangesetComment + can [:confirm, :confirm_resend, :confirm_email], :confirmation can [:index, :rss, :show, :comments], DiaryEntry can [:index], Note + can [:lost_password, :reset_password], :password can [:index, :show], Redaction + can [:new, :create, :destroy], :session can [:index, :show, :data, :georss, :picture, :icon], Trace - can [:terms, :login, :logout, :new, :create, :save, :confirm, :confirm_resend, :confirm_email, :lost_password, :reset_password, :show, :auth_success, :auth_failure], User + can [:terms, :new, :create, :save, :show, :auth_success, :auth_failure], User can [:index, :show, :blocks_on, :blocks_by], UserBlock can [:index, :show], Node can [:index, :show, :full, :ways_for_node], Way diff --git a/app/assets/favicons/manifest.json.erb b/app/assets/favicons/manifest.json.erb index 8938f2cd9..0826e8841 100644 --- a/app/assets/favicons/manifest.json.erb +++ b/app/assets/favicons/manifest.json.erb @@ -37,5 +37,7 @@ "type": "image\/png", "density": "4.0" } - ] + ], + "start_url": "/", + "display": "minimal-ui" } diff --git a/app/assets/javascripts/index.js b/app/assets/javascripts/index.js index 10f28ef92..a2169643f 100644 --- a/app/assets/javascripts/index.js +++ b/app/assets/javascripts/index.js @@ -189,7 +189,7 @@ $(document).ready(function () { map._object); $.removeCookie("_osm_location"); - $.cookie("_osm_location", OSM.locationCookie(map), { expires: expiry, path: "/" }); + $.cookie("_osm_location", OSM.locationCookie(map), { secure: true, expires: expiry, path: "/" }); }); if ($.cookie("_osm_welcome") !== "hide") { @@ -198,7 +198,7 @@ $(document).ready(function () { $(".welcome .close").on("click", function () { $(".welcome").removeClass("visible"); - $.cookie("_osm_welcome", "hide", { expires: expiry, path: "/" }); + $.cookie("_osm_welcome", "hide", { secure: true, expires: expiry, path: "/" }); }); var bannerExpiry = new Date(); @@ -209,7 +209,7 @@ $(document).ready(function () { $("#banner").hide(); e.preventDefault(); if (cookieId) { - $.cookie(cookieId, "hide", { expires: bannerExpiry, path: "/" }); + $.cookie(cookieId, "hide", { secure: true, expires: bannerExpiry, path: "/" }); } }); diff --git a/app/assets/javascripts/index/directions.js b/app/assets/javascripts/index/directions.js index ee44ad4c4..a58b0af16 100644 --- a/app/assets/javascripts/index/directions.js +++ b/app/assets/javascripts/index/directions.js @@ -334,7 +334,7 @@ OSM.Directions = function (map) { select.on("change", function (e) { chosenEngine = engines[e.target.selectedIndex]; - $.cookie("_osm_directions_engine", chosenEngine.id, { expires: expiry, path: "/" }); + $.cookie("_osm_directions_engine", chosenEngine.id, { secure: true, expires: expiry, path: "/" }); getRoute(true, true); }); diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 481025d81..411e6167b 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -83,13 +83,6 @@ a { /* Utility for de-emphasizing content */ -.deemphasize { - color: $darkgrey; - a { - color: $blue; - } -} - .text-muted a { color: $blue; } @@ -783,8 +776,8 @@ tr.turn { tr.turn:hover { background: $list-highlight; } -.routing_engines, #route_from, #route_to { margin-left: 25px; } -.routing_marker { width: 15px; position: absolute; cursor: move; } + +.routing_marker { width: 15px; cursor: move; } /* Rules for entity history */ @@ -975,6 +968,16 @@ tr.turn:hover { } } +/* Bootstrap buttons don't have any vertical margin, so + they touch when adjacent buttons wrap onto a new line + e.g. wide form buttons on a narrow sidebar */ + +.btn-wrapper { + > .btn { + margin-bottom: $spacer * 0.25; + } +} + /* Rules for export sidebar */ .export_form { @@ -1243,11 +1246,6 @@ tr.turn:hover { img.user_thumbnail { float: left; } - - small.deemphasize { - float: left; - display: block; - } } /* Rules for the diary entry page */ @@ -1488,252 +1486,30 @@ tr.turn:hover { } } -/* Rules for forms */ - -.standard-form { - fieldset { - margin-bottom: $lineheight; - } - label.standard-label { - display: block; - margin-bottom: $lineheight/4; - font-size: $typeheight; - font-weight: bold; - line-height: 1.5; - } - label.standard-label.secondary { - display: inline-block; - font-weight: normal; - } - .form-help { - font-weight: normal; - } - .form-column { - float: left; - margin-right: 20px; - } - .form-divider { - margin-top: $lineheight; - padding-top: $lineheight; - border-top: 1px solid $lightgrey; - } - .horizontal-list .standard-form-row { - float: left; - padding-right: 10px; - } - .standard-form-row { - margin-bottom: $lineheight/2; - } - .form-list { - margin-bottom: 0; - } - .form-list li { - margin-bottom: 5px; - list-style-type: none; - } - input[type="checkbox"], - input[type="radio"] { - float: left; - margin-top: 5px; - } - - #remember_me_openid { - display: block; - } +.search_form { + background-color: $lightgrey; - select { - padding: 2px; + .describe_location { + top: 6px; + right: 6px; + font-size: 10px; + color: $blue; } +} - input[type="checkbox"], - input[type="radio"] { - margin-right: 5px; - } +.directions_form { + background-color: $lightgrey; - input[type="text"], - input[type="email"], - input[type="url"], - input[type="password"], - textarea { - color: #222; - background-color: #fff; - border: 1px solid $grey; - border-radius: 3px; - padding: 2px 5px; - margin: 0; - width: 200px; + .loader_copy { + display: none; - &.field_with_errors { - border: 2px solid #ff7070; + img { + vertical-align: middle; } } - textarea { - padding: 5px; - width: 100%; - min-height: 50px; - resize: vertical; - } - - - /* Utility for general button styles */ - - input[type="button"], - input[type="submit"], - input[type="reset"], - a.button { + a.reverse_directions { cursor: pointer; - border: 0; - display: inline-block; - padding: $lineheight/4 $lineheight/2; - min-height: 20px + $lineheight/2; - min-width: 120px; - margin: 0 0 $lineheight/2 0; - color: white; - background: $blue; - text-align: center; - border-radius: 2px; - &:hover { - background: darken($blue, $hovercolor); - text-decoration: none; - } - &.deemphasize { - background: $lightblue; - &:hover { - background: darken($lightblue, $hovercolor); - } - } - &:disabled { - background: $lightgrey; - &:hover { - background: $lightgrey; - } - } - &:last-child { - margin-bottom: 0; - } - } - - input[type="button"], - input[type="submit"], - input[type="reset"] { - line-height: normal; - } - - a.button { - line-height: 20px; - } - - .search_form, - .directions_form { - position: relative; - padding: $lineheight/2; - background-color: $lightgrey; - - .query_wrapper { - position: relative; - overflow: hidden; - border-radius: 2px 0 0 2px; - } - - input[type=text] { - width: 100%; - height: 30px; - transition: 300ms linear; - } - - input[type=text].overflow { - border-right: none; - border-radius: 3px 0px 0px 3px; - } - - input:focus { - outline: none; - box-shadow: 0px 0px 7px $vibrant-green; - } - - input[type=submit].float { - float: right; - width: auto; - min-width: 0; - border-radius: 0 2px 2px 0; - } - - input.error { - background-color: rgba($red, 0.4); - } - - select { - /* this next line is to polyfill the vertical alignment of text within a select element, - * which is different between firefox and chrome. */ - padding: 0.3em 0; - } - - .query_options { - text-align: right; - font-size: 10px; - color: $blue; - } - - .describe_location { - position: absolute; - top: 6px; - right: 6px; - font-size: 10px; - color: $blue; - } - - .switch_link { - float: right; - width: auto; - min-width: 0; - margin-left: 6px; - } - - img.button { - display: block; - width: 20px; - height: 20px; - } - - span.force_width { - width: 100%; - padding-right: 25px; - display: block; - } - - select.routing_engines { - min-height: 30px; - margin: 0px 0px 5px 25px; - } - - input.routing_go { - min-width: 100px; - float: right; - } - - div.header { - width: 100%; - height: 30px; - } - - div.line { - width: 100%; - margin: 0px 0px 5px 0px; - } - - div.loader_copy { - display: none; - - img { - vertical-align: middle; - } - } - - a.reverse_directions { - cursor: pointer; - margin: 0px 0px 5px 25px; - } } } @@ -1919,95 +1695,8 @@ div.secondary-actions { } } -.diary_post .richtext { - margin-top: $lineheight; - } - .comments .richtext { margin-left: 70px; - margin-top: 0; -} - -/* Rules for rich text editors */ - -.standard-form { - input.richtext_title[type="text"] { - width: 50%; - width: calc(100% - 235px); - - @media only screen and (max-width:768px) { - width: 100%; - } - } - - .richtext_container { - margin-bottom: $lineheight; - - .richtext_content { - width: 50%; - width: calc(100% - 235px); - display: inline-block; - vertical-align: top; - - @media only screen and (max-width:768px) { - width: 100%; - } - - .richtext_preview { - display: inline-block; - padding: $lineheight; - background-color: $offwhite; - overflow-x: auto; - - &.loading { - background-image: image-url("loading.gif"); - background-repeat: no-repeat; - background-position: center; - } - - > :first-child { - margin-top: 0px; - } - } - } - - .richtext_help { - display: inline-block; - vertical-align: top; - margin-left: 15px; - background-color: $offwhite; - padding: $lineheight/2; - width: 220px; - - ul { - margin-bottom: 0; - } - - h4.heading, li { - border-bottom: 1px solid $grey; - margin-bottom: $lineheight/4; - padding-bottom: $lineheight/4; - } - - li h4, li span, li p { - display: inline-block; - vertical-align: top; - font-size: 11px; - } - - li h4 { - width: 40%; - margin: 0; - } - - li span, li p { - width: 50%; - margin-left: $lineheight/2; - margin-bottom: $lineheight/4; - white-space: nowrap; - } - } - } } /* Rules for the user notes list */ diff --git a/app/assets/stylesheets/small.scss b/app/assets/stylesheets/small.scss index 808b8caa6..530d7b7e6 100644 --- a/app/assets/stylesheets/small.scss +++ b/app/assets/stylesheets/small.scss @@ -124,26 +124,3 @@ body.small-nav { } } } - -@media (max-width: 575.98px) { - /* Rules for the login form */ - - #login_login input#user_email { - width: 100%; - max-width: 18em; - } - - #login_login input#user_password { - width: 100%; - max-width: 18em; - } - - #login_login input#openid_url { - width: 100%; - max-width: 18em; - } - - #login_openid_buttons td { - padding: 2px; - } -} diff --git a/app/controllers/api/changesets_controller.rb b/app/controllers/api/changesets_controller.rb index 29a57570d..34627a118 100644 --- a/app/controllers/api/changesets_controller.rb +++ b/app/controllers/api/changesets_controller.rb @@ -308,7 +308,7 @@ module Api # low, second is high - same as with bounding boxes. # check that we actually have 2 elements in the array - times = time.split(/,/) + times = time.split(",") raise OSM::APIBadUserInput, "bad time range" if times.size != 2 from, to = times.collect { |t| Time.parse(t) } diff --git a/app/controllers/api/user_preferences_controller.rb b/app/controllers/api/user_preferences_controller.rb index ddc5d7f43..40ccfccbb 100644 --- a/app/controllers/api/user_preferences_controller.rb +++ b/app/controllers/api/user_preferences_controller.rb @@ -7,12 +7,17 @@ module Api around_action :api_call_handle_error + before_action :set_request_formats + ## - # return all the preferences as an XML document + # return all the preferences def index @user_preferences = current_user.preferences - render :formats => [:xml] + respond_to do |format| + format.xml + format.json + end end ## diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 586b18116..d571535d3 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -59,7 +59,7 @@ class ApplicationController < ActionController::Base def require_user unless current_user if request.get? - redirect_to :controller => "users", :action => "login", :referer => request.fullpath + redirect_to login_path(:referer => request.fullpath) else head :forbidden end @@ -356,7 +356,7 @@ class ApplicationController < ActionController::Base end elsif request.get? respond_to do |format| - format.html { redirect_to :controller => "users", :action => "login", :referer => request.fullpath } + format.html { redirect_to login_path(:referer => request.fullpath) } format.any { head :forbidden } end else @@ -393,6 +393,8 @@ class ApplicationController < ActionController::Base referer = nil end + referer = nil if referer&.path&.first != "/" + referer.to_s end end diff --git a/app/controllers/concerns/session_methods.rb b/app/controllers/concerns/session_methods.rb new file mode 100644 index 000000000..dd6458b1b --- /dev/null +++ b/app/controllers/concerns/session_methods.rb @@ -0,0 +1,98 @@ +module SessionMethods + extend ActiveSupport::Concern + + private + + ## + # return the URL to use for authentication + def auth_url(provider, uid, referer = nil) + params = { :provider => provider } + + params[:openid_url] = openid_expand_url(uid) if provider == "openid" + + if referer.nil? + params[:origin] = request.path + else + params[:origin] = "#{request.path}?referer=#{CGI.escape(referer)}" + params[:referer] = referer + end + + auth_path(params) + end + + ## + # special case some common OpenID providers by applying heuristics to + # try and come up with the correct URL based on what the user entered + def openid_expand_url(openid_url) + if openid_url.nil? + nil + elsif openid_url.match(%r{(.*)gmail.com(/?)$}) || openid_url.match(%r{(.*)googlemail.com(/?)$}) + # Special case gmail.com as it is potentially a popular OpenID + # provider and, unlike yahoo.com, where it works automatically, Google + # have hidden their OpenID endpoint somewhere obscure this making it + # somewhat less user friendly. + "https://www.google.com/accounts/o8/id" + else + openid_url + end + end + + ## + # process a successful login + def successful_login(user, referer = nil) + session[:user] = user.id + session[:fingerprint] = user.fingerprint + session_expires_after 28.days if session[:remember_me] + + target = referer || session[:referer] || url_for(:controller => :site, :action => :index) + + # The user is logged in, so decide where to send them: + # + # - If they haven't seen the contributor terms, send them there. + # - If they have a block on them, show them that. + # - If they were referred to the login, send them back there. + # - Otherwise, send them to the home page. + if !user.terms_seen + redirect_to :controller => :users, :action => :terms, :referer => target + elsif user.blocked_on_view + redirect_to user.blocked_on_view, :referer => target + else + redirect_to target + end + + session.delete(:remember_me) + session.delete(:referer) + end + + ## + # process a failed login + def failed_login(message, username = nil) + flash[:error] = message + + redirect_to :action => "new", :referer => session[:referer], + :username => username, :remember_me => session[:remember_me] + + session.delete(:remember_me) + session.delete(:referer) + end + + ## + # + def unconfirmed_login(user) + session[:token] = user.tokens.create.token + + redirect_to :controller => "confirmations", :action => "confirm", :display_name => user.display_name + + session.delete(:remember_me) + session.delete(:referer) + end + + ## + # + def disable_terms_redirect + # this is necessary otherwise going to the user terms page, when + # having not agreed already would cause an infinite redirect loop. + # it's .now so that this doesn't propagate to other pages. + flash.now[:skip_terms] = true + end +end diff --git a/app/controllers/confirmations_controller.rb b/app/controllers/confirmations_controller.rb new file mode 100644 index 000000000..b77ed09b3 --- /dev/null +++ b/app/controllers/confirmations_controller.rb @@ -0,0 +1,137 @@ +class ConfirmationsController < ApplicationController + include SessionMethods + + layout "site" + + before_action :authorize_web + before_action :set_locale + before_action :check_database_readable + + authorize_resource :class => false + + before_action :check_database_writable, :only => [:confirm, :confirm_email] + before_action :require_cookies, :only => [:confirm] + + def confirm + if request.post? + token = UserToken.find_by(:token => params[:confirm_string]) + if token&.user&.active? + flash[:error] = t("confirmations.confirm.already active") + redirect_to login_path + elsif !token || token.expired? + flash[:error] = t("confirmations.confirm.unknown token") + redirect_to :action => "confirm" + elsif !token.user.visible? + render_unknown_user token.user.display_name + else + user = token.user + user.status = "active" + user.email_valid = true + flash[:notice] = gravatar_status_message(user) if gravatar_enable(user) + user.save! + referer = safe_referer(token.referer) if token.referer + token.destroy + + if session[:token] + token = UserToken.find_by(:token => session[:token]) + session.delete(:token) + else + token = nil + end + + if token.nil? || token.user != user + flash[:notice] = t("confirmations.confirm.success") + redirect_to login_path(:referer => referer) + else + token.destroy + + session[:user] = user.id + session[:fingerprint] = user.fingerprint + + redirect_to referer || welcome_path + end + end + else + user = User.visible.find_by(:display_name => params[:display_name]) + + redirect_to root_path if user.nil? || user.active? + end + end + + def confirm_resend + user = User.visible.find_by(:display_name => params[:display_name]) + token = UserToken.find_by(:token => session[:token]) + + if user.nil? || token.nil? || token.user != user + flash[:error] = t "confirmations.confirm_resend.failure", :name => params[:display_name] + else + UserMailer.signup_confirm(user, user.tokens.create).deliver_later + flash[:notice] = t "confirmations.confirm_resend.success_html", :email => user.email, :sender => Settings.support_email + end + + redirect_to login_path + end + + def confirm_email + if request.post? + token = UserToken.find_by(:token => params[:confirm_string]) + if token&.user&.new_email? + self.current_user = token.user + current_user.email = current_user.new_email + current_user.new_email = nil + current_user.email_valid = true + gravatar_enabled = gravatar_enable(current_user) + if current_user.save + flash[:notice] = if gravatar_enabled + "#{t('confirmations.confirm_email.success')} #{gravatar_status_message(current_user)}" + else + t("confirmations.confirm_email.success") + end + else + flash[:errors] = current_user.errors + end + current_user.tokens.delete_all + session[:user] = current_user.id + session[:fingerprint] = current_user.fingerprint + redirect_to :controller => :users, :action => :account, :display_name => current_user.display_name + elsif token + flash[:error] = t "confirmations.confirm_email.failure" + redirect_to :controller => :users, :action => :account, :display_name => token.user.display_name + else + flash[:error] = t "confirmations.confirm_email.unknown_token" + end + end + end + + private + + ## + # check if this user has a gravatar and set the user pref is true + def gravatar_enable(user) + # code from example https://en.gravatar.com/site/implement/images/ruby/ + return false if user.avatar.attached? + + begin + hash = Digest::MD5.hexdigest(user.email.downcase) + url = "https://www.gravatar.com/avatar/#{hash}?d=404" # without d=404 we will always get an image back + response = OSM.http_client.get(URI.parse(url)) + available = response.success? + rescue StandardError + available = false + end + + oldsetting = user.image_use_gravatar + user.image_use_gravatar = available + oldsetting != user.image_use_gravatar + end + + ## + # display a message about th current status of the gravatar setting + def gravatar_status_message(user) + if user.image_use_gravatar + t "users.account.gravatar.enabled" + else + t "users.account.gravatar.disabled" + end + end +end diff --git a/app/controllers/messages_controller.rb b/app/controllers/messages_controller.rb index 2047c4614..dacd00261 100644 --- a/app/controllers/messages_controller.rb +++ b/app/controllers/messages_controller.rb @@ -26,7 +26,7 @@ class MessagesController < ApplicationController @message.sender = current_user @message.sent_on = Time.now.getutc - if current_user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= Settings.max_messages_per_hour + if current_user.sent_messages.where("sent_on >= ?", Time.now.getutc - 1.hour).count >= current_user.max_messages_per_hour flash.now[:error] = t ".limit_exceeded" render :action => "new" elsif @message.save @@ -57,7 +57,7 @@ class MessagesController < ApplicationController render :action => "new" else flash[:notice] = t ".wrong_user", :user => current_user.display_name - redirect_to :controller => "users", :action => "login", :referer => request.fullpath + redirect_to login_path(:referer => request.fullpath) end rescue ActiveRecord::RecordNotFound @title = t "messages.no_such_message.title" @@ -74,7 +74,7 @@ class MessagesController < ApplicationController @message.save else flash[:notice] = t ".wrong_user", :user => current_user.display_name - redirect_to :controller => "users", :action => "login", :referer => request.fullpath + redirect_to login_path(:referer => request.fullpath) end rescue ActiveRecord::RecordNotFound @title = t "messages.no_such_message.title" diff --git a/app/controllers/passwords_controller.rb b/app/controllers/passwords_controller.rb new file mode 100644 index 000000000..331575964 --- /dev/null +++ b/app/controllers/passwords_controller.rb @@ -0,0 +1,67 @@ +class PasswordsController < ApplicationController + include SessionMethods + + layout "site" + + before_action :authorize_web + before_action :set_locale + before_action :check_database_readable + + authorize_resource :class => false + + before_action :check_database_writable, :only => [:lost_password, :reset_password] + + def lost_password + @title = t "passwords.lost_password.title" + + if request.post? + user = User.visible.find_by(:email => params[:email]) + + if user.nil? + users = User.visible.where("LOWER(email) = LOWER(?)", params[:email]) + + user = users.first if users.count == 1 + end + + if user + token = user.tokens.create + UserMailer.lost_password(user, token).deliver_later + flash[:notice] = t "passwords.lost_password.notice email on way" + redirect_to login_path + else + flash.now[:error] = t "passwords.lost_password.notice email cannot find" + end + end + end + + def reset_password + @title = t "passwords.reset_password.title" + + if params[:token] + token = UserToken.find_by(:token => params[:token]) + + if token + self.current_user = token.user + + if params[:user] + current_user.pass_crypt = params[:user][:pass_crypt] + current_user.pass_crypt_confirmation = params[:user][:pass_crypt_confirmation] + current_user.status = "active" if current_user.status == "pending" + current_user.email_valid = true + + if current_user.save + token.destroy + session[:fingerprint] = current_user.fingerprint + flash[:notice] = t "passwords.reset_password.flash changed" + successful_login(current_user) + end + end + else + flash[:error] = t "passwords.reset_password.flash token bad" + redirect_to :action => "lost_password" + end + else + head :bad_request + end + end +end diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 000000000..7e6a740f3 --- /dev/null +++ b/app/controllers/sessions_controller.rb @@ -0,0 +1,62 @@ +class SessionsController < ApplicationController + include SessionMethods + + layout "site" + + before_action :disable_terms_redirect, :only => [:destroy] + before_action :authorize_web + before_action :set_locale + before_action :check_database_readable + before_action :require_cookies, :only => [:new] + + authorize_resource :class => false + + def new + append_content_security_policy_directives( + :form_action => %w[*] + ) + + session[:referer] = safe_referer(params[:referer]) if params[:referer] + end + + def create + session[:remember_me] ||= params[:remember_me] + session[:referer] = safe_referer(params[:referer]) if params[:referer] + password_authentication(params[:username], params[:password]) + end + + def destroy + @title = t "sessions.destroy.title" + + if request.post? + if session[:token] + token = UserToken.find_by(:token => session[:token]) + token&.destroy + session.delete(:token) + end + session.delete(:user) + session_expires_automatically + if params[:referer] + redirect_to safe_referer(params[:referer]) + else + redirect_to :controller => "site", :action => "index" + end + end + end + + private + + ## + # handle password authentication + def password_authentication(username, password) + if (user = User.authenticate(:username => username, :password => password)) + successful_login(user) + elsif (user = User.authenticate(:username => username, :password => password, :pending => true)) + unconfirmed_login(user) + elsif User.authenticate(:username => username, :password => password, :suspended => true) + failed_login t("sessions.new.account is suspended", :webmaster => "mailto:#{Settings.support_email}").html_safe, username + else + failed_login t("sessions.new.auth failure"), username + end + end +end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index aa504e313..43933041c 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -1,8 +1,10 @@ class UsersController < ApplicationController + include SessionMethods + layout "site" skip_before_action :verify_authenticity_token, :only => [:auth_success] - before_action :disable_terms_redirect, :only => [:terms, :save, :logout] + before_action :disable_terms_redirect, :only => [:terms, :save] before_action :authorize_web before_action :set_locale before_action :check_database_readable @@ -10,8 +12,8 @@ class UsersController < ApplicationController authorize_resource before_action :require_self, :only => [:account] - before_action :check_database_writable, :only => [:new, :account, :confirm, :confirm_email, :lost_password, :reset_password, :go_public] - before_action :require_cookies, :only => [:new, :login, :confirm] + before_action :check_database_writable, :only => [:new, :account, :go_public] + before_action :require_cookies, :only => [:new] before_action :lookup_user_by_name, :only => [:set_status, :destroy] before_action :allow_thirdparty_images, :only => [:show, :account] @@ -107,7 +109,7 @@ class UsersController < ApplicationController else session[:token] = current_user.tokens.create.token UserMailer.signup_confirm(current_user, current_user.tokens.create(:referer => referer)).deliver_later - redirect_to :action => "confirm", :display_name => current_user.display_name + redirect_to :controller => :confirmations, :action => :confirm, :display_name => current_user.display_name end else render :action => "new", :referer => params[:referer] @@ -131,7 +133,7 @@ class UsersController < ApplicationController redirect_to user_account_url(current_user) if current_user.errors.count.zero? else session[:new_user_settings] = params - redirect_to auth_url(params[:user][:auth_provider], params[:user][:auth_uid]) + redirect_to auth_url(params[:user][:auth_provider], params[:user][:auth_uid]), :status => :temporary_redirect end elsif errors = session.delete(:user_errors) errors.each do |attribute, error| @@ -148,60 +150,6 @@ class UsersController < ApplicationController redirect_to :action => "account", :display_name => current_user.display_name end - def lost_password - @title = t "users.lost_password.title" - - if request.post? - user = User.visible.find_by(:email => params[:email]) - - if user.nil? - users = User.visible.where("LOWER(email) = LOWER(?)", params[:email]) - - user = users.first if users.count == 1 - end - - if user - token = user.tokens.create - UserMailer.lost_password(user, token).deliver_later - flash[:notice] = t "users.lost_password.notice email on way" - redirect_to :action => "login" - else - flash.now[:error] = t "users.lost_password.notice email cannot find" - end - end - end - - def reset_password - @title = t "users.reset_password.title" - - if params[:token] - token = UserToken.find_by(:token => params[:token]) - - if token - self.current_user = token.user - - if params[:user] - current_user.pass_crypt = params[:user][:pass_crypt] - current_user.pass_crypt_confirmation = params[:user][:pass_crypt_confirmation] - current_user.status = "active" if current_user.status == "pending" - current_user.email_valid = true - - if current_user.save - token.destroy - session[:fingerprint] = current_user.fingerprint - flash[:notice] = t "users.reset_password.flash changed" - successful_login(current_user) - end - end - else - flash[:error] = t "users.reset_password.flash token bad" - redirect_to :action => "lost_password" - end - else - head :bad_request - end - end - def new @title = t "users.new.title" @referer = if params[:referer] @@ -269,127 +217,6 @@ class UsersController < ApplicationController end end - def login - append_content_security_policy_directives( - :form_action => %w[accounts.google.com *.facebook.com login.live.com github.com meta.wikimedia.org] - ) - - session[:referer] = safe_referer(params[:referer]) if params[:referer] - - if request.post? - session[:remember_me] ||= params[:remember_me] - password_authentication(params[:username], params[:password]) - end - end - - def logout - @title = t "users.logout.title" - - if request.post? - if session[:token] - token = UserToken.find_by(:token => session[:token]) - token&.destroy - session.delete(:token) - end - session.delete(:user) - session_expires_automatically - if params[:referer] - redirect_to safe_referer(params[:referer]) - else - redirect_to :controller => "site", :action => "index" - end - end - end - - def confirm - if request.post? - token = UserToken.find_by(:token => params[:confirm_string]) - if token&.user&.active? - flash[:error] = t("users.confirm.already active") - redirect_to :action => "login" - elsif !token || token.expired? - flash[:error] = t("users.confirm.unknown token") - redirect_to :action => "confirm" - else - user = token.user - user.status = "active" - user.email_valid = true - flash[:notice] = gravatar_status_message(user) if gravatar_enable(user) - user.save! - referer = safe_referer(token.referer) if token.referer - token.destroy - - if session[:token] - token = UserToken.find_by(:token => session[:token]) - session.delete(:token) - else - token = nil - end - - if token.nil? || token.user != user - flash[:notice] = t("users.confirm.success") - redirect_to :action => :login, :referer => referer - else - token.destroy - - session[:user] = user.id - session[:fingerprint] = user.fingerprint - - redirect_to referer || welcome_path - end - end - else - user = User.find_by(:display_name => params[:display_name]) - - redirect_to root_path if user.nil? || user.active? - end - end - - def confirm_resend - user = User.find_by(:display_name => params[:display_name]) - token = UserToken.find_by(:token => session[:token]) - - if user.nil? || token.nil? || token.user != user - flash[:error] = t "users.confirm_resend.failure", :name => params[:display_name] - else - UserMailer.signup_confirm(user, user.tokens.create).deliver_later - flash[:notice] = t "users.confirm_resend.success_html", :email => user.email, :sender => Settings.support_email - end - - redirect_to :action => "login" - end - - def confirm_email - if request.post? - token = UserToken.find_by(:token => params[:confirm_string]) - if token&.user&.new_email? - self.current_user = token.user - current_user.email = current_user.new_email - current_user.new_email = nil - current_user.email_valid = true - gravatar_enabled = gravatar_enable(current_user) - if current_user.save - flash[:notice] = if gravatar_enabled - "#{t('users.confirm_email.success')} #{gravatar_status_message(current_user)}" - else - t("users.confirm_email.success") - end - else - flash[:errors] = current_user.errors - end - current_user.tokens.delete_all - session[:user] = current_user.id - session[:fingerprint] = current_user.fingerprint - redirect_to :action => "account", :display_name => current_user.display_name - elsif token - flash[:error] = t "users.confirm_email.failure" - redirect_to :action => "account", :display_name => token.user.display_name - else - flash[:error] = t "users.confirm_email.unknown_token" - end - end - end - def show @user = User.find_by(:display_name => params[:display_name]) @@ -514,93 +341,6 @@ class UsersController < ApplicationController private - ## - # handle password authentication - def password_authentication(username, password) - if user = User.authenticate(:username => username, :password => password) - successful_login(user) - elsif user = User.authenticate(:username => username, :password => password, :pending => true) - unconfirmed_login(user) - elsif User.authenticate(:username => username, :password => password, :suspended => true) - failed_login t("users.login.account is suspended", :webmaster => "mailto:#{Settings.support_email}").html_safe, username - else - failed_login t("users.login.auth failure"), username - end - end - - ## - # return the URL to use for authentication - def auth_url(provider, uid, referer = nil) - params = { :provider => provider } - - params[:openid_url] = openid_expand_url(uid) if provider == "openid" - - if referer.nil? - params[:origin] = request.path - else - params[:origin] = "#{request.path}?referer=#{CGI.escape(referer)}" - params[:referer] = referer - end - - auth_path(params) - end - - ## - # special case some common OpenID providers by applying heuristics to - # try and come up with the correct URL based on what the user entered - def openid_expand_url(openid_url) - if openid_url.nil? - nil - elsif openid_url.match(%r{(.*)gmail.com(/?)$}) || openid_url.match(%r{(.*)googlemail.com(/?)$}) - # Special case gmail.com as it is potentially a popular OpenID - # provider and, unlike yahoo.com, where it works automatically, Google - # have hidden their OpenID endpoint somewhere obscure this making it - # somewhat less user friendly. - "https://www.google.com/accounts/o8/id" - else - openid_url - end - end - - ## - # process a successful login - def successful_login(user, referer = nil) - session[:user] = user.id - session[:fingerprint] = user.fingerprint - session_expires_after 28.days if session[:remember_me] - - target = referer || session[:referer] || url_for(:controller => :site, :action => :index) - - # The user is logged in, so decide where to send them: - # - # - If they haven't seen the contributor terms, send them there. - # - If they have a block on them, show them that. - # - If they were referred to the login, send them back there. - # - Otherwise, send them to the home page. - if !user.terms_seen - redirect_to :action => :terms, :referer => target - elsif user.blocked_on_view - redirect_to user.blocked_on_view, :referer => target - else - redirect_to target - end - - session.delete(:remember_me) - session.delete(:referer) - end - - ## - # process a failed login - def failed_login(message, username = nil) - flash[:error] = message - - redirect_to :action => "login", :referer => session[:referer], - :username => username, :remember_me => session[:remember_me] - - session.delete(:remember_me) - session.delete(:referer) - end - ## # def unconfirmed_login(user) @@ -698,15 +438,6 @@ class UsersController < ApplicationController redirect_to :action => "view", :display_name => params[:display_name] unless @user end - ## - # - def disable_terms_redirect - # this is necessary otherwise going to the user terms page, when - # having not agreed already would cause an infinite redirect loop. - # it's .now so that this doesn't propagate to other pages. - flash.now[:skip_terms] = true - end - ## # return permitted user parameters def user_params @@ -746,28 +477,4 @@ class UsersController < ApplicationController dns.getresources(domain, Resolv::DNS::Resource::IN::MX).collect(&:exchange).collect(&:to_s) end end - - ## - # check if this user has a gravatar and set the user pref is true - def gravatar_enable(user) - # code from example https://en.gravatar.com/site/implement/images/ruby/ - return false if user.avatar.attached? - - hash = Digest::MD5.hexdigest(user.email.downcase) - url = "https://www.gravatar.com/avatar/#{hash}?d=404" # without d=404 we will always get an image back - response = OSM.http_client.get(URI.parse(url)) - oldsetting = user.image_use_gravatar - user.image_use_gravatar = response.success? - oldsetting != user.image_use_gravatar - end - - ## - # display a message about th current status of the gravatar setting - def gravatar_status_message(user) - if user.image_use_gravatar - t "users.account.gravatar.enabled" - else - t "users.account.gravatar.disabled" - end - end end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index c8473adfc..ed01ad89b 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -17,26 +17,6 @@ module ApplicationHelper link_to(image_tag("RSS.png", :size => "16x16", :border => 0), args, :class => "rsssmall") end - def richtext_area(object_name, method, options = {}) - id = "#{object_name}_#{method}" - type = options.delete(:format) || "markdown" - - tag.div(:id => "#{id}_container", :class => "richtext_container") do - output_buffer << tag.div(:id => "#{id}_content", :class => "richtext_content") do - output_buffer << text_area(object_name, method, options.merge("data-preview-url" => preview_url(:type => type))) - output_buffer << tag.div("", :id => "#{id}_preview", :class => "richtext_preview richtext text-break") - end - - output_buffer << tag.div(:id => "#{id}_help", :class => "richtext_help") do - output_buffer << render("site/#{type}_help") - output_buffer << tag.div(:class => "buttons") do - output_buffer << submit_tag(I18n.t("site.richtext_area.edit"), :id => "#{id}_doedit", :class => "richtext_doedit deemphasize", :disabled => true) - output_buffer << submit_tag(I18n.t("site.richtext_area.preview"), :id => "#{id}_dopreview", :class => "richtext_dopreview deemphasize") - end - end - end - end - def dir if dir = params[:dir] dir == "rtl" ? "rtl" : "ltr" diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb index 39532572e..e9e8f6bfb 100644 --- a/app/helpers/user_helper.rb +++ b/app/helpers/user_helper.rb @@ -53,16 +53,16 @@ module UserHelper # External authentication support def openid_logo - image_tag "openid_small.png", :alt => t("users.login.openid_logo_alt"), :class => "openid_logo" + image_tag "openid_small.png", :alt => t("sessions.new.openid_logo_alt"), :class => "openid_logo" end def auth_button(name, provider, options = {}) link_to( - image_tag("#{name}.svg", :alt => t("users.login.auth_providers.#{name}.alt"), :class => "rounded-lg"), + image_tag("#{name}.svg", :alt => t("sessions.new.auth_providers.#{name}.alt"), :class => "rounded-lg"), auth_path(options.merge(:provider => provider)), :method => :post, :class => "auth_button", - :title => t("users.login.auth_providers.#{name}.title") + :title => t("sessions.new.auth_providers.#{name}.title") ) end diff --git a/app/mailers/user_mailer.rb b/app/mailers/user_mailer.rb index bb4412e8a..0664b8475 100644 --- a/app/mailers/user_mailer.rb +++ b/app/mailers/user_mailer.rb @@ -12,7 +12,7 @@ class UserMailer < ApplicationMailer def signup_confirm(user, token) with_recipient_locale user do - @url = url_for(:controller => "users", :action => "confirm", + @url = url_for(:controller => "confirmations", :action => "confirm", :display_name => user.display_name, :confirm_string => token.token) @@ -24,7 +24,7 @@ class UserMailer < ApplicationMailer def email_confirm(user, token) with_recipient_locale user do @address = user.new_email - @url = url_for(:controller => "users", :action => "confirm_email", + @url = url_for(:controller => "confirmations", :action => "confirm_email", :confirm_string => token.token) mail :to => user.new_email, @@ -34,7 +34,7 @@ class UserMailer < ApplicationMailer def lost_password(user, token) with_recipient_locale user do - @url = url_for(:controller => "users", :action => "reset_password", + @url = url_for(:controller => "passwords", :action => "reset_password", :token => token.token) mail :to => user.email, diff --git a/app/models/issue.rb b/app/models/issue.rb index c0707728e..c94fe56a7 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -46,7 +46,7 @@ class Issue < ApplicationRecord before_validation :set_reported_user - scope :with_status, ->(issue_status) { where(:status => statuses[issue_status]) } + scope :with_status, ->(issue_status) { where(:status => issue_status) } scope :visible_to, ->(user) { where(:assigned_role => user.roles.map(&:role)) } def read_reports diff --git a/app/models/user.rb b/app/models/user.rb index 42fa40e53..26a9f33e1 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -296,6 +296,15 @@ class User < ApplicationRecord digest.hexdigest end + def max_messages_per_hour + account_age_in_seconds = Time.now.utc - creation_time + account_age_in_hours = account_age_in_seconds / 3600 + recent_messages = messages.where("sent_on >= ?", Time.now.utc - 3600).count + active_reports = issues.with_status(:open).sum(:reports_count) + max_messages = account_age_in_hours.ceil + recent_messages - active_reports * 10 + max_messages.clamp(0, Settings.max_messages_per_hour) + end + private def set_defaults diff --git a/app/validators/characters_validator.rb b/app/validators/characters_validator.rb index 837e3e6cc..13d08ca55 100644 --- a/app/validators/characters_validator.rb +++ b/app/validators/characters_validator.rb @@ -3,7 +3,7 @@ class CharactersValidator < ActiveModel::EachValidator INVALID_URL_CHARS = "/;.,?%#".freeze def validate_each(record, attribute, value) - record.errors[attribute] << (options[:message] || I18n.t("validations.invalid_characters")) if /[#{INVALID_CHARS}]/o.match?(value) - record.errors[attribute] << (options[:message] || I18n.t("validations.url_characters", :characters => INVALID_URL_CHARS)) if options[:url_safe] && /[#{INVALID_URL_CHARS}]/o.match?(value) + record.errors.add(attribute, options[:message] || I18n.t("validations.invalid_characters")) if /[#{INVALID_CHARS}]/o.match?(value) + record.errors.add(attribute, options[:message] || I18n.t("validations.url_characters", :characters => INVALID_URL_CHARS)) if options[:url_safe] && /[#{INVALID_URL_CHARS}]/o.match?(value) end end diff --git a/app/validators/whitespace_validator.rb b/app/validators/whitespace_validator.rb index 3032c109e..6453742c2 100644 --- a/app/validators/whitespace_validator.rb +++ b/app/validators/whitespace_validator.rb @@ -1,6 +1,6 @@ class WhitespaceValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) - record.errors[attribute] << (options[:message] || I18n.t("validations.leading_whitespace")) if !options.fetch(:leading, true) && /\A\s/.match?(value) - record.errors[attribute] << (options[:message] || I18n.t("validations.trailing_whitespace")) if !options.fetch(:trailing, true) && /\s\z/.match?(value) + record.errors.add(attribute, options[:message] || I18n.t("validations.leading_whitespace")) if !options.fetch(:leading, true) && /\A\s/.match?(value) + record.errors.add(attribute, options[:message] || I18n.t("validations.trailing_whitespace")) if !options.fetch(:trailing, true) && /\s\z/.match?(value) end end diff --git a/app/views/api/user_preferences/index.json.jbuilder b/app/views/api/user_preferences/index.json.jbuilder new file mode 100644 index 000000000..064bf27f2 --- /dev/null +++ b/app/views/api/user_preferences/index.json.jbuilder @@ -0,0 +1,3 @@ +json.partial! "api/root_attributes" + +json.preferences @user_preferences.map { |pref| [pref.k, pref.v] }.to_h diff --git a/app/views/api/users/index.json.jbuilder b/app/views/api/users/index.json.jbuilder index efc905cfe..1ad07d47c 100644 --- a/app/views/api/users/index.json.jbuilder +++ b/app/views/api/users/index.json.jbuilder @@ -1,3 +1,5 @@ +json.partial! "api/root_attributes" + json.users(@users) do |user| json.partial! user end diff --git a/app/views/api/users/show.json.jbuilder b/app/views/api/users/show.json.jbuilder index 51a85380c..b3a86a892 100644 --- a/app/views/api/users/show.json.jbuilder +++ b/app/views/api/users/show.json.jbuilder @@ -1 +1,3 @@ +json.partial! "api/root_attributes" + json.partial! @user diff --git a/app/views/browse/changeset.html.erb b/app/views/browse/changeset.html.erb index 670c7dc32..079915fcf 100644 --- a/app/views/browse/changeset.html.erb +++ b/app/views/browse/changeset.html.erb @@ -51,7 +51,7 @@ :when => friendly_date_ago(comment.created_at), :exact_time => l(comment.created_at), :user => link_to(comment.author.display_name, user_path(comment.author))) %> - — <%= t("javascripts.changesets.show.unhide_comment") %> + — <%= t("javascripts.changesets.show.unhide_comment") %> <%= comment.body.to_html %> @@ -64,7 +64,7 @@ <% unless current_user %>
- <%= link_to(t(".join_discussion"), :controller => "users", :action => "login", :referer => request.fullpath) %> + <%= link_to(t(".join_discussion"), login_path(:referer => request.fullpath)) %>
<% end %> diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb index 1a792e873..6dcd46e76 100644 --- a/app/views/browse/note.html.erb +++ b/app/views/browse/note.html.erb @@ -51,7 +51,7 @@
-
+
<% if current_user.moderator? -%> " class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>"> <% end -%> @@ -63,7 +63,7 @@ <% else %>
-
+
<% if current_user and current_user.moderator? -%> " class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>"> <% end -%> diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index 3e946670d..e9e620062 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -3,7 +3,7 @@ <%= render @changesets %> <% if @changesets.size == 20 -%> -
+
<%= link_to t(".load_more"), url_for(@params.merge(:max_id => @changesets.last.id - 1)), :class => "btn btn-primary" %>
<%= image_tag "searching.gif" %>
diff --git a/app/views/users/confirm.html.erb b/app/views/confirmations/confirm.html.erb similarity index 100% rename from app/views/users/confirm.html.erb rename to app/views/confirmations/confirm.html.erb diff --git a/app/views/users/confirm_email.html.erb b/app/views/confirmations/confirm_email.html.erb similarity index 100% rename from app/views/users/confirm_email.html.erb rename to app/views/confirmations/confirm_email.html.erb diff --git a/app/views/diary_entries/comments.html.erb b/app/views/diary_entries/comments.html.erb index 67036050d..290fba35e 100644 --- a/app/views/diary_entries/comments.html.erb +++ b/app/views/diary_entries/comments.html.erb @@ -2,24 +2,30 @@

<%= t(".has_commented_on", :display_name => @user.display_name) %>

<% end %> - - - - - - +<% if @comments.empty? %> +

<%= t ".no_comments" %>

+ +<% else %> +
<%= t ".post" %><%= t ".when" %><%= t ".comment" %>
+ + + + + + + + <% @comments.each do |comment| -%> + "> + + + - - <% @comments.each do |comment| -%> - "> - - - - - <% end -%> -
<%= t ".post" %><%= t ".when" %><%= t ".comment" %>
<%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %><%= time_ago_in_words(comment.created_at, :scope => :'datetime.distance_in_words_ago') %><%= comment.body.to_html %>
<%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %><%= time_ago_in_words(comment.created_at, :scope => :'datetime.distance_in_words_ago') %><%= comment.body.to_html %>
+ <% end -%> + + +
+ <%= link_to t(".older_comments"), :page => @comment_pages.current.next if @comment_pages.current.next %> + <%= link_to t(".newer_comments"), :page => @comment_pages.current.previous if @comment_pages.current.previous %> +
-
- <%= link_to t(".older_comments"), :page => @comment_pages.current.next if @comment_pages.current.next %> - <%= link_to t(".newer_comments"), :page => @comment_pages.current.previous if @comment_pages.current.previous %> -
+<% end -%> diff --git a/app/views/diary_entries/show.html.erb b/app/views/diary_entries/show.html.erb index 154a7a195..2b7245356 100644 --- a/app/views/diary_entries/show.html.erb +++ b/app/views/diary_entries/show.html.erb @@ -29,7 +29,7 @@ <% end %> <% end %> <% else %> -

<%= t(".login_to_leave_a_comment_html", :login_link => link_to(t(".login"), :controller => "users", :action => "login", :referer => request.fullpath)) %>

+

<%= t(".login_to_leave_a_comment_html", :login_link => link_to(t(".login"), login_path(:referer => request.fullpath))) %>

<% end %>
diff --git a/app/views/layouts/_search.html.erb b/app/views/layouts/_search.html.erb index 0ffa4ef50..e69ed6703 100644 --- a/app/views/layouts/_search.html.erb +++ b/app/views/layouts/_search.html.erb @@ -1,30 +1,54 @@ -
- - <%= link_to image_tag("directions.png", :class => "button"), directions_path, :class => "button switch_link", :title => t("site.search.get_directions_title") %> - <%= submit_tag t("site.search.submit_text"), :class => "float", :data => { :disable_with => false } %> -
- <%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :class => "overflow" %> - <%= link_to t("site.search.where_am_i"), "#", :class => "describe_location", :title => t("site.search.where_am_i_title") %> +
+ +
+
+
+
+ <%= link_to t("site.search.where_am_i"), "#", :class => "describe_location position-absolute", :title => t("site.search.where_am_i_title") %> + <%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :class => "form-control form-control-sm" %> +
+
+ <%= submit_tag t("site.search.submit_text"), :class => "btn btn-sm btn-primary", :data => { :disable_with => false } %> +
+
+
+
+ <%= link_to image_tag("directions.png", :width => "20", :height => "20"), directions_path, :class => "btn btn-sm btn-primary switch_link", :title => t("site.search.get_directions_title") %> +
-
-
+ +
-
- <%= image_tag "marker-green.png", :class => "routing_marker", :data => { :type => "from" }, :draggable => "true" %> - <%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from") %> +
+
+ <%= image_tag "marker-green.png", :class => "routing_marker mx-auto d-block", :data => { :type => "from" }, :draggable => "true" %> +
+
+ <%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from"), :class => "form-control form-control-sm" %> +
-
- <%= image_tag "marker-red.png", :class => "routing_marker", :data => { :type => "to" }, :draggable => "true" %> - <%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to") %> +
+
+ <%= image_tag "marker-red.png", :class => "routing_marker mx-auto d-block", :data => { :type => "to" }, :draggable => "true" %> +
+
+ <%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to"), :class => "form-control form-control-sm" %> +
-
- - <%= submit_tag t("site.search.submit_text"), :class => "routing_go", :data => { :disable_with => false } %> +
+
+ +
+
+ <%= submit_tag t("site.search.submit_text"), :class => "routing_go btn btn-sm btn-primary", :data => { :disable_with => false } %> +
-
- <%= t("site.search.reverse_directions_text") %> +
<%= image_tag "searching.gif" %>
diff --git a/app/views/messages/inbox.html.erb b/app/views/messages/inbox.html.erb index 0fb5107ce..a27d7f15c 100644 --- a/app/views/messages/inbox.html.erb +++ b/app/views/messages/inbox.html.erb @@ -3,7 +3,14 @@ <% end %> <% content_for :heading do %> -

<%= t ".my_inbox" %>/<%= link_to t(".outbox"), outbox_messages_path %>

+ <% end %>

<%= render :partial => "message_count" %>

diff --git a/app/views/messages/outbox.html.erb b/app/views/messages/outbox.html.erb index 5ae9706b7..562bd9df1 100644 --- a/app/views/messages/outbox.html.erb +++ b/app/views/messages/outbox.html.erb @@ -3,7 +3,14 @@ <% end %> <% content_for :heading do %> -

<%= t(".my_inbox_html", :inbox_link => link_to(t(".inbox"), inbox_messages_path)) %>/<%= t ".outbox" %>

+ <% end %>

<%= t ".messages", :count => current_user.sent_messages.size %>

diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index 50059625d..b5af25321 100644 --- a/app/views/notes/index.html.erb +++ b/app/views/notes/index.html.erb @@ -3,35 +3,41 @@

<%= t ".subheading_html", :user => link_to(@user.display_name, user_path(@user)) %>

<% end %> -<%= render :partial => "notes_paging_nav" %> +<% if @notes.empty? %> +

<%= t ".no_notes" %>

- - - - - - - - - +<% else %> + <%= render :partial => "notes_paging_nav" %> + +
<%= t ".id" %><%= t ".creator" %><%= t ".description" %><%= t ".created_at" %><%= t ".last_changed" %>
+ + + + + + + + + + + <% @notes.each do |note| -%> + class="creator"<% end %>> + + + + + + - -<% @notes.each do |note| -%> - class="creator"<% end %>> - - - - - - - -<% end -%> -
<%= t ".id" %><%= t ".creator" %><%= t ".description" %><%= t ".created_at" %><%= t ".last_changed" %>
+ <% if note.closed? %> + <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> + <% else %> + <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %> + <% end %> + <%= link_to note.id, browse_note_path(note) %><%= note_author(note.author) %><%= note.comments.first.body.to_html %><%= friendly_date_ago(note.created_at) %><%= friendly_date_ago(note.updated_at) %>
- <% if note.closed? %> - <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> - <% else %> - <%= image_tag("open_note_marker.png", :alt => "open", :size => "25x40") %> - <% end %> - <%= link_to note.id, browse_note_path(note) %><%= note_author(note.author) %><%= note.comments.first.body.to_html %><%= friendly_date_ago(note.created_at) %><%= friendly_date_ago(note.updated_at) %>
+ <% end -%> + -<%= render :partial => "notes_paging_nav" %> + <%= render :partial => "notes_paging_nav" %> + +<% end -%> diff --git a/app/views/users/lost_password.html.erb b/app/views/passwords/lost_password.html.erb similarity index 100% rename from app/views/users/lost_password.html.erb rename to app/views/passwords/lost_password.html.erb diff --git a/app/views/users/reset_password.html.erb b/app/views/passwords/reset_password.html.erb similarity index 100% rename from app/views/users/reset_password.html.erb rename to app/views/passwords/reset_password.html.erb diff --git a/app/views/users/logout.html.erb b/app/views/sessions/destroy.html.erb similarity index 100% rename from app/views/users/logout.html.erb rename to app/views/sessions/destroy.html.erb diff --git a/app/views/users/login.html.erb b/app/views/sessions/new.html.erb similarity index 95% rename from app/views/users/login.html.erb rename to app/views/sessions/new.html.erb index 947aafbf9..69ea7d8fd 100644 --- a/app/views/users/login.html.erb +++ b/app/views/sessions/new.html.erb @@ -7,13 +7,13 @@ <% end %>
-

<%= t ".no account" %> <%= link_to t(".register now"), :action => :new, :referer => params[:referer] %>

+

<%= t ".no account" %> <%= link_to t(".register now"), user_new_path(:referer => params[:referer]) %>

<%= bootstrap_form_tag(:action => "login", :html => { :id => "login_form" }) do |f| %> <%= hidden_field_tag("referer", h(params[:referer])) %> <%= f.text_field :username, :label => t(".email or username"), :tabindex => 1, :value => params[:username] %> - <%= f.password_field :password, :label => t(".password"), :tabindex => 2, :value => "", :help => link_to(t(".lost password link"), :controller => "users", :action => "lost_password") %> + <%= f.password_field :password, :label => t(".password"), :tabindex => 2, :value => "", :help => link_to(t(".lost password link"), :controller => "passwords", :action => "lost_password") %> <%= f.form_group do %> <%= f.check_box :remember_me, { :label => t(".remember"), :tabindex => 3, :checked => (params[:remember_me] == "yes") }, "yes" %> <% end %> diff --git a/app/views/site/_html_help.erb b/app/views/site/_html_help.erb deleted file mode 100644 index e69de29bb..000000000 diff --git a/app/views/site/_markdown_help.html.erb b/app/views/site/_markdown_help.html.erb deleted file mode 100644 index 7dbadefe9..000000000 --- a/app/views/site/_markdown_help.html.erb +++ /dev/null @@ -1,26 +0,0 @@ -

<%= t ".title_html" %>

-
    -
  • -

    <%= t ".headings" %>

    -

    # <%= t ".heading" %>
    - ## <%= t ".subheading" %>

    -
  • -
  • -

    <%= t ".unordered" %>

    -

    * <%= t ".first" %>
    - * <%= t ".second" %>

    -
  • -
  • -

    <%= t ".ordered" %>

    -

    1. <%= t ".first" %>
    - 2. <%= t ".second" %>

    -
  • -
  • -

    <%= t ".link" %>

    - [<%= t ".text" %>](<%= t ".url" %>) -
  • -
  • -

    <%= t ".image" %>

    - ![<%= t ".alt" %>](<%= t ".url" %>) -
  • -
diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb index c2f4183eb..7dc20c203 100644 --- a/app/views/traces/_trace.html.erb +++ b/app/views/traces/_trace.html.erb @@ -8,28 +8,50 @@ <% end %> <% end %> - <%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %> - ... - <% if trace.inserted %> - (<%= t ".count_points", :count => trace.size %>) - <% end %> - ... <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %> - <%= link_to_if trace.inserted?, t(".map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" }, { :title => t(".view_map") } %> / - <%= link_to t(".edit"), { :controller => "site", :action => "edit", :gpx => trace.id }, { :title => t(".edit_map") } %> + +
    +
  • + <%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %> +
  • - <% badge_class = case trace.visibility - when "public", "identifiable" then "success" - else "danger" - end %> - <%= t(".#{trace.visibility}") %> + <% if trace.inserted? %> +
  • + <%= t ".count_points", :count => trace.size %> +
  • + <% end %> -
    +
  • + <% badge_class = case trace.visibility + when "public", "identifiable" then "success" + else "danger" + end %> + <%= t(".#{trace.visibility}") %> +
  • +
+

+ + <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %> + + <%= t ".by" %> <%= link_to trace.user.display_name, user_path(trace.user) %> + <% if !trace.tags.empty? %> + <%= t ".in" %> + <%= safe_join(trace.tags.collect { |tag| link_to_tag tag.tag }, ", ") %> + <% end %> +

+

<%= trace.description %> -
- <%= t ".by" %> <%= link_to trace.user.display_name, user_path(trace.user) %> - <% if !trace.tags.empty? %> - <%= t ".in" %> - <%= safe_join(trace.tags.collect { |tag| link_to_tag tag.tag }, ", ") %> +

+ + + <% if trace.inserted? %> +
    +
  • + <%= link_to t(".view_map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" } %> +
  • +
  • + <%= link_to t(".edit_map"), { :controller => "site", :action => "edit", :gpx => trace.id } %> +
  • +
<% end %> diff --git a/app/views/traces/index.html.erb b/app/views/traces/index.html.erb index fa69c48a2..b38436c0a 100644 --- a/app/views/traces/index.html.erb +++ b/app/views/traces/index.html.erb @@ -27,7 +27,7 @@ - <%= render @traces unless @traces.nil? %> + <%= render @traces %>
diff --git a/app/views/users/account.html.erb b/app/views/users/account.html.erb index bb30581f9..10b33063e 100644 --- a/app/views/users/account.html.erb +++ b/app/views/users/account.html.erb @@ -94,7 +94,7 @@
<%= t ".home location" -%>
class="nohome"<% end %>> -

<%= t ".no home location" %>

+

<%= t ".no home location" %>

<%= f.text_field :home_lat, :wrapper_class => "col-sm-4", :id => "home_lat" %> <%= f.text_field :home_lon, :wrapper_class => "col-sm-4", :id => "home_lon" %> diff --git a/config/initializers/oauth.rb b/config/initializers/oauth.rb index 2e2f45ab8..9179e431f 100644 --- a/config/initializers/oauth.rb +++ b/config/initializers/oauth.rb @@ -1,9 +1,26 @@ require "oauth/controllers/provider_controller" +require "oauth/helper" require "oauth/rack/oauth_filter" Rails.configuration.middleware.use OAuth::Rack::OAuthFilter module OAuth + module Helper + def escape(value) + value.to_s.gsub(OAuth::RESERVED_CHARACTERS) do |c| + c.bytes.map do |b| + format("%%%02X", b) + end.join + end.force_encoding(Encoding::US_ASCII) + end + + def unescape(value) + value.to_s.gsub(/%\h{2}/) do |c| + c[1..-1].to_i(16).chr + end.force_encoding(Encoding::UTF_8) + end + end + module RequestProxy class RackRequest def method diff --git a/config/initializers/sanitize.rb b/config/initializers/sanitize.rb index 6f2e30852..d6bd6c3ee 100644 --- a/config/initializers/sanitize.rb +++ b/config/initializers/sanitize.rb @@ -1,8 +1,11 @@ -Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup - -Sanitize::Config::OSM[:elements] -= %w[div style] -Sanitize::Config::OSM[:add_attributes] = { "a" => { "rel" => "nofollow noopener noreferrer" } } -Sanitize::Config::OSM[:remove_contents] = %w[script style] -Sanitize::Config::OSM[:transformers] = lambda do |env| - env[:node].add_class("table table-sm w-auto") if env[:node_name] == "table" -end +Sanitize::Config::OSM = Sanitize::Config.merge( + Sanitize::Config::RELAXED, + :elements => Sanitize::Config::RELAXED[:elements] - %w[div style], + :add_attributes => { "a" => { "rel" => "nofollow noopener noreferrer" } }, + :remove_contents => %w[script style], + :transformers => lambda do |env| + env[:node].remove_class + env[:node].kwattr_remove("style", nil) + env[:node].add_class("table table-sm w-auto") if env[:node_name] == "table" + end +) diff --git a/config/initializers/secure_headers.rb b/config/initializers/secure_headers.rb index daf66bfc7..c97762a37 100644 --- a/config/initializers/secure_headers.rb +++ b/config/initializers/secure_headers.rb @@ -26,11 +26,6 @@ csp_policy[:img_src] << Settings.storage_url if Settings.key?(:storage_url) csp_policy[:report_uri] << Settings.csp_report_url if Settings.key?(:csp_report_url) -cookie_policy = { - :secure => SecureHeaders::OPT_OUT, - :httponly => SecureHeaders::OPT_OUT -} - SecureHeaders::Configuration.default do |config| config.hsts = SecureHeaders::OPT_OUT @@ -44,6 +39,4 @@ SecureHeaders::Configuration.default do |config| config.csp = SecureHeaders::OPT_OUT config.csp_report_only = SecureHeaders::OPT_OUT end - - config.cookies = cookie_policy end diff --git a/config/locales/af.yml b/config/locales/af.yml index 489d9418e..e0bfdfb05 100644 --- a/config/locales/af.yml +++ b/config/locales/af.yml @@ -786,6 +786,7 @@ af: cape: Kaap cave_entrance: Grotingang cliff: Krans + coastline: Kuslyn crater: Krater dune: Duin fell: Heuwel @@ -1182,11 +1183,30 @@ af: changeset_comment_notification: hi: Hallo %{to_user}, greeting: Hallo, + confirmations: + confirm: + heading: Gaan u e-pos na! + introduction_1: Ons het u 'n e-pos ter bevestiging getuur. + introduction_2: Klik op die skakel in die e-pos en bevestig u rekening, dan + sal u kan karteer. + press confirm button: Klik 'bevestig' hieronder om u rekening te aktiveer. + button: Bevestig + success: U rekening is bevestig. Dankie dat u aangeteken het! + already active: Hierdie rekening is reeds bevestig. + unknown token: Die bevestigingskode het reeds verval of bestaan nie. + reconfirm_html: Sou u van ons verlang om weer die e-pos ter bevestiging te stuur, + klik hier. + confirm_resend: + failure: Die gebruiker %{name} is nie gevind nie. + confirm_email: + heading: Bevestig 'n verandering van e-posadres + press confirm button: Klik op die volgende knoppie om u e-posadres te bevestig. + button: Bevestig + success: Die verandering van u e-posadres is bevestig! messages: inbox: title: In-vakkie my_inbox: My in-vakkie - outbox: uit-vakkie from: Van subject: Onderwerp date: Datum @@ -1211,9 +1231,6 @@ af: heading: Geen so 'n boodskap nie outbox: title: Uit-vakkie - my_inbox_html: My %{inbox_link} - inbox: in-vakkie - outbox: uit-vakkie to: Aan subject: Onderwerp date: Datum @@ -1237,6 +1254,64 @@ af: as_unread: Boodskap as ongelees gemerk destroy: destroyed: Boodskap is verwyder + passwords: + lost_password: + title: Wagwoord verloor + heading: Wagwoord vergeet? + email address: 'E-posadres:' + new password button: Herstel wagwoord + notice email cannot find: E-posadres is ongelukkig onverkrygbaar, jammer. + reset_password: + title: Herstel wagwoord + heading: Herstel wagwoord vir %{user} + reset: Herstel wagwoord + flash changed: U wagwoord is verander. + sessions: + new: + title: Meld aan + heading: Meld aan + email or username: 'E-posadres of gebruikersnaam:' + password: 'Wagwoord:' + remember: Onthou my + lost password link: Wagwoord vergeet? + login_button: Meld aan + register now: Registreer nou + with external: 'Gebruik andersins ’n derde party om mee aan te meld:' + no account: Nog nie geregistreer nie? + auth failure: Jammer, kon nie met hierdie inligting aanmeld nie. + openid_logo_alt: Meld aan met 'n OpenID + auth_providers: + openid: + title: Meld aan met OpenID + alt: Meld aan met 'n OpenID-URL + google: + title: Meld aan met Google + alt: Meld aan met 'n Google-OpenID + facebook: + title: Meld aan met Facebook + alt: Meld aan met ’n Facebook-rekening + windowslive: + title: Meld aan met Windows Live + alt: Meld aan met ’n Windows Live-rekening + github: + title: Meld aan met GitHub + alt: Meld aan met ’n GitHub-rekening + wikipedia: + title: Meld aan met Wikipedia + alt: Meld aan met ’n Wikipedia-rekening + yahoo: + title: Meld aan met Yahoo + alt: Meld aan met ’n Yahoo-OpenID + wordpress: + title: Meld aan met Wordpress + alt: Meld aan met ’n Wordpress-OpenID + aol: + title: Meld aan met AOL + alt: Meld aan met ’n AOL-OpenID + destroy: + title: Teken af + heading: Meld van OpenStreetMap af + logout_button: Teken af site: about: next: Volgende @@ -1395,21 +1470,6 @@ af: bicycle_shop: Fietswinkel bicycle_parking: Fietsparkering toilets: Toilette - richtext_area: - edit: Redigeer - preview: Voorskou - markdown_help: - headings: Opskrifte - heading: Opskrif - unordered: Ongeordende lys - ordered: Geordende lys - first: Eerste item - second: Tweede item - link: Skakel - text: Teks - image: Beeld - alt: Alternatiewe teks - url: URL welcome: title: Welkom! basic_terms: @@ -1462,14 +1522,12 @@ af: more: meer trace_details: Wys besonderhede van die spoor view_map: Wys kaart - edit: redigeer edit_map: Redigeer kaart public: OPENBAAR identifiable: IDENTIFISEERBAAR private: PRIVAAT by: deur in: in - map: kaart index: public_traces: Openbare GPS-spore public_traces_from: Openbare GPS-spore van %{user} @@ -1523,62 +1581,6 @@ af: not_found: sorry: Jammer, die %{type} blyk onverkrygbaar te wees. users: - login: - title: Meld aan - heading: Meld aan - email or username: 'E-posadres of gebruikersnaam:' - password: 'Wagwoord:' - remember: Onthou my - lost password link: Wagwoord vergeet? - login_button: Meld aan - register now: Registreer nou - with external: 'Gebruik andersins ’n derde party om mee aan te meld:' - no account: Nog nie geregistreer nie? - auth failure: Jammer, kon nie met hierdie inligting aanmeld nie. - openid_logo_alt: Meld aan met 'n OpenID - auth_providers: - openid: - title: Meld aan met OpenID - alt: Meld aan met 'n OpenID-URL - google: - title: Meld aan met Google - alt: Meld aan met 'n Google-OpenID - facebook: - title: Meld aan met Facebook - alt: Meld aan met ’n Facebook-rekening - windowslive: - title: Meld aan met Windows Live - alt: Meld aan met ’n Windows Live-rekening - github: - title: Meld aan met GitHub - alt: Meld aan met ’n GitHub-rekening - wikipedia: - title: Meld aan met Wikipedia - alt: Meld aan met ’n Wikipedia-rekening - yahoo: - title: Meld aan met Yahoo - alt: Meld aan met ’n Yahoo-OpenID - wordpress: - title: Meld aan met Wordpress - alt: Meld aan met ’n Wordpress-OpenID - aol: - title: Meld aan met AOL - alt: Meld aan met ’n AOL-OpenID - logout: - title: Teken af - heading: Meld van OpenStreetMap af - logout_button: Teken af - lost_password: - title: Wagwoord verloor - heading: Wagwoord vergeet? - email address: 'E-posadres:' - new password button: Herstel wagwoord - notice email cannot find: E-posadres is ongelukkig onverkrygbaar, jammer. - reset_password: - title: Herstel wagwoord - heading: Herstel wagwoord vir %{user} - reset: Herstel wagwoord - flash changed: U wagwoord is verander. new: title: Meld aan about: @@ -1683,25 +1685,6 @@ af: make edits public button: Stel al my redigerings openbaar return to profile: Terug na profiel flash update success: Gebruikersbesonderhede suksesvol bygewerk. - confirm: - heading: Gaan u e-pos na! - introduction_1: Ons het u 'n e-pos ter bevestiging getuur. - introduction_2: Klik op die skakel in die e-pos en bevestig u rekening, dan - sal u kan karteer. - press confirm button: Klik 'bevestig' hieronder om u rekening te aktiveer. - button: Bevestig - success: U rekening is bevestig. Dankie dat u aangeteken het! - already active: Hierdie rekening is reeds bevestig. - unknown token: Die bevestigingskode het reeds verval of bestaan nie. - reconfirm_html: Sou u van ons verlang om weer die e-pos ter bevestiging te stuur, - klik hier. - confirm_resend: - failure: Die gebruiker %{name} is nie gevind nie. - confirm_email: - heading: Bevestig 'n verandering van e-posadres - press confirm button: Klik op die volgende knoppie om u e-posadres te bevestig. - button: Bevestig - success: Die verandering van u e-posadres is bevestig! set_home: flash success: U tuisligging is suksesvol gestoor index: diff --git a/config/locales/aln.yml b/config/locales/aln.yml index 4ac2d6998..28cdf9eb0 100644 --- a/config/locales/aln.yml +++ b/config/locales/aln.yml @@ -443,6 +443,7 @@ aln: cape: Kep cave_entrance: Shpella Hyrja cliff: Shkamb + coastline: Vijë e bregdetit crater: Krater fell: Moqal fjord: Fiord @@ -678,11 +679,24 @@ aln: greeting: Tung, click_the_link: Nëse kjo është që ju, ju lutemi klikoni lidhjen më poshtë për të rivendosni fjalëkalimin tuaj. + confirmations: + confirm: + heading: Konfirmo nje akount te shfrytezuesit + press confirm button: Shtype butonin e konfirmimit ma posht që me mujt me aktivizue + akountin e juej + button: Konfirmo + success: Akounti juaj u konfirmua, ju falemnderit për regjistrim! + confirm_email: + heading: Konfirmo ni ndryshim te email adreses + press confirm button: Truse butonin për konfirmim për me konfirmu email adresën + tone të re. + button: Konfirmo + success: Konfirmo email adresën tone, ju faleminderit për regjistrim! + failure: Ni email adres tashma osht konfirmue me kët token. messages: inbox: title: Inbox my_inbox: postë e mia - outbox: Dalje from: Prej subject: Tema date: Data @@ -710,9 +724,6 @@ aln: body: Me na fal por nuk ka asnjë mesazh me at id. outbox: title: Dalje - my_inbox_html: Im %{inbox_link} - inbox: postë - outbox: Dalje to: Te subject: Titulli date: Data @@ -741,6 +752,39 @@ aln: as_unread: Mesazhi u bo si i palexum destroy: destroyed: Mesazhi u fshi + passwords: + lost_password: + title: T'ka hup fjalkalimi + heading: Ke harrue fjalkalimin? + email address: 'Email Adresa:' + new password button: Ndrysho fjalkalimin + help_text: Shkrueje email adresen që je regjistrue me to, do t'ju deromi një + lidhe rreth ksaj ku ju muni me ndrru fjalkalimin + notice email on way: Na vjen keq që e keni hup :-( po ni email ka me ju ardh + së shpejti edhe muni me ricaktu. + notice email cannot find: Smujtëm me gjet qat email adres, na vjen keq. + reset_password: + title: Ricakto fjalëkalimin + heading: Ricakto fjalëkalimin për %{user} + reset: Ricakto Fjalëkalimin + flash changed: Fjalëkalimi juaj u ndryshua. + flash token bad: Sun e gjetëm qat token, kontrolloje URL? + sessions: + new: + title: Kyçu + heading: Kycu + email or username: 'Email Adresa ose Username:' + password: 'Fjalekalimi:' + remember: 'Kujtom mu:' + lost password link: Keni harru fjalëkalimin tuaj? + login_button: Kyçu + account not active: Na vjen keq, akonti juej nuk asht hala aktiv
Ju lutemi + klikoni në linkun e dërguem në email për me aktivizu akountin tuej. + auth failure: Na vjen keq, smunem me ju kyc me ato detaje. + destroy: + title: Dil + heading: Dil nga OpenStreetMap + logout_button: Dil site: copyright: foreign: @@ -984,7 +1028,6 @@ aln: more: ma shumë trace_details: Kshyri detalet e të dhanave view_map: Kshyre Hartën - edit: ndrysho edit_map: Ndryshoje Harten public: PUBLIKE identifiable: E identifikueshme @@ -992,7 +1035,6 @@ aln: trackable: E GJURMUESHME by: nga in: në - map: harta index: public_traces: Të dhanat publike të GPS-it public_traces_from: Të dhana publike të GPS-it pej %{user} @@ -1069,37 +1111,6 @@ aln: destroy: flash: Shkatërruar kërkesë e klientit regjistrimit users: - login: - title: Kyçu - heading: Kycu - email or username: 'Email Adresa ose Username:' - password: 'Fjalekalimi:' - remember: 'Kujtom mu:' - lost password link: Keni harru fjalëkalimin tuaj? - login_button: Kyçu - account not active: Na vjen keq, akonti juej nuk asht hala aktiv
Ju lutemi - klikoni në linkun e dërguem në email për me aktivizu akountin tuej. - auth failure: Na vjen keq, smunem me ju kyc me ato detaje. - logout: - title: Dil - heading: Dil nga OpenStreetMap - logout_button: Dil - lost_password: - title: T'ka hup fjalkalimi - heading: Ke harrue fjalkalimin? - email address: 'Email Adresa:' - new password button: Ndrysho fjalkalimin - help_text: Shkrueje email adresen që je regjistrue me to, do t'ju deromi një - lidhe rreth ksaj ku ju muni me ndrru fjalkalimin - notice email on way: Na vjen keq që e keni hup :-( po ni email ka me ju ardh - së shpejti edhe muni me ricaktu. - notice email cannot find: Smujtëm me gjet qat email adres, na vjen keq. - reset_password: - title: Ricakto fjalëkalimin - heading: Ricakto fjalëkalimin për %{user} - reset: Ricakto Fjalëkalimin - flash changed: Fjalëkalimi juaj u ndryshua. - flash token bad: Sun e gjetëm qat token, kontrolloje URL? new: title: Krijo akount no_auto_account_create: Për momentin spo mujm me ju kriju akount automatikisht. @@ -1217,19 +1228,6 @@ aln: flash update success confirm needed: Informatat e shfyrtezuesit u ndryshan me sukses. Shihni emailin per konfirmim. flash update success: Informatat e shfrytëzuesit u ndryshuan me sukses. - confirm: - heading: Konfirmo nje akount te shfrytezuesit - press confirm button: Shtype butonin e konfirmimit ma posht që me mujt me aktivizue - akountin e juej - button: Konfirmo - success: Akounti juaj u konfirmua, ju falemnderit për regjistrim! - confirm_email: - heading: Konfirmo ni ndryshim te email adreses - press confirm button: Truse butonin për konfirmim për me konfirmu email adresën - tone të re. - button: Konfirmo - success: Konfirmo email adresën tone, ju faleminderit për regjistrim! - failure: Ni email adres tashma osht konfirmue me kët token. set_home: flash success: Veni i shpis u ruajt me sukses go_public: diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 79c897d82..e061a8fdc 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -30,6 +30,7 @@ # Author: Zpizza # Author: بدارين # Author: ترجمان05 +# Author: حبيشان # Author: ديفيد # Author: زكريا # Author: عباد ديرانية @@ -157,14 +158,18 @@ ar: category: حدد سبب التقرير الخاص بك details: يُرجَى تقديم بعض التفاصيل حول المشكلة (مطلوب). user: + auth_provider: مزود التوثيق + auth_uid: معرف التوثيق UID email: البريد الإلكتروني - new_email: 'عنوان البريد الإلكتروني الجديد:' + email_confirmation: تأكيد البريد الإلكتروني + new_email: عنوان البريد الإلكتروني الجديد active: نشط display_name: عرض الاسم - description: الوصف - home_lat: 'خط العرض:' - home_lon: 'خط الطول:' - languages: اللغات + description: وصف الملف الشخصي + home_lat: خط العرض + home_lon: خط الطول + languages: اللغات المفضلة + preferred_editor: المحرر المفضل pass_crypt: كلمة السر pass_crypt_confirmation: أكد كلمة السر help: @@ -320,6 +325,7 @@ ar: entry_html: العلاقة %{relation_name} entry_role_html: العلاقة %{relation_name} (كــ%{relation_role}) not_found: + title: لم يتم العثور عليه sorry: 'عفوًا، تعذر العثور على %{type} #%{id}.' type: node: عقدة @@ -328,6 +334,7 @@ ar: changeset: حزمة التغييرات note: ملحوظة timeout: + title: خطأ انتهاء الوقت sorry: عذرًا، بيانات %{type} بالمعرّف %{id} استغرقت وقتًا طويلا للاسترداد. type: node: العقدة @@ -429,7 +436,7 @@ ar: new: title: مدخلة يومية جديدة form: - location: 'الموقع:' + location: الموقع use_map_link: استخدم الخريطة index: title: يوميات المستخدمين @@ -460,8 +467,9 @@ ar: أو ربما يكون الرابط الذي نقرت عليه خاطئا. diary_entry: posted_by_html: نُشِر بواسطة %{link_user} في %{created} باللغة %{language_link} + updated_at_html: آخر تحديث في %{updated} comment_link: علق على هذه المدخلة - reply_link: رد على هذه الرسالة + reply_link: أرسل رسالة للكاتب comment_count: zero: لا تعليق one: '%{count} تعليق' @@ -533,6 +541,7 @@ ar: pylon: نقطة تعليق station: محطة قطار هوائي t-bar: مصعد تزلج + "yes": طريق جوي aeroway: aerodrome: المطار airstrip: مهبط طائرات @@ -556,6 +565,7 @@ ar: bicycle_parking: موقف دراجات bicycle_rental: تأجير دراجة biergarten: حديقة البيرة + blood_bank: بنك الدم boat_rental: تأجير قوارب brothel: بيت دعارة bureau_de_change: مكتب صرافة @@ -579,6 +589,7 @@ ar: drinking_water: مياه عذبة driving_school: مدرسة تعليم قيادة embassy: سفارة + events_venue: قاعة مناسبات fast_food: وجبات سريعة ferry_terminal: مرسى عبّارة fire_station: محطة إطفاء @@ -591,11 +602,13 @@ ar: hospital: مستشفى hunting_stand: مربط للصيد ice_cream: مثلجات + internet_cafe: مقهى إنترنت kindergarten: حضانة أطفال language_school: مدرسة لغات library: مكتبة marketplace: سوق monastery: دير + money_transfer: تحويل أموال motorcycle_parking: مرآب دراجات نارية music_school: مدرسة موسيقى nightclub: نادي ليلي @@ -610,6 +623,7 @@ ar: post_office: مكتب بريد prison: سجن pub: حانة + public_bath: حمام عام public_building: مبنى عام recycling: نقطة إعادة تصنيع restaurant: مطعم @@ -638,6 +652,7 @@ ar: census: حدود تعدادية national_park: محمية وطنية protected_area: منطقة محمية + "yes": حدود bridge: aqueduct: قنطرة boardwalk: ممر @@ -647,15 +662,17 @@ ar: "yes": جسر building: apartment: شقة - apartments: مجموعة شقق + apartments: شقق chapel: معبد/مصلى - church: كنيسة + church: مبنى كنيسة + college: مبنى كُلِيَّة commercial: مبنى تجاري + construction: مبنى تحت الإنشاء dormitory: عنبر نوم farm: مبنى مزرعة garage: مرآب hospital: مبنى مستشفى - hotel: فندق + hotel: مبنى فندق house: منزل industrial: مبنى صناعي office: مبنى مكتب @@ -663,10 +680,13 @@ ar: residential: مبنى سكني retail: مبنى بيع بالمفرق school: مبنى مدرسة + stable: إصطبل terrace: صف منازل - train_station: محطة قطار + train_station: مبنى محطة قطار university: مبنى جامعة "yes": مبنى + club: + "yes": نادي craft: brewery: مصنع الجعة carpenter: نجار @@ -872,6 +892,7 @@ ar: cape: خليج cave_entrance: مدخل كهف cliff: جرف + coastline: ساحل crater: فوهة بركان dune: كثيب fell: منحدر @@ -882,12 +903,14 @@ ar: grassland: أرض عشبية heath: أرض بور hill: تلة + hot_spring: نبع حار island: جزيرة land: أرض marsh: سبخة moor: أرض جرداء mud: وحل peak: ذروة + peninsula: شبه جزيرة point: نقطة reef: شعاب ridge: أرض مرتفعة @@ -911,6 +934,7 @@ ar: architect: مهندس معماري association: جمعية company: شركة + diplomatic: مكتب دبلوماسي educational_institution: معهد تعليمي employment_agency: وكالة توظيف estate_agent: سمسار مباني @@ -924,7 +948,7 @@ ar: "yes": مكتب place: allotments: المخصصات - city: مدينة + city: مدينة كبيرة city_block: منطقة سكنية country: دولة county: مقاطعة @@ -946,7 +970,7 @@ ar: state: ولاية subdivision: التقسيم الفرعي suburb: ضاحية - town: بلدة + town: مدينة village: قرية "yes": مكان railway: @@ -1109,7 +1133,7 @@ ar: level10: حدود الضاحية types: cities: مدن - towns: بلدات + towns: مدن places: أماكن results: no_results: لم يتم العثور على نتائج @@ -1351,11 +1375,37 @@ ar: details: يمكن العثور على مزيد من التفاصيل حول مجموعة التغييرات في %{url}. unsubscribe: لإلغاء الاشتراك من التحديثات لهذه التغييرات؛ قم بزيارة %{url} وانقر على "إلغاء الاشتراك". + confirmations: + confirm: + heading: تحقق من بريدك الإلكتروني + introduction_1: أرسلنا لك رسالة تأكيد بالبريد الإلكتروني. + introduction_2: أكد حسابك عن طريق النقر على الرابط في البريد الإلكتروني وستكون + قادرا على البدء في رسم الخرائط. + press confirm button: اضغط على زر التأكيد أدناه لتنشيط حسابك. + button: تأكيد + success: تم تأكيد حسابك، شكرًا للاشتراك! + already active: هذا الحساب سبق أن تم تأكيده. + unknown token: رمز التأكيد انتهت صلاحيته أو غير موجود. + reconfirm_html: إذا كنت في حاجة لإعادة إرسال تأكيد البريد الإلكتروني، انقر + هنا. + confirm_resend: + success_html: لقد أرسلنا رسالة تأكيد جديدة إلى %{email} وبمجرد تأكيد حسابك ستتمكن + من رسم الخرائط.

إذا كنت تستخدم نظاما مضادا للبريد العشوائي يرسل + طلبات تأكيد، فيُرجَى التأكد من أنك وضعت في القائمة البيضاء %{sender} لأننا + غير قادرين على الرد على أي طلبات تأكيد. + failure: المستخدم %{name} غير موجود. + confirm_email: + heading: أكد تغيير عنوان البريد الإلكتروني + press confirm button: اضغط على زر تأكيد أدناه لتأكيد عنوان بريدك الإلكتروني + الجديد. + button: تأكيد + success: تم تأكيد عنوان بريدك الإلكتروني! + failure: عنوان بريد إلكتروني تم تفعيله مسبقًا بهذا الرمز. + unknown_token: رمز التأكيد انتهت صلاحيته أو غير موجود. messages: inbox: title: الوارد my_inbox: الوارد - outbox: الصادر messages: لديك %{new_messages} و%{old_messages} new_messages: one: '%{count} رسالة جديدة' @@ -1389,9 +1439,6 @@ ar: body: عذرًا لا توجد رسالة بذلك المعرف. outbox: title: صندوق الصادر - my_inbox_html: '%{inbox_link} الخاص بي' - inbox: صندوق الوارد - outbox: صندوق الصادر messages: one: لديك %{count} رسالة مبعوثة other: لديك %{count} رسائل مبعوثة @@ -1423,6 +1470,81 @@ ar: as_unread: عُلِّمت الرسالة كغير مقروءة destroy: destroyed: حُذِفت الرسالة + passwords: + lost_password: + title: نسيان كلمة السر + heading: أنسيت كلمة السر؟ + email address: 'عنوان البريد الإلكتروني:' + new password button: أعد ضبط كلمة السر + help_text: أدخل عنوان البريد الإلكتروني الذي استخدمته للتسجيل، وسوف نرسل عليه + رابطا يمكنك استخدامه لإعادة تعيين كلمة المرور. + notice email on way: نأسف لأنك أضعتها :-( ولكن هناك رسالة إلكترونية في طريقها + إليك ستمكنك من إعادة تعيينها قريبًا. + notice email cannot find: معذرةً، تعذر إيجاد عنوان البريد الإلكتروني. + reset_password: + title: إعادة ضبط كلمة السر + heading: إعادة تعيين كلمة السر %{user} + reset: أعد ضبط كلمة السر + flash changed: كلمة مرورك قد تغيرت. + flash token bad: لم نجد هذا النموذج، تحقق من المسار ربما؟ + sessions: + new: + title: تسجيل الدخول + heading: تسجيل الدخول + email or username: 'عنوان البريد الإلكتروني أو اسم المستخدم:' + password: 'كلمة السر:' + openid_html: '%{logo} الهوية المفتوحة:' + remember: 'تذكرني:' + lost password link: أنسيت كلمة المرور؟ + login_button: تسجيل الدخول + register now: سجل حسابًا الآن + with username: 'هل لديك بالفعل حساب خريطة الشارع المفتوحة؟ الرجاء الدخول باسم + المستخدم وكلمة المرور الخاصين بك:' + with external: 'بدلا من ذلك، استخدم طرفا ثالثا لتسجيل الدخول:' + new to osm: جديد في خريطة الشارع المفتوحة؟ + to make changes: لإجراء تغييرات على بيانات خريطة الشارع المفتوحة; يجب أن يكون + لديك حساب. + create account minute: انشئ حسابا، إنها تستغرق دقيقة واحدة فقط. + no account: ليس لديك حسابا؟ + account not active: عذراً، حسابك غير نشط حتى الآن.
يُرجَى إستخدام الرابط + الذي اُرسِلَ إليك فى رسالة تأكيد البريد الإلكتروني، كما يمكنك + طلب رسالة تأكيد جديدة فى حالة عدم استلام الاولى. + account is suspended: عذرا، تم تعليق حسابك بسبب نشاط مشبوه.
يُرجَى الاتصال + بwebmaster إذا كنت ترغب في مناقشة هذا. + auth failure: آسف، لا يمكن الدخول بتلك التفاصيل. + openid_logo_alt: تسجيل الدخول بOpenID + auth_providers: + openid: + title: تسجيل الدخول بOpenID + alt: تسجيل الدخول باستخدام مسار OpenID + google: + title: تسجيل الدخول باستخدام جوجل + alt: تسجيل الدخول ب Google OpenID + facebook: + title: تسجيل الدخول باستخدام فيس بوك + alt: تسجيل الدخول بحساب فيسبوك + windowslive: + title: تسجيل الدخول عبر ويندوز لايف + alt: تسجيل الدخول بحساب ويندوز لايف + github: + title: تسجيل الدخول بجيثب + alt: تسجيل الدخول باستخدام حساب جيثب + wikipedia: + title: تسجيل الدخول عبر ويكيبيديا + alt: سجل الدخول باستخدام حساب ويكيبيديا + yahoo: + title: تسجيل الدخول بياهو + alt: تسجيل الدخول بـYahoo OpenID + wordpress: + title: تسجيل الدخول بووردبريس + alt: تسجيل الدخول بـWordpress OpenID + aol: + title: تسجيل الدخول بإيه أو إل + alt: تسجيل الدخول بـAOL OpenID + destroy: + title: تسجيل الخروج + heading: الخروج من خريطة الشارع المفتوحة + logout_button: تسجيل الخروج shared: markdown_help: unordered: قائمة غير مرتبة @@ -1814,23 +1936,6 @@ ar: bicycle_shop: متجر دراجات bicycle_parking: مرآب دراجات toilets: مرحاض - richtext_area: - edit: تعديل - preview: شاهد - markdown_help: - title_html: تم التحليل بواسطة href="https://kramdown.gettalong.org/quickref.html">kramdown - headings: عناوين - heading: عنوان - subheading: عنوان فرعي - unordered: قائمة غير مرتبة - ordered: قائمة مرتبة - first: البند الأول - second: البند الثاني - link: الوصلة - text: النص - image: الصورة - alt: النص البديل - url: المسار welcome: title: مرحبا! introduction_html: مرحبًا بك في OpenStreetMap ، خريطة حرة وقابلة للتعديل بواسطة @@ -1942,7 +2047,6 @@ ar: more: المزيد trace_details: اعرض تفاصيل الأثر view_map: اعرض الخريطة - edit: تعديل edit_map: عدّل الخريطة public: عام identifiable: محدد الهوية @@ -1950,7 +2054,6 @@ ar: trackable: تعقبي by: مِن قِبَل in: في - map: خريطة index: public_traces: آثار جي بي إس عمومية my_traces: أثري في GPS @@ -2059,79 +2162,6 @@ ar: destroy: flash: دُمِّر تسجيل تطبيق العميل users: - login: - title: تسجيل الدخول - heading: تسجيل الدخول - email or username: 'عنوان البريد الإلكتروني أو اسم المستخدم:' - password: 'كلمة السر:' - openid_html: '%{logo} الهوية المفتوحة:' - remember: 'تذكرني:' - lost password link: أنسيت كلمة المرور؟ - login_button: تسجيل الدخول - register now: سجل حسابًا الآن - with username: 'هل لديك بالفعل حساب خريطة الشارع المفتوحة؟ الرجاء الدخول باسم - المستخدم وكلمة المرور الخاصين بك:' - with external: 'بدلا من ذلك، استخدم طرفا ثالثا لتسجيل الدخول:' - new to osm: جديد في خريطة الشارع المفتوحة؟ - to make changes: لإجراء تغييرات على بيانات خريطة الشارع المفتوحة; يجب أن يكون - لديك حساب. - create account minute: انشئ حسابا، إنها تستغرق دقيقة واحدة فقط. - no account: ليس لديك حسابا؟ - account not active: عذراً، حسابك غير نشط حتى الآن.
يُرجَى إستخدام الرابط - الذي اُرسِلَ إليك فى رسالة تأكيد البريد الإلكتروني، كما يمكنك - طلب رسالة تأكيد جديدة فى حالة عدم استلام الاولى. - account is suspended: عذرا، تم تعليق حسابك بسبب نشاط مشبوه.
يُرجَى الاتصال - بwebmaster إذا كنت ترغب في مناقشة هذا. - auth failure: آسف، لا يمكن الدخول بتلك التفاصيل. - openid_logo_alt: تسجيل الدخول بOpenID - auth_providers: - openid: - title: تسجيل الدخول بOpenID - alt: تسجيل الدخول باستخدام مسار OpenID - google: - title: تسجيل الدخول باستخدام جوجل - alt: تسجيل الدخول ب Google OpenID - facebook: - title: تسجيل الدخول باستخدام فيس بوك - alt: تسجيل الدخول بحساب فيسبوك - windowslive: - title: تسجيل الدخول عبر ويندوز لايف - alt: تسجيل الدخول بحساب ويندوز لايف - github: - title: تسجيل الدخول بجيثب - alt: تسجيل الدخول باستخدام حساب جيثب - wikipedia: - title: تسجيل الدخول عبر ويكيبيديا - alt: سجل الدخول باستخدام حساب ويكيبيديا - yahoo: - title: تسجيل الدخول بياهو - alt: تسجيل الدخول بـYahoo OpenID - wordpress: - title: تسجيل الدخول بووردبريس - alt: تسجيل الدخول بـWordpress OpenID - aol: - title: تسجيل الدخول بإيه أو إل - alt: تسجيل الدخول بـAOL OpenID - logout: - title: تسجيل الخروج - heading: الخروج من خريطة الشارع المفتوحة - logout_button: تسجيل الخروج - lost_password: - title: نسيان كلمة السر - heading: أنسيت كلمة السر؟ - email address: 'عنوان البريد الإلكتروني:' - new password button: أعد ضبط كلمة السر - help_text: أدخل عنوان البريد الإلكتروني الذي استخدمته للتسجيل، وسوف نرسل عليه - رابطا يمكنك استخدامه لإعادة تعيين كلمة المرور. - notice email on way: نأسف لأنك أضعتها :-( ولكن هناك رسالة إلكترونية في طريقها - إليك ستمكنك من إعادة تعيينها قريبًا. - notice email cannot find: معذرةً، تعذر إيجاد عنوان البريد الإلكتروني. - reset_password: - title: إعادة ضبط كلمة السر - heading: إعادة تعيين كلمة السر %{user} - reset: أعد ضبط كلمة السر - flash changed: كلمة مرورك قد تغيرت. - flash token bad: لم نجد هذا النموذج، تحقق من المسار ربما؟ new: title: أنشئ حسابا no_auto_account_create: للأسف نحن غير قادرين في الوقت الحالي على إنشاء حساب @@ -2313,32 +2343,6 @@ ar: flash update success confirm needed: تم تحديث معلومات المستخدم بنجاح، تحقق من بريدك الإلكتروني لملاحظة تأكيد العنوان الإلكتروني الجديد. flash update success: تم تحديث معلومات المستخدم بنجاح. - confirm: - heading: تحقق من بريدك الإلكتروني - introduction_1: أرسلنا لك رسالة تأكيد بالبريد الإلكتروني. - introduction_2: أكد حسابك عن طريق النقر على الرابط في البريد الإلكتروني وستكون - قادرا على البدء في رسم الخرائط. - press confirm button: اضغط على زر التأكيد أدناه لتنشيط حسابك. - button: تأكيد - success: تم تأكيد حسابك، شكرًا للاشتراك! - already active: هذا الحساب سبق أن تم تأكيده. - unknown token: رمز التأكيد انتهت صلاحيته أو غير موجود. - reconfirm_html: إذا كنت في حاجة لإعادة إرسال تأكيد البريد الإلكتروني، انقر - هنا. - confirm_resend: - success_html: لقد أرسلنا رسالة تأكيد جديدة إلى %{email} وبمجرد تأكيد حسابك ستتمكن - من رسم الخرائط.

إذا كنت تستخدم نظاما مضادا للبريد العشوائي يرسل - طلبات تأكيد، فيُرجَى التأكد من أنك وضعت في القائمة البيضاء %{sender} لأننا - غير قادرين على الرد على أي طلبات تأكيد. - failure: المستخدم %{name} غير موجود. - confirm_email: - heading: أكد تغيير عنوان البريد الإلكتروني - press confirm button: اضغط على زر تأكيد أدناه لتأكيد عنوان بريدك الإلكتروني - الجديد. - button: تأكيد - success: تم تأكيد عنوان بريدك الإلكتروني! - failure: عنوان بريد إلكتروني تم تفعيله مسبقًا بهذا الرمز. - unknown_token: رمز التأكيد انتهت صلاحيته أو غير موجود. set_home: flash success: موقع المنزل حُفِظ بنجاح go_public: diff --git a/config/locales/arz.yml b/config/locales/arz.yml index 7e7bacab3..b98a93917 100644 --- a/config/locales/arz.yml +++ b/config/locales/arz.yml @@ -407,6 +407,7 @@ arz: cape: رأس (أرض داخله فى البحر( cave_entrance: مدخل كهف cliff: جرف + coastline: خط ساحلي crater: فوهه بركان fell: منحدر fjord: مضيق بحري @@ -619,11 +620,23 @@ arz: greeting: مرحبًا، click_the_link: إذا كان هذا هو أنت، يرجى الضغط على الرابط أدناه لإعاده تعيين كلمه المرور. + confirmations: + confirm: + heading: راجع ايميلك! + press confirm button: اضغط على زر التأكيد أدناه لتنشيط حسابك. + button: أكّد + success: تم تأكيد حسابك، شكرًا للاشتراك! + confirm_email: + heading: أكّد تغيير عنوان البريد الإلكتروني + press confirm button: اضغط على زر تأكيد أدناه لتأكيد عنوان بريدك الإلكترونى + الجديد. + button: أكّد + success: تم تأكيد تغيير عنوان بريدك الإلكترونى! + failure: عنوان بريد إلكترونى تم تفعيله مسبقًا بهذه البيانات. messages: inbox: title: الوارد my_inbox: الوارد - outbox: الصادر from: من subject: الموضوع date: التاريخ @@ -647,9 +660,6 @@ arz: قبل أن تحاول إرسال المزيد. outbox: title: صندوق الصادر - my_inbox_html: رابطى %{inbox_link} - inbox: صندوق البريد الوارد - outbox: الصادر to: إلى subject: الموضوع date: التاريخ @@ -671,6 +681,34 @@ arz: as_unread: عُلّمت الرساله كغير مقروءة destroy: destroyed: حُذفت الرسالة + passwords: + lost_password: + title: نسيان كلمه المرور + heading: أنسيت كلمه المرور؟ + email address: 'عنوان البريد الإلكتروني:' + new password button: إعاده ضبط كلمه المرور + help_text: أدخل عنوان البريد الإلكترونى الذى استخدمته للتسجيل ، وسوف نرسل عليه + رابط يمكنك استخدامه لإعاده تعيين كلمه المرور. + notice email on way: نأسف لأنك أضعتها :-( ولكن هناك رساله إلكترونيه فى طريقها + إليك ستمكنك من إعاده تعيينها قريبًا. + notice email cannot find: تعذّر إيجاد عنوان البريد الإلكترونى، نحن آسفون. + reset_password: + title: إعاده ضبط كلمه المرور + heading: إعاده تعيين كلمه المرور %{user} + reset: إعاده ضبط كلمه المرور + flash changed: كلمه المرور الخاصه بك قد تغيرت. + flash token bad: لم تجد تلك المعلومات، تحقق من الرابط ربما؟ + sessions: + new: + title: ولوج + heading: ولوج + email or username: 'عنوان البريد الإلكترونى أو اسم المستخدم:' + password: 'كلمه المرور:' + lost password link: أنسيت كلمه المرور؟ + login_button: لُج + account not active: عذرًا، حسابك غير نشط بعد.
يرجى النقر على الرابط فى + تأكيد حساب البريد الإلكترونى لتنشيط حسابك. + auth failure: آسف، لا يمكن الدخول بتلك التفاصيل. site: index: js_1: أنت إما تستخدم متصفح لا يدعم جافا سكريبت، أو أنك عطلت استعمال جافا سكريبت. @@ -813,13 +851,11 @@ arz: more: المزيد trace_details: اعرض تفاصيل الأثر view_map: اعرض الخريطة - edit: عدّل edit_map: عدّل الخريطة public: عام private: خاص by: بواسطة in: في - map: خريطة index: public_traces: آثار جى بى إس عمومية public_traces_from: آثار جى بى إس عموميه من %{user} @@ -888,32 +924,6 @@ arz: destroy: flash: دمّر تسجيل التطبيق users: - login: - title: ولوج - heading: ولوج - email or username: 'عنوان البريد الإلكترونى أو اسم المستخدم:' - password: 'كلمه المرور:' - lost password link: أنسيت كلمه المرور؟ - login_button: لُج - account not active: عذرًا، حسابك غير نشط بعد.
يرجى النقر على الرابط فى - تأكيد حساب البريد الإلكترونى لتنشيط حسابك. - auth failure: آسف، لا يمكن الدخول بتلك التفاصيل. - lost_password: - title: نسيان كلمه المرور - heading: أنسيت كلمه المرور؟ - email address: 'عنوان البريد الإلكتروني:' - new password button: إعاده ضبط كلمه المرور - help_text: أدخل عنوان البريد الإلكترونى الذى استخدمته للتسجيل ، وسوف نرسل عليه - رابط يمكنك استخدامه لإعاده تعيين كلمه المرور. - notice email on way: نأسف لأنك أضعتها :-( ولكن هناك رساله إلكترونيه فى طريقها - إليك ستمكنك من إعاده تعيينها قريبًا. - notice email cannot find: تعذّر إيجاد عنوان البريد الإلكترونى، نحن آسفون. - reset_password: - title: إعاده ضبط كلمه المرور - heading: إعاده تعيين كلمه المرور %{user} - reset: إعاده ضبط كلمه المرور - flash changed: كلمه المرور الخاصه بك قد تغيرت. - flash token bad: لم تجد تلك المعلومات، تحقق من الرابط ربما؟ new: title: اعمل حساب no_auto_account_create: للأسف نحن غير قادرين فى الوقت الحالى على إنشاء حساب @@ -1006,18 +1016,6 @@ arz: flash update success confirm needed: تم تحديث معلومات المستخدم بنجاح. تحقق من بريدك الإلكترونى لمذكره تأكيد العنوان الإلكترونى الجديد. flash update success: تم تحديث معلومات المستخدم بنجاح. - confirm: - heading: راجع ايميلك! - press confirm button: اضغط على زر التأكيد أدناه لتنشيط حسابك. - button: أكّد - success: تم تأكيد حسابك، شكرًا للاشتراك! - confirm_email: - heading: أكّد تغيير عنوان البريد الإلكتروني - press confirm button: اضغط على زر تأكيد أدناه لتأكيد عنوان بريدك الإلكترونى - الجديد. - button: أكّد - success: تم تأكيد تغيير عنوان بريدك الإلكترونى! - failure: عنوان بريد إلكترونى تم تفعيله مسبقًا بهذه البيانات. set_home: flash success: موقع المنزل حُفظ بنجاح go_public: diff --git a/config/locales/ast.yml b/config/locales/ast.yml index 940b5c1fa..30f084a7a 100644 --- a/config/locales/ast.yml +++ b/config/locales/ast.yml @@ -4,6 +4,7 @@ # Author: Enolp # Author: Fitoschido # Author: Macofe +# Author: Tokvo # Author: TomH # Author: Xuacu --- @@ -94,15 +95,15 @@ ast: trace: user: Usuariu visible: Visible - name: Nome + name: Nome del ficheru size: Tamañu latitude: Llatitú longitude: Llonxitú public: Públicu description: Descripción - gpx_file: 'Xubir un ficheru GPX:' - visibility: 'Visibilidá:' - tagstring: 'Etiquetes:' + gpx_file: Xubir un ficheru GPX + visibility: Visibilidá + tagstring: Etiquetes message: sender: Remitente title: Asuntu @@ -114,13 +115,13 @@ ast: details: Por favor, apurre más detalles sobro'l problema (obligatoriu). user: email: Corréu - new_email: 'Nueva direición de corréu electrónicu:' + new_email: Nueva direición de corréu electrónicu active: Activu display_name: Nome a amosar description: Descripción - home_lat: 'Llatitú:' - home_lon: 'Llonxitú:' - languages: Llingües + home_lat: Llatitú + home_lon: Llonxitú + languages: Llingües preferíes pass_crypt: Contraseña help: trace: @@ -176,7 +177,7 @@ ast: description: iD (editor nel navegador) remote: name: Control remotu - description: Control remotu (JOSM o Merkaartor) + description: Control remotu (JOSM, Potlatch, Merkaartor) auth: providers: none: Nengunu @@ -380,7 +381,7 @@ ast: new: title: Nueva entrada del diariu form: - location: 'Allugamientu:' + location: Allugamientu use_map_link: usar mapa index: title: Diarios d'usuarios @@ -412,7 +413,7 @@ ast: diary_entry: posted_by_html: Unviáu por %{link_user} el %{created} en %{language_link} comment_link: Comentar esta entrada - reply_link: Responder a esta entrada + reply_link: Unviar un mensaxe al autor comment_count: zero: Ensin comentarios one: '%{count} comentariu' @@ -816,6 +817,7 @@ ast: cape: Cabu cave_entrance: Boca de cueva cliff: Cantil + coastline: Llinia de costa crater: Cráter dune: Duna fell: Braña @@ -1300,11 +1302,39 @@ ast: details: Puen alcontrase más detalles del conxuntu de cambios en %{url} unsubscribe: Pa date de baxa de les actualizaciones d'esti conxuntu de cambeos, visita %{url} y fai clic en «dase de baxa». + confirmations: + confirm: + heading: ¡Revisa el corréu! + introduction_1: Unviamoste un corréu de confirmación. + introduction_2: Confirma la cuenta calcando nel enllaz del corréu y podrás ponete + a editar los mapes. + press confirm button: Calca nel botón de confirmación d'abaxo p'activar la to + cuenta. + button: Confirmar + success: Cuenta confirmada, ¡gracies por rexistrate! + already active: Esta cuenta yá se confirmó. + unknown token: El códigu de confirmación caducó o nun esiste. + reconfirm_html: Si necesites que volvamos a unviate'l corréu de confirmación, + calca equí. + confirm_resend: + success_html: Venimos d'unviar un nuevu corréu de confirmación a %{email} y + darréu de confirmar la to cuenta tarás preparáu pa mapear.

Si + uses un sistema escontra'l corréu puxarra qu'unvia solicitúes de confirmación, + asegúrate d'amestar %{sender} na llista blanca de remitentes seguros, porque + nós nun podemos responder solicitúes de confirmación. + failure: Nun s'alcontró l'usuariu %{name}. + confirm_email: + heading: Confirmar el cambiu de direición de corréu electrónicu + press confirm button: Calca nel botón de confirmación qu'apaez abaxo pa confirmar + la to direición de corréu nueva. + button: Confirmar + success: ¡Confirmóse'l to cambiu de direición de corréu electrónicu! + failure: Yá se confirmó una direición de corréu electrónicu con esti token. + unknown_token: El códigu de confirmación caducó o nun esiste. messages: inbox: title: Buzón my_inbox: El mio buzón - outbox: buzón de salida messages: Tienes %{new_messages} y %{old_messages} new_messages: one: '%{count} mensaxe nuevu' @@ -1339,9 +1369,6 @@ ast: body: Nun hai dengún mensaxe con esa id. outbox: title: Buzón de salida - my_inbox_html: El mio %{inbox_link} - inbox: buzón - outbox: buzón de salida messages: one: Tienes %{count} mensaxe unviáu other: Tienes %{count} mensaxes unviaos @@ -1373,6 +1400,81 @@ ast: as_unread: Mensaxe marcáu como non lleíu destroy: destroyed: Mensaxe desaniciáu + passwords: + lost_password: + title: Contraseña perdida + heading: ¿Escaecisti la contraseña? + email address: 'Direición de corréu electrónicu:' + new password button: Reestablecer contraseña + help_text: Escribi les señes de corréu qu'usasti pa date d'alta, unviarémoste + un enllaz que pues usar pa reestablecer la contraseña. + notice email on way: Sentimos que la perdieres :-( pero hai un corréu en camín + pa que puedas reaniciala ceo. + notice email cannot find: Nun s'alcontró esa direición de corréu. + reset_password: + title: Reestablecer contraseña + heading: Reestablecer la contraseña de %{user} + reset: Reaniciar contraseña + flash changed: Cambióse la contraseña + flash token bad: Nun s'alcontró esi token, ¿tendríes de comprobar la URL, seique? + sessions: + new: + title: Entrar + heading: Entrar + email or username: 'Direición de corréu o nome d''usuariu:' + password: 'Contraseña:' + openid_html: '%{logo} OpenID:' + remember: 'Recordame:' + lost password link: ¿Perdisti la contraseña? + login_button: Entrar + register now: Rexistrate agora + with username: '¿Yá tienes cuenta n''OpenStreetMap? Anicia sesión col to nome + d''usuariu y contraseña:' + with external: 'Alternativamente, usa un terceru p''aniciar sesión:' + new to osm: ¿Yes nuevu con OpenStreetMap? + to make changes: Pa camudar los datos d'OpenStreetMap, has de tener una cuenta. + create account minute: Crea una cuenta. Lleva namái un minutu. + no account: ¿Nun tienes una cuenta? + account not active: Sentímoslo, la to cuenta inda nun ta activada.
Usa + l'enllaz del corréu de confirmación de la cuenta p'activala o pidi + otru corréu de confirmación. + account is suspended: Sentímoslo, la to cuenta ta torgada a causa d'actividaes + sospechoses.
Ponte en contautu col webmaster + si quies discutilo. + auth failure: Sentímoslo, nun se pudo coneutar al sistema con esos datos. + openid_logo_alt: Coneutar con una OpenID + auth_providers: + openid: + title: Aniciar sesión con OpenID + alt: Aniciar sesión con una URL d'OpenID + google: + title: Aniciar sesión con Google + alt: Aniciar sesión con una OpenID de Google + facebook: + title: Anicia sesión con Facebook + alt: Anicia sesión con una cuenta de Facebook + windowslive: + title: Anicia sesión con Windows Live + alt: Anicia sesión con una cuenta de Windows Live + github: + title: Aniciar sesión con GitHub + alt: Aniciar sesión con una cuenta de GitHub + wikipedia: + title: Aniciar sesión con Wikipedia + alt: Aniciar sesión con una cuenta de Wikipedia + yahoo: + title: Aniciar sesión con Yahoo + alt: Aniciar sesión con una OpenID de Yahoo + wordpress: + title: Aniciar sesión con Wordpress + alt: Aniciar sesión con una OpenID de Wordpress + aol: + title: Aniciar sesión con AOL + alt: Aniciar sesión con una OpenID de AOL + destroy: + title: Salir + heading: Colar d'OpenStreetMap + logout_button: Salir site: about: next: Siguiente @@ -1751,23 +1853,6 @@ ast: bicycle_shop: Tienda de bicicletes bicycle_parking: Aparcamientu de bicicletes toilets: Servicios - richtext_area: - edit: Editar - preview: Vista previa - markdown_help: - title_html: Analizáu con kramdown - headings: Cabeceres - heading: Cabecera - subheading: Cabecera secundaria - unordered: Llista ensin ordenar - ordered: Llista ordenada - first: Primer elementu - second: Segundu elementu - link: Enllaz - text: Testu - image: Imaxe - alt: Testu alternativu - url: URL welcome: title: ¡Afáyate! introduction_html: |- @@ -1886,7 +1971,6 @@ ast: more: más trace_details: Amosar detalles de la traza view_map: Ver el Mapa - edit: editar edit_map: Editar el Mapa public: PÚBLICU identifiable: IDENTIFICABLE @@ -1894,7 +1978,6 @@ ast: trackable: RASTREABLE by: por in: en - map: mapa index: public_traces: Traces GPS públiques my_traces: Les mios traces GPS @@ -2008,79 +2091,6 @@ ast: destroy: flash: Se destruyó'l rexistru de l'aplicación cliente users: - login: - title: Entrar - heading: Entrar - email or username: 'Direición de corréu o nome d''usuariu:' - password: 'Contraseña:' - openid_html: '%{logo} OpenID:' - remember: 'Recordame:' - lost password link: ¿Perdisti la contraseña? - login_button: Entrar - register now: Rexistrate agora - with username: '¿Yá tienes cuenta n''OpenStreetMap? Anicia sesión col to nome - d''usuariu y contraseña:' - with external: 'Alternativamente, usa un terceru p''aniciar sesión:' - new to osm: ¿Yes nuevu con OpenStreetMap? - to make changes: Pa camudar los datos d'OpenStreetMap, has de tener una cuenta. - create account minute: Crea una cuenta. Lleva namái un minutu. - no account: ¿Nun tienes una cuenta? - account not active: Sentímoslo, la to cuenta inda nun ta activada.
Usa - l'enllaz del corréu de confirmación de la cuenta p'activala o pidi - otru corréu de confirmación. - account is suspended: Sentímoslo, la to cuenta ta torgada a causa d'actividaes - sospechoses.
Ponte en contautu col webmaster - si quies discutilo. - auth failure: Sentímoslo, nun se pudo coneutar al sistema con esos datos. - openid_logo_alt: Coneutar con una OpenID - auth_providers: - openid: - title: Aniciar sesión con OpenID - alt: Aniciar sesión con una URL d'OpenID - google: - title: Aniciar sesión con Google - alt: Aniciar sesión con una OpenID de Google - facebook: - title: Anicia sesión con Facebook - alt: Anicia sesión con una cuenta de Facebook - windowslive: - title: Anicia sesión con Windows Live - alt: Anicia sesión con una cuenta de Windows Live - github: - title: Aniciar sesión con GitHub - alt: Aniciar sesión con una cuenta de GitHub - wikipedia: - title: Aniciar sesión con Wikipedia - alt: Aniciar sesión con una cuenta de Wikipedia - yahoo: - title: Aniciar sesión con Yahoo - alt: Aniciar sesión con una OpenID de Yahoo - wordpress: - title: Aniciar sesión con Wordpress - alt: Aniciar sesión con una OpenID de Wordpress - aol: - title: Aniciar sesión con AOL - alt: Aniciar sesión con una OpenID de AOL - logout: - title: Salir - heading: Colar d'OpenStreetMap - logout_button: Salir - lost_password: - title: Contraseña perdida - heading: ¿Escaecisti la contraseña? - email address: 'Direición de corréu electrónicu:' - new password button: Reestablecer contraseña - help_text: Escribi les señes de corréu qu'usasti pa date d'alta, unviarémoste - un enllaz que pues usar pa reestablecer la contraseña. - notice email on way: Sentimos que la perdieres :-( pero hai un corréu en camín - pa que puedas reaniciala ceo. - notice email cannot find: Nun s'alcontró esa direición de corréu. - reset_password: - title: Reestablecer contraseña - heading: Reestablecer la contraseña de %{user} - reset: Reaniciar contraseña - flash changed: Cambióse la contraseña - flash token bad: Nun s'alcontró esi token, ¿tendríes de comprobar la URL, seique? new: title: Date d'alta no_auto_account_create: Por desgracia anguaño nun podemos crear una cuenta por @@ -2214,13 +2224,13 @@ ast: account: title: Editar la cuenta my settings: Les mios preferencies - current email address: 'Direición de corréu electrónicu actual:' - external auth: 'Autenticación esterna:' + current email address: Direición de corréu electrónicu actual + external auth: Autenticación esterna openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: ¿qué ye esto? public editing: - heading: 'Ediciones públiques:' + heading: Ediciones públiques enabled: Activaes. Nun yes anónimu y puedes editar los datos. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: ¿qué ye esto? @@ -2247,7 +2257,7 @@ ast: al Dominiu Públicu. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: ¿qué ye esto? - image: 'Imaxe:' + image: Imaxe gravatar: gravatar: Usar Gravatar link: http://wiki.openstreetmap.org/wiki/Gravatar @@ -2268,34 +2278,6 @@ ast: Nel to corréu electrónicu alcontrarás una nota pa confirmar la to nueva direición de corréu. flash update success: La información del usuariu s'anovó correutamente. - confirm: - heading: ¡Revisa el corréu! - introduction_1: Unviamoste un corréu de confirmación. - introduction_2: Confirma la cuenta calcando nel enllaz del corréu y podrás ponete - a editar los mapes. - press confirm button: Calca nel botón de confirmación d'abaxo p'activar la to - cuenta. - button: Confirmar - success: Cuenta confirmada, ¡gracies por rexistrate! - already active: Esta cuenta yá se confirmó. - unknown token: El códigu de confirmación caducó o nun esiste. - reconfirm_html: Si necesites que volvamos a unviate'l corréu de confirmación, - calca equí. - confirm_resend: - success_html: Venimos d'unviar un nuevu corréu de confirmación a %{email} y - darréu de confirmar la to cuenta tarás preparáu pa mapear.

Si - uses un sistema escontra'l corréu puxarra qu'unvia solicitúes de confirmación, - asegúrate d'amestar %{sender} na llista blanca de remitentes seguros, porque - nós nun podemos responder solicitúes de confirmación. - failure: Nun s'alcontró l'usuariu %{name}. - confirm_email: - heading: Confirmar el cambiu de direición de corréu electrónicu - press confirm button: Calca nel botón de confirmación qu'apaez abaxo pa confirmar - la to direición de corréu nueva. - button: Confirmar - success: ¡Confirmóse'l to cambiu de direición de corréu electrónicu! - failure: Yá se confirmó una direición de corréu electrónicu con esti token. - unknown_token: El códigu de confirmación caducó o nun esiste. set_home: flash success: Llocalización d'aniciu guardada correutamente go_public: diff --git a/config/locales/az.yml b/config/locales/az.yml index 22e93a5eb..d80671585 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -843,11 +843,17 @@ az: greeting: Salam, click_the_link: Əgər bu sizsinizsə, zəhmət olmasa, parolunuzu əvəzləmək üçün aşağı göstərilmiş istinaddakı ünvana keçin. + confirmations: + confirm: + button: Təsdiq et + confirm_resend: + failure: İstifadəçi %{name} tapılmadı. + confirm_email: + button: Təsdiq et messages: inbox: title: Gələnlər my_inbox: Mənim gələnlər - outbox: göndərilənlər messages: 'Sizin varınızdır: %{new_messages} və %{old_messages}.' new_messages: one: '%{count} yeni mesaj' @@ -882,9 +888,6 @@ az: body: Bağışlayın, amma belə ID ilə mesaj yoxdur. outbox: title: Göndərilənlər - my_inbox_html: Mənim %{inbox_link} - inbox: gələnlər - outbox: göndərilənlər to: Kimə subject: Mövzu date: Tarix @@ -904,6 +907,33 @@ az: as_unread: Mesaj oxunulmamış kimi işarələndi destroy: destroyed: Mesaj silindi + passwords: + lost_password: + title: İtirilmiş parol + heading: Parolu unutmusan? + email address: 'E-poçt ünvanları:' + new password button: Parolu yenilə + reset_password: + title: Parolu yenilə + heading: '%{user} üçün parolu yenilə' + reset: Parolu Yenilə + flash changed: Parolun indi dəyişildi. + sessions: + new: + title: Daxil olun + heading: Daxil olun + password: 'Parol:' + openid_html: '%{logo} OpenID:' + remember: Məni xatırla + login_button: Daxil ol + register now: İndi qeydiyyatdan keç + new to osm: OpenStreetMap-də yenisiz? + no account: İstifadəçi hesabınız yoxdur? + openid_logo_alt: OpenID ilə hesabınıza daxil olun + destroy: + title: Sistemdən çıx + heading: OpenStreetMap-dən çıx + logout_button: Sistemdən çıx site: copyright: foreign: @@ -1014,17 +1044,6 @@ az: - Zirvə - pik private: Xüsusi giriş - richtext_area: - preview: Sınaq görüntüsü - markdown_help: - headings: Başlıqlar - heading: Başlıq - subheading: Alt başlıq - link: Keçid - text: Mətn - image: Şəkil - alt: Alternativ mətn - url: URL traces: new: help: Kömək @@ -1038,42 +1057,15 @@ az: description: 'İzah:' trace: view_map: Xəritəyə bax - edit: redaktə et edit_map: Xəritəni redaktə et public: İCTİMAİ private: MƏXFİ - map: xəritə oauth_clients: show: confirm: Əminsinizmi? index: revoke: Ləğv et! users: - login: - title: Daxil olun - heading: Daxil olun - password: 'Parol:' - openid_html: '%{logo} OpenID:' - remember: Məni xatırla - login_button: Daxil ol - register now: İndi qeydiyyatdan keç - new to osm: OpenStreetMap-də yenisiz? - no account: İstifadəçi hesabınız yoxdur? - openid_logo_alt: OpenID ilə hesabınıza daxil olun - logout: - title: Sistemdən çıx - heading: OpenStreetMap-dən çıx - logout_button: Sistemdən çıx - lost_password: - title: İtirilmiş parol - heading: Parolu unutmusan? - email address: 'E-poçt ünvanları:' - new password button: Parolu yenilə - reset_password: - title: Parolu yenilə - heading: '%{user} üçün parolu yenilə' - reset: Parolu Yenilə - flash changed: Parolun indi dəyişildi. new: title: Hesab aç email address: 'E-poçt ünvanları:' @@ -1120,12 +1112,6 @@ az: replace image: Hazırki şəkili əvəzlə save changes button: Dəyişiklikləri yadda saxla return to profile: Profilə geri qayıt - confirm: - button: Təsdiq et - confirm_resend: - failure: İstifadəçi %{name} tapılmadı. - confirm_email: - button: Təsdiq et index: title: İstifadəçilər heading: İstifadəçilər diff --git a/config/locales/ba.yml b/config/locales/ba.yml index 1739d9c3b..1b7255e49 100644 --- a/config/locales/ba.yml +++ b/config/locales/ba.yml @@ -88,6 +88,7 @@ ba: client_application: name: Исем (Мотлаҡ) url: Ҡушымта Url (Мотлаҡ) + callback_url: Callback URL support_url: Ҡулланыусыларға ярҙам URL allow_read_prefs: ҡулланыусы көйләүҙәрен уҡыу allow_write_prefs: ҡулланыусы көйләүҙәрен үҙгәртеү @@ -125,20 +126,43 @@ ba: title: Тема body: Текст recipient: Алыусы + redaction: + title: Баш һүҙ + description: Тасуирлау report: category: 'Хәбәрегеҙҙең сәбәбен һайлағыҙ:' details: Зинһар, проблема тураһында бер аҙ тулыраҡ мәғлүмәт бирегеҙ (мотлаҡ). user: + auth_provider: Аутентификация провайдеры + auth_uid: Аутентификация UID email: Электрон почта адресы + email_confirmation: Электрон почтаны раҫлау + new_email: Яңы электрон почта адресы active: Әүҙем display_name: Сағылдырылған исем - description: Тасуирлау - languages: Телдәр + description: Профиль тасуирламаһы + home_lat: Киңлек + home_lon: Оҙонлоҡ + languages: Тәҡдим ителгән телдәр + preferred_editor: Тәҡдим ителгән редактор pass_crypt: Серһүҙ pass_crypt_confirmation: Паролде раҫлағыҙ help: trace: tagstring: өтөр аша + user_block: + reason: Ҡулланыусының блоклауының сәбәбе. Зинһар, мөмкин тиклем тыныс һәм + аҡыллы булығыҙ. Ҡулланыусының блок сәбәптәре тураһында мөмкин тиклем күберәк + мәғлүиәт бирегеҙ, хәбәрҙең һәр кемгә күренеүен иҫтә тотоғоҙ. Бөтә ҡулланыусылыр + ҙа берләшмә жаргонын аңламайҙар, шуға күрә профессиональһеҙ терминдарҙы + ҡулланып ҡарағыҙ. + needs_view: Ҡулланыусыға блоктан сыҡҡансы системаға инергә рөхсәт итергәме? + user: + email_confirmation: Һеҙҙең адресығыҙ асыҡ күренмәйәсәк, тулыраҡ мәғлүмәт алыу + өсөн беҙҙең конфиденциаллек + сәйәсәтен ҡарағыҙ. + new_email: (күрһәтелмәй) datetime: distance_in_words_ago: about_x_hours: @@ -212,6 +236,7 @@ ba: яҙмалар исемлеге [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})] description_item: RSS-яҙмалар ағымы %{id} opened: яңы яҙма (яҡынса %{place}) + commented: яңы комментарий (яҡынса %{place}) closed: ябылған яҙма (яҡынса %{place}) reopened: яңы асылған яҙма (яҡынса %{place}) entry: @@ -273,6 +298,8 @@ ba: title_html: 'Һыҙат: %{name}' history_title_html: 'Һыҙат тарихы: %{name}' nodes: Нөктәләр + nodes_count: + other: '%{count} төйөндәр' also_part_of_html: one: һыҙатта бар %{related_ways} other: һыҙаттарҙа бар %{related_ways} @@ -330,6 +357,7 @@ ba: tag: ' %{key}=%{value} тегы битен һүрәтләүсе вики бите' wikidata_link: Викимәғлүмәттәрҙәге %{page} элементы wikipedia_link: ' Википедиялағы %{page} мәҡәләһе' + wikimedia_commons_link: Wikimedia Commonsта %{page} элемент telephone_link: Шылтыратырға %{phone_number} colour_preview: Төҫтәрҙе ҡарау %{colour_value} note: @@ -385,64 +413,87 @@ ba: empty: Төҙәтеүҙәр пакеты табылманы. empty_area: Был өлкәлә төҙәтеүҙәр пакеты юҡ. empty_user: Был ҡулланыусының төҙәтеүҙәр пакеы юҡ. - no_more: Башҡаса бер ниндәй ҙә төҙәтеүҙәр пакеты табылманы - no_more_area: Был өлкәлә башҡа төҙәтеүҙәр пакеты юҡ - no_more_user: Был ҡулланыусының башҡа төҙәтеүҙәре пакеы юҡ - load_more: Тағы ла күсерергә + no_more: Башҡа төҙәтмәләр пакеттары табылманы. + no_more_area: Был өлкәлә башҡа төҙәтмәләр пакеты юҡ. + no_more_user: Был ҡулланыусынан башҡа төҙәтмәләр пакеты юҡ. + load_more: Күберәк тейәү timeout: - sorry: Үкенескә күрә, һеҙ һораған төҙәтеүҙәр пакеты исемлеге күсереү өсөн бик - оҙон + sorry: Ҡыҙғанысҡа ҡаршы, һеҙ һораған төҙәтмә пакеттары исемлеген алыу өсөн күп + ваҡыт талап итә. changeset_comments: comment: - commented_at_by_html: Яңыртылған%{}элек %{ҡулланыусы}тарафынан + comment: '%{author} тарафынан төҙәтмәләр пакетына %{changeset_id} яңы комментарий' + commented_at_by_html: Яңыртылған %{when} ҡулланыусы %{user} тарафынан + comments: + comment: '%{author} тарафынан төҙәтмәләр пакетына %{changeset_id} яңы комментарий' index: - title_all: OpenStreetMap төҙәтеүҙәр пакеты буйынса фекерләшеү - title_particular: ' OpenStreetMap #%{changeset_id} төҙәтеүҙәр пакеты буйынса + title_all: OpenStreetMap төҙәтмәләр пакеты буйынса фекерләшеү + title_particular: ' OpenStreetMap #%{changeset_id} төҙәтмәләр пакеты буйынса фекерләшеү' + timeout: + sorry: Ҡыҙғанысҡа ҡаршы, һеҙ һораған төҙәтмә пакеттары исемлеген алыу өсөн күп + ваҡыт талап итә. diary_entries: new: - title: Яңы көндәлеккә инеү + title: Көндәлектә яңы яҙма form: - use_map_link: картаны ҡуллан + location: Урын + use_map_link: Картаны ҡулланырға index: title: Көндәлектәр - title_friends: Дуҫтарың көндәлектәре - title_nearby: Йәнәш ҡатнашыусылар көндәлеге - user_title: '%{ҡулланыусы} көндәлеге' - in_language_title: Көндәлектәге яҙмалар %{телдә} - new_title: Көндәлегеңә яңы яҙма яҙ - no_entries: Көндәлектә яңы яҙма юҡ - recent_entries: Һуңғы яҙмалар + title_friends: Дуҫтар көндәлектәре + title_nearby: Йәнәш ҡатнашыусыларҙың көндәлектәре + user_title: '%{user} ҡулланыусының көндәлеге' + in_language_title: Көндәлектәге яҙмалар телдә %{language} + new: Көндәлектә яңы яҙма + new_title: Минең көндәлектә яңы яҙма яҙыу + my_diary: Минең көндәлек + no_entries: Көндәлектә яҙмалар юҡ + recent_entries: Һуңғы көндәлек яҙмалары older_entries: Иҫкерәк яҙмалар newer_entries: Яңыраҡ яҙмалар edit: - title: Яҙманы мөхәррирләү - marker_text: Көндәлек яҙыу урыны + title: Көндәлек яҙианы редакторлау + marker_text: Иҫкәрмә яҙыу урыны show: - title: '%{ҡулланыусы}ның көндәлеге|%{титул}' - user_title: '%{ҡулланыусы}ның көндәлеге' - leave_a_comment: Фекер ҡалдыр + title: Ҡуланыусы %{user} көндәлеге %{title} + user_title: '%{user} өулланыусының көндәлеге' + leave_a_comment: Комментарий ҡалдырыу login_to_leave_a_comment_html: Фекер яҙыу өсөн %{login_link} + login: Инеү no_such_entry: - title: Бындай көндәлек яҙыуы юҡ - heading: '%{id} шәхси яҙыуына инеп булмай' - body: Ҡыҙғанысҡа ҡаршы, %{id}шәхси яҙыуы йәки фекере табылманы. Дөрөҫ яҙылышын - тикшер. Яңылыш ссылкаға күскәнһең, ахыры. + title: Бындай яҙма көндәлектә юҡ + heading: '%{id} номерлы яҙма юҡ' + body: Ҡыҙғанысҡа ҡаршы, %{id} номерлы яҙма йәки комментарий юҡ. Яҙылыуҙың дөрөҫлөгөн + тикшерегеҙ. Йәки, һеҙ күскән һылтанма дөрөҫ түгелдер. diary_entry: - posted_by_html: Ебәрҙем%{link_user}%{created}, тел:%{language_link} - comment_link: Фекереңде яҙ - reply_link: Инеүеңде раҫла + posted_by_html: '%{language_link} телендә %{link_user}%{created} баҫылып сыҡты.' + updated_at_html: Һуңғы яңыртыуҙар %{updated}. + comment_link: Комментарий ҡалдырыу + reply_link: Авторға яҙыу comment_count: - other: нуль=фекерҙәр юҡ - edit_link: Был яҙманы үҙгәрт - hide_link: Был яҙманы йәшер + zero: Крмментарийҙар юҡ + one: '%{count} комментарий' + other: '%{count} комментарийҙар' + edit_link: Яҙманы үҙгәртеү + hide_link: Был яҙманы йәшереү + unhide_link: Был яҙманы күрһәтеү + confirm: Раҫлау + report: Был яҙма тураһында хәбәр итеү diary_comment: comment_from_html: '%{link_user}тарафынан%{comment_created_at}көндө ҡаралған' - hide_link: Был фекерҙе йәшереү + hide_link: Был комментарийҙы йәшереү + unhide_link: Был комментарийҙы күрһәтеү + confirm: Раҫлау + report: Был комментарий тураһында хәбәр итеү + location: + location: Урын + view: Ҡарау + edit: Төҙәтмә feed: user: - title: '%{user}өсөн OpenStreetMap көндәлеге яҙмаһы' - description: '%{user}өсөн OpenStreetMap көндәлек яҙмаһының һуңғыһы' + title: '%{user} OpenStreetMap көндәлеге яҙмаһы' + description: '%{user} OpenStreetMap көндәлек яҙмаһының һуңғыһы' language: title: '%{language_name} OpenStreetMap көндәлек яҙмаһы' description: OpenStreetMap ҡулланыусыларының %{language_name}тағы һуңғы яҙмалары @@ -450,12 +501,25 @@ ba: title: OpenStreetMap көндәлек яҙмаһы description: OpenStreetMap ҡулланысыларының һуңғы көндәлек яҙмалары comments: - has_commented_on: '%{display_name} әле генә көндәлектең ошо яҙмаһына фекер + has_commented_on: '%{display_name} әле генә көндәлектең ошо яҙмаһына комментарий яҙҙы' - post: Йәшереү - when: ҡасан + post: Post + when: Ҡасан + comment: Комментарий newer_comments: Яңыраҡ фекерҙәр older_comments: Иҫкерәк фекерҙәр + friendships: + make_friend: + heading: '%{user} дуҫтарға өҫтәргә?' + button: Дуҫтарға өҫтәргә + success: '%{name} хәҙер һеҙҙең дуҫ!' + failed: Ғәфү итегеҙ, %{name} дуҫтарға өҫтәп булманы. + already_a_friend: Һеҙ %{name} менән әле дуҫтарһығыҙ. + remove_friend: + heading: '%{user} дуҫтарҙан алып ташларға?' + button: Дуҫтарҙан алып ташларға + success: '%{name} дуҫтарҙан алып ташланды.' + not_a_friend: '%{name} һеҙҙең дуҫ түгел.' geocoder: search: title: @@ -478,16 +542,28 @@ ba: chair_lift: Креслолы канат күтәргесе drag_lift: Якорлы (бугеллы) күтәргес gondola: Канат юлы + magic_carpet: Magic Carpet Lift + platter: Platter Lift + pylon: Пилон station: Канат күтәргесе станцияһы + "yes": Һауа юлы aeroway: aerodrome: Аэродром + airstrip: Осоу-ултырыу һыҙаты apron: Перрон gate: Ҡапҡа (аэропорт) + hangar: Ангар helipad: Вертолет майҙансығы + holding_position: Көтөү урыны + navigationaid: Авиация навигацион системаһы + parking_position: Туҡталка позицияһы runway: Осоу-ултырыу юлы + taxilane: Такси юлы taxiway: Рулләү юлы terminal: Терминал + windsock: Виндсок amenity: + animal_boarding: Хайуандар өсөн интернат animal_shelter: Хайуандар приюты arts_centre: Сәнғәт йорто atm: Банкомат @@ -497,7 +573,9 @@ ba: bench: Эскәмйә bicycle_parking: Велопарковка bicycle_rental: Велосипед прокаты + bicycle_repair_station: Велосипед ремонтлау станцияһы biergarten: Асыҡ һауалағы һырахана + blood_bank: Ҡан банкы boat_rental: Прокатҡа кәмәләр brothel: Фәхешхана bureau_de_change: Валюта алмаштырыу @@ -514,6 +592,7 @@ ba: clock: Сәғәт college: Колледж community_centre: Йәмәғәти үҙәк + conference_centre: Конференц-центр courthouse: Суд бинаһы crematorium: Крематорий dentist: Стоматология @@ -521,6 +600,7 @@ ba: drinking_water: Эсәр һыу driving_school: Автошкола embassy: Илселек + events_venue: Саралар үткәреү урыны fast_food: Фаст-фуд ferry_terminal: Паром станцияһы fire_station: Янғын һүндереү һағы @@ -529,16 +609,28 @@ ba: fuel: Заправка gambling: Уйын йорто grave_yard: Зыярат + grit_bin: Грит Бин hospital: Госпиталь hunting_stand: Һунарсы вышкаһы ice_cream: Туңдырма + internet_cafe: Интернет кафе kindergarten: Балалар баҡсаһы + language_school: Тел мәктәбе + library: Китапхана + loading_dock: Док тейәү + love_hotel: Мөхәббәт йорто marketplace: Баҙар + mobile_money_agent: Мобиль аҡса агенты + monastery: Монастырь + money_transfer: Аҡса күсереү motorcycle_parking: Мотоцикл парковкаһы + music_school: Музыкаль мәктәп nightclub: Төнгө клуб nursing_home: Ҡарттар йорто parking: Туҡталҡа parking_entrance: Туҡталҡаға инеү + parking_space: Туҡталка + payment_terminal: Түләү терминалы pharmacy: Дарыухана place_of_worship: Ғибәҙәт ҡылыу урыны police: Полиция @@ -546,9 +638,13 @@ ba: post_office: Почта бүлексәһе prison: Төрмә pub: Һырахана + public_bath: Йəмғиəт мунсаһы + public_bookcase: Ижтимағи китап шкаф public_building: Йәмғиәти бина + ranger_station: Рейнджер станцияһы recycling: Киренән эшкәртеү урыны restaurant: Ресторан + sanitary_dump_station: Санитар сүплек станцияһы school: Мәктәп shelter: Йәшенеү урыны shower: Душ @@ -561,56 +657,142 @@ ba: theatre: Театр toilets: Бәҙрәф townhall: Ҡала администрацияһы + training: Уҡыу үҙәге university: Университет + vehicle_inspection: Техник тикшереү vending_machine: Сауҙа автоматы veterinary: Ветеринар клиника village_hall: Утар waste_basket: Сүп һауыты waste_disposal: ҡалдыҡтарҙы юҡ итеү + waste_dump_site: Сүплек + watering_place: Һыу эсеү урыны + water_point: Һыу алыу + "yes": Уңайлыҡ boundary: + aboriginal_lands: Абориген ерҙәре administrative: административ сик census: иҫәп алыу участогының сиге national_park: Милли парк + political: Һайлау сиктәре protected_area: Һаҡлы район + "yes": Сик bridge: aqueduct: Һыу каналы + boardwalk: Тротуар suspension: Аҫылма күпер swing: Айырсалы күпер viaduct: Юл һуҙымы "yes": Күпер building: + apartment: Фатир + apartments: Фатирҙар + barn: Балалар + bungalow: Бунгало + cabin: Хижина + chapel: Капел + church: Сиркәү + civic: Граждандар бинаһы + college: Колледж бинаһы + commercial: Офис бинаһы + construction: Төҙөлөп ятҡан бина + detached: Айырым йорт + dormitory: Дөйөм ятаҡ + duplex: Дуплекс + farm: Ферма + farm_auxiliary: Ярҙамсы фермер йорто + garage: Гараж + garages: Гараждар + greenhouse: Теплица + hangar: Ангар + hospital: Дауахана бинаһы + hotel: Ҡунаҡхана + house: Өй + hut: Хижина + industrial: Сәнәғәт бинаһы + kindergarten: Балалар баҡсаһы + manufacture: Сәнәғәт бинаһы + office: Офис бинаһы + public: Йəмəғəт бинаһы + residential: Торлаҡ йорто + retail: Һатыуға бина + roof: Ҡыйыҡ + ruins: Емерелгән бина + school: Мәктәп бинаһы + semidetached_house: Үҙ-аралы йорт + service: Граждандар бинаһы + shed: Һарай + stable: Тотороҡло + static_caravan: Ҡарауан + temple: Храм бинаһы + terrace: Терраса менән бина + train_station: Тимер юл вокзалы + university: Университет + warehouse: Склад "yes": Бина + club: + scout: Скаут төркөмө базаһы + sport: Спортклуб + "yes": Клуб craft: + beekeper: Умартасы + blacksmith: Тимерсе brewery: Һыра заводы carpenter: Балта оҫтаһы + caterer: Тәьминәтсе + confectionery: Кондитер + dressmaker: Кейем тегеүсе electrician: Электрик + electronics_repair: Электроника ремонты gardener: Баҡсасы + glaziery: Глазери + handicraft: Ҡул эштәре + hvac: HVAC Craft + metal_construction: Металл конструкция painter: Рәссам + photographer: Фотограф plumber: Сантехник + roofer: Ҡыйыҡ ябыусы + sawmill: Урман ҡырҡыу заводы shoemaker: Итексе + stonemason: Ташсы tailor: Тегенсе + window_construction: Тәҙрә конструкцияһы + winery: Вино-эшләү "yes": Ҡул эштәре магазины emergency: + access_point: Инеү нөктәһе ambulance_station: Тиҙ ярҙам станцияһы + assembly_point: Йыйыу урыны defibrillator: Дефибриллятор + fire_xtinguisher: Ут һүндергес + fire_water_pond: Янғын һыу ятҡылығы landing_site: Авария мәлендә ултырыу урыны + life_ring: Авария ҡотҡарыу түңәрәге phone: Тиҙ бәйләнеш телефоны + siren: Авария сиренаһы + suction_point: Ашығыс ярҙам пункты + water_tank: Һыу өсөн резервуар + "yes": Ашығыс хеҙмәттәр өсөн highway: abandoned: Ташландыҡ юл bridleway: Атта йөрөү юлы bus_guideway: Автобус рельс-юлы bus_stop: Автобус туҡталышы construction: Ремонт барған юл + corridor: Коридор cycleway: Велосипед юлы elevator: Лифт emergency_access_point: Ашығыс ярҙам пункты footway: Тротуар ford: Йөҙөп сығыу урыны + give_way: '"Юл бир" билдәһе' living_street: Кеше йәшәгән урам milestone: Километр бағанаһы motorway: Автомагистраль motorway_junction: Автомагистраль киҫелеше motorway_link: Автомагистраль айырсаһы + passing_place: Күсеп йөрөү юлы path: Һуҡмаҡ pedestrian: Йәйәүле юлы platform: Платформа @@ -627,29 +809,40 @@ ba: services: Юл яны хеҙмәттәре speed_camera: Радар steps: Баҫҡыстар + stop: Туҡталыш билдәһе street_lamp: Урам фонары tertiary: Ауыл араһы юлы tertiary_link: Сиҙәм юлы track: Ауыл юлы + traffic_mirror: Трафик көҙгөһө traffic_signals: Светофор + trailhead: Trailhead trunk: Төп юл trunk_link: Магистраль + turning_loop: Боролош өсөн юл unclassified: Урындағы юл + "yes": Юл historic: + aircraft: Тарихи самолет archaeological_site: Археологик ҡаҙыныуҙар + bomb_crater: Тарихи бомба кратеры battlefield: Һуғыш яланы boundary_stone: Сик буйы ташы building: Тарихи бина bunker: Бункер + cannon: Тарихи пушка castle: Ҡәлғә + charcoal_pile: Тарихи күмер өйөмө church: Сиркәү city_gate: Ҡала ҡапҡаһы citywalls: Тарихи нығытма fort: Ҡойма heritage: Мәҙәни мираҫ + hollow_way: Буш юл house: Йорт manor: Поместье memorial: Һәйкәл + milestone: Тарихи ваҡиға mine: Карьер monument: Монумент roman_road: Рим юлы diff --git a/config/locales/be-Tarask.yml b/config/locales/be-Tarask.yml index 52c7fb502..440f1f8f0 100644 --- a/config/locales/be-Tarask.yml +++ b/config/locales/be-Tarask.yml @@ -596,6 +596,7 @@ be-Tarask: cape: Мыс cave_entrance: Уваход у пячору cliff: Абрыў + coastline: Узьбярэжжа crater: Кратэр dune: Дзюна fell: Узвышша @@ -858,11 +859,34 @@ be-Tarask: greeting: Вітаем, click_the_link: Калі гэта Вы, калі ласка, націсьніце на спасылку ніжэй, каб скінуць Ваш пароль. + confirmations: + confirm: + heading: Праверце электронную пошту! + press confirm button: Націсьніце кнопку «Пацьвердзіць» для актывацыі Вашага + рахунку. + button: Пацьвердзіць + success: Ваш рахунак пацьверджаны, дзякуй за рэгістрацыю! + already active: Гэты рахунак ужо пацьверджаны. + unknown token: Гэты код пацьверджаньня скончыўся альбо не існуе. + confirm_resend: + success_html: Мы даслалі новы ліст з пацьверджаньнем на адрас %{email} і, як + толькі Вы пацьвердзіце Ваш рахунак, Вы зможаце пачаць працаваць з мапамі.

Калі Вы карыстаецеся сыстэмай абароны ад спаму, якая дасылае запыты + на пацьверджаньне, калі ласка, упэўніцеся, што адрас %{sender} знаходзіцца + ў Вашым давераным сьпісе, таму што мы ня маем магчымасьці адказваць на любыя + запыты. + failure: Удзельнік %{name} ня знойдзены. + confirm_email: + heading: Пацьвердзіць зьмену адрасу электроннай пошты + press confirm button: Націсьніце кнопку пацьверджаньня ніжэй, каб пацьвердзіць + Ваш новы адрас электроннай пошты. + button: Пацьвердзіць + success: Зьмена Вашага адрасу электроннай пошты пацьверджаная! + failure: Адрас электроннай пошты ужо быў пацьверджаны гэтым ключом. messages: inbox: title: Уваходзячыя my_inbox: Мае ўваходзячыя - outbox: зыходзячыя messages: Вы маеце %{new_messages} і %{old_messages} new_messages: one: '%{count} новае паведамленьне' @@ -899,9 +923,6 @@ be-Tarask: body: Прабачце, няма паведамленьня з такім ідэнтыфікатарам. outbox: title: Зыходзячыя - my_inbox_html: Мае %{inbox_link} - inbox: уваходзячыя - outbox: зыходзячыя messages: one: Вы маеце %{count} дасланае паведамленьне few: Вы маеце %{count} дасланыя паведамленьні @@ -934,6 +955,54 @@ be-Tarask: as_unread: Паведамленьне пазначанае як непрачытанае destroy: destroyed: Паведамленьне выдаленае + passwords: + lost_password: + title: Згублены пароль + heading: Забылі пароль? + email address: 'Адрас электроннай пошты:' + new password button: Ачысьціць пароль + help_text: Увядзіце адрас электроннай пошты, які Вы выкарыстоўвалі пры рэгістрацыі, + і мы вышлем Вам спасылку, якую Вы зможаце выкарыстаць для зьмены паролю. + notice email on way: Шкада, што Вы яго згубілі, але электронны ліст ужо дасланы, + таму Вы хутка зможаце яго зьмяніць. + notice email cannot find: Прабачце, не атрымалася знайсьці такога адрасу электроннай + пошты. + reset_password: + title: Ачысьціць пароль + heading: Скінуць пароль для %{user} + reset: Ачысьціць пароль + flash changed: Ваш пароль быў зьменены. + flash token bad: Немагчыма знайсьці такі ключ, можа праверце URL-адрас? + sessions: + new: + title: Увайсьці + heading: Уваход + email or username: 'Адрас электроннай пошты ці імя карыстальніка:' + password: 'Пароль:' + openid_html: '%{logo} OpenID:' + remember: Запомніць мяне + lost password link: Забылі пароль? + login_button: Увайсьці + register now: Зарэгістравацца зараз + with username: 'Ужо маеце рахунак OpenStreetMap? Калі ласка, увайдзіце ў сыстэму + з Вашым іменем удзельніка і паролем:' + new to osm: Упершыню на OpenStreetMap? + to make changes: Каб рабіць зьмены ў зьвестках OpenStreetMap, Вам неабходна + мець рахунак. + create account minute: Стварыць рахунак. Гэта зойме ня болей хвіліны. + account not active: Прабачце, Ваш рахунак пакуль што не актывізаваны.
Калі + ласка, каб яго актывізаваць, карыстайцеся спасылкай у дасланым Ваш электронным + лісьце, ці падайце запыт на новы электронны ліст з + пацьверджаньнем. + account is suspended: Прабачце, але Ваш рахунак быў заблякаваны з-за падазронай + актыўнасьці.
Калі ласка, зьвяжыцеся з ўэбмайстрам + калі Вы жадаеце гэта аспрэчыць. + auth failure: Прабачце, немагчыма ўвайсьці з такім адрасам і паролем. + openid_logo_alt: Увайсьці ў сыстэму з дапамогай OpenID + destroy: + title: Выйсьці + heading: Выйсьці з OpenStreetMap + logout_button: Выйсьці site: copyright: foreign: @@ -1126,17 +1195,6 @@ be-Tarask: private: Прыватны доступ destination: Мэтавы доступ construction: Будаўніцтва дарогаў - richtext_area: - edit: Рэдагаваць - preview: Папярэдні прагляд - markdown_help: - title_html: Апрацавана з дапамогай Markdown - headings: Загалоўкі - heading: Загаловак - subheading: Падзагаловак - unordered: Неўпарадкаваны сьпіс - ordered: Упарадкаваны сьпіс - first: Першы элемэнт welcome: questions: title: Маеце пытаньні? @@ -1201,7 +1259,6 @@ be-Tarask: more: болей trace_details: Паказаць падрабязнасьці трэку view_map: Прагляд мапы - edit: рэдагаваць edit_map: Рэдагаваць мапу public: ПУБЛІЧНЫ identifiable: ІДЭНТЫФІКАВАНЫ @@ -1209,7 +1266,6 @@ be-Tarask: trackable: МАГЧЫМА САЧЫЦЬ by: аўтар in: у - map: мапа index: public_traces: Публічныя GPS-трэкі public_traces_from: Публічныя GPS-трэкі ўдзельніка %{user} @@ -1288,52 +1344,6 @@ be-Tarask: destroy: flash: Зьнішчаная рэгістрацыя кліенцкага дастасаваньня users: - login: - title: Увайсьці - heading: Уваход - email or username: 'Адрас электроннай пошты ці імя карыстальніка:' - password: 'Пароль:' - openid_html: '%{logo} OpenID:' - remember: Запомніць мяне - lost password link: Забылі пароль? - login_button: Увайсьці - register now: Зарэгістравацца зараз - with username: 'Ужо маеце рахунак OpenStreetMap? Калі ласка, увайдзіце ў сыстэму - з Вашым іменем удзельніка і паролем:' - new to osm: Упершыню на OpenStreetMap? - to make changes: Каб рабіць зьмены ў зьвестках OpenStreetMap, Вам неабходна - мець рахунак. - create account minute: Стварыць рахунак. Гэта зойме ня болей хвіліны. - account not active: Прабачце, Ваш рахунак пакуль што не актывізаваны.
Калі - ласка, каб яго актывізаваць, карыстайцеся спасылкай у дасланым Ваш электронным - лісьце, ці падайце запыт на новы электронны ліст з - пацьверджаньнем. - account is suspended: Прабачце, але Ваш рахунак быў заблякаваны з-за падазронай - актыўнасьці.
Калі ласка, зьвяжыцеся з ўэбмайстрам - калі Вы жадаеце гэта аспрэчыць. - auth failure: Прабачце, немагчыма ўвайсьці з такім адрасам і паролем. - openid_logo_alt: Увайсьці ў сыстэму з дапамогай OpenID - logout: - title: Выйсьці - heading: Выйсьці з OpenStreetMap - logout_button: Выйсьці - lost_password: - title: Згублены пароль - heading: Забылі пароль? - email address: 'Адрас электроннай пошты:' - new password button: Ачысьціць пароль - help_text: Увядзіце адрас электроннай пошты, які Вы выкарыстоўвалі пры рэгістрацыі, - і мы вышлем Вам спасылку, якую Вы зможаце выкарыстаць для зьмены паролю. - notice email on way: Шкада, што Вы яго згубілі, але электронны ліст ужо дасланы, - таму Вы хутка зможаце яго зьмяніць. - notice email cannot find: Прабачце, не атрымалася знайсьці такога адрасу электроннай - пошты. - reset_password: - title: Ачысьціць пароль - heading: Скінуць пароль для %{user} - reset: Ачысьціць пароль - flash changed: Ваш пароль быў зьменены. - flash token bad: Немагчыма знайсьці такі ключ, можа праверце URL-адрас? new: title: Зарэгістравацца no_auto_account_create: На жаль, мы зараз ня можам стварыць для Вас рахунак @@ -1485,29 +1495,6 @@ be-Tarask: пасьпяхова. Праверце Вашую электронную пошту каб пацьвердзіць Ваш новы адрас электроннай пошты. flash update success: Зьвесткі пра карыстальніка пасьпяхова абноўленыя. - confirm: - heading: Праверце электронную пошту! - press confirm button: Націсьніце кнопку «Пацьвердзіць» для актывацыі Вашага - рахунку. - button: Пацьвердзіць - success: Ваш рахунак пацьверджаны, дзякуй за рэгістрацыю! - already active: Гэты рахунак ужо пацьверджаны. - unknown token: Гэты код пацьверджаньня скончыўся альбо не існуе. - confirm_resend: - success_html: Мы даслалі новы ліст з пацьверджаньнем на адрас %{email} і, як - толькі Вы пацьвердзіце Ваш рахунак, Вы зможаце пачаць працаваць з мапамі.

Калі Вы карыстаецеся сыстэмай абароны ад спаму, якая дасылае запыты - на пацьверджаньне, калі ласка, упэўніцеся, што адрас %{sender} знаходзіцца - ў Вашым давераным сьпісе, таму што мы ня маем магчымасьці адказваць на любыя - запыты. - failure: Удзельнік %{name} ня знойдзены. - confirm_email: - heading: Пацьвердзіць зьмену адрасу электроннай пошты - press confirm button: Націсьніце кнопку пацьверджаньня ніжэй, каб пацьвердзіць - Ваш новы адрас электроннай пошты. - button: Пацьвердзіць - success: Зьмена Вашага адрасу электроннай пошты пацьверджаная! - failure: Адрас электроннай пошты ужо быў пацьверджаны гэтым ключом. set_home: flash success: Вашае месцазнаходжаньне пасьпяхова захаванае go_public: diff --git a/config/locales/be.yml b/config/locales/be.yml index e4ecbd9eb..09eeeb142 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -1326,11 +1326,37 @@ be: details: Дадатковыя звесткі аб наборы зьменаў можна знайсці ў %{url}. unsubscribe: Каб адпісацца ад абнаўленняў гэтага пакета правак наведайце %{url} і націсніце кнопку "Адпісацца". + confirmations: + confirm: + heading: Праверце вашу электронную пошту! + introduction_1: Мы адправілі вам ліст з пацверджаннем. + introduction_2: Пацвердзіць Ваш рахунак, націснуўшы на адпаведную спасылку ў + лісце і вы зможаце пачаць маляваць карту. + press confirm button: Націсніце кнопку, каб актывізаваць рахунак. + button: Пацвердзіць + success: Рахунак пацверджаны, дзякуй за рэгістрацыю! + already active: Гэты ўліковы рахунак ужо пацверджаны. + unknown token: Тэрмін дзеяння кода пацверджання ўжо прайшоў ці ён не існуе. + reconfirm_html: Калі вам трэба зноў даслаць пацверджанне па электроннай пошце, + націсніце тут. + confirm_resend: + success_html: Мы даслалі новы ліст з пацверджаннем на адрас %{email} і, як толькі + Вы пацвердзіце Ваш рахунак, Вы зможаце пачаць працаваць з картай.

Калі Вы карыстаецеся сістэмай абароны ад спаму, якая дасылае запыты на пацверджанне, + калі ласка, упэўніцеся, што адрас %{sender} знаходзіцца ў Вашым давераным + спісе, таму што мы не маем магчымасці адказваць на любыя запыты. + failure: Карыстальнік %{name} не знойдзены. + confirm_email: + heading: Пацвердзіць змену паштовага адраса + press confirm button: Націсніце кнопку, каб пацвердзіць ваш новы паштовы адрас. + button: Пацвердзіць + success: Змена вамі адраса электроннай пошты пацверджана! + failure: Паштовы адрас ужо быў пацверджаны гэтым токенам. + unknown_token: Тэрмін дзеяння кода пацверджання ўжо прайшоў ці ён не існуе. messages: inbox: title: Уваходныя my_inbox: Мае уваходныя - outbox: зыходныя messages: У вас %{new_messages} і %{old_messages} new_messages: one: '%{count} новае паведамленне' @@ -1365,9 +1391,6 @@ be: body: Шкада, паведамлення з гэтым ідэнтыфікатарам няма. outbox: title: Зыходныя - my_inbox_html: Мае %{inbox_link} - inbox: уваходныя - outbox: зыходныя messages: one: Вы адаслалі %{count} паведамленне other: Вы адаслалі %{count} паведамленняў @@ -1401,6 +1424,83 @@ be: as_unread: Паведамленне адмечана нечытаным destroy: destroyed: Паведамленне выдалена + passwords: + lost_password: + title: згублены пароль + heading: Забылі пароль? + email address: 'Паштовы адрас:' + new password button: Выслаць мне новы пароль + help_text: Увядзіце адрас электроннай пошты, які Вы выкарыстоўвалі пры рэгістрацыі, + і мы вышлем Вам спасылку, якую Вы зможаце выкарыстаць для змены паролю. + notice email on way: Жаль, што вы яго згубілі :-( але ліст ужо адпраўлены, і + вы хутка зможаце яго скінуць. + notice email cannot find: Немагчыма знайсці гэтакі паштовы адрас, прабачце. + reset_password: + title: скінуць пароль + heading: Скінуць пароль для %{user} + reset: 'Скінуць пароль:' + flash changed: Ваш пароль быў зменены. + flash token bad: Не знайшоў такі токен, можа, праверце URL? + sessions: + new: + title: Уваход + heading: Уваход + email or username: 'Пошта ці імя карыстальніка:' + password: 'Пароль:' + openid_html: '%{logo} OpenID:' + remember: Памятаць мяне + lost password link: Згубілі пароль? + login_button: Увайсці + register now: Зарэгістравацца зараз + with username: 'Ужо маеце рахунак OpenStreetMap? Калі ласка, увайдзіце ў сістэму + з Вашым іменем удзельніка і паролем:' + with external: 'Для альтэрнатыўнага ўваходу, залагіньцеся цераз:' + new to osm: Упершыню на OpenStreetMap? + to make changes: Каб змяняць дадзеныя OpenStreetMap, вы павінны мець асабісты + рахунак. + create account minute: Стварыце рахунак. Гэта зойме ўсяго адну хвіліну. + no account: Не маеце асабістага рахунка? + account not active: Прабачце, ваш рахунак пакуль не актывізаваны.
Калі + ласка, націсніце на адпаведную спасылку ў лісце пацвярджэння рахунка, каб + актывізаваць яго, ці запытаць новы ліст-пацвярджэнне + на электронную пошту. + account is suspended: Прабачце, але Ваш рахунак быў заблакаваны з-за падазронай + актыўнасці.
Калі ласка, звяжыцеся з вэбмайстрам + калі Вы жадаеце гэта аспрэчыць. + auth failure: Прабачце, немагчыма увайсці з такім адрасам і паролем. + openid_logo_alt: Увайсці з дапамогай OpenID + auth_providers: + openid: + title: Уваход праз OpenID + alt: Уваход праз OpenID URL + google: + title: Уваход праз Google + alt: Уваход праз Google OpenID + facebook: + title: Увайсці праз Facebook + alt: Увайсці праз рахунак Facebook + windowslive: + title: Увайсці праз Windows live + alt: Увайсці праз рахунак Windows Live + github: + title: Уваход праз GitHub + alt: Увайсці праз уліковы запіс GitHub + wikipedia: + title: Увайсці праз Вікіпедыю + alt: Уваход з выкарыстаннем рахунку ў Вікіпедыі + yahoo: + title: Уваход праз Yahoo + alt: Уваход праз Yahoo OpenID + wordpress: + title: Уваход праз Wordpress + alt: Уваход праз Wordpress OpenID + aol: + title: Уваход праз AOL + alt: Уваход праз AOL OpenID + destroy: + title: Выйсці + heading: Выйсці з OpenStreetMap + logout_button: Выйсці shared: markdown_help: subheading: Падзагаловак @@ -1784,23 +1884,6 @@ be: bicycle_shop: Крама ровараў bicycle_parking: Паркоўка для ровараў toilets: Прыбіральні - richtext_area: - edit: Рэдагаваць - preview: Папярэдні прагляд - markdown_help: - title_html: Апрацавана з дапамогай kramdown - headings: Загалоўкі - heading: Загаловак - subheading: Падзагаловак - unordered: Неспарадкаваны спіс - ordered: Спарадкаваны спіс - first: Першы элемент - second: Другі элемент - link: Спасылка - text: Тэкст - image: Выява - alt: Альтэрнатыўны тэкст - url: URL-адрас welcome: title: Вітаем! introduction_html: Вітаем у OpenStreetMap, свабоднай і даступнай для рэдагавання @@ -1919,7 +2002,6 @@ be: more: яшчэ trace_details: Прагледзець уласцівасці следу view_map: Прагледзець карту - edit: правіць edit_map: Правіць карту public: ПУБЛІЧНЫ identifiable: ІДЭНТЫФІКУЕМЫ @@ -1927,7 +2009,6 @@ be: trackable: TRACKABLE by: карыстальнікам in: у - map: карта index: public_traces: Агульныя GPS-сляды my_traces: Мае GPS-сляды @@ -2040,81 +2121,6 @@ be: destroy: flash: Знішчаная рэгістрацыя кліенцкага дастасавання users: - login: - title: Уваход - heading: Уваход - email or username: 'Пошта ці імя карыстальніка:' - password: 'Пароль:' - openid_html: '%{logo} OpenID:' - remember: Памятаць мяне - lost password link: Згубілі пароль? - login_button: Увайсці - register now: Зарэгістравацца зараз - with username: 'Ужо маеце рахунак OpenStreetMap? Калі ласка, увайдзіце ў сістэму - з Вашым іменем удзельніка і паролем:' - with external: 'Для альтэрнатыўнага ўваходу, залагіньцеся цераз:' - new to osm: Упершыню на OpenStreetMap? - to make changes: Каб змяняць дадзеныя OpenStreetMap, вы павінны мець асабісты - рахунак. - create account minute: Стварыце рахунак. Гэта зойме ўсяго адну хвіліну. - no account: Не маеце асабістага рахунка? - account not active: Прабачце, ваш рахунак пакуль не актывізаваны.
Калі - ласка, націсніце на адпаведную спасылку ў лісце пацвярджэння рахунка, каб - актывізаваць яго, ці запытаць новы ліст-пацвярджэнне - на электронную пошту. - account is suspended: Прабачце, але Ваш рахунак быў заблакаваны з-за падазронай - актыўнасці.
Калі ласка, звяжыцеся з вэбмайстрам - калі Вы жадаеце гэта аспрэчыць. - auth failure: Прабачце, немагчыма увайсці з такім адрасам і паролем. - openid_logo_alt: Увайсці з дапамогай OpenID - auth_providers: - openid: - title: Уваход праз OpenID - alt: Уваход праз OpenID URL - google: - title: Уваход праз Google - alt: Уваход праз Google OpenID - facebook: - title: Увайсці праз Facebook - alt: Увайсці праз рахунак Facebook - windowslive: - title: Увайсці праз Windows live - alt: Увайсці праз рахунак Windows Live - github: - title: Уваход праз GitHub - alt: Увайсці праз уліковы запіс GitHub - wikipedia: - title: Увайсці праз Вікіпедыю - alt: Уваход з выкарыстаннем рахунку ў Вікіпедыі - yahoo: - title: Уваход праз Yahoo - alt: Уваход праз Yahoo OpenID - wordpress: - title: Уваход праз Wordpress - alt: Уваход праз Wordpress OpenID - aol: - title: Уваход праз AOL - alt: Уваход праз AOL OpenID - logout: - title: Выйсці - heading: Выйсці з OpenStreetMap - logout_button: Выйсці - lost_password: - title: згублены пароль - heading: Забылі пароль? - email address: 'Паштовы адрас:' - new password button: Выслаць мне новы пароль - help_text: Увядзіце адрас электроннай пошты, які Вы выкарыстоўвалі пры рэгістрацыі, - і мы вышлем Вам спасылку, якую Вы зможаце выкарыстаць для змены паролю. - notice email on way: Жаль, што вы яго згубілі :-( але ліст ужо адпраўлены, і - вы хутка зможаце яго скінуць. - notice email cannot find: Немагчыма знайсці гэтакі паштовы адрас, прабачце. - reset_password: - title: скінуць пароль - heading: Скінуць пароль для %{user} - reset: 'Скінуць пароль:' - flash changed: Ваш пароль быў зменены. - flash token bad: Не знайшоў такі токен, можа, праверце URL? new: title: Стварыць рахунак no_auto_account_create: На жаль, мы не можам стварыць для вас рахунак аўтаматычна. @@ -2302,32 +2308,6 @@ be: Праверце сваю эл.пошту, вам павінен прыйсці запыт на пацвярджэнне вашага новага адраса. flash update success: Звесткі аб карыстальніку паспяхова абноўленыя. - confirm: - heading: Праверце вашу электронную пошту! - introduction_1: Мы адправілі вам ліст з пацверджаннем. - introduction_2: Пацвердзіць Ваш рахунак, націснуўшы на адпаведную спасылку ў - лісце і вы зможаце пачаць маляваць карту. - press confirm button: Націсніце кнопку, каб актывізаваць рахунак. - button: Пацвердзіць - success: Рахунак пацверджаны, дзякуй за рэгістрацыю! - already active: Гэты ўліковы рахунак ужо пацверджаны. - unknown token: Тэрмін дзеяння кода пацверджання ўжо прайшоў ці ён не існуе. - reconfirm_html: Калі вам трэба зноў даслаць пацверджанне па электроннай пошце, - націсніце тут. - confirm_resend: - success_html: Мы даслалі новы ліст з пацверджаннем на адрас %{email} і, як толькі - Вы пацвердзіце Ваш рахунак, Вы зможаце пачаць працаваць з картай.

Калі Вы карыстаецеся сістэмай абароны ад спаму, якая дасылае запыты на пацверджанне, - калі ласка, упэўніцеся, што адрас %{sender} знаходзіцца ў Вашым давераным - спісе, таму што мы не маем магчымасці адказваць на любыя запыты. - failure: Карыстальнік %{name} не знойдзены. - confirm_email: - heading: Пацвердзіць змену паштовага адраса - press confirm button: Націсніце кнопку, каб пацвердзіць ваш новы паштовы адрас. - button: Пацвердзіць - success: Змена вамі адраса электроннай пошты пацверджана! - failure: Паштовы адрас ужо быў пацверджаны гэтым токенам. - unknown_token: Тэрмін дзеяння кода пацверджання ўжо прайшоў ці ён не існуе. set_home: flash success: Дамашняе месцазнаходжанне паспяхова запісана go_public: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 3d933c37a..ab3d8ba80 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -42,8 +42,8 @@ bg: create: Качване update: Запазване на промените user_block: - create: Създай блок - update: Обнови блок + create: Създаване на блок + update: Обновяване на блок activerecord: errors: messages: @@ -66,7 +66,7 @@ bg: old_node: Стар възел old_node_tag: Етикет на стар възел old_relation: Стара релация - old_relation_tag: Стар Свързващ Таг + old_relation_tag: Стар свързващ таг old_way: Стар път old_way_node: Възел на стар път old_way_tag: Етикет на стар път @@ -389,7 +389,7 @@ bg: new: title: Нова публикация в дневника form: - location: 'Местоположение:' + location: Местоположение use_map_link: използвай карта index: title: Дневници на потребителите @@ -506,6 +506,7 @@ bg: bench: Пейка bicycle_parking: Паркинг за велосипеди bicycle_rental: Велосипеди под наем + bicycle_repair_station: Поправка на велосипеди biergarten: Бирария на открито blood_bank: Кръвна банка boat_rental: Наем на лодки @@ -1245,11 +1246,18 @@ bg: commented: partial_changeset_with_comment: с коментар „%{changeset_comment}“ partial_changeset_without_comment: без коментар + confirmations: + confirm: + heading: Проверете електронна си поща + introduction_1: Изпратихме ви писмо за потвърждаване. + button: Потвърждаване + confirm_email: + heading: Потвърдете смяната на електронната поща + button: Потвърждаване messages: inbox: title: Входящи my_inbox: Входяща кутия - outbox: Изпратени messages: Имате %{new_messages} и %{old_messages} new_messages: one: '%{count} ново съобщение' @@ -1282,9 +1290,6 @@ bg: body: Съжаляваме но няма съобщение със това id. outbox: title: Изпратени - my_inbox_html: Моят %{inbox_link} - inbox: входящи - outbox: Изпратени messages: one: Изпратили сте %{count} съобщение other: Изпратили сте %{count} съобщения @@ -1315,6 +1320,72 @@ bg: as_unread: Съобщението е отбелязано като непрочетено destroy: destroyed: Съобщението беше изтрито + passwords: + lost_password: + title: Възстановяване на парола + heading: Забравена парола? + email address: 'Електронна поща:' + new password button: Нова парола + help_text: Въведете имейл адреса, който сте използвали при регистрацията, и + ние ще Ви изпратим връзка, която можете да използвате, за да промените паролата + си. + notice email cannot find: Съжаляваме, но този електронен адрес не е намерен. + reset_password: + title: Възстановяване на парола + heading: Смени Парола за %{user} + reset: Нулиране на парола + flash changed: Паролата е променена успешно. + sessions: + new: + title: Влизане + heading: Влизане + email or username: 'Електронна поща или потребителско име:' + password: 'Парола:' + openid_html: '%{logo} OpenID:' + remember: Запомняне + lost password link: Забравена парола? + login_button: Влизане + register now: Регистрирайте се + with external: 'Или използвайте удостоверяване от външен източник:' + new to osm: Нов за OpenStreetMap? + to make changes: За да правите промени в OpenStreetMap data, вие трябва да имате + профил. + create account minute: Създайте своя сметка. Отнема само минута. + no account: Нямате сметка? + auth failure: Съжаляваме, но не можете да влезете с тези данни. + openid_logo_alt: Влизане с OpenID + auth_providers: + openid: + title: Влизане с OpenID + alt: Влизане с адрес на OpenID + google: + title: Влизане с Гугъл + alt: Влизане с OpenID на Google + facebook: + title: Влизане с Facebook + alt: Влизане със сметка на Facebook + windowslive: + title: Влизане с Windows Live + alt: Влизане със сметка на Windows Live + github: + title: Влизане с GitHub + alt: Влизане със сметка в GitHub + wikipedia: + title: Влизане с Уикипедия + alt: Влизане със сметка от Уикипедия + yahoo: + title: Влизане с Yahoo + alt: Влизане с OpenID от Yahoo + wordpress: + title: Влизане с Wordpress + alt: Влизане с OpenID от Wordpress + aol: + title: Влизане с AOL + alt: Влизане с OpenID от AOL + destroy: + title: Изход + heading: Изход от OpenStreetMap + logout_button: Изход shared: markdown_help: headings: Заглавия @@ -1518,23 +1589,6 @@ bg: bicycle_shop: Магазин за велосипеди bicycle_parking: Паркинг на велосипеди toilets: Тоалетни - richtext_area: - edit: Променяне - preview: Преглед - markdown_help: - title_html: С подкрепата на kramdown - headings: Заглавия - heading: Заглавие - subheading: Подзаглавие - unordered: Неподреден списък - ordered: Подреден списък - first: Първа точка - second: Втора точка - link: Препратка - text: Текст - image: Изображение - alt: Алтернативен текст - url: Адрес welcome: title: Добре дошли! whats_on_the_map: @@ -1611,14 +1665,12 @@ bg: other: '%{count} точки' more: още view_map: Вижте на картата - edit: променяне edit_map: Редактиране на картата public: ПУБЛИЧНО private: ЧАСТНО trackable: ПРОСЛЕДИМО by: от in: в - map: карта index: public_traces: Публични следи от GPS my_traces: Моите следи от GPS @@ -1674,70 +1726,6 @@ bg: oauth: OAuth register_new: Регистриране на приложение users: - login: - title: Влизане - heading: Влизане - email or username: 'Електронна поща или потребителско име:' - password: 'Парола:' - openid_html: '%{logo} OpenID:' - remember: Запомняне - lost password link: Забравена парола? - login_button: Влизане - register now: Регистрирайте се - with external: 'Или използвайте удостоверяване от външен източник:' - new to osm: Нов за OpenStreetMap? - to make changes: За да правите промени в OpenStreetMap data, вие трябва да имате - профил. - create account minute: Създайте своя сметка. Отнема само минута. - no account: Нямате сметка? - auth failure: Съжаляваме, но не можете да влезете с тези данни. - openid_logo_alt: Влизане с OpenID - auth_providers: - openid: - title: Влизане с OpenID - alt: Влизане с адрес на OpenID - google: - title: Влизане с Гугъл - alt: Влизане с OpenID на Google - facebook: - title: Влизане с Facebook - alt: Влизане със сметка на Facebook - windowslive: - title: Влизане с Windows Live - alt: Влизане със сметка на Windows Live - github: - title: Влизане с GitHub - alt: Влизане със сметка в GitHub - wikipedia: - title: Влизане с Уикипедия - alt: Влизане със сметка от Уикипедия - yahoo: - title: Влизане с Yahoo - alt: Влизане с OpenID от Yahoo - wordpress: - title: Влизане с Wordpress - alt: Влизане с OpenID от Wordpress - aol: - title: Влизане с AOL - alt: Влизане с OpenID от AOL - logout: - title: Изход - heading: Изход от OpenStreetMap - logout_button: Изход - lost_password: - title: Възстановяване на парола - heading: Забравена парола? - email address: 'Електронна поща:' - new password button: Нова парола - help_text: Въведете имейл адреса, който сте използвали при регистрацията, и - ние ще Ви изпратим връзка, която можете да използвате, за да промените паролата - си. - notice email cannot find: Съжаляваме, но този електронен адрес не е намерен. - reset_password: - title: Възстановяване на парола - heading: Смени Парола за %{user} - reset: Нулиране на парола - flash changed: Паролата е променена успешно. new: title: Регистриране about: @@ -1868,13 +1856,6 @@ bg: flash update success confirm needed: Сведенията за потребителя са успешно обновени. Проверете електронната си поща за писмо, с което да потвърдите новия адрес. flash update success: Сведенията за потребителя са успешно обновени. - confirm: - heading: Проверете електронна си поща - introduction_1: Изпратихме ви писмо за потвърждаване. - button: Потвърждаване - confirm_email: - heading: Потвърдете смяната на електронната поща - button: Потвърждаване set_home: flash success: Вашето местоположение е успешно запазено index: diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 80596f23b..10eb09b39 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -7,10 +7,12 @@ # Author: Bodhisattwa # Author: Ehsanulhb # Author: Elias Ahmmad +# Author: Greatder # Author: Gronthokeet # Author: Kayser Ahmad # Author: Md. Golam Mukit Khan # Author: Nasir8891 +# Author: R4356th # Author: R4bb1 # Author: Rasal Lia # Author: Sayma Jahan @@ -138,6 +140,7 @@ bn: category: আপনার রিপোর্টের জন্য একটি কারণ নির্বাচন করুন user: email: ইমেইল + email_confirmation: ইমেইল নিশ্চিতকরণ new_email: নতুন ই-মেইল ঠিকানা active: সক্রিয় display_name: প্রদর্শনের জন্য নাম @@ -572,7 +575,11 @@ bn: post_office: ডাকঘর prison: কারাগার pub: মদ্যশালা + public_bath: জনগোসলখানা + public_bookcase: গণ-গ্রন্থতাক public_building: সরকারি ভবন + ranger_station: রেঞ্জার স্টেশন + recycling: পুনঃপ্রক্রিয়াকরণ স্থান restaurant: রেঁস্তোরা school: বিদ্যালয় shelter: আশ্রয় @@ -586,14 +593,21 @@ bn: theatre: নাট্যশালা toilets: পায়খানা townhall: টাউনহল + training: প্রশিক্ষণ কেন্দ্র university: বিশ্ববিদ্যালয় + vehicle_inspection: গাড়ি পরীক্ষণ vending_machine: ভেন্ডিং মেশিন veterinary: ভেটেরিনারি সার্জারি village_hall: গ্রামগৃহ waste_basket: বর্জ্যদানি waste_disposal: বর্জ্য পুনর্বাসন + waste_dump_site: ময়লা ফেলার স্থান + watering_place: সেচ স্থান + water_point: সেচ বিন্দু + weighbridge: ভারমাপক সেতু "yes": স্থাপনা boundary: + aboriginal_lands: আদিবাসী ভূমি administrative: প্রশাসনিক সীমানা census: আদমশুমারি এলাকা national_park: জাতীয় উদ্যান @@ -1128,11 +1142,15 @@ bn: hi: সুপ্রিয় %{to_user}, greeting: সুপ্রিয়, details: পরিবর্তনধার্য সম্পর্কে আরও বিস্তারিত %{url} এ পাওয়া যাবে। + confirmations: + confirm: + button: নিশ্চিত করুন + confirm_email: + button: নিশ্চিত করুন messages: inbox: title: ইনবক্স my_inbox: আমার ইনবক্স - outbox: আউটবক্স messages: আপনার %{new_messages} ও %{old_messages} রয়েছে new_messages: one: '%{count}টি নতুন বার্তা' @@ -1164,9 +1182,7 @@ bn: heading: কোন বার্তা নেই outbox: title: বহির্বাক্স - my_inbox_html: আমার %{inbox_link} - inbox: অন্তঃবাক্স - outbox: বহির্বাক্স + my_inbox: আমার ইনবক্স messages: one: আপনি %{count}টি বার্তা পাঠিয়েছেন other: আপনি %{count}টি বার্তা পাঠিয়েছেন @@ -1191,6 +1207,51 @@ bn: as_unread: বার্তা অপঠিত হিসেবে চিহ্নিত করুন destroy: destroyed: বার্তা মোছা হয়েছে + passwords: + lost_password: + title: পাসওয়ার্ড ভুলে গেছেন + heading: পাসওয়ার্ড ভুলে গেছেন? + email address: 'ইমেইল ঠিকানা:' + new password button: পাসওয়ার্ড পুনঃনির্ধারণ + help_text: নিবন্ধনের সময় ব্যবহৃত আপনার ইমেইল ঠিকানাটি লিখুন, ইমেইলের মাধ্যমে + আমরা একটি লিঙ্ক পাঠাবো যার মাধ্যমে আপনি পাসওয়ার্ড পরিবর্তন করতে পারবেন। + reset_password: + title: পাসওয়ার্ড পুনঃনির্ধারণ + reset: পাসওয়ার্ড পুনঃনির্ধারণ + flash changed: আপনার পাসওয়ার্ড পরিবর্তন করা হয়েছে। + sessions: + new: + title: প্রবেশ + heading: প্রবেশ + email or username: ইমেইল ঠিকানা অথবা ব্যবহারকারীনাম + password: 'পাসওয়ার্ড:' + remember: আমাকে মনে রাখো + lost password link: পাসওয়ার্ড ভুলে গেছেন? + login_button: প্রবেশ + register now: এখনই নিবন্ধন করুন + with username: 'ইতিমধ্যে একটি ওপেনস্ট্রিটম্যাপ অ্যাকাউন্ট আছে? দয়া করে ব্যবহারকারী + নাম এবং পাসওয়ার্ড দিয়ে প্রবেশ করুন:' + new to osm: ওপেনস্ট্রিটম্যাপে নতুন? + no account: কোনও অ্যাকাউন্ট নেই? + auth_providers: + google: + title: গুগল দিয়ে প্রবেশ + facebook: + title: ফেসবুক দিয়ে প্রবেশ + alt: ফেসবুক অ্যাকাউন্ট দিয়ে প্রবেশ করুন + github: + title: গিটহাব দিয়ে প্রবেশ করুন + alt: একটি গিটহাব অ্যাকাউন্ট দিয়ে প্রবেশ করুন + wikipedia: + title: উইকিপিডিয়া দিয়ে প্রবেশ + alt: উইকিপিডিয়া অ্যাকাউন্ট দিয়ে প্রবেশ করুন + yahoo: + title: ইয়াহু দিয়ে প্রবেশ + wordpress: + title: ওয়ার্ডপ্রেস দিয়ে প্রবেশ + destroy: + title: প্রস্থান + logout_button: প্রস্থান shared: markdown_help: title_html: kramdown @@ -1387,13 +1448,6 @@ bn: bicycle_shop: সাইকেলের দোকান bicycle_parking: সাইকেল পার্কিং toilets: পায়খানা - richtext_area: - edit: সম্পাদনা - preview: প্রাকদর্শন - markdown_help: - link: লিঙ্ক - image: চিত্র - url: ইউআরএল welcome: title: স্বাগতম! whats_on_the_map: @@ -1458,13 +1512,11 @@ bn: more: আরও trace_details: অনুসরণের বিস্তারিত দেখুন view_map: মানচিত্র দেখুন - edit: সম্পাদনা edit_map: মানচিত্র সম্পাদনা identifiable: শনাক্তকরণযোগ্য private: ব্যাক্তিগত trackable: অনুসরণযোগ্য by: দ্বারা - map: মানচিত্র index: upload_trace: অনুসরণ আপলোড see_all_traces: সব অনুসরণগুলো দেখুন @@ -1488,49 +1540,6 @@ bn: application: অ্যাপলিকেশনের নাম issued_at: অনুমোদনের তারিখ users: - login: - title: প্রবেশ - heading: প্রবেশ - email or username: ইমেইল ঠিকানা অথবা ব্যবহারকারীনাম - password: 'পাসওয়ার্ড:' - remember: আমাকে মনে রাখো - lost password link: পাসওয়ার্ড ভুলে গেছেন? - login_button: প্রবেশ - register now: এখনই নিবন্ধন করুন - with username: 'ইতিমধ্যে একটি ওপেনস্ট্রিটম্যাপ অ্যাকাউন্ট আছে? দয়া করে ব্যবহারকারী - নাম এবং পাসওয়ার্ড দিয়ে প্রবেশ করুন:' - new to osm: ওপেনস্ট্রিটম্যাপে নতুন? - no account: কোনও অ্যাকাউন্ট নেই? - auth_providers: - google: - title: গুগল দিয়ে প্রবেশ - facebook: - title: ফেসবুক দিয়ে প্রবেশ - alt: ফেসবুক অ্যাকাউন্ট দিয়ে প্রবেশ করুন - github: - title: গিটহাব দিয়ে প্রবেশ করুন - alt: একটি গিটহাব অ্যাকাউন্ট দিয়ে প্রবেশ করুন - wikipedia: - title: উইকিপিডিয়া দিয়ে প্রবেশ - alt: উইকিপিডিয়া অ্যাকাউন্ট দিয়ে প্রবেশ করুন - yahoo: - title: ইয়াহু দিয়ে প্রবেশ - wordpress: - title: ওয়ার্ডপ্রেস দিয়ে প্রবেশ - logout: - title: প্রস্থান - logout_button: প্রস্থান - lost_password: - title: পাসওয়ার্ড ভুলে গেছেন - heading: পাসওয়ার্ড ভুলে গেছেন? - email address: 'ইমেইল ঠিকানা:' - new password button: পাসওয়ার্ড পুনঃনির্ধারণ - help_text: নিবন্ধনের সময় ব্যবহৃত আপনার ইমেইল ঠিকানাটি লিখুন, ইমেইলের মাধ্যমে - আমরা একটি লিঙ্ক পাঠাবো যার মাধ্যমে আপনি পাসওয়ার্ড পরিবর্তন করতে পারবেন। - reset_password: - title: পাসওয়ার্ড পুনঃনির্ধারণ - reset: পাসওয়ার্ড পুনঃনির্ধারণ - flash changed: আপনার পাসওয়ার্ড পরিবর্তন করা হয়েছে। new: title: নিবন্ধন করুন about: @@ -1617,10 +1626,6 @@ bn: home location: বাড়ির অবস্থান save changes button: পরিবর্তন সংরক্ষণ return to profile: প্রোফাইলে ফিরুন - confirm: - button: নিশ্চিত করুন - confirm_email: - button: নিশ্চিত করুন go_public: flash success: আপনার সকল সম্পাদনা এখন উন্মুক্ত, এবং এখন আপনার সম্পাদনের অনুমতি রয়েছে। diff --git a/config/locales/br.yml b/config/locales/br.yml index 6455cce85..556d74063 100644 --- a/config/locales/br.yml +++ b/config/locales/br.yml @@ -859,6 +859,7 @@ br: cape: Kab cave_entrance: Treuzoù mougev cliff: Tornaod + coastline: Arvor crater: Krater dune: Tevenn fell: Fell @@ -1356,11 +1357,38 @@ br: details: Muioc'h a ditouroù war an holl cheñchamantoù e %{url}. unsubscribe: Evit digoumanantiñ diouzh hizivadurioù an holl gemmoù, gweladennit %{url} ha klikit war « Digoumanantiñ ». + confirmations: + confirm: + heading: Taolit ur sell ouzh ho posteloù ! + introduction_1: Kaset hon eus ur postel gwiriekaat deoc'h. + introduction_2: Kadarnait ho kont o klikañ war al liamm er postel, hag e c'hallit + kregiñ da gartennaouiñ. + press confirm button: Pouezit war ar bouton kadarnaat amañ dindan evit gweredekaat + ho kont. + button: Kadarnaat + success: Kadarnaet eo ho kont, trugarez evit bezañ en em enskrivet ! + already active: Kadarnaet eo bet ar gont-mañ c'hoazh. + unknown token: Diamzeret eo ar c'hod gwiriekaat pe n'eus ket anezhañ. + reconfirm_html: M'ho peus ezhomm da adkas ar postel kadarnaat, klikit + amañ. + confirm_resend: + success_html: Kaset hon eus ur postel kadarnaat da %{email}. Kerkent ha kadarnaet + ho kont e c'hallot kregiñ da gartennañ.

Ma implijit ur reizhiad + enep-strob hag a gas goulennoù kadarnaat, lakait %{sender} en ho listenn wenn, + mar plij, rak n'omp ket evit respont d'ar posteloù-se. + failure: N'eo ket bet kavet an implijer %{name}. + confirm_email: + heading: Kadarnaat ur c'hemm chomlec'h postel + press confirm button: Pouezit war ar bouton kadarnaat evit kadarnaat ho chomlec'h + postel nevez. + button: Kadarnaat + success: Kadarnaet eo ho chomlec'h postel ! + failure: Kadarnaet ez eus bet ur chomlec'h postel dija gant art jedouer-mañ. + unknown_token: N'eo ket mat ar c'hod kadarnaat-mañ ken pe n'eus ket anezhañ messages: inbox: title: Boest resev my_inbox: Ma boest resev - outbox: boest kas messages: '%{new_messages} ha %{old_messages} zo evidoc''h' new_messages: one: '%{count} gemennadenn nevez' @@ -1395,9 +1423,6 @@ br: body: Ho tigarez, n'eus kemennadenn ebet gant an id-se. outbox: title: Boest kas - my_inbox_html: Ma %{inbox_link} - inbox: boest resev - outbox: boest kas messages: one: Kaset hoc'h eus %{count} gemennadenn other: Kaset hoc'h eus %{count} kemennadenn @@ -1431,6 +1456,82 @@ br: as_unread: Merkañ evel anlennet destroy: destroyed: Kemennadenn dilamet + passwords: + lost_password: + title: Ger-tremen kollet + heading: Ankouaet hoc'h eus ho ker-tremen ? + email address: 'Chomlec''h postel :' + new password button: Adderaouekaat ar ger-tremen + help_text: Ebarzhit ar chomlec'h postel ho poa implijet evit en em enskrivañ, + kaset e vo deoc'h ul liamm a c'hallot implijout evit adderaouekaat ho ker-tremen. + notice email on way: Kaset ez eus bet ur postel deoc'h evit adderaouekaat ho + ker-tremen. + notice email cannot find: Ho tigarez, n'eo ket bet kavet ar chomlec'h postel-se. + reset_password: + title: Adderaouekaat ar ger-tremen + heading: Adderaouekaat ar ger-tremen evit %{user} + reset: Adderaouekaat ar ger-tremen + flash changed: Cheñchet eo bet ho ker-tremen. + flash token bad: N'eo ket bet kavet ar jedouer-se, gwiriañ an URL marteze ? + sessions: + new: + title: Kevreañ + heading: Kevreañ + email or username: 'Chomlec''h postel pe anv implijer :' + password: 'Ger-tremen :' + openid_html: '%{logo} OpenID :' + remember: 'Derc''hel soñj ac''hanon :' + lost password link: Ankouaet ho ker-tremen ganeoc'h ? + login_button: Kevreañ + register now: En em enskrivañ bremañ + with username: 'Ur gont OpenStreetMap hoc''h eus dija ? Digorit un dalc''h en + ur verkañ hoc''h anv implijer hag ho ker-tremen :' + with external: 'Mod all, implijit un tredeour evit kevreañ :' + new to osm: Nevez war OpenStreetMap ? + to make changes: Evit kemmañ roadennoù OpenStreetMap e rankit kaout ur gont. + create account minute: Krouiñ ur gont. Ne bad nemet ur vunutenn. + no account: N'hoc'h eus kont ebet ? + account not active: Ho tigarez, n'eo ket oberiant ho kont c'hoazh.
Klikit + war al liamm er postel kadarnaat, mar plij, evit gweredekaat ho kont, pe goulennit ur postel kadarnaat all . + account is suspended: Digarezit, arsavet eo bet ho kont abalamour d'un obererezh + arvarus.
Kit e darempred gant ar webmaster + m'hoc'h eus c'hoant da gaozeal diwar-benn an dra-se. + auth failure: Ho tigarez, met n'eus ket bet gallet hoc'h anavezout gant an titouroù + pourchaset. + openid_logo_alt: Kevreañ gant un OpenID + auth_providers: + openid: + title: Kevreañ ouzh OpenID + alt: Kevreañ ouzh un URL OpenID + google: + title: Kevreañ ouzh Google + alt: Kevreañ ouzh OpenID Google + facebook: + title: Kevreañ ouzh Facebook + alt: Kevreañ ouzh ur gont facebook + windowslive: + title: Kevreañ ouzh Windows Live + alt: Kevreañ ouzh ur gont Windows Live + github: + title: Kevreañ dre GitHub + alt: Kevreañ gant ur gont GitHub + wikipedia: + title: Kevreañ dre Wikipedia + alt: Kevreañ gant ur gont Wikipedia + yahoo: + title: Kevreañ ouzh Yahoo + alt: Kevreañ ouzh Yahoo OpenID + wordpress: + title: Kevreañ ouzh Wordpress + alt: Kevreañ ouzh OpenID Wordpress + aol: + title: Kevreañ ouzh AOL + alt: Kevreañ ouzh AOL OpenID + destroy: + title: Digevreañ + heading: Kuitaat OpenStreetMap + logout_button: Digevreañ site: about: next: War-lerc'h @@ -1794,23 +1895,6 @@ br: bicycle_shop: Stal varc'hoù-houarn bicycle_parking: Parklec'h belioù toilets: Privezioù - richtext_area: - edit: Aozañ - preview: Rakwelet - markdown_help: - title_html: Dielfennet gant Markdown - headings: Titloù - heading: Titl - subheading: Istitl - unordered: Roll en dizurzh - ordered: Roll urzhiet - first: Elfenn gentañ - second: Eil elfenn - link: Liamm - text: Testenn - image: Skeudenn - alt: Testenn all - url: URL welcome: title: Deuet-mat oc'h ! introduction_html: Degemer mat en OpenStreetMap, ar gartenn digoust eus ar bed @@ -1923,7 +2007,6 @@ br: more: muioc'h trace_details: Gwelet munudoù ar roud view_map: Gwelet ar gartenn - edit: aozañ edit_map: Aozañ ar gartenn public: FORAN identifiable: ANAVEZADUS @@ -1931,7 +2014,6 @@ br: trackable: A C'HALLER TRESEAL by: gant in: e-barzh - map: kartenn index: public_traces: Roudoù GPS foran my_traces: Ma roudennoù GPS @@ -2044,80 +2126,6 @@ br: destroy: flash: Distrujet eo bet marilhadur an arload arval users: - login: - title: Kevreañ - heading: Kevreañ - email or username: 'Chomlec''h postel pe anv implijer :' - password: 'Ger-tremen :' - openid_html: '%{logo} OpenID :' - remember: 'Derc''hel soñj ac''hanon :' - lost password link: Ankouaet ho ker-tremen ganeoc'h ? - login_button: Kevreañ - register now: En em enskrivañ bremañ - with username: 'Ur gont OpenStreetMap hoc''h eus dija ? Digorit un dalc''h en - ur verkañ hoc''h anv implijer hag ho ker-tremen :' - with external: 'Mod all, implijit un tredeour evit kevreañ :' - new to osm: Nevez war OpenStreetMap ? - to make changes: Evit kemmañ roadennoù OpenStreetMap e rankit kaout ur gont. - create account minute: Krouiñ ur gont. Ne bad nemet ur vunutenn. - no account: N'hoc'h eus kont ebet ? - account not active: Ho tigarez, n'eo ket oberiant ho kont c'hoazh.
Klikit - war al liamm er postel kadarnaat, mar plij, evit gweredekaat ho kont, pe goulennit ur postel kadarnaat all . - account is suspended: Digarezit, arsavet eo bet ho kont abalamour d'un obererezh - arvarus.
Kit e darempred gant ar webmaster - m'hoc'h eus c'hoant da gaozeal diwar-benn an dra-se. - auth failure: Ho tigarez, met n'eus ket bet gallet hoc'h anavezout gant an titouroù - pourchaset. - openid_logo_alt: Kevreañ gant un OpenID - auth_providers: - openid: - title: Kevreañ ouzh OpenID - alt: Kevreañ ouzh un URL OpenID - google: - title: Kevreañ ouzh Google - alt: Kevreañ ouzh OpenID Google - facebook: - title: Kevreañ ouzh Facebook - alt: Kevreañ ouzh ur gont facebook - windowslive: - title: Kevreañ ouzh Windows Live - alt: Kevreañ ouzh ur gont Windows Live - github: - title: Kevreañ dre GitHub - alt: Kevreañ gant ur gont GitHub - wikipedia: - title: Kevreañ dre Wikipedia - alt: Kevreañ gant ur gont Wikipedia - yahoo: - title: Kevreañ ouzh Yahoo - alt: Kevreañ ouzh Yahoo OpenID - wordpress: - title: Kevreañ ouzh Wordpress - alt: Kevreañ ouzh OpenID Wordpress - aol: - title: Kevreañ ouzh AOL - alt: Kevreañ ouzh AOL OpenID - logout: - title: Digevreañ - heading: Kuitaat OpenStreetMap - logout_button: Digevreañ - lost_password: - title: Ger-tremen kollet - heading: Ankouaet hoc'h eus ho ker-tremen ? - email address: 'Chomlec''h postel :' - new password button: Adderaouekaat ar ger-tremen - help_text: Ebarzhit ar chomlec'h postel ho poa implijet evit en em enskrivañ, - kaset e vo deoc'h ul liamm a c'hallot implijout evit adderaouekaat ho ker-tremen. - notice email on way: Kaset ez eus bet ur postel deoc'h evit adderaouekaat ho - ker-tremen. - notice email cannot find: Ho tigarez, n'eo ket bet kavet ar chomlec'h postel-se. - reset_password: - title: Adderaouekaat ar ger-tremen - heading: Adderaouekaat ar ger-tremen evit %{user} - reset: Adderaouekaat ar ger-tremen - flash changed: Cheñchet eo bet ho ker-tremen. - flash token bad: N'eo ket bet kavet ar jedouer-se, gwiriañ an URL marteze ? new: title: Kevreañ no_auto_account_create: Siwazh n'omp ket evit krouiñ ur gont evidoc'h ent emgefreek. @@ -2302,33 +2310,6 @@ br: flash update success confirm needed: Hizivaet eo bet titouroù an implijer. Gwiriit ho posteloù evit kadarnaat ho chomlec'h postel nevez. flash update success: Hizivaet eo bet titouroù an implijer. - confirm: - heading: Taolit ur sell ouzh ho posteloù ! - introduction_1: Kaset hon eus ur postel gwiriekaat deoc'h. - introduction_2: Kadarnait ho kont o klikañ war al liamm er postel, hag e c'hallit - kregiñ da gartennaouiñ. - press confirm button: Pouezit war ar bouton kadarnaat amañ dindan evit gweredekaat - ho kont. - button: Kadarnaat - success: Kadarnaet eo ho kont, trugarez evit bezañ en em enskrivet ! - already active: Kadarnaet eo bet ar gont-mañ c'hoazh. - unknown token: Diamzeret eo ar c'hod gwiriekaat pe n'eus ket anezhañ. - reconfirm_html: M'ho peus ezhomm da adkas ar postel kadarnaat, klikit - amañ. - confirm_resend: - success_html: Kaset hon eus ur postel kadarnaat da %{email}. Kerkent ha kadarnaet - ho kont e c'hallot kregiñ da gartennañ.

Ma implijit ur reizhiad - enep-strob hag a gas goulennoù kadarnaat, lakait %{sender} en ho listenn wenn, - mar plij, rak n'omp ket evit respont d'ar posteloù-se. - failure: N'eo ket bet kavet an implijer %{name}. - confirm_email: - heading: Kadarnaat ur c'hemm chomlec'h postel - press confirm button: Pouezit war ar bouton kadarnaat evit kadarnaat ho chomlec'h - postel nevez. - button: Kadarnaat - success: Kadarnaet eo ho chomlec'h postel ! - failure: Kadarnaet ez eus bet ur chomlec'h postel dija gant art jedouer-mañ. - unknown_token: N'eo ket mat ar c'hod kadarnaat-mañ ken pe n'eus ket anezhañ set_home: flash success: Enrollet eo bet lec'hiadur ar gêr go_public: diff --git a/config/locales/bs.yml b/config/locales/bs.yml index 4a8d4b28b..a8fc2b880 100644 --- a/config/locales/bs.yml +++ b/config/locales/bs.yml @@ -898,11 +898,31 @@ bs: bilješki.' changeset_comment_notification: greeting: Zdravo, + confirmations: + confirm: + heading: Provjerite vaš email! + press confirm button: Pritisnuti potvrditi da bi aktivirali Vaš korisnički račun. + button: Potvrditi + success: Vaš račun je potvrđen, hvala na uključenju! + already active: Ovaj račun je već potvrđen. + unknown token: Taj kod za potvrdu je istekao ili ne postoji. + confirm_resend: + success_html: Poslali smo novu potvrdu na e-mail %{email} a čim potvrdite svoj + račun, moći ćete početi mapirati.

Ako koristite antispam sistem + koji šalje potvrdu zahtjeva, molimo Vas da provjerite jeli %{sender} na tzv. + "bijeloj listi", jer nismo u mogućnosti odgovarati na potvrde zahtjeva. + failure: Korisnik %{name} nije pronađen. + confirm_email: + heading: Potvrditi promjenu e-mail adrese. + press confirm button: Pritsnite potvrdno dugme ispod da bi ste potvrdili novu + e-mail adresu. + button: Potvrditi + success: Promjena adrese e-pošte je potvrđena! + failure: E-mail adresa je već potvrđena sa ovom značkom. messages: inbox: title: Dolazna pošta my_inbox: Moja dolazna pošta - outbox: odlazna pošta messages: Imate %{new_messages} i %{old_messages} new_messages: one: '%{count} nova poruka' @@ -937,9 +957,6 @@ bs: body: Žao nam je nema poruke s tim id. outbox: title: Odlazna pošta - my_inbox_html: Moj %{inbox_link} - inbox: dolazna pošta - outbox: odlazna pošta messages: one: Poslali ste %{count} poruku other: Poslali ste %{count} poruke/a @@ -972,6 +989,60 @@ bs: as_unread: Poruka označena kao nepročitana destroy: destroyed: Poruka izbrisana + passwords: + lost_password: + title: Izgubljena lozinka + heading: Zaboravljena lozinka? + email address: 'Adresa e-pošte:' + new password button: Ponovno postavljanje lozinke + help_text: Unesite e-mail adresu koju ste koristili za otvaranje računa i poslaćemo + Vam link kojim možete ponovo postaviti lozinku. + notice email on way: Žao mi je što ste je izgubili :-( ali e-mail je na putu + tako da je možete pononvo postaviti uskoro. + notice email cannot find: Ne možemo pronaći tu e-mail adresu, žao nam je. + reset_password: + title: Ponovno postavljanje lozinke + heading: Ponovno postavljanje lozinke za %{user} + reset: Ponovno postavljanje lozinke + flash changed: Vaša lozinka je promjenjena. + flash token bad: Niste pronašli tz značku, možda da provjerite URL? + sessions: + new: + title: Prijava + heading: Prijava + email or username: 'E-mail adresa ili korisničko ime:' + password: 'Lozinka:' + openid_html: '%{logo} OtvoreniID:' + remember: Zapamti me + lost password link: Izgubili ste lozinku? + login_button: Prijava + register now: Registrirajte se sada + with username: 'Već imate račun na OpenStreetMapu? Molimo da se prijavite s + Vašim korisničkim imenom i lozinkom:' + new to osm: Novi na OpenStreetMap? + to make changes: Da bi ste mijenjali OpenStreetMap podatke, morate imati korisnički + račun. + create account minute: Otvorite korisnički račun. To traje samo minutu. + no account: Nemate korisničko ime? + account not active: Žao nam je, Vaš korisnički račun još nije aktivan.
+ Molimo vas da koristite poveznicu u e-mailu potvrde da bi ste aktivirali svoj + račun, ili zatražiti novi e-mail potvrde . + account is suspended: Žao nam je, Vaš račun je suspendovan zbog sumnjive aktivnosti.
Molimo kontaktirajte webmastera uoliko želite + da diskutujete o ovome. + auth failure: Žao mi je, ne možemo Vas prijaviti s ovim detaljima. + openid_logo_alt: Prijavite se sa OtvorenimID + auth_providers: + yahoo: + title: Prijavite se sa Yahoo nalogom + alt: Prijavite se sa Yahoo OpenID + wordpress: + title: Prijavite se sa Wordpress nalogom + alt: Prijavite se sa Wordpress OpenID + destroy: + title: Odjava + heading: Odjava iz OpenStreetMap + logout_button: Odjava site: about: next: Sljedeće @@ -1206,23 +1277,6 @@ bs: destination: Pristup odredištu construction: Ceste u izgradnji bicycle_parking: Biciklistički parking - richtext_area: - edit: Urediti - preview: Pregledati - markdown_help: - title_html: Analizirano sa Markdown - headings: Naslovi - heading: Naslov - subheading: Podnaslov - unordered: Neuređeni popis - ordered: Uređeni popis - first: Prvi objekat - second: Drugi objekat - link: Poveznica - text: Tekst - image: Slika - alt: Alt tekst - url: URL welcome: title: Dobrodošli! whats_on_the_map: @@ -1290,7 +1344,6 @@ bs: more: više trace_details: Pogledati detalje trase view_map: Pogledati kartu - edit: urediti edit_map: Urediti kartu public: JAVNO identifiable: MOŽE SE IDENTIFICIRATI @@ -1298,7 +1351,6 @@ bs: trackable: MOŽE SE PRATITI by: od in: u - map: karta index: public_traces: Javne GPS trase public_traces_from: Javne GPS trase korisnika %{user} @@ -1383,58 +1435,6 @@ bs: destroy: flash: Uništena registracija klijent aplikacije users: - login: - title: Prijava - heading: Prijava - email or username: 'E-mail adresa ili korisničko ime:' - password: 'Lozinka:' - openid_html: '%{logo} OtvoreniID:' - remember: Zapamti me - lost password link: Izgubili ste lozinku? - login_button: Prijava - register now: Registrirajte se sada - with username: 'Već imate račun na OpenStreetMapu? Molimo da se prijavite s - Vašim korisničkim imenom i lozinkom:' - new to osm: Novi na OpenStreetMap? - to make changes: Da bi ste mijenjali OpenStreetMap podatke, morate imati korisnički - račun. - create account minute: Otvorite korisnički račun. To traje samo minutu. - no account: Nemate korisničko ime? - account not active: Žao nam je, Vaš korisnički račun još nije aktivan.
- Molimo vas da koristite poveznicu u e-mailu potvrde da bi ste aktivirali svoj - račun, ili zatražiti novi e-mail potvrde . - account is suspended: Žao nam je, Vaš račun je suspendovan zbog sumnjive aktivnosti.
Molimo kontaktirajte webmastera uoliko želite - da diskutujete o ovome. - auth failure: Žao mi je, ne možemo Vas prijaviti s ovim detaljima. - openid_logo_alt: Prijavite se sa OtvorenimID - auth_providers: - yahoo: - title: Prijavite se sa Yahoo nalogom - alt: Prijavite se sa Yahoo OpenID - wordpress: - title: Prijavite se sa Wordpress nalogom - alt: Prijavite se sa Wordpress OpenID - logout: - title: Odjava - heading: Odjava iz OpenStreetMap - logout_button: Odjava - lost_password: - title: Izgubljena lozinka - heading: Zaboravljena lozinka? - email address: 'Adresa e-pošte:' - new password button: Ponovno postavljanje lozinke - help_text: Unesite e-mail adresu koju ste koristili za otvaranje računa i poslaćemo - Vam link kojim možete ponovo postaviti lozinku. - notice email on way: Žao mi je što ste je izgubili :-( ali e-mail je na putu - tako da je možete pononvo postaviti uskoro. - notice email cannot find: Ne možemo pronaći tu e-mail adresu, žao nam je. - reset_password: - title: Ponovno postavljanje lozinke - heading: Ponovno postavljanje lozinke za %{user} - reset: Ponovno postavljanje lozinke - flash changed: Vaša lozinka je promjenjena. - flash token bad: Niste pronašli tz značku, možda da provjerite URL? new: title: Otvorite račun no_auto_account_create: Nažalost nismo u mogućnosti automatski otvarati korisničke @@ -1586,26 +1586,6 @@ bs: flash update success confirm needed: Korisničke informacije su uspješno osvježene. Provjerite e-mail za porukom za potvrdu nove e-mail adrese. flash update success: Korisničke informacije su uspješno osvježene. - confirm: - heading: Provjerite vaš email! - press confirm button: Pritisnuti potvrditi da bi aktivirali Vaš korisnički račun. - button: Potvrditi - success: Vaš račun je potvrđen, hvala na uključenju! - already active: Ovaj račun je već potvrđen. - unknown token: Taj kod za potvrdu je istekao ili ne postoji. - confirm_resend: - success_html: Poslali smo novu potvrdu na e-mail %{email} a čim potvrdite svoj - račun, moći ćete početi mapirati.

Ako koristite antispam sistem - koji šalje potvrdu zahtjeva, molimo Vas da provjerite jeli %{sender} na tzv. - "bijeloj listi", jer nismo u mogućnosti odgovarati na potvrde zahtjeva. - failure: Korisnik %{name} nije pronađen. - confirm_email: - heading: Potvrditi promjenu e-mail adrese. - press confirm button: Pritsnite potvrdno dugme ispod da bi ste potvrdili novu - e-mail adresu. - button: Potvrditi - success: Promjena adrese e-pošte je potvrđena! - failure: E-mail adresa je već potvrđena sa ovom značkom. set_home: flash success: Matična lokacija uspješno snimljena. go_public: diff --git a/config/locales/ca.yml b/config/locales/ca.yml index 8f18c9697..6f93c32a9 100644 --- a/config/locales/ca.yml +++ b/config/locales/ca.yml @@ -984,6 +984,7 @@ ca: cape: Cap cave_entrance: Entrada a cova cliff: Cingle + coastline: Litoral crater: Cràter dune: Duna fell: Landa @@ -1562,11 +1563,38 @@ ca: visita %{url} i clica "Dona de baixa" unsubscribe_html: Per deixar de seguir les actualitzacions d'aquest conjunt de canvis, visiteu %{url} i cliqueu "Dona de baixa". + confirmations: + confirm: + heading: Comprova el teu correu electrònic + introduction_1: T'hem enviat un correu de confirmació. + introduction_2: Confirma el teu compte clicant a l'enllaç que es troba al correu + que t'hem enviat i ja podràs començar a editar el mapa. + press confirm button: Premeu el botó de confirmar sota per activar el compte. + button: Confirma + success: Heu confirmat el vostre compte, gràcies per registrar-vos! + already active: Aquest compte ja ha estat confirmat. + unknown token: Aquest codi de confirmació ha expirat o no existeix. + reconfirm_html: Si necessites que et reenviem el correu de confirmació, clica + aquí. + confirm_resend: + success_html: Hem enviat un bitllet de confirmació nou per %{email} i tan aviat + com confirmeu el vostre compte podreu cartografiar.

Si utilitzeu un + sistema contra el correu brossa que envia les sol·licituds de confirmació, + llavors autoritzeu %{sender} ja que no som capaços de respondre les sol·licituds + de confirmació. + failure: L'usuari %{name} no s'ha trobat. + confirm_email: + heading: Confirma un canvi d'adreça electrònica + press confirm button: Premeu el botó de confirmar sota per confirmar la seva + adreça de correu electrònic nou. + button: Confirma + success: S'ha confirmat el canvi de la teva adreça electrònica! + failure: Una adreça de correu electrònic ja ha estat confirmat amb aquesta fitxa. + unknown_token: Aquest codi de confirmació ha expirat o no existeix. messages: inbox: title: Safata d'entrada my_inbox: La meva safata d'entrada - outbox: Safata de sortida messages: Teniu %{new_messages} i %{old_messages} new_messages: one: '%{count} missatge nou' @@ -1600,9 +1628,6 @@ ca: body: No hi ha cap missatge amb aquesta id. outbox: title: Safata de sortida - my_inbox_html: La meva %{inbox_link} - inbox: safata d'entrada - outbox: safata de sortida messages: one: Teniu %{count} missatge enviat other: Teniu %{count} missatges enviats @@ -1636,6 +1661,82 @@ ca: as_unread: Missatge marcat com a no llegit destroy: destroyed: Missatge suprimit + passwords: + lost_password: + title: Contrasenya perduda + heading: Heu oblidat la contrasenya? + email address: 'Adreça de correu electrònic:' + new password button: Restableix la contrasenya + help_text: Introduïu l'adreça de correu electrònic que vau utilitzar per registrar-vos; + us hi enviarem un enllaç per restablir la contrasenya. + notice email on way: Lamentem que l'hàgiu perdut :-( però ja us hem enviat un + correu i la podreu restablir ben aviat. + notice email cannot find: No s'ha trobat aquesta adreça de correu. + reset_password: + title: Restableix la contrasenya + heading: Restableix la contrasenya per a %{user} + reset: Restableix la contrasenya + flash changed: S'ha canviat la contrasenya. + flash token bad: No s'ha trobat el testimoni. Comproveu la URL. + sessions: + new: + title: Inicia la sessió + heading: Inicia la sessió + email or username: 'Adreça de correu o nom d''usuari:' + password: 'Contrasenya:' + openid_html: '%{logo} OpenID:' + remember: Recorda'm + lost password link: Heu perdut la contrasenya? + login_button: Accés + register now: Registreu-vos-hi ara + with username: 'Ja teniu un compte de l''OpenStreetMap? Inicieu sessió amb el + nom d''usuari i contrasenya:' + with external: Alternativament, inicieu una sessió mitjançant un tercer + new to osm: Nou a OpenStreetMap? + to make changes: Per fer canvis a les dades de l'OpenStreetMap, heu de tenir + un compte. + create account minute: Creeu un compte. Només trigareu un minut. + no account: No teniu cap compte? + account not active: El vostre compte encara no és actiu.
Utilitzeu l'enllaç + al correu de confirmació per activar el vostre compte o demaneu + un nou correu electrònic de confirmació. + account is suspended: S'ha suspès el vostre compte a causa d'activitat sospitosa.
Contacteu amb el l'administrador del web per + parlar-ne. + auth failure: No podeu iniciar la sessió amb aquesta informació. + openid_logo_alt: Inicia sessió amb un compte OpenID + auth_providers: + openid: + title: Inicia sessió amb un compte OpenID + alt: Inicia sessió amb una URL OpenID + google: + title: Inicieu la sessió amb Google + alt: Inicieu la sessió amb un compte OpenID de Google + facebook: + title: Inicieu la sessió amb Facebook + alt: Inicieu la sessió amb un compte de Facebook + windowslive: + title: Inicieu la sessió amb Windows Live + alt: Inicieu de sessió amb un compte de Windows Live + github: + title: Inicieu la sessió amb GitHub + alt: Inicieu la sessió amb un compte de GitHub + wikipedia: + title: Inicieu la sessió amb Viquipèdia + alt: Inicieu la sessió amb un compte de Viquipèdia + yahoo: + title: Inicieu la sessió amb Yahoo + alt: Inicieu la sessió amb un compte OpenID de Yahoo + wordpress: + title: Inicieu la sessió amb Wordpress + alt: Inicieu la sessió amb un compte OpenID de Wordpress + aol: + title: Inicieu la sessió amb AOL + alt: Inicieu la sessió amb un compte OpenID d'AOL + destroy: + title: Surt + heading: Tanca la sessió d'OpenStreetMap + logout_button: Surt shared: markdown_help: title_html: Analitzat amb kramdown @@ -2031,23 +2132,6 @@ ca: bicycle_shop: Botiga de bicicletes bicycle_parking: Aparcament de bicicletes toilets: Lavabos - richtext_area: - edit: Edita - preview: Previsualització - markdown_help: - title_html: Analitzat amb kramdown - headings: Encapçalaments - heading: Encapçalament - subheading: Subtítol - unordered: Llista sense ordenar - ordered: Llista ordenada - first: Primer element - second: Segon element - link: Enllaç - text: Text - image: Imatge - alt: Text alternatiu - url: URL welcome: title: Us donem la benvinguda! introduction_html: Us donem la benvinguda a l'OpenStreetMap, el mapamundi lliure @@ -2170,7 +2254,6 @@ ca: more: més trace_details: Mostra els detalls de la traça view_map: Mostra el mapa - edit: edita edit_map: Edita el mapa public: PÚBLIC identifiable: IDENTIFICABLE @@ -2178,7 +2261,6 @@ ca: trackable: RASTREJABLE by: per in: en - map: mapa index: public_traces: Traces GPS públiques my_traces: Les meves traces de GPS @@ -2294,80 +2376,6 @@ ca: destroy: flash: S'ha destruït el registre de l'aplicació client users: - login: - title: Inicia la sessió - heading: Inicia la sessió - email or username: 'Adreça de correu o nom d''usuari:' - password: 'Contrasenya:' - openid_html: '%{logo} OpenID:' - remember: Recorda'm - lost password link: Heu perdut la contrasenya? - login_button: Accés - register now: Registreu-vos-hi ara - with username: 'Ja teniu un compte de l''OpenStreetMap? Inicieu sessió amb el - nom d''usuari i contrasenya:' - with external: Alternativament, inicieu una sessió mitjançant un tercer - new to osm: Nou a OpenStreetMap? - to make changes: Per fer canvis a les dades de l'OpenStreetMap, heu de tenir - un compte. - create account minute: Creeu un compte. Només trigareu un minut. - no account: No teniu cap compte? - account not active: El vostre compte encara no és actiu.
Utilitzeu l'enllaç - al correu de confirmació per activar el vostre compte o demaneu - un nou correu electrònic de confirmació. - account is suspended: S'ha suspès el vostre compte a causa d'activitat sospitosa.
Contacteu amb el l'administrador del web per - parlar-ne. - auth failure: No podeu iniciar la sessió amb aquesta informació. - openid_logo_alt: Inicia sessió amb un compte OpenID - auth_providers: - openid: - title: Inicia sessió amb un compte OpenID - alt: Inicia sessió amb una URL OpenID - google: - title: Inicieu la sessió amb Google - alt: Inicieu la sessió amb un compte OpenID de Google - facebook: - title: Inicieu la sessió amb Facebook - alt: Inicieu la sessió amb un compte de Facebook - windowslive: - title: Inicieu la sessió amb Windows Live - alt: Inicieu de sessió amb un compte de Windows Live - github: - title: Inicieu la sessió amb GitHub - alt: Inicieu la sessió amb un compte de GitHub - wikipedia: - title: Inicieu la sessió amb Viquipèdia - alt: Inicieu la sessió amb un compte de Viquipèdia - yahoo: - title: Inicieu la sessió amb Yahoo - alt: Inicieu la sessió amb un compte OpenID de Yahoo - wordpress: - title: Inicieu la sessió amb Wordpress - alt: Inicieu la sessió amb un compte OpenID de Wordpress - aol: - title: Inicieu la sessió amb AOL - alt: Inicieu la sessió amb un compte OpenID d'AOL - logout: - title: Surt - heading: Tanca la sessió d'OpenStreetMap - logout_button: Surt - lost_password: - title: Contrasenya perduda - heading: Heu oblidat la contrasenya? - email address: 'Adreça de correu electrònic:' - new password button: Restableix la contrasenya - help_text: Introduïu l'adreça de correu electrònic que vau utilitzar per registrar-vos; - us hi enviarem un enllaç per restablir la contrasenya. - notice email on way: Lamentem que l'hàgiu perdut :-( però ja us hem enviat un - correu i la podreu restablir ben aviat. - notice email cannot find: No s'ha trobat aquesta adreça de correu. - reset_password: - title: Restableix la contrasenya - heading: Restableix la contrasenya per a %{user} - reset: Restableix la contrasenya - flash changed: S'ha canviat la contrasenya. - flash token bad: No s'ha trobat el testimoni. Comproveu la URL. new: title: Registreu-vos-hi no_auto_account_create: No us podem crear un compte automàticament. @@ -2555,33 +2563,6 @@ ca: Comproveu el vostre correu per confirmar la vostra adreça de correu electrònic nova. flash update success: Informació de l'usuari ha actualitzat correctament. - confirm: - heading: Comprova el teu correu electrònic - introduction_1: T'hem enviat un correu de confirmació. - introduction_2: Confirma el teu compte clicant a l'enllaç que es troba al correu - que t'hem enviat i ja podràs començar a editar el mapa. - press confirm button: Premeu el botó de confirmar sota per activar el compte. - button: Confirma - success: Heu confirmat el vostre compte, gràcies per registrar-vos! - already active: Aquest compte ja ha estat confirmat. - unknown token: Aquest codi de confirmació ha expirat o no existeix. - reconfirm_html: Si necessites que et reenviem el correu de confirmació, clica - aquí. - confirm_resend: - success_html: Hem enviat un bitllet de confirmació nou per %{email} i tan aviat - com confirmeu el vostre compte podreu cartografiar.

Si utilitzeu un - sistema contra el correu brossa que envia les sol·licituds de confirmació, - llavors autoritzeu %{sender} ja que no som capaços de respondre les sol·licituds - de confirmació. - failure: L'usuari %{name} no s'ha trobat. - confirm_email: - heading: Confirma un canvi d'adreça electrònica - press confirm button: Premeu el botó de confirmar sota per confirmar la seva - adreça de correu electrònic nou. - button: Confirma - success: S'ha confirmat el canvi de la teva adreça electrònica! - failure: Una adreça de correu electrònic ja ha estat confirmat amb aquesta fitxa. - unknown_token: Aquest codi de confirmació ha expirat o no existeix. set_home: flash success: La ubicació d'inici s'ha desat correctament go_public: diff --git a/config/locales/ce.yml b/config/locales/ce.yml index 0c0a7de50..3a3ec4aea 100644 --- a/config/locales/ce.yml +++ b/config/locales/ce.yml @@ -764,6 +764,12 @@ ce: greeting: Маршалла, changeset_comment_notification: greeting: Маршалла, + confirmations: + confirm: + button: Бакъдан + confirm_email: + heading: Бакъде электронан поштан адрес хуьйцуш хилар + button: Бакъдан messages: inbox: title: ЧуйогӀурш @@ -779,8 +785,6 @@ ce: back_to_inbox: ЧубогӀучаьрга юханехьа outbox: title: ДӀайохьуьйтурш - inbox: чуйогӀурш - outbox: дӀайохьуьйтурш to: Хьаьнга subject: Тема date: Терахь @@ -796,6 +800,32 @@ ce: to: 'Хьаьнга:' sent_message_summary: destroy_button: ДӀаяккха + passwords: + lost_password: + title: Пароль меттахӀоттаяр + heading: Йицъелла пароль? + email address: 'Электронан поштан адрес:' + new password button: Керла пароль кхосса соьга + reset_password: + title: Юху а язъе пароль + heading: Юху а язъе пароль %{user} + reset: ХӀоттае пароль + flash changed: Хьан пароль хийцина. + sessions: + new: + title: ЧугӀо + heading: ЧугӀо + email or username: 'Эл. пошта я декъашхочун цӀе:' + password: 'Пароль:' + openid_html: '%{logo} OpenID:' + remember: 'Дагалаца со:' + lost password link: Йицъелла пароль? + login_button: ЧугӀо + register now: ДӀадазло + destroy: + title: Болх дӀаберзор + heading: OpenStreetMap чура болх дӀаберзор + logout_button: Болх дӀаберзор site: about: next: Кхин дӀа @@ -864,11 +894,6 @@ ce: table: entry: track: Ворданан некъ - richtext_area: - preview: Хьалххе хьажар - markdown_help: - subheading: Корталг - link: Хьажорг traces: new: help: ГӀо @@ -882,30 +907,6 @@ ce: index: application: ТӀетохаран цӀе users: - login: - title: ЧугӀо - heading: ЧугӀо - email or username: 'Эл. пошта я декъашхочун цӀе:' - password: 'Пароль:' - openid_html: '%{logo} OpenID:' - remember: 'Дагалаца со:' - lost password link: Йицъелла пароль? - login_button: ЧугӀо - register now: ДӀадазло - logout: - title: Болх дӀаберзор - heading: OpenStreetMap чура болх дӀаберзор - logout_button: Болх дӀаберзор - lost_password: - title: Пароль меттахӀоттаяр - heading: Йицъелла пароль? - email address: 'Электронан поштан адрес:' - new password button: Керла пароль кхосса соьга - reset_password: - title: Юху а язъе пароль - heading: Юху а язъе пароль %{user} - reset: ХӀоттае пароль - flash changed: Хьан пароль хийцина. new: title: ДӀаяздар кхоллар display name: 'Гуш йолу цӀе:' @@ -965,11 +966,6 @@ ce: gravatar: disabled: Gravatar дӀаяйина. save changes button: Ӏалашбе хийцамаш - confirm: - button: Бакъдан - confirm_email: - heading: Бакъде электронан поштан адрес хуьйцуш хилар - button: Бакъдан index: title: Декъашхой heading: Декъашхой diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 10b1926e4..40404b315 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -1025,12 +1025,14 @@ cs: mountain_pass: "yes": Průsmyk natural: + atoll: Atol bare_rock: Holá skála bay: Záliv beach: Pláž cape: Mys cave_entrance: Vstup do jeskyně cliff: Útes + coastline: Pobřežní čára crater: Kráter dune: Duna fell: Fjell @@ -1048,6 +1050,7 @@ cs: moor: Vřesoviště mud: Bahno peak: Vrchol + peninsula: Poloostrov point: Bod reef: Útes ridge: Hřeben @@ -1095,6 +1098,7 @@ cs: "yes": Kancelář place: allotments: Zahrádkářská kolonie + archipelago: Souostroví city: Velkoměsto city_block: Městský blok country: Stát @@ -1615,11 +1619,38 @@ cs: na „Zrušit odebírání“. unsubscribe_html: Pro odhlášení z aktualizací této sady změn jděte na %{url} a klikněte na „Zrušit odebírání“. + confirmations: + confirm: + heading: Zkontrolujte si e-mail! + introduction_1: Poslali jsme vám potvrzovací e-mail. + introduction_2: Potvrďte svůj účet kliknutím na odkaz v e-mailu a budete moci + začít mapovat. + press confirm button: Svůj účet aktivujte stisknutím níže zobrazeného tlačítka. + button: Potvrdit + success: Účet potvrzen, děkujeme za registraci! + already active: Tento uživatelský účet už byl potvrzen. + unknown token: Zadaný potvrzovací kód vypršel nebo neexistuje. + reconfirm_html: Pokud potřebujete, abychom vám poslali potvrzovací e-mail znovu, + klikněte zde. + confirm_resend: + success_html: Poslali jsme na %{email} novou potvrzovací zprávu, jakmile potvrdíte + svůj účet, budete moci začít tvořit mapy.

Pokud používáte nějaký + protispamový systém, který vyžaduje potvrzení, nezapomeňte zařídit výjimku + pro %{sender}, neboť na žádosti o potvrzení nejsme schopni reagovat. + failure: Uživatel %{name} nebyl nalezen. + confirm_email: + heading: Potvrzení změny e-mailové adresy + press confirm button: Pro potvrzení nové e-mailové adresy klikněte na níže zobrazené + tlačítko. + button: Potvrdit + success: Změna vaší e-mailové adresy byla potvrzena! + failure: Tento kód byl už pro potvrzení e-mailové adresy použit. + unknown_token: Zadaný potvrzovací kód vypršel nebo neexistuje. messages: inbox: title: Doručená pošta my_inbox: Má doručená pošta - outbox: odeslaná pošta + my_outbox: Moje odchozí messages: Máte %{new_messages} a %{old_messages} new_messages: few: '%{count} nové zprávy' @@ -1656,9 +1687,8 @@ cs: body: Je mi líto, ale žádná zpráva s tímto ID neexistuje. outbox: title: Odeslaná pošta - my_inbox_html: Má %{inbox_link} - inbox: doručená pošta - outbox: odeslaná pošta + my_inbox: Moje příchozí + my_outbox: Moje odchozí messages: few: Máte %{count} odeslané zprávy one: Máte %{count} odeslanou zprávu @@ -1693,6 +1723,81 @@ cs: as_unread: Zpráva označena jako nepřečtená destroy: destroyed: Zpráva smazána + passwords: + lost_password: + title: Ztracené heslo + heading: Zapomněli jste heslo? + email address: 'E-mailová adresa:' + new password button: Resetovat heslo + help_text: Zadejte e-mailovou adresu, pod kterou jste se zaregistrovali, my + vám na ni pošleme odkaz, pomocí kterého si nastavíte nové heslo. + notice email on way: Škoda zapomenutého hesla :-( e-mail už je na cestě, takže + si budete brzy moci zvolit nové. + notice email cannot find: Je mi líto, ale nemohu najít tuto e-mailovou adresu. + reset_password: + title: Obnovit heslo + heading: Resetovat heslo pro %{user} + reset: Resetovat heslo + flash changed: Vaše heslo bylo změněno. + flash token bad: Odpovídající kód nebyl nalezen, možná zkontrolujte URL? + sessions: + new: + title: Přihlásit se + heading: Přihlášení + email or username: 'E-mailová adresa nebo uživatelské jméno:' + password: 'Heslo:' + openid_html: '%{logo} OpenID:' + remember: Zapamatuj si mě + lost password link: Ztratili jste heslo? + login_button: Přihlásit + register now: Zaregistrujte se + with username: 'Máte už na OpenStreetMap účet? Přihlaste se svým jménem a heslem:' + with external: 'Případně se přihlaste prostřednictvím třetí strany:' + new to osm: Jste na OpenStreetMap noví? + to make changes: Pokud chcete upravovat OpenStreetMap, musíte mít uživatelský + účet. + create account minute: Založte si účet. Zabere to jen chvilku. + no account: Nemáte účet? + account not active: Je mi líto, ale váš uživatelský účet dosud nebyl aktivován.
Svůj účet si můžete aktivovat kliknutím na odkaz v potvrzovacím e-mailu, + případně si nechte poslat nový potvrzovací e-mail. + account is suspended: Je nám líto, ale váš účet byl pozastaven kvůli podezřelé + aktivitě.
Pokud to chcete řešit, kontaktujte správce + serveru. + auth failure: Je mi líto, ale s uvedenými údaji se nemůžete přihlásit. + openid_logo_alt: Přihlášení pomocí OpenID + auth_providers: + openid: + title: Přihlásit se pomocí OpenID + alt: Přihlášení pomocí OpenID URL + google: + title: Přihlásit se prostřednictvím Google + alt: Přihlášení pomocí Google OpenID + facebook: + title: Přihlásit se přes Facebook + alt: Přihlášení pomocí účtu na Facebooku + windowslive: + title: Přihlásit se přes Windows Live + alt: Přihlášení pomocí účtu služeb Windows Live + github: + title: Přihlásit se přes GitHub + alt: Přihlásit se pomocí GitHub účtu + wikipedia: + title: Přihlásit se účtem na Wikipedii + alt: Přihlásit se účtem na Wikipedii + yahoo: + title: Přihlásit se prostřednictvím Yahoo + alt: Přihlášení pomocí Yahoo OpenID + wordpress: + title: Přihlásit se prostřednictvím Wordpress + alt: Přihlášení pomocí Wordpress OpenID + aol: + title: Přihlásit se prostřednictvím AOL + alt: Přihlášení pomocí AOL OpenID + destroy: + title: Odhlásit se + heading: Odhlášení z OpenStreetMap + logout_button: Odhlásit se shared: markdown_help: title_html: Zpracovává se kramdownem @@ -2074,23 +2179,6 @@ cs: bicycle_shop: Cykloobchod bicycle_parking: Parkoviště pro kola toilets: Záchody - richtext_area: - edit: Upravit - preview: Náhled - markdown_help: - title_html: Zpracovává se Kramdownem - headings: Nadpisy - heading: Nadpis - subheading: Podnadpis - unordered: Neseřazený seznam - ordered: Číslovaný seznam - first: První položka - second: Druhá položka - link: Odkaz - text: Text - image: Obrázek - alt: Alternativní text - url: URL welcome: title: Vítejte! introduction_html: Vítejte v OpenStreetMap, svobodné a editovatelné mapě světa. @@ -2212,7 +2300,6 @@ cs: more: více trace_details: Zobrazit podrobnosti stopy view_map: Zobrazit mapu - edit: upravit edit_map: Upravit mapu public: VEŘEJNÁ identifiable: IDENTIFIKOVATELNÁ @@ -2220,7 +2307,6 @@ cs: trackable: STOPOVATELNÁ by: od in: v - map: mapa index: public_traces: Veřejné GPS stopy my_traces: Moje GPS stopy @@ -2332,79 +2418,6 @@ cs: destroy: flash: Registrace klientské aplikace zrušena users: - login: - title: Přihlásit se - heading: Přihlášení - email or username: 'E-mailová adresa nebo uživatelské jméno:' - password: 'Heslo:' - openid_html: '%{logo} OpenID:' - remember: Zapamatuj si mě - lost password link: Ztratili jste heslo? - login_button: Přihlásit - register now: Zaregistrujte se - with username: 'Máte už na OpenStreetMap účet? Přihlaste se svým jménem a heslem:' - with external: 'Případně se přihlaste prostřednictvím třetí strany:' - new to osm: Jste na OpenStreetMap noví? - to make changes: Pokud chcete upravovat OpenStreetMap, musíte mít uživatelský - účet. - create account minute: Založte si účet. Zabere to jen chvilku. - no account: Nemáte účet? - account not active: Je mi líto, ale váš uživatelský účet dosud nebyl aktivován.
Svůj účet si můžete aktivovat kliknutím na odkaz v potvrzovacím e-mailu, - případně si nechte poslat nový potvrzovací e-mail. - account is suspended: Je nám líto, ale váš účet byl pozastaven kvůli podezřelé - aktivitě.
Pokud to chcete řešit, kontaktujte správce - serveru. - auth failure: Je mi líto, ale s uvedenými údaji se nemůžete přihlásit. - openid_logo_alt: Přihlášení pomocí OpenID - auth_providers: - openid: - title: Přihlásit se pomocí OpenID - alt: Přihlášení pomocí OpenID URL - google: - title: Přihlásit se prostřednictvím Google - alt: Přihlášení pomocí Google OpenID - facebook: - title: Přihlásit se přes Facebook - alt: Přihlášení pomocí účtu na Facebooku - windowslive: - title: Přihlásit se přes Windows Live - alt: Přihlášení pomocí účtu služeb Windows Live - github: - title: Přihlásit se přes GitHub - alt: Přihlásit se pomocí GitHub účtu - wikipedia: - title: Přihlásit se účtem na Wikipedii - alt: Přihlásit se účtem na Wikipedii - yahoo: - title: Přihlásit se prostřednictvím Yahoo - alt: Přihlášení pomocí Yahoo OpenID - wordpress: - title: Přihlásit se prostřednictvím Wordpress - alt: Přihlášení pomocí Wordpress OpenID - aol: - title: Přihlásit se prostřednictvím AOL - alt: Přihlášení pomocí AOL OpenID - logout: - title: Odhlásit se - heading: Odhlášení z OpenStreetMap - logout_button: Odhlásit se - lost_password: - title: Ztracené heslo - heading: Zapomněli jste heslo? - email address: 'E-mailová adresa:' - new password button: Resetovat heslo - help_text: Zadejte e-mailovou adresu, pod kterou jste se zaregistrovali, my - vám na ni pošleme odkaz, pomocí kterého si nastavíte nové heslo. - notice email on way: Škoda zapomenutého hesla :-( e-mail už je na cestě, takže - si budete brzy moci zvolit nové. - notice email cannot find: Je mi líto, ale nemohu najít tuto e-mailovou adresu. - reset_password: - title: Obnovit heslo - heading: Resetovat heslo pro %{user} - reset: Resetovat heslo - flash changed: Vaše heslo bylo změněno. - flash token bad: Odpovídající kód nebyl nalezen, možná zkontrolujte URL? new: title: Zaregistrovat se no_auto_account_create: Bohužel za vás momentálně nejsme schopni vytvořit účet @@ -2592,32 +2605,6 @@ cs: Zkontrolujte si e-mail, měla by vám přijít výzva k potvrzení nové e-mailové adresy. flash update success: Uživatelské údaje byly úspěšně aktualizovány. - confirm: - heading: Zkontrolujte si e-mail! - introduction_1: Poslali jsme vám potvrzovací e-mail. - introduction_2: Potvrďte svůj účet kliknutím na odkaz v e-mailu a budete moci - začít mapovat. - press confirm button: Svůj účet aktivujte stisknutím níže zobrazeného tlačítka. - button: Potvrdit - success: Účet potvrzen, děkujeme za registraci! - already active: Tento uživatelský účet už byl potvrzen. - unknown token: Zadaný potvrzovací kód vypršel nebo neexistuje. - reconfirm_html: Pokud potřebujete, abychom vám poslali potvrzovací e-mail znovu, - klikněte zde. - confirm_resend: - success_html: Poslali jsme na %{email} novou potvrzovací zprávu, jakmile potvrdíte - svůj účet, budete moci začít tvořit mapy.

Pokud používáte nějaký - protispamový systém, který vyžaduje potvrzení, nezapomeňte zařídit výjimku - pro %{sender}, neboť na žádosti o potvrzení nejsme schopni reagovat. - failure: Uživatel %{name} nebyl nalezen. - confirm_email: - heading: Potvrzení změny e-mailové adresy - press confirm button: Pro potvrzení nové e-mailové adresy klikněte na níže zobrazené - tlačítko. - button: Potvrdit - success: Změna vaší e-mailové adresy byla potvrzena! - failure: Tento kód byl už pro potvrzení e-mailové adresy použit. - unknown_token: Zadaný potvrzovací kód vypršel nebo neexistuje. set_home: flash success: Pozice domova byla úspěšně uložena go_public: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 13ac6bdcf..fc5a0b524 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -1043,11 +1043,17 @@ cy: note_comment_notification: anonymous: Defnyddiwr anhysbys greeting: Pa hwyl? + confirmations: + confirm: + button: Cadarnhau + confirm_email: + button: Cadarnhau + success: Cadarnhewch eich cyfeiriad ebost newydd! + failure: Mae cyfeiriad ebost eisoes wedi ei gadarnhau gyda'r tocyn hwn. messages: inbox: title: Mewnflwch my_inbox: Fy Mewnflwch - outbox: allflwch messages: Mae gennych %{new_messages} a %{old_messages} from: Gan subject: Pwnc @@ -1074,9 +1080,6 @@ cy: body: Ymddiheuriad, nid oes neges gyda'r id yno. outbox: title: Allanflwch - my_inbox_html: Fy %{inbox_link} - inbox: mewnflwch - outbox: allanflwch messages: one: Mae gennych %{count} neges wedi ei anfon other: Mae gennych %{count} neges wedi eu hanfon @@ -1100,6 +1103,41 @@ cy: as_unread: Nodwyd nad yw'r neges wedi ei ddarllen destroy: destroyed: Dileuwyd y neges + passwords: + lost_password: + title: Ailosod cyfrinair + heading: Wedi anghofio'ch cyfrinair? + email address: 'Cyfeiriad Ebost:' + new password button: Ailosod cyfrinair + notice email cannot find: Methwyd dod o hyd i'r cyfeiriad ebost yno. + reset_password: + title: Ailosod cyfrinair + heading: Ailosod Cyfinair ar gyfer %{user} + reset: Ailosod Cyfrinair + flash changed: Mae'ch cyfrinair wedi'i newid. + sessions: + new: + title: Mewngofnodi + heading: Mewngofnodi + email or username: 'Cyfeiriad Ebost neu Enw Defnyddiwr:' + password: 'Cyfrinair:' + openid_html: '%{logo} OpenID:' + remember: Fy nghofio i + lost password link: Wedi anghofio'ch cyfrinair? + login_button: Mewngofnodi + register now: Cofrestru nawr + with username: Eisoes gyda chyfrif OpenStreetMap? Mewngofnodwch gyda'ch enw + defnyddiwr a'ch cyfrinair. + new to osm: Yn newydd i OpenStreetMap? + to make changes: I wneud newidiadau i ddata OpenStreetMap, mae'n rhaid cael + cyfrif. + create account minute: Crewch cyfrif. Dim ond munud mae'n cymryd. + no account: Dim cyfrif gennych? + openid_logo_alt: Mewngofnodi gydag OpenID + destroy: + title: Allgofnodi + heading: Allgofnodi o OpenStreetMap + logout_button: Allgofnodi site: about: next: Nesaf @@ -1277,22 +1315,6 @@ cy: bicycle_shop: Siop feics bicycle_parking: Man parcio beics toilets: Lle chwech - richtext_area: - edit: Golygu - preview: Rhagolwg - markdown_help: - headings: Penawdau - heading: Pennawd - subheading: Is-bennawd - unordered: Rhestr heb drefn - ordered: Rhestr mewn trefn - first: Eitem gyntaf - second: Ail eitem - link: Dolen - text: Testun - image: Delwedd - alt: Testun Amgen - url: URL welcome: title: Croeso! whats_on_the_map: @@ -1335,7 +1357,6 @@ cy: other: '%{count} pwynt' more: mwy view_map: Gweld Map - edit: golygu edit_map: Golygu'r Map public: CYHOEDDUS identifiable: CANFYDDADWY @@ -1343,7 +1364,6 @@ cy: trackable: OLRHAINADWY by: gan in: mewn - map: map index: tagged_with: tagiwyd gyda %{tags} oauth: @@ -1379,39 +1399,6 @@ cy: delete: Dileu Cleient confirm: Ydych yn siŵr? users: - login: - title: Mewngofnodi - heading: Mewngofnodi - email or username: 'Cyfeiriad Ebost neu Enw Defnyddiwr:' - password: 'Cyfrinair:' - openid_html: '%{logo} OpenID:' - remember: Fy nghofio i - lost password link: Wedi anghofio'ch cyfrinair? - login_button: Mewngofnodi - register now: Cofrestru nawr - with username: Eisoes gyda chyfrif OpenStreetMap? Mewngofnodwch gyda'ch enw - defnyddiwr a'ch cyfrinair. - new to osm: Yn newydd i OpenStreetMap? - to make changes: I wneud newidiadau i ddata OpenStreetMap, mae'n rhaid cael - cyfrif. - create account minute: Crewch cyfrif. Dim ond munud mae'n cymryd. - no account: Dim cyfrif gennych? - openid_logo_alt: Mewngofnodi gydag OpenID - logout: - title: Allgofnodi - heading: Allgofnodi o OpenStreetMap - logout_button: Allgofnodi - lost_password: - title: Ailosod cyfrinair - heading: Wedi anghofio'ch cyfrinair? - email address: 'Cyfeiriad Ebost:' - new password button: Ailosod cyfrinair - notice email cannot find: Methwyd dod o hyd i'r cyfeiriad ebost yno. - reset_password: - title: Ailosod cyfrinair - heading: Ailosod Cyfinair ar gyfer %{user} - reset: Ailosod Cyfrinair - flash changed: Mae'ch cyfrinair wedi'i newid. new: title: Cofrestru email address: 'Cyfeiriad Ebost:' @@ -1516,12 +1503,6 @@ cy: save changes button: Cadw'r Newidiadau make edits public button: Gwneud fy holl olygiadau yn gyhoeddus return to profile: Dychwelyd i'r proffil - confirm: - button: Cadarnhau - confirm_email: - button: Cadarnhau - success: Cadarnhewch eich cyfeiriad ebost newydd! - failure: Mae cyfeiriad ebost eisoes wedi ei gadarnhau gyda'r tocyn hwn. set_home: flash success: Wedi cadw'r lleoliad cartref go_public: diff --git a/config/locales/da.yml b/config/locales/da.yml index c74c5d4d3..adec074f2 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -9,6 +9,7 @@ # Author: Fnielsen # Author: Freek # Author: Fugithora +# Author: Funkyboris # Author: Gnonthgol # Author: Gorbi # Author: Hede2000 @@ -108,7 +109,7 @@ da: url: Hovedapplikations-URL (påkrævet) callback_url: Callback URL support_url: Support URL - allow_read_prefs: læs deres brugerindstillinger + allow_read_prefs: læse deres brugerindstillinger allow_write_prefs: ændre deres brugerindstillinger allow_write_diary: oprette blogindlæg, kommentarer og indgå venskaber allow_write_api: redigere kortet @@ -151,6 +152,7 @@ da: details: Forklar venligst problemet i flere detaljer (påkrævet). user: email: E-mail + email_confirmation: E-mail-bekræftelse new_email: Ny e-mailadresse active: Aktiv display_name: Vist navn @@ -158,14 +160,23 @@ da: home_lat: Breddegrad home_lon: Længdegrad languages: Foretrukne sprog + preferred_editor: Foretrukken editor pass_crypt: Adgangskode pass_crypt_confirmation: Bekræft adgangskode help: trace: tagstring: kommasepareret user_block: + reason: Årsagen til at brugeren blokeres. Vær venligst så rolig og fornuftig + som muligt. Giv så mange detaljer som kan du om situationen. Husk på, at + meddelelsen bliver synlig offentligt. Husk at ikke alle brugere forstår + fællesskabsjargonen, så prøv at bruge hverdagsudtryk i det omfang det er + muligt. needs_view: Skal brugeren logge på, før denne blokering vil blive fjernet? user: + email_confirmation: Din adresse vises ikke offentligt. Se vores href="https://wiki.osmfoundation.org/wiki/Privacy_Policy" + title="OSMF privacy policy including section on email addresses">privatlivspolitik + for yderligere information. new_email: (vises aldrig offentligt) datetime: distance_in_words_ago: @@ -207,13 +218,13 @@ da: one: 1 år siden other: '%{count} år siden' editor: - default: Foretrukket (i øjeblikket %{name}) + default: Standard (nuværende %{name}) id: name: iD description: iD (redigér i browseren) remote: name: Fjernbetjening - description: Fjernbetjening (JOSM eller Merkaartor) + description: Fjernbetjening (JOSM, Potlatch eller Merkaartor) auth: providers: none: Ingen @@ -331,6 +342,7 @@ da: changeset: ændringssæt note: bemærkning timeout: + title: Timeoutfejl sorry: Beklager, data for %{type} med id %{id} tog for lang tid at hente type: node: punkt @@ -461,6 +473,7 @@ da: stavningen, eller måske er den henvisning du klikkede på forkert. diary_entry: posted_by_html: Skrevet af %{link_user} den %{created} på %{language_link} + updated_at_html: Sidst opdateret den %{updated}. comment_link: Kommentér dette indlæg reply_link: Send en besked til forfatteren comment_count: @@ -984,12 +997,14 @@ da: mountain_pass: "yes": Bjergpas natural: + atoll: Atol bare_rock: Blottet klippe bay: Bugt beach: Strand cape: Odde cave_entrance: Huleindgang cliff: Forbjerg + coastline: Kystlinje crater: Krater dune: Klit fell: Fjeld @@ -1007,6 +1022,7 @@ da: moor: Bjerghede mud: Mudder peak: Top + peninsula: Halvø point: Punkt reef: Rev ridge: Bjergkam @@ -1054,6 +1070,7 @@ da: "yes": Kontor place: allotments: Kolonihaver + archipelago: Øgruppe city: Storby city_block: Bykvarter country: Land @@ -1271,12 +1288,15 @@ da: "yes": Vandløb admin_levels: level2: Landegrænse + level3: Regionsgrænse level4: Regionsgrænse level5: Regionsgrænse level6: Kommunegrænse + level7: Kommunegrænse level8: Bygrænse level9: Bydelsgrænse level10: Sognegrænse + level11: Nabolagsgrænse types: cities: Storbyer towns: Byer @@ -1441,12 +1461,21 @@ da: hi: Hej %{to_user}, header: '%{from_user} har kommenteret på OpenStreetMap-blogindlægget med emnet %{subject}:' + header_html: '%{from_user} har kommenteret på OpenStreetMap-blogindlægget med + emnet %{subject}:' footer: Du kan også læse kommentaren på %{readurl}, og du kan kommentere på %{commenturl} eller sende en besked til forfatteren på %{replyurl} + footer_html: Du kan også læse kommentaren på %{readurl}, og du kan kommentere + på %{commenturl} eller sende en besked til forfatteren på %{replyurl} message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: Hej %{to_user}, header: '%{from_user} har sendt dig en besked gennem OpenStreetMap med emnet %{subject}:' + header_html: '%{from_user} har sendt dig en besked gennem OpenStreetMap med + emnet %{subject}:' + footer: Du kan også læse beskeden på %{readurl} og du kan sende en besked til + forfatteren på %{replyurl} footer_html: Du kan også læse beskeden på %{readurl} og du kan sende en besked til forfatteren på %{replyurl} friendship_notification: @@ -1454,11 +1483,17 @@ da: subject: '[OpenStreetMap] %{user} tilføjede dig som ven' had_added_you: '%{user} har tilføjet dig som ven på OpenStreetMap.' see_their_profile: Du kan se deres profil på %{userurl}. + see_their_profile_html: Du kan se deres profil på %{userurl}. befriend_them: Du kan også tilføje dem som ven på %{befriendurl}. + befriend_them_html: Du kan også tilføje dem som ven på %{befriendurl}. gpx_failure: + hi: Hej %{to_user}, failed_to_import: 'kunne ikke importeres. Her er fejlen:' + more_info_html: Yderligere information vedrørende fejl i forbindelse med GPX-import + og hvordan de kan undgås, kan findes på %{url} subject: '[OpenStreetMap] GPX-importering mislykkedes' gpx_success: + hi: Hej %{to_user}, loaded_successfully: one: indlæst med %{trace_points} ud af 1 muligt punkt. other: indlæst med %{trace_points} ud af %{possible_points} mulige punkter. @@ -1495,24 +1530,37 @@ da: du er interesseret i' your_note: '%{commenter} har efterladt en kommentar på en af dine kortbemærkninger nær %{place}.' + your_note_html: '%{commenter} har efterladt en kommentar til en af dine kortbemærkninger + nær %{place}.' commented_note: '%{commenter} har efterladt en kommentar til en kortbemærkning du har kommenteret. Bemærkningen er i nærheden af %{place}.' + commented_note_html: '%{commenter} har efterladt en kommentar til en kortbemærkning + du har kommenteret. Bemærkningen er i nærheden af %{place}.' closed: subject_own: '[OpenStreetMap] %{commenter} har løst en af dine bemærkninger' subject_other: '[OpenStreetMap] %{commenter} har løst en bemærkning, du er interesseret i' your_note: '%{commenter} har løst en af dine kortbemærkninger nær %{place}.' + your_note_html: '%{commenter} har løst en af dine kortbemærkninger i nærheden + af %{place}.' commented_note: '%{commenter} har løst en kortbemærkning du har kommenteret på. Bemærkningen er i nærheden af %{place}.' + commented_note_html: '%{commenter} har løst en kortbemærkning du har kommenteret + på. Bemærkningen er i nærheden af %{place}.' reopened: subject_own: '[OpenStreetMap] %{commenter} har genaktiveret en af dine bemærkninger' subject_other: '[OpenStreetMap] %{commenter} har genaktiveret en bemærkning, du er interesseret i' your_note: '%{commenter} har genaktiveret en af dine kortbemærkninger nær %{place}.' + your_note_html: '%{commenter} har genaktiveret en af dine kortbemærkninger + i nærheden af %{place}.' commented_note: '%{commenter} har genaktiveret en kortbemærkning du har kommenteret. Bemærkningen er i nærheden af %{place}.' + commented_note_html: '%{commenter} har genaktiveret en kortbemærkning du har + kommenteret. Bemærkningen er i nærheden af %{place}.' details: Flere oplysninger om bemærkningen kan findes på %{url}. + details_html: Flere oplysninger om kortbemærkningen kan findes på %{url}. changeset_comment_notification: hi: Hej %{to_user}, greeting: Hej, @@ -1522,18 +1570,54 @@ da: du er interesseret i' your_changeset: '%{commenter} har kommenteret på et af dine ændringssæt, oprettet %{time}' + your_changeset_html: '%{commenter} har kl. %{time} kommenteret på et af dine + ændringssæt' commented_changeset: '%{commenter} har efterladt en kommentar på et ændringssæt som du overvåger, oprettet %{time} af %{changeset_author}' + commented_changeset_html: '%{commenter} har kl. %{time} efterladt en kommentar + på et ændringssæt, oprettet af %{changeset_author}, som du overvåger' partial_changeset_with_comment: med kommentaren '%{changeset_comment}' + partial_changeset_with_comment_html: med kommentaren '%{changeset_comment}' partial_changeset_without_comment: uden kommentar details: Flere oplysninger om ændringssættet kan findes på %{url}. + details_html: Flere oplysninger om ændringssættet kan findes på %{url}. unsubscribe: For at afmelde opdateringer til dette ændringssæt, kan du besøge %{url} og klikke "Afmeld". + unsubscribe_html: For at afmelde opdateringer vedrørende dette ændringssæt, + kan du besøge %{url} og klikke "Afmeld". + confirmations: + confirm: + heading: Tjek din e-mail! + introduction_1: Vi har sendt dig en bekræftelse via e-mail. + introduction_2: Bekræft din konto ved at klikke på linket i e-mailen, og du + vil kunne starte kortlægningen. + press confirm button: Tryk på "Bekræft"-knappen nedenfor for at aktivere din + konto. + button: Bekræft + success: Din konto er bekræftet, tak for din registrering! + already active: Denne konto er allerede blevet bekræftet. + unknown token: Den bekræftelseskode er udløbet eller eksisterer ikke. + reconfirm_html: Hvis du har brug for at vi gensender bekræftelsesmailen, så + klik her. + confirm_resend: + success_html: Vi har sendt en ny bekræftelsesbesked til %{email}, og så snart + du har bekræftet din konto, kan du gå i gang med kortlægningen.

Hvis + du bruger et antispam-system som sender bekræftelsesforespørgsler, så sørg + for at du har hvidlistet %{sender} da vi ikke kan svare på den slags forespørgsler. + failure: Bruger %{name} ikke fundet. + confirm_email: + heading: Bekræft ændring af e-mailadresse + press confirm button: Tryk på bekræft-knappen nedenfor for at bekræfte din nye + e-mailadresse. + button: Bekræft + success: Bekræftet din ændring af e-mailadresse! + failure: En e-mailadresse er allerede blevet bekræftet med denne nøgle. + unknown_token: Den bekræftelseskode er udløbet eller eksisterer ikke. messages: inbox: title: Indbakke my_inbox: Min indbakke - outbox: udbakke + my_outbox: Min udbakke messages: Du har %{new_messages} og %{old_messages} new_messages: one: '%{count} nye besked' @@ -1568,9 +1652,8 @@ da: body: Beklager, der er ingen besked med det id. outbox: title: Udbakke - my_inbox_html: Min %{inbox_link} - inbox: indbakke - outbox: udbakke + my_inbox: Min indbakke + my_outbox: Min udbakke messages: one: Du har %{count} sendt besked other: Du har %{count} sendte beskeder @@ -1604,12 +1687,99 @@ da: as_unread: Besked markeret som ulæst destroy: destroyed: Besked slettet + passwords: + lost_password: + title: Glemt adgangskode + heading: Glemt adgangskode? + email address: 'E-mailadresse:' + new password button: Nulstil adgangskode + help_text: Indtast e-mailadressen du brugte da du oprettede kontoen. Vi sender + et link til den som du kan bruge til at nulstille din adgangskode. + notice email on way: Synd du har glemt den, men en e-mail er på vej så du kan + snart indstille en ny. + notice email cannot find: Kunne ikke finde den e-mailadresse, beklager. + reset_password: + title: Nulstil adgangskode + heading: Nulstil adgangskode for %{user} + reset: Nulstil adgangskode + flash changed: Din adgangskode er ændret. + flash token bad: Kunne ikke finde denne nøgle, prøv at kontrollere URL'en? + sessions: + new: + title: Log på + heading: Log på + email or username: 'E-mailadresse eller brugernavn:' + password: 'Adgangskode:' + openid_html: '%{logo} OpenID:' + remember: Husk mig + lost password link: Glemt din adgangskode? + login_button: Log på + register now: Opret nu + with username: 'Har du allerede en OpenStreetMap konto? Log på med dit brugernavn + og din adgangskode:' + with external: 'Alternativt kan du bruge en tredjepart for at logge på:' + new to osm: Ny på OpenStreetMap? + to make changes: For at ændre i OpenStreetMaps data skal du have en konto. + create account minute: Opret en konto. Det tager kun et minut. + no account: Har du ingen konto? + account not active: Din konto er ikke aktiveret endnu.
Klik på linket i + bekræftelsesemailen for at aktivere din konto eller få + sendt en ny bekræftelsesemail. + account is suspended: Beklager, din konto er suspenderet på grund af mistænkelig + aktivitet.
Kontakt webmasteren , hvis du ønsker + at drøfte dette. + auth failure: Kunne ikke logge på med disse oplysninger. + openid_logo_alt: Log på med et OpenID + auth_providers: + openid: + title: Log på med OpenID + alt: Log på med en OpenID-URL + google: + title: Log på med Google + alt: Log på med et Google OpenID + facebook: + title: Log på med Facebook + alt: Log på med en Facebook-konto + windowslive: + title: Log på med Windows Live + alt: Log på med en Windows Live-konto + github: + title: Log ind med GitHub + alt: Log ind med en GitHub-konto + wikipedia: + title: Log ind med Wikipedia + alt: Log ind med en Wikipedia-konto + yahoo: + title: Log på med Yahoo + alt: Log på med et Yahoo OpenID + wordpress: + title: Log på med Wordpress + alt: Log på med et Wordpress OpenID + aol: + title: Log på med AOL + alt: Log på med et AOL OpenID + destroy: + title: Log af + heading: Log af fra OpenStreetMap + logout_button: Log af shared: markdown_help: + title_html: Fortolket med kramdown + headings: Overskrifter + heading: Overskrift + subheading: Underoverskrift + unordered: Usorteret liste + ordered: Sorteret liste + first: Første punkt + second: Andet punkt + link: Link text: Tekst image: Billede + alt: Alt-tekst + url: URL richtext_field: edit: Rediger + preview: Forhåndsvisning site: about: next: Næste @@ -1907,6 +2077,14 @@ da: url: https://wiki.openstreetmap.org/ title: OpenStreetMap Wiki description: Gennemse wikien for dybdegående OSM dokumentation. + potlatch: + removed: Din foretrukne OpenStreetMap-editor er sat til Potlatch. Da Adobe Flash + Player er blevet trukket tilbage, er Potlatch ikke længere tilgængelig i browseren. + desktop_html: Du kan stadig bruge Potlatch ved at hente + applikationen til Mac og Windows. + id_html: Alternativt kan du sætte iD som din foretrukne editor. iD kører i din + browser, ligesom Potlatch gjorde. Du kan ændre din + foretrukne editor her. sidebar: search_results: Søgeresultater close: Luk @@ -1990,23 +2168,6 @@ da: bicycle_shop: Cykelhandler bicycle_parking: Cykelparkering toilets: Toiletter - richtext_area: - edit: Redigér - preview: Forhåndsvisning - markdown_help: - title_html: Fortolket med kramdown - headings: Overskrifter - heading: Overskrift - subheading: Underoverskrift - unordered: Usorteret liste - ordered: Sorteret liste - first: Første objekt - second: Andet objekt - link: Link - text: Tekst - image: Billede - alt: Alt-tekst - url: URL welcome: title: Velkommen! introduction_html: Velkommen til OpenStreetMap, det frie brugerredigerede verdenskort. @@ -2103,6 +2264,7 @@ da: uploaded: 'Overført:' points: 'Punkter:' start_coordinates: 'Startkoordinat:' + coordinates_html: '%{latitude}; %{longitude}' map: kort edit: redigér owner: 'Ejer:' @@ -2126,7 +2288,6 @@ da: more: detaljer trace_details: Vis spordetaljer view_map: Vis kort - edit: redigér edit_map: Redigér kort public: OFFENTLIG identifiable: IDENTIFICERBAR @@ -2134,7 +2295,6 @@ da: trackable: SPORBAR by: af in: i - map: kort index: public_traces: Offentlige GPS-spor my_traces: Mine GPS-spor @@ -2248,79 +2408,6 @@ da: destroy: flash: Annulerede klient programmets registrering users: - login: - title: Log på - heading: Log på - email or username: 'E-mailadresse eller brugernavn:' - password: 'Adgangskode:' - openid_html: '%{logo} OpenID:' - remember: Husk mig - lost password link: Glemt din adgangskode? - login_button: Log på - register now: Opret nu - with username: 'Har du allerede en OpenStreetMap konto? Log på med dit brugernavn - og din adgangskode:' - with external: 'Alternativt kan du bruge en tredjepart for at logge på:' - new to osm: Ny på OpenStreetMap? - to make changes: For at ændre i OpenStreetMaps data skal du have en konto. - create account minute: Opret en konto. Det tager kun et minut. - no account: Har du ingen konto? - account not active: Din konto er ikke aktiveret endnu.
Klik på linket i - bekræftelsesemailen for at aktivere din konto eller få - sendt en ny bekræftelsesemail. - account is suspended: Beklager, din konto er suspenderet på grund af mistænkelig - aktivitet.
Kontakt webmasteren , hvis du ønsker - at drøfte dette. - auth failure: Kunne ikke logge på med disse oplysninger. - openid_logo_alt: Log på med et OpenID - auth_providers: - openid: - title: Log på med OpenID - alt: Log på med en OpenID-URL - google: - title: Log på med Google - alt: Log på med et Google OpenID - facebook: - title: Log på med Facebook - alt: Log på med en Facebook-konto - windowslive: - title: Log på med Windows Live - alt: Log på med en Windows Live-konto - github: - title: Log ind med GitHub - alt: Log ind med en GitHub-konto - wikipedia: - title: Log ind med Wikipedia - alt: Log ind med en Wikipedia-konto - yahoo: - title: Log på med Yahoo - alt: Log på med et Yahoo OpenID - wordpress: - title: Log på med Wordpress - alt: Log på med et Wordpress OpenID - aol: - title: Log på med AOL - alt: Log på med et AOL OpenID - logout: - title: Log af - heading: Log af fra OpenStreetMap - logout_button: Log af - lost_password: - title: Glemt adgangskode - heading: Glemt adgangskode? - email address: 'E-mailadresse:' - new password button: Nulstil adgangskode - help_text: Indtast e-mailadressen du brugte da du oprettede kontoen. Vi sender - et link til den som du kan bruge til at nulstille din adgangskode. - notice email on way: Synd du har glemt den, men en e-mail er på vej så du kan - snart indstille en ny. - notice email cannot find: Kunne ikke finde den e-mailadresse, beklager. - reset_password: - title: Nulstil adgangskode - heading: Nulstil adgangskode for %{user} - reset: Nulstil adgangskode - flash changed: Din adgangskode er ændret. - flash token bad: Kunne ikke finde denne nøgle, prøv at kontrollere URL'en? new: title: Opret konto no_auto_account_create: Vi kan desværre ikke oprette en konto automatisk for @@ -2510,33 +2597,6 @@ da: flash update success confirm needed: Brugeroplysningerne blev opdateret. Tjek din e-mail for en besked om at bekræfte din nye e-mailadresse. flash update success: Brugerinformation opdateret. - confirm: - heading: Tjek din e-mail! - introduction_1: Vi har sendt dig en bekræftelse via e-mail. - introduction_2: Bekræft din konto ved at klikke på linket i e-mailen, og du - vil kunne starte kortlægningen. - press confirm button: Tryk på "Bekræft"-knappen nedenfor for at aktivere din - konto. - button: Bekræft - success: Din konto er bekræftet, tak for din registrering! - already active: Denne konto er allerede blevet bekræftet. - unknown token: Den bekræftelseskode er udløbet eller eksisterer ikke. - reconfirm_html: Hvis du har brug for at vi gensender bekræftelsesmailen, så - klik her. - confirm_resend: - success_html: Vi har sendt en ny bekræftelsesbesked til %{email}, og så snart - du har bekræftet din konto, kan du gå i gang med kortlægningen.

Hvis - du bruger et antispam-system som sender bekræftelsesforespørgsler, så sørg - for at du har hvidlistet %{sender} da vi ikke kan svare på den slags forespørgsler. - failure: Bruger %{name} ikke fundet. - confirm_email: - heading: Bekræft ændring af e-mailadresse - press confirm button: Tryk på bekræft-knappen nedenfor for at bekræfte din nye - e-mailadresse. - button: Bekræft - success: Bekræftet din ændring af e-mailadresse! - failure: En e-mailadresse er allerede blevet bekræftet med denne nøgle. - unknown_token: Den bekræftelseskode er udløbet eller eksisterer ikke. set_home: flash success: Hjemmeposition gemt go_public: @@ -2726,6 +2786,7 @@ da: custom_dimensions: Angiv brugerdefinerede dimensioner format: 'Format:' scale: 'Skala:' + image_dimensions: Billedet vil vise standardlaget i %{width} x %{height} download: Hent short_url: Kort URL include_marker: Tilføj markør @@ -2753,6 +2814,7 @@ da: other: Du er indenfor %{count} fod fra dette punkt base: standard: Standard + cyclosm: CyclOSM cycle_map: Cykelkort transport_map: Transportkort hot: Humanitær @@ -2767,6 +2829,8 @@ da: copyright: © OpenStreetMap-bidragsydere donate_link_text: terms: Hjemmeside og API-vilkår + cyclosm: Flise-stil af CyclOSM + hosted af OpenStreetMap Frankrig thunderforest: Fliser venligst leveret af Andy Allan opnvkarte: Fliser venligst leveret af MeMoMaps diff --git a/config/locales/de.yml b/config/locales/de.yml index a1fd6dfee..302824271 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -25,14 +25,18 @@ # Author: DraconicDark # Author: Drolbr # Author: Elliot +# Author: FF-11 +# Author: FF11 # Author: Farad # Author: Ferdinand0101 # Author: Fujnky +# Author: Gebu # Author: Geitost # Author: GerdP # Author: Gravitystorm # Author: Grille chompa # Author: Günther03 +# Author: HajFunk # Author: Hakuchi # Author: Hendrik-17 # Author: Hikemaniac @@ -64,6 +68,7 @@ # Author: Pittigrilli # Author: Predatorix # Author: Purodha +# Author: RacoonyRE # Author: Raymond # Author: Reneman # Author: Schmackes @@ -201,7 +206,10 @@ de: category: Wähle einen Grund für deine Meldung aus details: Bitte mehr Einzelheiten zum Problem angeben (erforderlich). user: + auth_provider: Authentifizierungsanbieter + auth_uid: Authentifizierungs UID email: E-Mail + email_confirmation: E-Mail-Bestätigung new_email: Neue E-Mail-Adresse active: Aktiv display_name: Anzeigename @@ -216,6 +224,11 @@ de: trace: tagstring: durch Komma getrennt user_block: + reason: Der Grund, warum der/die Benutzer/in gesperrt ist. Sei bitte so ruhig + und sachlich wie möglich. Beschreibe die Lage möglichst detailliert und + denke daran, dass deine Nachricht öffentlich sichtbar ist. Denke auch daran, + dass nicht alle Benutzer den Jargon des Gemeinschaftsprojekts verstehen + und verwende bitte Formulierungen, die für Laien verständlich sind. needs_view: Muss der Benutzer sich anmelden, damit die Sperre aufgehoben wird? user: email_confirmation: Deine E-Mail-Adresse wird nicht öffentlich gezeigt. Für @@ -1043,12 +1056,14 @@ de: mountain_pass: "yes": Gebirgspass natural: + atoll: Atoll bare_rock: Fels bay: Bucht beach: Strand cape: Kap cave_entrance: Höhleneingang cliff: Klippe + coastline: Küstenlinie crater: Krater dune: Düne fell: Fjell @@ -1066,6 +1081,7 @@ de: moor: Moor mud: Schlick peak: Gipfel + peninsula: Halbinsel point: Punkt reef: Riff ridge: Grat @@ -1113,6 +1129,7 @@ de: "yes": Büro place: allotments: Schrebergärten + archipelago: Archipel city: Stadt city_block: Häuserblock country: Staat @@ -1647,11 +1664,41 @@ de: besuche %{url} und klicke auf „Abmelden“. unsubscribe_html: Um Aktualisierungen an diesem Änderungssatz abzubestellen, besuche %{url} und klicke auf „Abmelden“. + confirmations: + confirm: + heading: Bitte überprüfe deine E-Mails! + introduction_1: Wir haben dir eine Bestätigungs-E-Mail zugesandt. + introduction_2: Bitte bestätige dein Benutzerkonto, indem du den Link in der + Bestätigungs-E-Mail anklickst. Dann kannst Du beginnen, bei OpenStreetMap + mitzuarbeiten. + press confirm button: Zur Aktivierung Deines Benutzerkontos klicke bitte unten + auf „Bestätigen“. + button: Bestätigen + success: Dein Benutzerkonto wurde bestätigt, danke fürs Registrieren! + already active: Dieses Benutzerkonto wurde bereits bestätigt. + unknown token: Dieser Bestätigungscode ist abgelaufen oder nicht vorhanden. + reconfirm_html: Um die Bestätigungs-E-Mail erneut zuzusenden, klicke + hier. + confirm_resend: + success_html: Wir haben eine neue Bestätigungsnachricht an %{email} gesendet. + Sobald du dein Benutzerkonto bestätigt hast, kannst du mit dem Kartieren beginnen.

Sofern du ein Antispamsystem nutzt, das selbst Bestätigungen anfordert, + musst du %{sender} auf dessen Positivliste setzen, da wir auf keine Bestätigungsanfragen + reagieren können. + failure: Benutzer %{name} konnte nicht gefunden werden. + confirm_email: + heading: Änderung der E-Mail-Adresse bestätigen + press confirm button: Zur Bestätigung der neuen E-Mail-Adresse klicke bitte + unten auf „Bestätigen“. + button: Bestätigen + success: Die Änderung deiner E-Mail-Adresse wurde bestätigt! + failure: Eine E-Mail-Adresse wurde bereits mit diesem Link bestätigt. + unknown_token: Dieser Bestätigungscode ist abgelaufen oder nicht vorhanden. messages: inbox: title: Posteingang my_inbox: Posteingang - outbox: Gesendet + my_outbox: Mein Postausgang messages: Du hast %{new_messages} und %{old_messages} new_messages: one: '%{count} ungelesene Nachricht' @@ -1686,9 +1733,8 @@ de: body: Leider gibt es keine Nachricht mit dieser ID. outbox: title: Gesendet - my_inbox_html: '%{inbox_link}' - inbox: Posteingang - outbox: Gesendet + my_inbox: Mein Posteingang + my_outbox: Mein Postausgang messages: one: Du hast %{count} Nachricht gesendet other: Du hast %{count} Nachrichten gesendet @@ -1722,6 +1768,85 @@ de: as_unread: Nachricht als ungelesen markiert destroy: destroyed: Nachricht gelöscht + passwords: + lost_password: + title: Passwort vergessen + heading: Passwort vergessen? + email address: 'E-Mail-Adresse:' + new password button: Passwort zurücksetzen + help_text: Bitte gib deine E-Mail-Adresse ein, mit der du dich angemeldet hast. + Wir werden dir dann einen Link schicken, mit dem du dein Passwort zurücksetzen + kannst. + notice email on way: Eine E-Mail mit Hinweisen zum Zurücksetzen des Passworts + wurde an dich versandt. + notice email cannot find: Wir konnten die E-Mail-Adresse nicht finden. Du hast + dich möglicherweise vertippt oder mit einer anderen E-Mail-Adresse angemeldet. + reset_password: + title: Passwort zurücksetzen + heading: Passwort für %{user} zurücksetzen + reset: Passwort zurücksetzen + flash changed: Dein Passwort wurde geändert. + flash token bad: Wir konnten dieses Kürzel leider nicht finden. Du hast dich + möglicherweise vertippt oder du bist einem ungültigem Link gefolgt. + sessions: + new: + title: Anmelden + heading: Anmelden + email or username: 'E-Mail-Adresse oder Benutzername:' + password: 'Passwort:' + openid_html: '%{logo} OpenID:' + remember: Anmeldedaten merken + lost password link: Passwort vergessen? + login_button: Anmelden + register now: Jetzt registrieren + with username: 'Hast du bereits ein Konto bei OpenStreetMap? Bitte melde dich + mit deinem Benutzernamen und Passwort an:' + with external: 'Verwende alternativ eine Drittpartei zur Anmeldung:' + new to osm: Neu bei OpenStreetMap? + to make changes: Um Datenänderungen bei OpenStreetMap vornehmen zu können, musst + Du ein Benutzerkonto haben. + create account minute: Erstelle ein Benutzerkonto. Es dauert nur eine Minute. + no account: Du hast noch kein Benutzerkonto? + account not active: Leider wurde dein Benutzerkonto bislang noch nicht aktiviert.
Bitte aktiviere dein Benutzerkonto, indem du auf den Link in deiner Bestätigungs-E-Mail + klickst oder eine neue Bestätigungs-E-Mail anforderst. + account is suspended: Dein Benutzerkonto wurde aufgrund verdächtiger Aktivitäten + gesperrt.
Bitte kontaktiere den Webmaster, + falls du dies klären möchtest. + auth failure: Mit diesen Daten leider keine Anmeldung möglich. + openid_logo_alt: Mit einer OpenID anmelden + auth_providers: + openid: + title: Mit OpenID anmelden + alt: Mit einer OpenID-URL anmelden + google: + title: Mit Google anmelden + alt: Mit einer Google-OpenID anmelden + facebook: + title: Mit Facebook anmelden + alt: Mit einem Facebook-Konto anmelden + windowslive: + title: Mit Windows Live anmelden + alt: Mit einem Windows-Live-Konto anmelden + github: + title: Mit GitHub anmelden + alt: Mit einem GitHub-Konto anmelden + wikipedia: + title: Mit Wikipedia anmelden + alt: Mit einem Wikipedia-Benutzerkonto anmelden + yahoo: + title: Mit Yahoo anmelden + alt: Mit einer Yahoo-OpenID anmelden + wordpress: + title: Mit Wordpress anmelden + alt: Mit einer Wordpress-OpenID anmelden + aol: + title: Mit AOL anmelden + alt: Mit einer AOL-OpenID anmelden + destroy: + title: Abmelden + heading: Von OpenStreetMap abmelden + logout_button: Abmelden shared: markdown_help: title_html: Geparst mit kramdown @@ -2051,6 +2176,9 @@ de: Nutzung im Browser verfügbar. desktop_html: Wenn du Potlatch weiternutzen möchtest kannst du die Desktopanwendung für Mac und Windows hier Herunterladen. + id_html: Alternativ können Sie Ihren Standardeditor auf iD einstellen, der in + Ihrem Webbrowser wie zuvor Potlatch ausgeführt wird. Änderen + Sie hier Ihre Benutzereinstellungen. sidebar: search_results: Suchergebnisse close: Schließen @@ -2060,7 +2188,7 @@ de: get_directions_title: Routenberechnung zwischen zwei Orten from: Von to: Nach - where_am_i: Wo ist das? + where_am_i: Wo ist dies? where_am_i_title: Die momentane Position mit der Suchmaschine anzeigen submit_text: Los reverse_directions_text: Richtungen umkehren @@ -2134,23 +2262,6 @@ de: bicycle_shop: Fahrradladen bicycle_parking: Fahrradparkplatz toilets: Toiletten - richtext_area: - edit: Bearbeiten - preview: Vorschau - markdown_help: - title_html: Geparst mit kramdown - headings: Überschriften - heading: Überschrift - subheading: Zwischenüberschrift - unordered: Aufzählung - ordered: Nummerierte Liste - first: Erstes Element - second: Zweites Element - link: Link - text: Text - image: Bild - alt: Alt-Text - url: URL welcome: title: Willkommen! introduction_html: |- @@ -2236,6 +2347,7 @@ de: title: Track %{name} bearbeiten heading: Track %{name} bearbeiten visibility_help: Was bedeutet das? + visibility_help_url: https://wiki.openstreetmap.org/wiki/DE:Visibility_of_GPS_traces update: updated: Track aktualisiert trace_optionals: @@ -2273,7 +2385,6 @@ de: more: Details trace_details: Details des Tracks anzeigen view_map: Karte anzeigen - edit: bearbeiten edit_map: Karte bearbeiten public: ÖFFENTLICH identifiable: IDENTIFIZIERBAR @@ -2281,7 +2392,6 @@ de: trackable: VERFOLGBAR by: von in: in - map: Karte index: public_traces: Öffentliche GPS-Tracks my_traces: Meine GPS-Tracks @@ -2396,83 +2506,6 @@ de: destroy: flash: Die registrierte Client-Anwendung wurde entfernt users: - login: - title: Anmelden - heading: Anmelden - email or username: 'E-Mail-Adresse oder Benutzername:' - password: 'Passwort:' - openid_html: '%{logo} OpenID:' - remember: Anmeldedaten merken - lost password link: Passwort vergessen? - login_button: Anmelden - register now: Jetzt registrieren - with username: 'Hast du bereits ein Konto bei OpenStreetMap? Bitte melde dich - mit deinem Benutzernamen und Passwort an:' - with external: 'Verwende alternativ eine Drittpartei zur Anmeldung:' - new to osm: Neu bei OpenStreetMap? - to make changes: Um Datenänderungen bei OpenStreetMap vornehmen zu können, musst - Du ein Benutzerkonto haben. - create account minute: Erstelle ein Benutzerkonto. Es dauert nur eine Minute. - no account: Du hast noch kein Benutzerkonto? - account not active: Leider wurde dein Benutzerkonto bislang noch nicht aktiviert.
Bitte aktiviere dein Benutzerkonto, indem du auf den Link in deiner Bestätigungs-E-Mail - klickst oder eine neue Bestätigungs-E-Mail anforderst. - account is suspended: Dein Benutzerkonto wurde aufgrund verdächtiger Aktivitäten - gesperrt.
Bitte kontaktiere den Webmaster, - falls du dies klären möchtest. - auth failure: Mit diesen Daten leider keine Anmeldung möglich. - openid_logo_alt: Mit einer OpenID anmelden - auth_providers: - openid: - title: Mit OpenID anmelden - alt: Mit einer OpenID-URL anmelden - google: - title: Mit Google anmelden - alt: Mit einer Google-OpenID anmelden - facebook: - title: Mit Facebook anmelden - alt: Mit einem Facebook-Konto anmelden - windowslive: - title: Mit Windows Live anmelden - alt: Mit einem Windows-Live-Konto anmelden - github: - title: Mit GitHub anmelden - alt: Mit einem GitHub-Konto anmelden - wikipedia: - title: Mit Wikipedia anmelden - alt: Mit einem Wikipedia-Benutzerkonto anmelden - yahoo: - title: Mit Yahoo anmelden - alt: Mit einer Yahoo-OpenID anmelden - wordpress: - title: Mit Wordpress anmelden - alt: Mit einer Wordpress-OpenID anmelden - aol: - title: Mit AOL anmelden - alt: Mit einer AOL-OpenID anmelden - logout: - title: Abmelden - heading: Von OpenStreetMap abmelden - logout_button: Abmelden - lost_password: - title: Passwort vergessen - heading: Passwort vergessen? - email address: 'E-Mail-Adresse:' - new password button: Passwort zurücksetzen - help_text: Bitte gib deine E-Mail-Adresse ein, mit der du dich angemeldet hast. - Wir werden dir dann einen Link schicken, mit dem du dein Passwort zurücksetzen - kannst. - notice email on way: Eine E-Mail mit Hinweisen zum Zurücksetzen des Passworts - wurde an dich versandt. - notice email cannot find: Wir konnten die E-Mail-Adresse nicht finden. Du hast - dich möglicherweise vertippt oder mit einer anderen E-Mail-Adresse angemeldet. - reset_password: - title: Passwort zurücksetzen - heading: Passwort für %{user} zurücksetzen - reset: Passwort zurücksetzen - flash changed: Dein Passwort wurde geändert. - flash token bad: Wir konnten dieses Kürzel leider nicht finden. Du hast dich - möglicherweise vertippt oder du bist einem ungültigem Link gefolgt. new: title: Registrieren no_auto_account_create: Im Moment ist das automatische Erstellen eines Benutzerkontos @@ -2669,35 +2702,6 @@ de: flash update success confirm needed: Deine Änderungen wurden gespeichert. Du erhältst nun eine E-Mail, um deine neue E-Mail-Adresse zu bestätigen. flash update success: Benutzerinformationen erfolgreich aktualisiert. - confirm: - heading: Bitte überprüfe deine E-Mails! - introduction_1: Wir haben dir eine Bestätigungs-E-Mail zugesandt. - introduction_2: Bitte bestätige dein Benutzerkonto, indem du den Link in der - Bestätigungs-E-Mail anklickst. Dann kannst Du beginnen, bei OpenStreetMap - mitzuarbeiten. - press confirm button: Zur Aktivierung Deines Benutzerkontos klicke bitte unten - auf „Bestätigen“. - button: Bestätigen - success: Dein Benutzerkonto wurde bestätigt, danke fürs Registrieren! - already active: Dieses Benutzerkonto wurde bereits bestätigt. - unknown token: Dieser Bestätigungscode ist abgelaufen oder nicht vorhanden. - reconfirm_html: Um die Bestätigungs-E-Mail erneut zuzusenden, klicke - hier. - confirm_resend: - success_html: Wir haben eine neue Bestätigungsnachricht an %{email} gesendet. - Sobald du dein Benutzerkonto bestätigt hast, kannst du mit dem Kartieren beginnen.

Sofern du ein Antispamsystem nutzt, das selbst Bestätigungen anfordert, - musst du %{sender} auf dessen Positivliste setzen, da wir auf keine Bestätigungsanfragen - reagieren können. - failure: Benutzer %{name} konnte nicht gefunden werden. - confirm_email: - heading: Änderung der E-Mail-Adresse bestätigen - press confirm button: Zur Bestätigung der neuen E-Mail-Adresse klicke bitte - unten auf „Bestätigen“. - button: Bestätigen - success: Die Änderung deiner E-Mail-Adresse wurde bestätigt! - failure: Eine E-Mail-Adresse wurde bereits mit diesem Link bestätigt. - unknown_token: Dieser Bestätigungscode ist abgelaufen oder nicht vorhanden. set_home: flash success: Standort erfolgreich gespeichert go_public: @@ -2893,6 +2897,7 @@ de: custom_dimensions: Ausschnitt festlegen format: 'Format:' scale: 'Maßstab:' + image_dimensions: Das Bild zeigt die Standardebene bei %{width} x %{height} download: Herunterladen short_url: Kurz-URL include_marker: Kartenmarker setzen @@ -2936,6 +2941,8 @@ de: donate_link_text: terms: Nutzungsbedingungen der Website und API + cyclosm: Kachelstil von CyclOSM + gehostet von OpenStreetMap Frankreich thunderforest: Kacheln mit freundlicher Genehmigung von Andy Allan opnvkarte: Kacheln mit freundlicher Genehmigung von klikni + how. + confirm_resend: + success_html: Smy nowu wobkšuśeński e-mail na %{email} póslali a gaž wobkšuśijoš + swójo konto, móžoš kartěrowanje zachopiś.

Jolic wužywaš pśeśiwospamowy + system, kótaryž sćelo wobkšuśeńske napšašowanja, pśewzij adresu %{sender} + do swójeje běłeje lisćiny, dokulaž njamóžomy na wobkšuśeńske napšašowanja + wótegroniś. + failure: Wuzywaŕ %{name} njejo se namakał. + confirm_email: + heading: Změnjenje e-mailoweje adrese wobkšuśiś + press confirm button: Klikni na wobkšuśeński tłocašk, aby swóju nowu e-mailowu + adresu wobkšuśił. + button: Wobkšuśiś + success: Twója e-mailowa adresa jo se wobkšuśiła, źěkujomy se za registrěrowanje! + failure: E-mailowa adresa jo se južo wobkšuśiła pśez toś ten wótkaz. messages: inbox: title: Post my_inbox: Mój post - outbox: pósłany messages: Maš %{new_messages} a %{old_messages} new_messages: few: '%{count} nowe powěsći' @@ -1001,9 +1029,6 @@ dsb: body: Bóžko powěźeńka z tym ID njeeksistěrujo. outbox: title: Pósłany - my_inbox_html: Mój %{inbox_link} - inbox: post - outbox: pósłany messages: few: Sy %{count} powěsći pósłał one: Sy %{count} powěsć pósłał @@ -1038,6 +1063,51 @@ dsb: as_unread: Powěsć jo se markěrowała ako njepśecytana destroy: destroyed: Powěsć wulašowana + passwords: + lost_password: + title: Zabyte gronidło + heading: Sy gronidło zabył? + email address: 'E-mailowa adresa:' + new password button: Gronidło slědk stajiś + help_text: Zapódaj e-mailowu adresu, kótaruž sy za registrěrowanje wužył, pósćelomy + wótkaz na nju, kótaryž móžoš wužywaś, aby swójo gronidło slědk stajił. + notice email on way: Bóžko sy jo zabył :-(, ale e-mail jo k tebje ducy, tak + až móžoš jo skóro slědk stajiś. + notice email cannot find: Bóžko ta e-mailowa adresa njejo se namakała. + reset_password: + title: Gronidło slědk stajiś + heading: Gronidło za %{user} slědk stajiś + reset: Gronidło slědk stajiś + flash changed: Twójo gronidło jo se změniło. + flash token bad: Njejo móžno było ten token namakaś, pšosym pśekontrolěruj URL. + sessions: + new: + title: Pśizjawjenje + heading: Pśizjawjenje + email or username: 'E-mailowa adresa abo wužywarske mě:' + password: 'Gronidło:' + openid_html: '%{logo} OpenID:' + remember: 'Spomnjeś se:' + lost password link: Sy swójo gronidło zabył? + login_button: Pśizjawiś se + register now: Něnto registrěrowaś + with username: 'Maš južo konto pla OpenStreetMap? Pšosym pśizjaw se ze swójim + wužywarskim mjenim a gronidłom:' + new to osm: Nowy w OpenStreetMap? + to make changes: Aby daty OpenStreetMap změnił, musyš konto měś. + create account minute: Załož konto. Trajo jano minutku. + no account: Njamaš wužywarske konto? + account not active: Bóžko twojo konto hyšći njejo aktiwne.
Pšosym klikni + na wótkaz w e-mailu za wobkšuśenje konta, aby aktiwěrował swójo konto abo + pominaj nowu wobkšuśeńsku e-mail. + account is suspended: Twójo konto jo se bóžko wupowěźeło dla pódglědneje aktiwity.
Staj se z webmasterom, jolic coš wó tom diskutěrowaś. + auth failure: Bóžko, pśizjawjenje z toś tymi datami njejo móžno. + openid_logo_alt: Z OpenID se pśizjawiś + destroy: + title: Wótzjawiś se + heading: Z OpenStreetMap se wótzjawiś + logout_button: Wótzjawjenje site: about: next: Pśiducy @@ -1338,24 +1408,6 @@ dsb: private: Priwatny pśistup destination: Jano za pśigranicujucych construction: Drogi w twari - richtext_area: - edit: Wobźěłaś - preview: Pśeglěd - markdown_help: - title_html: Z Markdown - analyzěrowany - headings: Nadpisma - heading: Nadpismo - subheading: Pódnapismo - unordered: Nalicenje - ordered: Numerěrowana lisćina - first: Prědny element - second: Drugi element - link: Wótkaz - text: Tekst - image: Wobraz - alt: Alternatiwny tekst - url: URL welcome: title: Witaj! introduction_html: Witaj k OpenstreetMap, lichej a wobźěłujobnej kórśe swěta. @@ -1450,7 +1502,6 @@ dsb: more: wěcej trace_details: Drobnostki slěda pokazaś view_map: Kórtu pokazaś - edit: wobźěłaś edit_map: Kórtu wobźěłaś public: ZJAWNY identifiable: IDENTIFICĚRUJOBNY @@ -1458,7 +1509,6 @@ dsb: trackable: SLĚDUJOBNY by: wót in: w - map: kórta index: public_traces: Zjawne GPS-slědy public_traces_from: Zjawne GPS-slědy wót %{user} @@ -1562,49 +1612,6 @@ dsb: destroy: flash: Registrěrowanje aplikacije znicone users: - login: - title: Pśizjawjenje - heading: Pśizjawjenje - email or username: 'E-mailowa adresa abo wužywarske mě:' - password: 'Gronidło:' - openid_html: '%{logo} OpenID:' - remember: 'Spomnjeś se:' - lost password link: Sy swójo gronidło zabył? - login_button: Pśizjawiś se - register now: Něnto registrěrowaś - with username: 'Maš južo konto pla OpenStreetMap? Pšosym pśizjaw se ze swójim - wužywarskim mjenim a gronidłom:' - new to osm: Nowy w OpenStreetMap? - to make changes: Aby daty OpenStreetMap změnił, musyš konto měś. - create account minute: Załož konto. Trajo jano minutku. - no account: Njamaš wužywarske konto? - account not active: Bóžko twojo konto hyšći njejo aktiwne.
Pšosym klikni - na wótkaz w e-mailu za wobkšuśenje konta, aby aktiwěrował swójo konto abo - pominaj nowu wobkšuśeńsku e-mail. - account is suspended: Twójo konto jo se bóžko wupowěźeło dla pódglědneje aktiwity.
Staj se z webmasterom, jolic coš wó tom diskutěrowaś. - auth failure: Bóžko, pśizjawjenje z toś tymi datami njejo móžno. - openid_logo_alt: Z OpenID se pśizjawiś - logout: - title: Wótzjawiś se - heading: Z OpenStreetMap se wótzjawiś - logout_button: Wótzjawjenje - lost_password: - title: Zabyte gronidło - heading: Sy gronidło zabył? - email address: 'E-mailowa adresa:' - new password button: Gronidło slědk stajiś - help_text: Zapódaj e-mailowu adresu, kótaruž sy za registrěrowanje wužył, pósćelomy - wótkaz na nju, kótaryž móžoš wužywaś, aby swójo gronidło slědk stajił. - notice email on way: Bóžko sy jo zabył :-(, ale e-mail jo k tebje ducy, tak - až móžoš jo skóro slědk stajiś. - notice email cannot find: Bóžko ta e-mailowa adresa njejo se namakała. - reset_password: - title: Gronidło slědk stajiś - heading: Gronidło za %{user} slědk stajiś - reset: Gronidło slědk stajiś - flash changed: Twójo gronidło jo se změniło. - flash token bad: Njejo móžno było ten token namakaś, pšosym pśekontrolěruj URL. new: title: Registrěrowaś no_auto_account_create: Bóžko njamóžomy tuchylu za tebje konto awtomatiski załožyś. @@ -1762,33 +1769,6 @@ dsb: flash update success confirm needed: Wužywarske informacije wuspěšnje zaktualizěrowane. Dostanjoš e-mail z napominanim, twóju e-mailowu adresu wobkšuśiś. flash update success: Wužywarske informacije wuspěšnje zaktualizěrowane. - confirm: - heading: Pśeglědaj swóju e-mail! - introduction_1: Smy śi wobkšuśeńsku e-mail pósłali. - introduction_2: Wobkšuś swójo konto, z tym až kliknjoš na wótkaz w e-mailce - a móžoš kartěrowanje zachopiś. - press confirm button: Klikni dołojce na wobkšuśeński tłocašk, aby aktiwěrował - swójo konto. - button: Wobkšuśiś - success: Twójo konto jo se wobkšuśiło, źěkujomy se za registrěrowanje! - already active: Toś te konto jo se južo wobkšuśiło. - unknown token: Wobkšuśeński kod jo pśepadnjony abo njeeksistěrujo. - reconfirm_html: Jolic musyš nam wobkšuśeńsku e-mailku znowego pósłaś, klikni - how. - confirm_resend: - success_html: Smy nowu wobkšuśeński e-mail na %{email} póslali a gaž wobkšuśijoš - swójo konto, móžoš kartěrowanje zachopiś.

Jolic wužywaš pśeśiwospamowy - system, kótaryž sćelo wobkšuśeńske napšašowanja, pśewzij adresu %{sender} - do swójeje běłeje lisćiny, dokulaž njamóžomy na wobkšuśeńske napšašowanja - wótegroniś. - failure: Wuzywaŕ %{name} njejo se namakał. - confirm_email: - heading: Změnjenje e-mailoweje adrese wobkšuśiś - press confirm button: Klikni na wobkšuśeński tłocašk, aby swóju nowu e-mailowu - adresu wobkšuśił. - button: Wobkšuśiś - success: Twója e-mailowa adresa jo se wobkšuśiła, źěkujomy se za registrěrowanje! - failure: E-mailowa adresa jo se južo wobkšuśiła pśez toś ten wótkaz. set_home: flash success: Bydlišćo jo se wuspěšnje składło. go_public: diff --git a/config/locales/el.yml b/config/locales/el.yml index 5dc646e44..3bc750b7b 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -145,18 +145,26 @@ el: (απαιτείται). user: email: Ηλεκτρονικό ταχυδρομείο - new_email: 'Νέα διεύθυνση ηλεκτρονικού ταχυδρομείου:' + email_confirmation: Επιβεβαίωση διεύθυνσης ηλεκτρονικού ταχυδρομείου + new_email: Νέα διεύθυνση ηλεκτρονικού ταχυδρομείου active: Ενεργό display_name: Εμφάνιση ονόματος - description: Περιγραφή - home_lat: 'Γεωγραφικό πλάτος:' - home_lon: 'Γεωγραφικό μήκος:' - languages: Γλώσσες + description: Περιγραφή προφίλ + home_lat: Γεωγραφικό πλάτος + home_lon: Γεωγραφικό μήκος + languages: Προτιμώμενες γλώσσες + preferred_editor: Προτιμώμενο πρόγραμμα επεξεργασίας pass_crypt: Κωδικός + pass_crypt_confirmation: Επιβεβαίωση κωδικού help: trace: tagstring: διαχωρισμένο με κόμμα user_block: + reason: Η αιτία αποκλεισμού του χρήστη. Παρακαλώ να είστε όσο το δυνατόν πιο + ήρεμος/-η και λογικός/-ή, δίνοντας όσες περισσότερες λεπτομέρειες μπορείτε + για την κατάσταση και σκεπτόμενος/-η ότι το μήνυμα θα είναι δημόσια ορατό. + Λάβετε υπόψη σας ότι δεν κατανοούν όλοι οι χρήστες την ορολογία της κοινότητας, + γι' αυτό προσπαθήστε να χρησιμοποιήσετε απλούς και κατανοητούς όρους. needs_view: Πρέπει ο χρήστης να συνδεθεί προτού εκκαθαριστεί αυτή η φραγή; user: new_email: (να μην εμφανίζεται ποτέ δημόσια) @@ -255,6 +263,12 @@ el: anonymous: ανώνυμος no_comment: (χωρίς σχόλιο) part_of: Μέρος του + part_of_relations: + one: 1 σχέση + other: '%{count} σχέσεις' + part_of_ways: + one: 1 διαδρομή + other: '%{count} διαδρομές' download_xml: Λήψη XML view_history: Προβολή ιστορικού view_details: Προβολή λεπτομερειών @@ -294,6 +308,9 @@ el: title_html: 'Σχέση: %{name}' history_title_html: 'Ιστορικό σχέσης: %{name}' members: Μέλη + members_count: + one: 1 μέλος + other: '%{count} μέλη' relation_member: entry_html: '%{type} %{name}' entry_role_html: '%{type} %{name} ως %{role}' @@ -305,6 +322,7 @@ el: entry_html: Σχέση %{relation_name} entry_role_html: Σχέση %{relation_name} (ως %{relation_role}) not_found: + title: Δεν βρέθηκε sorry: 'Λυπάμαι, το %{type} #%{id} δεν βρέθηκε.' type: node: κόμβος @@ -532,6 +550,7 @@ el: holding_position: κράτηση θέσης parking_position: Θέση στάθμευσης runway: Διάδρομος + taxilane: Λωρίδα ταξί taxiway: Τροχιόδρομος terminal: Τερματικός σταθμός amenity: @@ -545,6 +564,7 @@ el: bicycle_parking: Στάθμευση ποδηλάτων bicycle_rental: Ενοικίαση ποδηλάτων biergarten: Υπαίθρια μπυραρία + blood_bank: Τράπεζα αίματος boat_rental: Ενοικίαση σκαφών brothel: Οίκος ανοχής bureau_de_change: Ανταλλακτήριο συναλλάγματος @@ -581,10 +601,12 @@ el: hunting_stand: Κυνηγητικό κιόσκι ice_cream: Παγωτό kindergarten: Νηπιαγωγείο + language_school: Φροντιστήριο ξένων γλωσσών library: Βιβλιοθήκη marketplace: Αγορά monastery: Μοναστήρι motorcycle_parking: Χώρος στάθμευσης μοτοσικλετών + music_school: Ωδείο nightclub: Νυχτερινό κέντρο nursing_home: Οίκος ευγηρίας parking: Χώρος στάθμευσης @@ -597,6 +619,7 @@ el: post_office: Ταχυδρομείο prison: Φυλακή pub: Παμπ + public_bath: Δημόσιο λουτρό public_building: Δημόσιο κτίριο recycling: Σημείο ανακύκλωσης restaurant: Εστιατόριο @@ -632,14 +655,21 @@ el: viaduct: Κοιλαδογέφυρα "yes": Γέφυρα building: + apartments: Διαμερίσματα chapel: Παρεκκλήσι church: Εκκλησία + commercial: Εμπορικό κτίριο + construction: Κτίριο υπό κατασκευή dormitory: Κοιτώνας + farm: Αγροικία + farm_auxiliary: Βοηθητική αγροικία garage: Γκαράζ + greenhouse: Θερμοκήπιο hospital: Κτήριο Νοσοκομείου hotel: Ξενοδοχείο house: Σπίτι industrial: Βιομηχανικό Κτήριο + kindergarten: Κτίριο νηπιαγωγείου office: Κτήριο Γραφείων public: Δημόσιο κτήριο residential: Πολυκατοικία @@ -649,11 +679,13 @@ el: warehouse: Αποθήκη "yes": Κτίριο craft: + beekeper: Μελισσοκόμος blacksmith: Σιδηρουργός brewery: Ζυθοποιείο carpenter: Ξυλουργός electrician: Ηλεκτρολόγος gardener: Κηπουρός + handicraft: Χειροκατασκευές painter: Ζωγράφος photographer: Φωτογράφος plumber: Υδραυλικός @@ -664,6 +696,7 @@ el: ambulance_station: Σταθμός ασθενοφόρων assembly_point: Σημείο συγκέντρωσης defibrillator: Απινιδωτής + fire_xtinguisher: Πυροσβεστήρας landing_site: Τοποθεσία έκτακτης προσγείωσης phone: Τηλέφωνο έκτακτης ανάγκης water_tank: Δεξαμενή νερού έκτακτης ανάγκης @@ -805,6 +838,7 @@ el: "yes": Ψυχαγωγία man_made: adit: Οριζόντια είσοδος σε ορυχείο + antenna: Κεραία beacon: φάρος beehive: Κυψέλη breakwater: Κυματοθραύστης @@ -830,6 +864,7 @@ el: silo: Σιλό storage_tank: Δεξαμενή αποθήκευσης surveillance: Επιτήρηση + telescope: Τηλεσκόπιο tower: Πύργος wastewater_plant: Μονάδα επεξεργασίας λυμάτων watermill: Νερόμυλος @@ -843,6 +878,7 @@ el: airfield: Στρατιωτικό αεροδρόμιο barracks: Στρατώνας bunker: Οχυρό + checkpoint: Σημείο ελέγχου "yes": Στρατός mountain_pass: "yes": Ορεινό πέρασμα @@ -852,6 +888,7 @@ el: cape: Ακρωτήριο cave_entrance: Είσοδος σπηλιάς cliff: Γκρεμός + coastline: Ακτογραμμή crater: Κρατήρας dune: Αμμόλοφος fell: Λόφος @@ -868,6 +905,7 @@ el: moor: Δέστρα mud: Λάσπη peak: Κορυφή + peninsula: Χερσόνησος point: Σημείο reef: Ύφαλος ridge: Σκόπελος @@ -891,19 +929,24 @@ el: architect: Αρχιτέκτονας association: Σύλλογος company: Εταιρεία + diplomatic: Διπλωματικό γραφείο educational_institution: Εκπαιδευτικό ίδρυμα employment_agency: Οργανισμός απασχόλησης + energy_supplier: Γραφείο παροχής ενέργειας estate_agent: Κτηματομεσιτικό γραφείο + financial: Γραφείο οικονομικών government: Κυβερνητικό γραφείο insurance: Ασφαλιστικό γραφείο it: Γραφείο πληροφορικής lawyer: Δικηγόρος + logistics: Λογιστικό γραφείο ngo: Γραφείο ΜΚΟ telecommunication: Γραφείο τηλεπικοινωνιών travel_agent: Ταξιδιωτικό πρακτορείο "yes": Γραφείο place: allotments: Λαχανόκηποι + archipelago: Αρχιπέλαγος city: Πόλη city_block: Οικοδομικό τετράγωνο πόλης country: Χώρα @@ -957,7 +1000,9 @@ el: alcohol: Εκτός άδειας antiques: Αντίκες art: Κατάστημα τέχνης + baby_goods: Βρεφικά είδη bakery: Φούρνος + bathroom_furnishing: Εξοπλισμός μπάνιου beauty: Σαλόνι ομορφιάς beverages: Κατάστημα ποτών bicycle: Κατάστημα ποδηλάτων @@ -970,7 +1015,9 @@ el: car_repair: Συνεργείο αυτοκινήτων carpet: Κατάστημα χαλιών charity: Φιλανθρωπικό κατάστημα + cheese: Τυροπωλείο chemist: Χημικός + chocolate: Σοκολατερί clothes: Κατάστημα ρούχων computer: Κατάστημα υπολογιστών confectionery: Ζαχαροπλαστική @@ -982,10 +1029,12 @@ el: discount: Εκπτωτικό κατάστημα doityourself: Ιδιοκατασκευές dry_cleaning: Στεγνό καθάρισμα + e-cigarette: Κατάστημα ηλεκτρονικών τσιγάρων electronics: Κατάστημα ηλεκτρονικών estate_agent: Κτηματομεσίτης farm: Γεωργικά εφόδια fashion: Κατάστημα μόδας + fishing: Κατάστημα ειδών αλιείας florist: Ανθοπώλης food: Κατάστημα τροφίμων funeral_directors: Γραφείο κηδειών @@ -997,13 +1046,16 @@ el: grocery: Οπωροπωλείο hairdresser: Κομμωτήριο hardware: Κατάστημα με χρώματα-σιδηρικά + hearing_aids: Βοηθήματα ακοής hifi: Hi-Fi houseware: Μαγαζί με οικιακά είδη + ice_cream: Παγωτατζίδικο interior_decoration: Διακόσμηση εσωτερικού χώρου jewelry: Κοσμηματοπωλείο kiosk: Περίπτερο kitchen: Μαγαζί κουζινών laundry: Πλυντήριο + locksmith: Κλειδαράς lottery: Λοταρία mall: Εμπορικό κέντρο massage: Μασάζ @@ -1016,6 +1068,7 @@ el: outdoor: Υπαίθριο κατάστημα paint: Χρωματοπωλείο pawnbroker: Ενεχυροδανειστής + perfumery: Αρωματοπωλείο pet: Κατάστημα κατοικίδιων photo: Φωτογραφείο seafood: Θαλασσινό φαγητό @@ -1353,11 +1406,41 @@ el: στο %{url}. unsubscribe: Για να διαγραφείτε από τις ενημερώσεις αυτής της ομάδας αλλαγών, επισκεφθείτε το %{url} και πατήστε "Διαγραφή". + confirmations: + confirm: + heading: Ελέγξτε το ηλεκτρονικό ταχυδρομείο σας! + introduction_1: Σας στείλαμε ένα email επιβεβαίωσης. + introduction_2: Επιβεβαιώστε το λογαριασμό σας κάνοντας κλικ στο σύνδεσμο στο + email και θα είστε σε θέση να ξεκινήσετε τη χαρτογράφηση. + press confirm button: Πατήστε το κουμπί "Επιβεβαίωση" για να ενεργοποιήσετε + το λογαριασμό σας. + button: Επιβεβαίωση + success: Επιβεβαιώθηκε ο λογαριασμός σας, ευχαριστούμε για την εγγραφή σας! + already active: Αυτός ο λογαριασμός έχει ήδη επιβεβαιωθεί. + unknown token: Ο κωδικός επιβεβαίωσης έληξε ή δεν υπάρχει. + reconfirm_html: Εάν θέλετε να σας ξαναστείλουμε το email επιβεβαίωσης πατήστε + εδώ. + confirm_resend: + success_html: Έχουμε στείλει ένα νέο σημείωμα επιβεβαίωσης στο %{email} και + μόλις επιβεβαιώσετε τον λογαριασμό σας, θα μπορείτε να αρχίσετε τη χαρτογράφηση.

Εάν χρησιμοποιείτε ένα σύστημα αποκλεισμού ανεπιθύμητων μηνυμάτων, + το οποίο στέλνει αιτήματα επιβεβαίωσης, βεβαιωθείτε ότι έχετε προσθέσει σε + λίστα επιτρεπόμενων το %{sender} καθώς δεν μπορούμε να απαντάμε σε κανένα + αίτημα επιβεβαίωσης. + failure: Ο χρήστης %{name} δεν βρέθηκε. + confirm_email: + heading: Επιβεβαίωση αλλαγής της διεύθυνσης ηλεκτρονικού ταχυδρομείου + press confirm button: Πατήστε το κουμπί «Επιβεβαίωση» παρακάτω για να επιβεβαιώσετε + τη νέα διεύθυνση ηλεκτρονικού ταχυδρομείου σας. + button: Επιβεβαίωση + success: Επιβεβαιώθηκε η αλλαγή της διεύθυνσης ηλεκτρονικού ταχυδρομείου σας! + failure: Μια διεύθυνση ηλεκτρονικού ταχυδρομείου έχει ήδη επιβεβαιωθεί με αυτό + το διακριτικό. + unknown_token: Αυτός ο κωδικός επιβεβαίωσης έχει λήξει ή δεν υπάρχει. messages: inbox: title: Εισερχόμενα my_inbox: Τα εισερχόμενα μου - outbox: εξερχόμενα messages: Έχετε %{new_messages} και %{old_messages} new_messages: one: '%{count} νέο μήνυμα' @@ -1392,9 +1475,6 @@ el: body: Λυπάμαι δεν υπάρχει μήνυμα με αυτό το αναγνωριστικό. outbox: title: Εξερχόμενα - my_inbox_html: Τα %{inbox_link} μου - inbox: εισερχόμενα - outbox: εξερχόμενα messages: one: Έχετε %{count} απεσταλμένο μήνυμα other: Έχετε %{count} απεσταλμένα μηνύματα @@ -1428,6 +1508,84 @@ el: as_unread: Το μήνυμα σημειώθηκε ως μη αναγνωσμένο destroy: destroyed: Το μήνυμα διαγράφηκε + passwords: + lost_password: + title: Χάσατε το συνθηματικό σας + heading: Ξεχάσατε το συνθηματικό σας; + email address: 'Διεύθυνση ηλεκτρονικού ταχυδρομείου:' + new password button: Επαναφορά συνθηματικού + help_text: Πληκτρολογήστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου που χρησιμοποιήσατε + για να εγγραφείτε. Θα στείλουμε έναν σύνδεσμο τον οποίον μπορείτε να χρησιμοποιήσετε + για να επαναφέρετε το συνθηματικό σας. + notice email on way: Λυπούμαστε που το χάσατε :-(, αλλά ένα μήνυμα ηλεκτρονικού + ταχυδρομείου εστάλη, ώστε να μπορέσετε να το επαναφέρετε σύντομα. + notice email cannot find: Λυπούμαστε, δεν βρέθηκε αυτή η διεύθυνση ηλεκτρονικού + ταχυδρομείου. + reset_password: + title: Επαναφορά συνθηματικού + heading: Επαναφορά συνθηματικού για τον χρήστη %{user} + reset: Επαναφορά συνθηματικού + flash changed: Το συνθηματικό σας άλλαξε! + flash token bad: Δεν βρήκατε αυτό το κομμάτι, μήπως πρέπει να ελέγξετε το URL; + sessions: + new: + title: Είσοδος + heading: Είσοδος + email or username: 'Διεύθυνση Ηλ. Ταχυδρομείου ή Όνομα Χρήστη:' + password: 'Συνθηματικό:' + openid_html: '%{logo} OpenID:' + remember: Να με θυμάσαι + lost password link: Ξεχάσατε το συνθηματικό σας; + login_button: Είσοδος + register now: Εγγραφείτε τώρα + with username: 'Έχετε ήδη λογαριασμό OpenStreetMap; Παρακαλώ συνδεθείτε με το + όνομα χρήστη και το συνθηματικό σας:' + with external: 'Εναλλακτικά, χρησιμοποιήστε τρίτη υπηρεσία για είσοδο:' + new to osm: Νέοι στο OpenStreetMap; + to make changes: Για να κάνετε αλλαγές στα δεδομένα του OpenStreetMap, πρέπει + να έχετε λογαριασμό. + create account minute: Δημιουργήστε ένα λογαριασμό. Χρειάζεται μόνο ένα λεπτό. + no account: Δεν έχετε λογαριασμό; + account not active: Λυπούμαστε, ο λογαριασμός σας δεν είναι ενεργός ακόμα.
Παρακαλούμε χρησιμοποιήστε το σύνδεσμο στο email επιβεβαίωσης για να ενεργοποιήσετε + τον λογαριασμό σας, ή κάντε αίτηση νέου μηνύματος επιβεβαίωσης. + account is suspended: Λυπούμαστε, ο λογαριασμός σας έχει ανασταλεί λόγω ύποπτης + δραστηριότητας.
Παρακαλούμε επικοινωνήστε με τον webmaster + εάν θέλετε να το συζητήσετε. + auth failure: Λυπούμαστε, δεν μπορείτε να συνδεθείτε με αυτές τις λεπτομέρειες. + openid_logo_alt: Σύνδεση με ένα OpenID + auth_providers: + openid: + title: Σύνδεση με ένα OpenID + alt: Σύνδεση με ένα OpenID URL + google: + title: Σύνδεση με το Google + alt: Σύνδεση με ένα Google OpenID + facebook: + title: Σύνδεση με το Facebook + alt: Σύνδεση με έναν Λογαριασμό Facebook + windowslive: + title: Σύνδεση με το Windows Live + alt: Σύνδεση με ένα Λογαριασμό Windows Live + github: + title: Σύνδεση με το GitHub + alt: Σύνδεση με λογαριασμό GitHub + wikipedia: + title: Σύνδεση με Wikipedia + alt: Συνδεθείτε με ένα Λογαριασμό Wikipedia + yahoo: + title: Σύνδεση με το Yahoo + alt: Σύνδεση με ένα Yahoo OpenID + wordpress: + title: Σύνδεση με το Wordpress + alt: Σύνδεση με ένα Wordpress OpenID + aol: + title: Σύνδεση με την AOL + alt: Σύνδεση με ένα AOL OpenID + destroy: + title: Αποσύνδεση + heading: Αποσύνδεση από το OpenStreetMap + logout_button: Αποσύνδεση site: about: next: Επόμενη @@ -1811,23 +1969,6 @@ el: bicycle_shop: Κατάστημα ποδηλάτων bicycle_parking: Χώρος στάθμευσης ποδηλάτων toilets: Τουαλέτες - richtext_area: - edit: Επεξεργασία - preview: Προεπισκόπηση - markdown_help: - title_html: Αναλύεται με το kramdown - headings: Επικεφαλίδες - heading: Επικεφαλίδα - subheading: Υποκεφαλίδα - unordered: Μη ταξινομημένη λίστα - ordered: Ταξινομημένη λίστα - first: Πρώτο στοιχείο - second: Δεύτερο στοιχείο - link: Σύνδεσμος - text: Κείμενο - image: Εικόνα - alt: Εναλ. κείμενο - url: Διεύθυνση URL welcome: title: Καλώς ήρθατε! introduction_html: Σας καλωσορίζουμε στο OpenStreetMap, τον ελεύθερο και επεξεργάσιμο @@ -1950,7 +2091,6 @@ el: more: περισσότερα trace_details: Προβολή λεπτομερειών ίχνους view_map: Προβολή χάρτη - edit: επεξεργασία edit_map: Επεξεργασία χάρτη public: ΔΗΜΟΣΙΟ identifiable: ΑΝΑΓΝΩΡΙΣΙΜΟ @@ -1958,7 +2098,6 @@ el: trackable: ΑΝΙΧΝΕΥΣΙΜΟ by: από in: σε - map: χάρτης index: public_traces: Δημόσια ίχνη GPS my_traces: Τα ίχνη GPS μου @@ -2077,82 +2216,6 @@ el: destroy: flash: Η εγγραφή της εφαρμογής πελάτη καταστράφηκε users: - login: - title: Είσοδος - heading: Είσοδος - email or username: 'Διεύθυνση Ηλ. Ταχυδρομείου ή Όνομα Χρήστη:' - password: 'Συνθηματικό:' - openid_html: '%{logo} OpenID:' - remember: Να με θυμάσαι - lost password link: Ξεχάσατε το συνθηματικό σας; - login_button: Είσοδος - register now: Εγγραφείτε τώρα - with username: 'Έχετε ήδη λογαριασμό OpenStreetMap; Παρακαλώ συνδεθείτε με το - όνομα χρήστη και το συνθηματικό σας:' - with external: 'Εναλλακτικά, χρησιμοποιήστε τρίτη υπηρεσία για είσοδο:' - new to osm: Νέοι στο OpenStreetMap; - to make changes: Για να κάνετε αλλαγές στα δεδομένα του OpenStreetMap, πρέπει - να έχετε λογαριασμό. - create account minute: Δημιουργήστε ένα λογαριασμό. Χρειάζεται μόνο ένα λεπτό. - no account: Δεν έχετε λογαριασμό; - account not active: Λυπούμαστε, ο λογαριασμός σας δεν είναι ενεργός ακόμα.
Παρακαλούμε χρησιμοποιήστε το σύνδεσμο στο email επιβεβαίωσης για να ενεργοποιήσετε - τον λογαριασμό σας, ή κάντε αίτηση νέου μηνύματος επιβεβαίωσης. - account is suspended: Λυπούμαστε, ο λογαριασμός σας έχει ανασταλεί λόγω ύποπτης - δραστηριότητας.
Παρακαλούμε επικοινωνήστε με τον webmaster - εάν θέλετε να το συζητήσετε. - auth failure: Λυπούμαστε, δεν μπορείτε να συνδεθείτε με αυτές τις λεπτομέρειες. - openid_logo_alt: Σύνδεση με ένα OpenID - auth_providers: - openid: - title: Σύνδεση με ένα OpenID - alt: Σύνδεση με ένα OpenID URL - google: - title: Σύνδεση με το Google - alt: Σύνδεση με ένα Google OpenID - facebook: - title: Σύνδεση με το Facebook - alt: Σύνδεση με έναν Λογαριασμό Facebook - windowslive: - title: Σύνδεση με το Windows Live - alt: Σύνδεση με ένα Λογαριασμό Windows Live - github: - title: Σύνδεση με το GitHub - alt: Σύνδεση με λογαριασμό GitHub - wikipedia: - title: Σύνδεση με Wikipedia - alt: Συνδεθείτε με ένα Λογαριασμό Wikipedia - yahoo: - title: Σύνδεση με το Yahoo - alt: Σύνδεση με ένα Yahoo OpenID - wordpress: - title: Σύνδεση με το Wordpress - alt: Σύνδεση με ένα Wordpress OpenID - aol: - title: Σύνδεση με την AOL - alt: Σύνδεση με ένα AOL OpenID - logout: - title: Αποσύνδεση - heading: Αποσύνδεση από το OpenStreetMap - logout_button: Αποσύνδεση - lost_password: - title: Χάσατε το συνθηματικό σας - heading: Ξεχάσατε το συνθηματικό σας; - email address: 'Διεύθυνση ηλεκτρονικού ταχυδρομείου:' - new password button: Επαναφορά συνθηματικού - help_text: Πληκτρολογήστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου που χρησιμοποιήσατε - για να εγγραφείτε. Θα στείλουμε έναν σύνδεσμο τον οποίον μπορείτε να χρησιμοποιήσετε - για να επαναφέρετε το συνθηματικό σας. - notice email on way: Λυπούμαστε που το χάσατε :-(, αλλά ένα μήνυμα ηλεκτρονικού - ταχυδρομείου εστάλη, ώστε να μπορέσετε να το επαναφέρετε σύντομα. - notice email cannot find: Λυπούμαστε, δεν βρέθηκε αυτή η διεύθυνση ηλεκτρονικού - ταχυδρομείου. - reset_password: - title: Επαναφορά συνθηματικού - heading: Επαναφορά συνθηματικού για τον χρήστη %{user} - reset: Επαναφορά συνθηματικού - flash changed: Το συνθηματικό σας άλλαξε! - flash token bad: Δεν βρήκατε αυτό το κομμάτι, μήπως πρέπει να ελέγξετε το URL; new: title: Εγγραφή no_auto_account_create: Δυστυχώς δεν μπορούμε να δημιουργήσουμε αυτόματα έναν @@ -2292,13 +2355,13 @@ el: account: title: Επεξεργασία λογαριασμού my settings: Οι ρυθμίσεις μου - current email address: 'Τρέχουσα διεύθυνση ηλεκτρονικού ταχυδρομείου:' - external auth: 'Εξωτερική επαλήθευση ταυτότητας:' + current email address: Τρέχουσα διεύθυνση ηλεκτρονικού ταχυδρομείου + external auth: Εξωτερική επαλήθευση ταυτότητας openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: τι είναι αυτό; public editing: - heading: 'Δημόσια επεξεργασία:' + heading: Δημόσια επεξεργασία enabled: Ενεργοποιήθηκε. Δεν είστε πια ανώνυμοι και μπορείτε να επεξεργαστείτε δεδομένα. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits @@ -2318,7 +2381,7 @@ el:
  • Αυτή η ενέργεια δεν μπορεί να αναιρεθεί και όλοι οι νέοι χρήστες είναι επώνυμοι εξ' αρχής.
  • contributor terms: - heading: 'Όροι Συνεισφοράς:' + heading: Όροι Συνεισφοράς agreed: Έχετε αποδεχτεί τους νέους Όρους Συνεισφοράς. not yet agreed: Δεν έχετε αποδεχτεί τους νέους Όρους Συνεισφοράς. review link text: Παρακαλούμε ακολουθήστε αυτό το σύνδεσμο, για την ενημέρωση @@ -2327,7 +2390,7 @@ el: στον δημόσιο τομέα. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: τι είναι αυτό; - image: 'Εικόνα:' + image: Εικόνα gravatar: gravatar: Χρήση Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar @@ -2338,7 +2401,7 @@ el: delete image: Αφαίρεση της τρέχουσας εικόνας replace image: Αντικατάσταση της τρέχουσας εικόνας image size hint: (τετράγωνες εικόνες τουλάχιστον 100 x 100 λειτουργούν καλύτερα) - home location: 'Τοποθεσία Σπιτιού:' + home location: Τοποθεσία Σπιτιού no home location: Δεν έχετε εισάγει την τοποθεσία του σπιτιού σας. update home location on click: Ενημέρωση τοποθεσίας σπιτιού όταν κάνω κλικ στον χάρτη; @@ -2349,36 +2412,6 @@ el: επιτυχώς. Ελέγξτε το ηλεκτρονικό ταχυδρομείο σας για μια ειδοποίηση επιβεβαίωσης της νέας σας διεύθυνση ηλεκτρονικού ταχυδρομείου. flash update success: Οι πληροφορίες χρήστη ενημερώθηκαν με επιτυχία. - confirm: - heading: Ελέγξτε το ηλεκτρονικό ταχυδρομείο σας! - introduction_1: Σας στείλαμε ένα email επιβεβαίωσης. - introduction_2: Επιβεβαιώστε το λογαριασμό σας κάνοντας κλικ στο σύνδεσμο στο - email και θα είστε σε θέση να ξεκινήσετε τη χαρτογράφηση. - press confirm button: Πατήστε το κουμπί "Επιβεβαίωση" για να ενεργοποιήσετε - το λογαριασμό σας. - button: Επιβεβαίωση - success: Επιβεβαιώθηκε ο λογαριασμός σας, ευχαριστούμε για την εγγραφή σας! - already active: Αυτός ο λογαριασμός έχει ήδη επιβεβαιωθεί. - unknown token: Ο κωδικός επιβεβαίωσης έληξε ή δεν υπάρχει. - reconfirm_html: Εάν θέλετε να σας ξαναστείλουμε το email επιβεβαίωσης πατήστε - εδώ. - confirm_resend: - success_html: Έχουμε στείλει ένα νέο σημείωμα επιβεβαίωσης στο %{email} και - μόλις επιβεβαιώσετε τον λογαριασμό σας, θα μπορείτε να αρχίσετε τη χαρτογράφηση.

    Εάν χρησιμοποιείτε ένα σύστημα αποκλεισμού ανεπιθύμητων μηνυμάτων, - το οποίο στέλνει αιτήματα επιβεβαίωσης, βεβαιωθείτε ότι έχετε προσθέσει σε - λίστα επιτρεπόμενων το %{sender} καθώς δεν μπορούμε να απαντάμε σε κανένα - αίτημα επιβεβαίωσης. - failure: Ο χρήστης %{name} δεν βρέθηκε. - confirm_email: - heading: Επιβεβαίωση αλλαγής της διεύθυνσης ηλεκτρονικού ταχυδρομείου - press confirm button: Πατήστε το κουμπί «Επιβεβαίωση» παρακάτω για να επιβεβαιώσετε - τη νέα διεύθυνση ηλεκτρονικού ταχυδρομείου σας. - button: Επιβεβαίωση - success: Επιβεβαιώθηκε η αλλαγή της διεύθυνσης ηλεκτρονικού ταχυδρομείου σας! - failure: Μια διεύθυνση ηλεκτρονικού ταχυδρομείου έχει ήδη επιβεβαιωθεί με αυτό - το διακριτικό. - unknown_token: Αυτός ο κωδικός επιβεβαίωσης έχει λήξει ή δεν υπάρχει. set_home: flash success: Η τοποθεσία σπιτιού αποθηκεύτηκε επιτυχώς go_public: diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 0939470fb..2e7da718e 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -1265,11 +1265,38 @@ en-GB: details: More details about the changeset can be found at %{url}. unsubscribe: To unsubscribe from updates to this changeset, visit %{url} and click "Unsubscribe". + confirmations: + confirm: + heading: Check your email! + introduction_1: We sent you a confirmation email. + introduction_2: Confirm your account by clicking on the link in the email and + you'll be able to start mapping. + press confirm button: Press the confirm button below to activate your account. + button: Confirm + success: Confirmed your account, thanks for signing up! + already active: This account has already been confirmed. + unknown token: That confirmation code has expired or does not exist. + reconfirm_html: If you need us to resend the confirmation email, click + here. + confirm_resend: + success_html: We've sent a new confirmation note to %{email} and as soon as + you confirm your account you'll be able to get mapping.

    If you + use an antispam system which sends confirmation requests then please make + sure you whitelist %{sender} as we are unable to reply to any confirmation + requests. + failure: User %{name} not found. + confirm_email: + heading: Confirm a change of e-mail address + press confirm button: Press the confirm button below to confirm your new e-mail + address. + button: Confirm + success: Confirmed your change of email address! + failure: An e-mail address has already been confirmed with this token. + unknown_token: That confirmation code has expired or does not exist. messages: inbox: title: Inbox my_inbox: My Inbox - outbox: outbox messages: You have %{new_messages} and %{old_messages} new_messages: one: '%{count} new message' @@ -1304,9 +1331,6 @@ en-GB: body: Sorry, there is no message with that id. outbox: title: Outbox - my_inbox_html: My %{inbox_link} - inbox: inbox - outbox: outbox messages: one: You have %{count} sent message other: You have %{count} sent messages @@ -1340,6 +1364,82 @@ en-GB: as_unread: Message marked as unread destroy: destroyed: Message deleted + passwords: + lost_password: + title: Lost password + heading: Forgotten Password? + email address: E-mail address + new password button: Reset password + help_text: Enter the e-mail address you used to sign up, we will send a link + to it that you can use to reset your password. + notice email on way: Sorry you lost it :-( but an email is on its way so you + can reset it soon. + notice email cannot find: Could not find that email address, sorry. + reset_password: + title: Reset password + heading: Reset Password for %{user} + reset: Reset Password + flash changed: Your password has been changed. + flash token bad: Did not find that token, check the URL maybe? + sessions: + new: + title: Login + heading: Login + email or username: 'E-mail Address or Username:' + password: 'Password:' + openid_html: '%{logo} OpenID:' + remember: Remember me + lost password link: Lost your password? + login_button: Login + register now: Register now + with username: 'Already have an OpenStreetMap account? Please login with your + username and password:' + with external: 'Alternatively, use a third party to login:' + new to osm: New to OpenStreetMap? + to make changes: To make changes to the OpenStreetMap data, you must have an + account. + create account minute: Create an account. It only takes a minute. + no account: Don't have an account? + account not active: Sorry, your account is not active yet.
    Please use the + link in the account confirmation email to activate your account, or request + a new confirmation email. + account is suspended: Sorry, your account has been suspended due to suspicious + activity.
    Please contact the webmaster if + you wish to discuss this. + auth failure: Sorry, could not log in with those details. + openid_logo_alt: Log in with an OpenID + auth_providers: + openid: + title: Login with OpenID + alt: Login with an OpenID URL + google: + title: Login with Google + alt: Login with a Google OpenID + facebook: + title: Login with Facebook + alt: Login with a Facebook Account + windowslive: + title: Login with Windows Live + alt: Login with a Windows Live Account + github: + title: Login with GitHub + alt: Login with a GitHub Account + wikipedia: + title: Login with Wikipedia + alt: Login with a Wikipedia Account + yahoo: + title: Login with Yahoo + alt: Login with a Yahoo OpenID + wordpress: + title: Login with Wordpress + alt: Login with a Wordpress OpenID + aol: + title: Login with AOL + alt: Login with an AOL OpenID + destroy: + title: Logout + heading: Logout of OpenStreetMap + logout_button: Logout site: about: next: Next @@ -1700,23 +1800,6 @@ en-GB: bicycle_shop: Bicycle shop bicycle_parking: Bicycle parking toilets: Toilets - richtext_area: - edit: Edit - preview: Preview - markdown_help: - title_html: Parsed with kramdown - headings: Headings - heading: Heading - subheading: Subheading - unordered: Unordered list - ordered: Ordered list - first: First item - second: Second item - link: Link - text: Text - image: Image - alt: Alt text - url: URL welcome: title: Welcome! introduction_html: Welcome to OpenStreetMap, the free and editable map of the @@ -1827,7 +1910,6 @@ en-GB: more: more trace_details: View Trace Details view_map: View Map - edit: edit edit_map: Edit Map public: PUBLIC identifiable: IDENTIFIABLE @@ -1835,7 +1917,6 @@ en-GB: trackable: TRACKABLE by: by in: in - map: map index: public_traces: Public GPS traces public_traces_from: Public GPS traces from %{user} @@ -1943,80 +2024,6 @@ en-GB: destroy: flash: Destroyed the client application registration users: - login: - title: Login - heading: Login - email or username: 'E-mail Address or Username:' - password: 'Password:' - openid_html: '%{logo} OpenID:' - remember: Remember me - lost password link: Lost your password? - login_button: Login - register now: Register now - with username: 'Already have an OpenStreetMap account? Please login with your - username and password:' - with external: 'Alternatively, use a third party to login:' - new to osm: New to OpenStreetMap? - to make changes: To make changes to the OpenStreetMap data, you must have an - account. - create account minute: Create an account. It only takes a minute. - no account: Don't have an account? - account not active: Sorry, your account is not active yet.
    Please use the - link in the account confirmation email to activate your account, or request - a new confirmation email. - account is suspended: Sorry, your account has been suspended due to suspicious - activity.
    Please contact the webmaster if - you wish to discuss this. - auth failure: Sorry, could not log in with those details. - openid_logo_alt: Log in with an OpenID - auth_providers: - openid: - title: Login with OpenID - alt: Login with an OpenID URL - google: - title: Login with Google - alt: Login with a Google OpenID - facebook: - title: Login with Facebook - alt: Login with a Facebook Account - windowslive: - title: Login with Windows Live - alt: Login with a Windows Live Account - github: - title: Login with GitHub - alt: Login with a GitHub Account - wikipedia: - title: Login with Wikipedia - alt: Login with a Wikipedia Account - yahoo: - title: Login with Yahoo - alt: Login with a Yahoo OpenID - wordpress: - title: Login with Wordpress - alt: Login with a Wordpress OpenID - aol: - title: Login with AOL - alt: Login with an AOL OpenID - logout: - title: Logout - heading: Logout of OpenStreetMap - logout_button: Logout - lost_password: - title: Lost password - heading: Forgotten Password? - email address: E-mail address - new password button: Reset password - help_text: Enter the e-mail address you used to sign up, we will send a link - to it that you can use to reset your password. - notice email on way: Sorry you lost it :-( but an email is on its way so you - can reset it soon. - notice email cannot find: Could not find that email address, sorry. - reset_password: - title: Reset password - heading: Reset Password for %{user} - reset: Reset Password - flash changed: Your password has been changed. - flash token bad: Did not find that token, check the URL maybe? new: title: Sign Up no_auto_account_create: Unfortunately we are not currently able to create an @@ -2188,33 +2195,6 @@ en-GB: flash update success confirm needed: User information updated successfully. Check your email for a note to confirm your new email address. flash update success: User information updated successfully. - confirm: - heading: Check your email! - introduction_1: We sent you a confirmation email. - introduction_2: Confirm your account by clicking on the link in the email and - you'll be able to start mapping. - press confirm button: Press the confirm button below to activate your account. - button: Confirm - success: Confirmed your account, thanks for signing up! - already active: This account has already been confirmed. - unknown token: That confirmation code has expired or does not exist. - reconfirm_html: If you need us to resend the confirmation email, click - here. - confirm_resend: - success_html: We've sent a new confirmation note to %{email} and as soon as - you confirm your account you'll be able to get mapping.

    If you - use an antispam system which sends confirmation requests then please make - sure you whitelist %{sender} as we are unable to reply to any confirmation - requests. - failure: User %{name} not found. - confirm_email: - heading: Confirm a change of e-mail address - press confirm button: Press the confirm button below to confirm your new e-mail - address. - button: Confirm - success: Confirmed your change of email address! - failure: An e-mail address has already been confirmed with this token. - unknown_token: That confirmation code has expired or does not exist. set_home: flash success: Home location saved successfully go_public: diff --git a/config/locales/en.yml b/config/locales/en.yml index 298369c22..b07536c27 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -474,6 +474,7 @@ en: description: "Recent diary entries from users of OpenStreetMap" comments: has_commented_on: "%{display_name} has commented on the following diary entries" + no_comments: "No diary comments" post: Post when: When comment: Comment @@ -963,12 +964,14 @@ en: mountain_pass: "yes" : "Mountain Pass" natural: + atoll: "Atoll" bare_rock: "Bare Rock" bay: "Bay" beach: "Beach" cape: "Cape" cave_entrance: "Cave Entrance" cliff: "Cliff" + coastline: "Coastline" crater: "Crater" dune: "Dune" fell: "Fell" @@ -986,6 +989,7 @@ en: moor: "Moor" mud: "Mud" peak: "Peak" + peninsula: "Peninsula" point: "Point" reef: "Reef" ridge: "Ridge" @@ -1033,6 +1037,7 @@ en: "yes": "Office" place: allotments: "Allotments" + archipelago: "Archipelago" city: "City" city_block: "City Block" country: "Country" @@ -1515,11 +1520,34 @@ en: details_html: "More details about the changeset can be found at %{url}." unsubscribe: 'To unsubscribe from updates to this changeset, visit %{url} and click "Unsubscribe".' unsubscribe_html: 'To unsubscribe from updates to this changeset, visit %{url} and click "Unsubscribe".' + confirmations: + confirm: + heading: Check your email! + introduction_1: | + We sent you a confirmation email. + introduction_2: | + Confirm your account by clicking on the link in the email and you'll be able to start mapping. + press confirm button: "Press the confirm button below to activate your account." + button: Confirm + success: "Confirmed your account, thanks for signing up!" + already active: "This account has already been confirmed." + unknown token: "That confirmation code has expired or does not exist." + reconfirm_html: "If you need us to resend the confirmation email, click here." + confirm_resend: + success_html: "We've sent a new confirmation note to %{email} and as soon as you confirm your account you'll be able to get mapping.

    If you use an antispam system which sends confirmation requests then please make sure you whitelist %{sender} as we are unable to reply to any confirmation requests." + failure: "User %{name} not found." + confirm_email: + heading: Confirm a change of email address + press confirm button: "Press the confirm button below to confirm your new email address." + button: Confirm + success: "Confirmed your change of email address!" + failure: "An email address has already been confirmed with this token." + unknown_token: "That confirmation code has expired or does not exist." messages: inbox: title: "Inbox" my_inbox: "My Inbox" - outbox: "outbox" + my_outbox: "My Outbox" messages: "You have %{new_messages} and %{old_messages}" new_messages: one: "%{count} new message" @@ -1552,9 +1580,8 @@ en: body: "Sorry there is no message with that id." outbox: title: "Outbox" - my_inbox_html: "My %{inbox_link}" - inbox: "inbox" - outbox: "outbox" + my_inbox: "My Inbox" + my_outbox: "My Outbox" messages: one: "You have %{count} sent message" other: "You have %{count} sent messages" @@ -1583,6 +1610,74 @@ en: as_unread: "Message marked as unread" destroy: destroyed: "Message deleted" + passwords: + lost_password: + title: "Lost password" + heading: "Forgotten Password?" + email address: "Email Address:" + new password button: "Reset password" + help_text: "Enter the email address you used to sign up, we will send a link to it that you can use to reset your password." + notice email on way: "Sorry you lost it :-( but an email is on its way so you can reset it soon." + notice email cannot find: "Could not find that email address, sorry." + reset_password: + title: "Reset password" + heading: "Reset Password for %{user}" + reset: "Reset Password" + flash changed: "Your password has been changed." + flash token bad: "Did not find that token, check the URL maybe?" + sessions: + new: + title: "Login" + heading: "Login" + email or username: "Email Address or Username:" + password: "Password:" + openid_html: "%{logo} OpenID:" + remember: "Remember me" + lost password link: "Lost your password?" + login_button: "Login" + register now: Register now + with username: "Already have an OpenStreetMap account? Please login with your username and password:" + with external: "Alternatively, use a third party to login:" + new to osm: New to OpenStreetMap? + to make changes: To make changes to the OpenStreetMap data, you must have an account. + create account minute: Create an account. It only takes a minute. + no account: Don't have an account? + account not active: "Sorry, your account is not active yet.
    Please use the link in the account confirmation email to activate your account, or request a new confirmation email." + account is suspended: Sorry, your account has been suspended due to suspicious activity.
    Please contact the webmaster if you wish to discuss this. + auth failure: "Sorry, could not log in with those details." + openid_logo_alt: "Log in with an OpenID" + auth_providers: + openid: + title: Login with OpenID + alt: Login with an OpenID URL + google: + title: Login with Google + alt: Login with a Google OpenID + facebook: + title: Login with Facebook + alt: Login with a Facebook Account + windowslive: + title: Login with Windows Live + alt: Login with a Windows Live Account + github: + title: Login with GitHub + alt: Login with a GitHub Account + wikipedia: + title: Login with Wikipedia + alt: Login with a Wikipedia Account + yahoo: + title: Login with Yahoo + alt: Login with a Yahoo OpenID + wordpress: + title: Login with Wordpress + alt: Login with a Wordpress OpenID + aol: + title: Login with AOL + alt: Login with an AOL OpenID + destroy: + title: "Logout" + heading: "Logout from OpenStreetMap" + logout_button: "Logout" shared: markdown_help: title_html: Parsed with kramdown @@ -1995,23 +2090,6 @@ en: bicycle_shop: "Bicycle shop" bicycle_parking: "Bicycle parking" toilets: "Toilets" - richtext_area: - edit: Edit - preview: Preview - markdown_help: - title_html: Parsed with kramdown - headings: Headings - heading: Heading - subheading: Subheading - unordered: Unordered list - ordered: Ordered list - first: First item - second: Second item - link: Link - text: Text - image: Image - alt: Alt text - url: URL welcome: title: Welcome! introduction_html: | @@ -2127,7 +2205,6 @@ en: more: "more" trace_details: "View Trace Details" view_map: "View Map" - edit: "edit" edit_map: "Edit Map" public: "PUBLIC" identifiable: "IDENTIFIABLE" @@ -2135,7 +2212,6 @@ en: trackable: "TRACKABLE" by: "by" in: "in" - map: "map" index: public_traces: "Public GPS traces" my_traces: "My GPS traces" @@ -2237,72 +2313,6 @@ en: destroy: flash: "Destroyed the client application registration" users: - login: - title: "Login" - heading: "Login" - email or username: "Email Address or Username:" - password: "Password:" - openid_html: "%{logo} OpenID:" - remember: "Remember me" - lost password link: "Lost your password?" - login_button: "Login" - register now: Register now - with username: "Already have an OpenStreetMap account? Please login with your username and password:" - with external: "Alternatively, use a third party to login:" - new to osm: New to OpenStreetMap? - to make changes: To make changes to the OpenStreetMap data, you must have an account. - create account minute: Create an account. It only takes a minute. - no account: Don't have an account? - account not active: "Sorry, your account is not active yet.
    Please use the link in the account confirmation email to activate your account, or request a new confirmation email." - account is suspended: Sorry, your account has been suspended due to suspicious activity.
    Please contact the webmaster if you wish to discuss this. - auth failure: "Sorry, could not log in with those details." - openid_logo_alt: "Log in with an OpenID" - auth_providers: - openid: - title: Login with OpenID - alt: Login with an OpenID URL - google: - title: Login with Google - alt: Login with a Google OpenID - facebook: - title: Login with Facebook - alt: Login with a Facebook Account - windowslive: - title: Login with Windows Live - alt: Login with a Windows Live Account - github: - title: Login with GitHub - alt: Login with a GitHub Account - wikipedia: - title: Login with Wikipedia - alt: Login with a Wikipedia Account - yahoo: - title: Login with Yahoo - alt: Login with a Yahoo OpenID - wordpress: - title: Login with Wordpress - alt: Login with a Wordpress OpenID - aol: - title: Login with AOL - alt: Login with an AOL OpenID - logout: - title: "Logout" - heading: "Logout from OpenStreetMap" - logout_button: "Logout" - lost_password: - title: "Lost password" - heading: "Forgotten Password?" - email address: "Email Address:" - new password button: "Reset password" - help_text: "Enter the email address you used to sign up, we will send a link to it that you can use to reset your password." - notice email on way: "Sorry you lost it :-( but an email is on its way so you can reset it soon." - notice email cannot find: "Could not find that email address, sorry." - reset_password: - title: "Reset password" - heading: "Reset Password for %{user}" - reset: "Reset Password" - flash changed: "Your password has been changed." - flash token bad: "Did not find that token, check the URL maybe?" new: title: "Sign Up" no_auto_account_create: "Unfortunately we are not currently able to create an account for you automatically." @@ -2465,28 +2475,6 @@ en: return to profile: Return to profile flash update success confirm needed: "User information updated successfully. Check your email for a note to confirm your new email address." flash update success: "User information updated successfully." - confirm: - heading: Check your email! - introduction_1: | - We sent you a confirmation email. - introduction_2: | - Confirm your account by clicking on the link in the email and you'll be able to start mapping. - press confirm button: "Press the confirm button below to activate your account." - button: Confirm - success: "Confirmed your account, thanks for signing up!" - already active: "This account has already been confirmed." - unknown token: "That confirmation code has expired or does not exist." - reconfirm_html: "If you need us to resend the confirmation email, click here." - confirm_resend: - success_html: "We've sent a new confirmation note to %{email} and as soon as you confirm your account you'll be able to get mapping.

    If you use an antispam system which sends confirmation requests then please make sure you whitelist %{sender} as we are unable to reply to any confirmation requests." - failure: "User %{name} not found." - confirm_email: - heading: Confirm a change of email address - press confirm button: "Press the confirm button below to confirm your new email address." - button: Confirm - success: "Confirmed your change of email address!" - failure: "An email address has already been confirmed with this token." - unknown_token: "That confirmation code has expired or does not exist." set_home: flash success: "Home location saved successfully" go_public: @@ -2651,6 +2639,7 @@ en: title: "Notes submitted or commented on by %{user}" heading: "%{user}'s notes" subheading_html: "Notes submitted or commented on by %{user}" + no_notes: No notes id: "Id" creator: "Creator" description: "Description" diff --git a/config/locales/eo.yml b/config/locales/eo.yml index 7f268343f..196f1a72d 100644 --- a/config/locales/eo.yml +++ b/config/locales/eo.yml @@ -363,7 +363,7 @@ eo: wiki_link: key: La viki-paĝo priskribanta la etikedon '%{key}' tag: La viki-paĝo priskribanta la etikedon '%{key}=%{value}' - wikidata_link: La %{page} elemento en Vikidatumoj + wikidata_link: La elemento %{page} en Vikidatumoj wikipedia_link: La artikolo %{page} en Vikipedio wikimedia_commons_link: Objekto %{page} ĉe Vikimedia Komunejo telephone_link: Telefoni %{phone_number} @@ -398,7 +398,7 @@ eo: previous: « Antaŭa changeset: anonymous: Anonimulo - no_edits: (neniuj redaktoj) + no_edits: (neniu redakto) view_changeset_details: Vidi detalojn pri ŝanĝaro changesets: id: Identigilo @@ -411,11 +411,11 @@ eo: title_user: Ŝanĝaroj de %{user} title_friend: Ŝanĝaroj de miaj amikoj title_nearby: Ŝanĝaroj de proksimaj uzantoj - empty: Neniuj trovitaj ŝanĝaroj. - empty_area: Neniuj ŝanĝaroj en tiu ĉi areo. - empty_user: Neniuj ŝanĝaroj de tiu ĉi uzanto. - no_more: Neniuj trovitaj pliaj ŝanĝaroj. - no_more_area: Neniuj pliaj ŝanĝaroj en tiu ĉi areo. + empty: Neniu trovita ŝanĝaro. + empty_area: Neniu ŝanĝaro en tiu ĉi areo. + empty_user: Neniu ŝanĝaro de tiu ĉi uzanto. + no_more: Neniu plia trovita ŝanĝaro. + no_more_area: Neniu plia ŝanĝaro en tiu ĉi areo. no_more_user: Neniaj pliaj ŝanĝaroj de tiu ĉi uzanto. load_more: Pli timeout: @@ -447,7 +447,7 @@ eo: new: Nova taglibra afiŝo new_title: Krei novan afiŝon en mia uzant-taglibro my_diary: Mia taglibro - no_entries: Neniuj taglibraj afiŝoj + no_entries: Neniu taglibra afiŝo recent_entries: Lastaj taglibraj afiŝoj older_entries: Pli malnovaj afiŝoj newer_entries: Pli novaj afiŝoj @@ -783,7 +783,7 @@ eo: elevator: Lifto emergency_access_point: Vivsava rekonebla signo emergency_bay: Kriokaza strat-golfo - footway: Piedvojeto + footway: Trotuaro ford: Travadejo give_way: Trafiksigno ‘cedi traveturon’ living_street: Ĉedoma strato @@ -992,12 +992,14 @@ eo: mountain_pass: "yes": Montpasejo natural: + atoll: Atolo bare_rock: Roka areo bay: Golfo beach: Sablobordo cape: Promontoro cave_entrance: Enirejo al kaverno cliff: Klifo + coastline: Marbordo crater: Kratero dune: Sablomonto fell: Alpo @@ -1015,6 +1017,7 @@ eo: moor: Arbustetaro mud: Kotejo peak: Montpinto + peninsula: Duoninsulo point: Punkto reef: Rifo ridge: Montokresto @@ -1062,6 +1065,7 @@ eo: "yes": Oficejo place: allotments: Familiaj ĝardenoj + archipelago: Insularo city: Urbego city_block: Dombloko country: Lando @@ -1328,7 +1332,6 @@ eo: show: title: '%{status} problemo #%{issue_id}' reports: - zero: Neniuj raportoj one: 1 raporto other: '%{count} raportoj' report_created_at: Unue raportita je %{datetime} @@ -1341,7 +1344,7 @@ eo: read_reports: Legi raportojn new_reports: Novaj raportoj other_issues_against_this_user: Aliaj problemoj pri tiu ĉi uzanto - no_other_issues: Neniuj aliaj problemoj pri tiu ĉi uzanto. + no_other_issues: Neniu alia problemo pri tiu ĉi uzanto. comments_on_this_issue: Komentoj al tiu ĉi problemo resolve: resolved: Problemo estas solvita @@ -1570,11 +1573,37 @@ eo: klaku "Malobservi". unsubscribe_html: Por malaboni la ĝisdatigojn de ĉi tiu ŝanĝaro, vizitu %{url}kaj alklaku "Malaboni". + confirmations: + confirm: + heading: Kontrolu vian retpoŝtkeston! + introduction_1: Ni sendis al vi retleteron de konfirmo. + introduction_2: Konfirmu vian konton alklakante la ligilon en la retletero kaj + poste vi povos komenci mapigadon. + press confirm button: Premu la konfirmbutonon sube por aktivigi vian konton. + button: Konfirmi + success: Via konto estas konfirmita, multan dankon por vi registrado! + already active: Ĉi tiu konto jam estas konfirmita. + unknown token: Ĉi tiu konfirma kodo malvalidiĝis aŭ ne ekzistas. + reconfirm_html: Por resendi la konfirman kodon, alklaku + ĉi tie. + confirm_resend: + success_html: Ni sendis novan konfirman kodon al %{email}, kaj tiel frue vi + konfirmos vian konton, vi povos mapigi.

    Se vi uzas kontraŭ-trud-mesaĝan + sistemon, certigu ke vi aldonis %{sender} al via blanka listo, do tiel ni + eblos kontakti vin senprobleme. + failure: Uzanto %{name} ne trovita. + confirm_email: + heading: Konfirmi ŝanĝon de retadreso. + press confirm button: Premu la butonon sube por konfirmi vian novan retadreson. + button: Konfirmi + success: Ŝanĝo de via retpoŝta adreso konfirmita! + failure: Retadreso jam estis konfirmita per tiu ĵetono. + unknown_token: Ĉi tiu konfirma kodo malvalidiĝis aŭ ne ekzistas. messages: inbox: - title: Alvenkesto - my_inbox: Mia alvenkesto - outbox: elirkesto + title: Ricevujo + my_inbox: Ricevujo + my_outbox: Senditujo messages: Vi havas %{new_messages} kaj %{old_messages} new_messages: one: '%{count} novan mesaĝon' @@ -1598,7 +1627,7 @@ eo: send_message_to_html: Sendi novan mesaĝon al %{name} subject: Temo body: Enhavo - back_to_inbox: Reen al alvenkesto + back_to_inbox: Reen al ricevujo create: message_sent: Mesaĝo sendita limit_exceeded: Vi antaŭnelonge sendis multajn mesaĝojn. Bonvolu atendi iom @@ -1609,9 +1638,8 @@ eo: body: Bedaŭrinde ne ekzistas mesaĝo kun tiu ĉi identigilo. outbox: title: Elirkesto - my_inbox_html: Mia %{inbox_link} - inbox: alvenkesto - outbox: elirkesto + my_inbox: Ricevujo + my_outbox: Senditujo messages: one: Vi havas %{count} senditan mesaĝon other: Vi havas %{count} senditajn mesaĝojn @@ -1645,6 +1673,82 @@ eo: as_unread: Mesaĝo markita kiel nelegitan destroy: destroyed: Mesaĝo forigita + passwords: + lost_password: + title: Perdita pasvorto + heading: Forgesis vian pasvorton ? + email address: 'Retpoŝtadreso:' + new password button: Nuligi pasvorton + help_text: Entajpu la retpoŝtan adreson kiun vi uzis por ensaluto, ni sendos + al vi ligilon, kiun vi povos uzi por restarigi vian pasvorton. + notice email on way: Bedaŭras, ke vi perdis ĝin :-( sed baldaŭ vi ricevos retleteron, + kiun vi uzos por restarigi ĝin. + notice email cannot find: Bedaŭrinde, tiu retadreso ne troveblas. + reset_password: + title: Nuligi pasvorton + heading: Nuligi Pasvorton por %{user} + reset: Nuligi pasvorton + flash changed: Via pasvorto estis ŝanĝita. + flash token bad: Netrovebla ĵetono, bonvolu kontroli la URLon. + sessions: + new: + title: Ensaluti + heading: Ensaluti + email or username: 'Retpoŝtadreso aŭ uzantnomo:' + password: 'Pasvorto:' + openid_html: '%{logo} OpenID:' + remember: Memori min + lost password link: Ĉu vi forgesis vian pasvorton? + login_button: Ensaluti + register now: Registriĝi + with username: 'Ĉu vi jam havas OpenStreetMap-konton? Bonvolu ensaluti per vian + uzantnomon kaj pasvorton:' + with external: 'Alimaniere, ensalutu uzante:' + new to osm: Ĉu vi estas nova al OpenStreetMap? + to make changes: Por fari ŝanĝojn al datumoj de OpenStreetMap, vi devas havi + konton. + create account minute: Kreu konton. Tio ĉi daŭros nur minuton. + no account: Ĉu vi ne havas konton? + account not active: Bedaŭrinde via konto ne estas ankoraŭ aktiva. Bonvolu malfermi + la ligilon en konfirmada retletero por aktivigi vian konton, aŭ petu + pri sendo de nova mesaĝo. + account is suspended: Ho ve, via konto estas haltigita pro suspektinda agado. + Bonvolu kontaktu kun la administranto, se vi volas + pridiskuti pri blokon. + auth failure: Bedaŭrinde ne povas ensaluti kun ĉi tiuj informoj. + openid_logo_alt: Ensaluti per OpenID + auth_providers: + openid: + title: Ensaluti per OpenID + alt: Ensaluti per OpenID URL + google: + title: Ensaluti per Google + alt: Ensaluti per Google OpenID + facebook: + title: Ensaluti per Fejsbuko + alt: Ensaluti per konto je Fejsbuko + windowslive: + title: Ensaluti per Windows Live + alt: Ensaluti per konto je Windows Live + github: + title: Ensaluti per GitHub + alt: Ensaluti per konto je GitHub + wikipedia: + title: Ensaluti per Vikipedio + alt: Ensaluti per Vikipedia konto + yahoo: + title: Ensaluti per Yahoo + alt: Ensaluti per Yahoo OpenID + wordpress: + title: Ensaluti per Wordpress + alt: Ensaluti per Wordpress OpenID + aol: + title: Ensaluti per AOL + alt: Ensaluti per AOL OpenID + destroy: + title: Elsaluti + heading: Elsaluti el OpenStreetMap + logout_button: Elsaluti shared: markdown_help: title_html: Sintakse analizita per kramdown @@ -2035,23 +2139,6 @@ eo: bicycle_shop: Bicikl-vendejo bicycle_parking: Parkumejo bicikla toilets: Necesejo - richtext_area: - edit: Redakti - preview: Antaŭvidi - markdown_help: - title_html: Sintakse analizita per kramdown - headings: Titoloj - heading: Titolo - subheading: Subtitolo - unordered: Malordigita listo - ordered: Ordigita listo - first: Unua elemento - second: Dua elemento - link: Ligilo - text: Teksto - image: Bildo - alt: Kromteksto - url: URL welcome: title: Bonvenon! introduction_html: Bonvenon al OpenStreetMap, la libera kaj redaktebla mapo @@ -2169,7 +2256,6 @@ eo: more: pli trace_details: Vidi detalojn de spuro view_map: Vidi mapon - edit: redakti edit_map: Redakti mapon public: PUBLIKA identifiable: IDENTIGEBLA @@ -2177,7 +2263,6 @@ eo: trackable: SPUREBLA by: de in: en - map: mapo index: public_traces: Publikaj GPS-spuroj my_traces: Miaj GPS-spuroj @@ -2289,80 +2374,6 @@ eo: destroy: flash: La porklienta aplikaĵo forigita users: - login: - title: Ensaluti - heading: Ensaluti - email or username: 'Retpoŝtadreso aŭ uzantnomo:' - password: 'Pasvorto:' - openid_html: '%{logo} OpenID:' - remember: Memori min - lost password link: Ĉu vi forgesis vian pasvorton? - login_button: Ensaluti - register now: Registriĝi - with username: 'Ĉu vi jam havas OpenStreetMap-konton? Bonvolu ensaluti per vian - uzantnomon kaj pasvorton:' - with external: 'Alimaniere, ensalutu uzante:' - new to osm: Ĉu vi estas nova al OpenStreetMap? - to make changes: Por fari ŝanĝojn al datumoj de OpenStreetMap, vi devas havi - konton. - create account minute: Kreu konton. Tio ĉi daŭros nur minuton. - no account: Ĉu vi ne havas konton? - account not active: Bedaŭrinde via konto ne estas ankoraŭ aktiva. Bonvolu malfermi - la ligilon en konfirmada retletero por aktivigi vian konton, aŭ petu - pri sendo de nova mesaĝo. - account is suspended: Ho ve, via konto estas haltigita pro suspektinda agado. - Bonvolu kontaktu kun la administranto, se vi volas - pridiskuti pri blokon. - auth failure: Bedaŭrinde ne povas ensaluti kun ĉi tiuj informoj. - openid_logo_alt: Ensaluti per OpenID - auth_providers: - openid: - title: Ensaluti per OpenID - alt: Ensaluti per OpenID URL - google: - title: Ensaluti per Google - alt: Ensaluti per Google OpenID - facebook: - title: Ensaluti per Fejsbuko - alt: Ensaluti per konto je Fejsbuko - windowslive: - title: Ensaluti per Windows Live - alt: Ensaluti per konto je Windows Live - github: - title: Ensaluti per GitHub - alt: Ensaluti per konto je GitHub - wikipedia: - title: Ensaluti per Vikipedio - alt: Ensaluti per Vikipedia konto - yahoo: - title: Ensaluti per Yahoo - alt: Ensaluti per Yahoo OpenID - wordpress: - title: Ensaluti per Wordpress - alt: Ensaluti per Wordpress OpenID - aol: - title: Ensaluti per AOL - alt: Ensaluti per AOL OpenID - logout: - title: Elsaluti - heading: Elsaluti el OpenStreetMap - logout_button: Elsaluti - lost_password: - title: Perdita pasvorto - heading: Forgesis vian pasvorton ? - email address: 'Retpoŝtadreso:' - new password button: Nuligi pasvorton - help_text: Entajpu la retpoŝtan adreson kiun vi uzis por ensaluto, ni sendos - al vi ligilon, kiun vi povos uzi por restarigi vian pasvorton. - notice email on way: Bedaŭras, ke vi perdis ĝin :-( sed baldaŭ vi ricevos retleteron, - kiun vi uzos por restarigi ĝin. - notice email cannot find: Bedaŭrinde, tiu retadreso ne troveblas. - reset_password: - title: Nuligi pasvorton - heading: Nuligi Pasvorton por %{user} - reset: Nuligi pasvorton - flash changed: Via pasvorto estis ŝanĝita. - flash token bad: Netrovebla ĵetono, bonvolu kontroli la URLon. new: title: Registriĝi no_auto_account_create: Bedaŭrinde ni nun ne povas aŭtomate krei konton por @@ -2419,10 +2430,10 @@ eo: italy: Italujo rest_of_world: Resto de la mondo no_such_user: - title: Neniu tiel uzanto + title: Neekzistanta uzanto heading: La uzanto %{user} ne ekzistas - body: Bedaŭrinde, ne ekzistas uzanto kun la nomo %{user}. Bonvolu kontroli pri - liter-eraroj, aŭ eble vi alklakis mis-ligilon. + body: Bedaŭrinde ne ekzistas uzanto kun la nomo %{user}. Bonvolu kontroli pri + liter‑eraroj, aŭ eble vi alklakis eraran ligilon. deleted: forigita show: my diary: Mia taglibro @@ -2463,8 +2474,7 @@ eo: km away: '%{count} km for' m away: '%{count} m for' nearby users: Plej proksimaj uzantoj - no nearby users: Neniuj aliaj uzantoj ekzistas, kiuj jam deklaris mapigadon - en proksimaĵo. + no nearby users: Neniu alia uzanto, kiu deklaris mapigadon en tiu ĉi areo. role: administrator: Ĉi tiu uzanto estas administranto moderator: Ĉi tiu uzanto estas kontrolanto @@ -2550,31 +2560,6 @@ eo: flash update success confirm needed: Uzantinformoj sukcese freŝigitaj. Kontrolu vian retpoŝtilon por iu mesaĝo kiu konfirmos vian novan retadreso. flash update success: Uzantinformoj sukcese freŝigitaj. - confirm: - heading: Kontrolu vian retpoŝtkeston! - introduction_1: Ni sendis al vi retleteron de konfirmo. - introduction_2: Konfirmu vian konton alklakante la ligilon en la retletero kaj - poste vi povos komenci mapigadon. - press confirm button: Premu la konfirmbutonon sube por aktivigi vian konton. - button: Konfirmi - success: Via konto estas konfirmita, multan dankon por vi registrado! - already active: Ĉi tiu konto jam estas konfirmita. - unknown token: Ĉi tiu konfirma kodo malvalidiĝis aŭ ne ekzistas. - reconfirm_html: Por resendi la konfirman kodon, alklaku - ĉi tie. - confirm_resend: - success_html: Ni sendis novan konfirman kodon al %{email}, kaj tiel frue vi - konfirmos vian konton, vi povos mapigi.

    Se vi uzas kontraŭ-trud-mesaĝan - sistemon, certigu ke vi aldonis %{sender} al via blanka listo, do tiel ni - eblos kontakti vin senprobleme. - failure: Uzanto %{name} ne trovita. - confirm_email: - heading: Konfirmi ŝanĝon de retadreso. - press confirm button: Premu la butonon sube por konfirmi vian novan retadreson. - button: Konfirmi - success: Ŝanĝo de via retpoŝta adreso konfirmita! - failure: Retadreso jam estis konfirmita per tiu ĵetono. - unknown_token: Ĉi tiu konfirma kodo malvalidiĝis aŭ ne ekzistas. set_home: flash success: Pozicio de hejmo sukcese konservita go_public: @@ -2671,7 +2656,7 @@ eo: index: title: Blokadoj de uzanto heading: Listo de blokadoj de uzanto - empty: Neniuj blokadoj kreitaj ankoraŭ. + empty: Ankoraŭ neniu farita blokado. revoke: title: Nuligado de blokado por %{block_on} heading_html: Nuligado de blokado por %{block_on} kreitaj de %{block_by} diff --git a/config/locales/es.yml b/config/locales/es.yml index 2db1e1987..20d8af26d 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -57,6 +57,7 @@ # Author: Peter17 # Author: Pompilos # Author: Remux +# Author: Rodhos # Author: Rodm23 # Author: Rodney Araujo # Author: Rubenwap @@ -183,29 +184,43 @@ es: body: Cuerpo recipient: Destinatario redaction: + title: Título description: Descripción report: - category: Seleccione un motivo de su informe + category: Seleccione el motivo de su informe details: Es necesario proporcionar más detalles sobre el problema. user: + auth_provider: Proveedor de autentificación + auth_uid: UID de autentificación email: Correo electrónico - new_email: 'Nueva dirección de correo electrónico:' + email_confirmation: Confirmación de correo electrónico + new_email: Nueva dirección de correo electrónico active: Activo display_name: Nombre para mostrar - description: Descripción - home_lat: 'Latitud:' - home_lon: 'Longitud:' - languages: Idiomas + description: Descripción del perfil + home_lat: Latitud + home_lon: Longitud + languages: Idiomas preferidos + preferred_editor: Editor preferido pass_crypt: Contraseña pass_crypt_confirmation: Confirmar contraseña help: trace: tagstring: delimitado por comas user_block: + reason: El motivo por el que el usuario está siendo bloqueado. Manténgase + lo más tranquilo y razonable posible, dando tantos detalles como pueda sobre + la situación, recordando que el mensaje será visible públicamente. Tenga + en cuenta que no todos los usuarios comprenden la jerga de la comunidad, + así que intente utilizar términos simples. needs_view: ¿Tiene que iniciar sesión el usuario antes de que este bloqueo sea eliminado? user: - new_email: (nunca es mostrado públicamente) + email_confirmation: Tu dirección no se muestra de forma pública. Consulta + la normativa de privacidad para más información. + new_email: (nunca se muestra públicamente) datetime: distance_in_words_ago: about_x_hours: @@ -393,7 +408,7 @@ es: su navegador se ralentice o que no responda. ¿Está seguro de que desea mostrar estos datos? load_data: Cargar datos - loading: Cargando... + loading: Cargando… tag_details: tags: Etiquetas wiki_link: @@ -423,7 +438,7 @@ es: report: Denunciar esta nota query: title: Consultar elementos - introduction: Haga clic en el mapa para encontrar elementos cercanos. + introduction: Pulse en el mapa para encontrar elementos cercanos. nearby: Elementos cercanos enclosing: Elementos envolventes changesets: @@ -450,7 +465,7 @@ es: empty_area: No hay conjuntos de cambios en este área. empty_user: No hay conjuntos de cambios por este usuario. no_more: No se han encontrado más conjuntos de cambios. - no_more_area: No hay más conjuntos de cambios en esta área. + no_more_area: No hay más conjuntos de cambios en este área. no_more_user: No hay más conjuntos de cambios por este usuario. load_more: Cargar más timeout: @@ -490,7 +505,7 @@ es: older_entries: Entradas más antiguas newer_entries: Entradas más recientes edit: - title: Editar Entrada del Diario + title: Editar entrada del diario marker_text: Lugar de la entrada del diario show: title: Diario de %{user} | %{title} @@ -1037,6 +1052,7 @@ es: cape: Cabo cave_entrance: Entrada a cueva cliff: Acantilado + coastline: Costa crater: Cráter dune: Duna fell: Monte @@ -1623,11 +1639,39 @@ es: de cambios, visite %{url} y haga clic en "Cancelar suscripción". unsubscribe_html: Para darte de baja de las actualizaciones de este conjunto de cambios, visita %{url} y haz clic en "darse de baja". + confirmations: + confirm: + heading: Revise su correo electrónico! + introduction_1: Le hemos enviado un correo electrónico de confirmación. + introduction_2: Confirme su cuenta haciendo clic en el enlace del correo electrónico + y podrá comenzar a mapear. + press confirm button: Pulse botón de confirmación de abajo para activar su cuenta. + button: Confirmar + success: ¡Cuenta confirmada, gracias por registrarse! + already active: Esta cuenta ya ha sido confirmada. + unknown token: Ese código de confirmación ha caducado o no existe. + reconfirm_html: Si necesita que le reenviemos el correo electrónico de confirmación, + haga clic aquí. + confirm_resend: + success_html: Hemos enviado un nuevo aviso de confirmación a %{email} y tan + pronto como confirme su cuenta, podrá comenzar a editar el mapa.

    Si utiliza un sistema antispam que envía solicitudes de confirmación, asegúrese + de incluir a %{sender} en la lista blanca, ya que no podemos responder a ninguna + solicitud de confirmación. + failure: No se ha encontrado el usuario %{name} + confirm_email: + heading: Confirmar el cambio de dirección de correo electrónico + press confirm button: Pulse el botón de confirmación de debajo para confirmar + su nueva dirección de correo electrónico. + button: Confirmar + success: Se confirmó el cambio de dirección de correo electrónico. + failure: Ya se ha confirmado una dirección de correo electrónico con esta credencial + de autenticación. + unknown_token: Ese código de confirmación ha caducado o no existe. messages: inbox: title: Buzón de entrada my_inbox: Mi buzón - outbox: bandeja de salida messages: Tiene %{new_messages} y %{old_messages} new_messages: one: '%{count} nuevo mensaje' @@ -1662,9 +1706,6 @@ es: body: Lo sentimos, no hay ningún mensaje con este identificador. outbox: title: Bandeja de salida - my_inbox_html: Mi %{inbox_link} - inbox: bandeja de entrada - outbox: bandeja de salida messages: one: Tiene %{count} mensaje enviado other: Tiene %{count} mensajes enviados @@ -1700,6 +1741,85 @@ es: as_unread: Mensaje marcado como no leído destroy: destroyed: Mensaje borrado + passwords: + lost_password: + title: Contraseña perdida + heading: ¿Contraseña olvidada? + email address: 'Dirección de correo electrónico:' + new password button: Restablecer contraseña + help_text: Escriba el correo electrónico con el que se registró. Le enviaremos + un vínculo a esa dirección, que podrá utilizar para restablecer su contraseña. + notice email on way: Sentimos que la haya perdido :-( pero ya va de camino un + correo electrónico que le servirá para restablecer su contraseña enseguida. + notice email cannot find: Lo sentimos, no se pudo encontrar esa dirección de + correo electrónico. + reset_password: + title: Restablecer contraseña + heading: Restablecer contraseña para %{user} + reset: Restablecer contraseña + flash changed: Su contraseña ha sido cambiada. + flash token bad: No se ha encontrado este elemento, ¿Quizá debería comprobar + la URL? + sessions: + new: + title: Iniciar sesión + heading: Iniciar sesión + email or username: 'Dirección de correo electrónico o nombre de usuario:' + password: 'Contraseña:' + openid_html: '%{logo} OpenID:' + remember: 'Recordarme:' + lost password link: ¿Ha perdido su contraseña? + login_button: Iniciar sesión + register now: Regístrese ahora + with username: '¿Ya tiene una cuenta en OpenStreetMap? Inicie sesión con su + nombre de usuario y contraseña:' + with external: 'O bien, utilice un servicio de terceros para acceder:' + new to osm: ¿Nuevo en OpenStreetMap? + to make changes: Para realizar cambios en los datos de OpenStreetMap, debe tener + una cuenta. + create account minute: Cree una cuenta. Sólo se tarda un minuto. + no account: ¿No está registrado? + account not active: |- + Lo sentimos, tu cuenta aún no está activa.
    Usa el enlace que hay en el correo de confirmación para activarla, o solicita un nuevo correo de confirmación. + + Lo sentimos, su cuenta aún no está activa.
    Utilice el enlace que hay en el correo de confirmación para activarla, o solicite un nuevo correo de confirmación. + account is suspended: Lo sentimos, su cuenta se ha suspendido debido a actividad + sospechosa.
    Póngase en contacto con el webmaster + si desea hablar de ello. + auth failure: Lo sentimos. No pude iniciar sesión con esos datos. + openid_logo_alt: Inicia sesión con una OpenID + auth_providers: + openid: + title: Iniciar sesión con OpenID + alt: Iniciar sesión con una URL OpenID + google: + title: Iniciar sesión con Google + alt: Iniciar sesión con una OpenID de Google + facebook: + title: Inicia sesión con Facebook + alt: Inicia sesión con una cuenta de Facebook + windowslive: + title: Inicia sesión con Windows Live + alt: Iniciar sesión con una cuenta de Windows Live + github: + title: Iniciar sesión con GitHub + alt: Iniciar sesión con una cuenta de GitHub + wikipedia: + title: Iniciar sesión con Wikipedia + alt: Iniciar sesión con una cuenta de Wikipedia + yahoo: + title: Iniciar sesión con Yahoo + alt: Iniciar sesión con una OpenID de Yahoo + wordpress: + title: Iniciar sesión con Wordpress + alt: Iniciar sesión con una OpenID de Wordpress + aol: + title: Iniciar sesión con AOL + alt: Iniciar sesión con una OpenID de AOL + destroy: + title: Cerrar sesión + heading: Cerrar sesión de OpenStreetMap + logout_button: Cerrar sesión shared: markdown_help: title_html: Analizado con kramdown @@ -2105,23 +2225,6 @@ es: bicycle_shop: Tienda de bicicletas bicycle_parking: Aparcamiento de bicicletas toilets: Baños - richtext_area: - edit: Editar - preview: Vista previa - markdown_help: - title_html: Procesado con kramdown - headings: Títulos - heading: Título - subheading: Subcabecera - unordered: Lista sin ordenar - ordered: Lista ordenada - first: Primer elemento - second: Segundo elemento - link: Enlace - text: Texto - image: Imagen - alt: Texto alternativo - url: URL welcome: title: ¡Bienvenido! introduction_html: Bienvenido a OpenStreetMap, el mapa libre y editable del @@ -2241,7 +2344,6 @@ es: more: más trace_details: Ver detalles de la traza view_map: Ver mapa - edit: editar edit_map: Editar mapa public: PÚBLICO identifiable: IDENTIFICABLE @@ -2249,7 +2351,6 @@ es: trackable: RASTREABLE by: por in: en - map: mapa index: public_traces: Trazas GPS públicas my_traces: Mis trazas de GPS @@ -2364,83 +2465,6 @@ es: destroy: flash: Destruido el registro de aplicación del cliente users: - login: - title: Iniciar sesión - heading: Iniciar sesión - email or username: 'Dirección de correo electrónico o nombre de usuario:' - password: 'Contraseña:' - openid_html: '%{logo} OpenID:' - remember: 'Recordarme:' - lost password link: ¿Ha perdido su contraseña? - login_button: Iniciar sesión - register now: Regístrese ahora - with username: '¿Ya tiene una cuenta en OpenStreetMap? Inicie sesión con su - nombre de usuario y contraseña:' - with external: 'O bien, utilice un servicio de terceros para acceder:' - new to osm: ¿Nuevo en OpenStreetMap? - to make changes: Para realizar cambios en los datos de OpenStreetMap, debe tener - una cuenta. - create account minute: Cree una cuenta. Sólo se tarda un minuto. - no account: ¿No está registrado? - account not active: |- - Lo sentimos, tu cuenta aún no está activa.
    Usa el enlace que hay en el correo de confirmación para activarla, o solicita un nuevo correo de confirmación. - - Lo sentimos, su cuenta aún no está activa.
    Utilice el enlace que hay en el correo de confirmación para activarla, o solicite un nuevo correo de confirmación. - account is suspended: Lo sentimos, su cuenta se ha suspendido debido a actividad - sospechosa.
    Póngase en contacto con el webmaster - si desea hablar de ello. - auth failure: Lo sentimos. No pude iniciar sesión con esos datos. - openid_logo_alt: Inicia sesión con una OpenID - auth_providers: - openid: - title: Iniciar sesión con OpenID - alt: Iniciar sesión con una URL OpenID - google: - title: Iniciar sesión con Google - alt: Iniciar sesión con una OpenID de Google - facebook: - title: Inicia sesión con Facebook - alt: Inicia sesión con una cuenta de Facebook - windowslive: - title: Inicia sesión con Windows Live - alt: Iniciar sesión con una cuenta de Windows Live - github: - title: Iniciar sesión con GitHub - alt: Iniciar sesión con una cuenta de GitHub - wikipedia: - title: Iniciar sesión con Wikipedia - alt: Iniciar sesión con una cuenta de Wikipedia - yahoo: - title: Iniciar sesión con Yahoo - alt: Iniciar sesión con una OpenID de Yahoo - wordpress: - title: Iniciar sesión con Wordpress - alt: Iniciar sesión con una OpenID de Wordpress - aol: - title: Iniciar sesión con AOL - alt: Iniciar sesión con una OpenID de AOL - logout: - title: Cerrar sesión - heading: Cerrar sesión de OpenStreetMap - logout_button: Cerrar sesión - lost_password: - title: Contraseña perdida - heading: ¿Contraseña olvidada? - email address: 'Dirección de correo electrónico:' - new password button: Restablecer contraseña - help_text: Escriba el correo electrónico con el que se registró. Le enviaremos - un vínculo a esa dirección, que podrá utilizar para restablecer su contraseña. - notice email on way: Sentimos que la haya perdido :-( pero ya va de camino un - correo electrónico que le servirá para restablecer su contraseña enseguida. - notice email cannot find: Lo sentimos, no se pudo encontrar esa dirección de - correo electrónico. - reset_password: - title: Restablecer contraseña - heading: Restablecer contraseña para %{user} - reset: Restablecer contraseña - flash changed: Su contraseña ha sido cambiada. - flash token bad: No se ha encontrado este elemento, ¿Quizá debería comprobar - la URL? new: title: Registrarse no_auto_account_create: Lamentablemente, ahora no podemos crear su cuenta automáticamente. @@ -2575,13 +2599,13 @@ es: account: title: Editar cuenta my settings: Mis preferencias - current email address: 'Dirección de correo electrónico actual:' - external auth: 'Autenticación externa:' + current email address: Dirección de correo electrónico actual + external auth: Autenticación externa openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: ¿Qué es esto? public editing: - heading: 'Ediciones públicas:' + heading: Edición pública enabled: Activadas. No es anónimo y puede editar datos. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: ¿Qué es esto? @@ -2599,7 +2623,7 @@ es: revelada al hacerse pública.
  • Esta acción no se puede revertir y todos los usuarios nuevos ahora son públicos de forma predeterminada.
  • contributor terms: - heading: 'Términos de colaborador:' + heading: Términos de colaborador agreed: Ha aceptado los nuevos Términos de colaborador. not yet agreed: Aún no ha aceptado los nuevos Términos de Colaborador. review link text: Siga este enlace cuando le resulte conveniente para revisar @@ -2608,10 +2632,11 @@ es: Dominio Público. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: ¿Qué es esto? - image: 'Imagen:' + image: Imagen gravatar: gravatar: Usa Gravatar link: http://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: ¿Qué es Gravatar? disabled: Gravatar se ha deshabilitado. enabled: Se ha habilitado la visualización de su Gravatar. new image: Añadir una imagen @@ -2619,7 +2644,7 @@ es: delete image: Eliminar la imagen actual replace image: Reemplazar la imagen actual image size hint: (las imágenes cuadradas de al menos 100x100 funcionan mejor) - home location: 'Lugar de origen:' + home location: Lugar de origen no home location: No ha introducido su lugar de origen. update home location on click: ¿Actualizar su lugar de origen cuando pulses sobre el mapa? @@ -2630,34 +2655,6 @@ es: correctamente. Compruebe su correo electrónico para ver una nota sobre cómo confirmar su nueva dirección de correo electrónico. flash update success: La información del usuario se ha actualizado correctamente. - confirm: - heading: Revise su correo electrónico! - introduction_1: Le hemos enviado un correo electrónico de confirmación. - introduction_2: Confirme su cuenta haciendo clic en el enlace del correo electrónico - y podrá comenzar a mapear. - press confirm button: Pulse botón de confirmación de abajo para activar su cuenta. - button: Confirmar - success: ¡Cuenta confirmada, gracias por registrarse! - already active: Esta cuenta ya ha sido confirmada. - unknown token: Ese código de confirmación ha caducado o no existe. - reconfirm_html: Si necesita que le reenviemos el correo electrónico de confirmación, - haga clic aquí. - confirm_resend: - success_html: Hemos enviado un nuevo aviso de confirmación a %{email} y tan - pronto como confirme su cuenta, podrá comenzar a editar el mapa.

    Si utiliza un sistema antispam que envía solicitudes de confirmación, asegúrese - de incluir a %{sender} en la lista blanca, ya que no podemos responder a ninguna - solicitud de confirmación. - failure: No se ha encontrado el usuario %{name} - confirm_email: - heading: Confirmar el cambio de dirección de correo electrónico - press confirm button: Pulse el botón de confirmación de debajo para confirmar - su nueva dirección de correo electrónico. - button: Confirmar - success: Se confirmó el cambio de dirección de correo electrónico. - failure: Ya se ha confirmado una dirección de correo electrónico con esta credencial - de autenticación. - unknown_token: Ese código de confirmación ha caducado o no existe. set_home: flash success: Ubicación guardada correctamente go_public: @@ -2855,6 +2852,7 @@ es: custom_dimensions: Establecer dimensiones personalizadas format: 'Formato:' scale: 'Escala:' + image_dimensions: La imagen mostrará la capa estándar en %{width} x %{height} download: Descargar short_url: URL corta include_marker: Incluir marcador @@ -2882,6 +2880,7 @@ es: other: Estás dentro de una distancia de %{count} pies desde este punto base: standard: Estándar + cyclosm: CyclOSM cycle_map: Mapa ciclista transport_map: Mapa de transporte hot: Humanitario @@ -2897,6 +2896,8 @@ es: donate_link_text: terms: Términos del sitio web y de la API + cyclosm: Estilo de teselas por CyclOSM + alojado por OpenStreetMap Francia thunderforest: Teselas cortesía de Andy Allan opnvkarte: Teselas cortesía de MeMoMaps diff --git a/config/locales/et.yml b/config/locales/et.yml index 7508b60f3..9d276abe9 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -120,13 +120,15 @@ et: details: Palun esita probleemi kohta veel üksikasju (nõutav). user: email: E-posti aadress - new_email: 'Uus e-posti aadress:' + email_confirmation: E-posti aadressi kinnitus + new_email: Uus e-posti aadress active: Aktiivne display_name: Kuvatav nimi - description: Kirjeldus - home_lat: 'Laius:' - home_lon: 'Pikkus:' - languages: Keeled + description: Profiili kirjeldus + home_lat: Laius + home_lon: Pikkus + languages: Eelistatavad keeled + preferred_editor: Eelistatav redaktor pass_crypt: Parool pass_crypt_confirmation: Kinnita parool help: @@ -135,6 +137,9 @@ et: user_block: needs_view: Kas kasutaja peab sisse logima enne kui see blokeering eemaldatakse? user: + email_confirmation: Sinu aadressi ei kuvata avalikult, loe täpsemalt meie + andmekaitsereeglitest. new_email: (ei näidata mitte kunagi avalikult) datetime: distance_in_words_ago: @@ -182,7 +187,7 @@ et: description: iD (brauseripõhine redaktor) remote: name: Kaugjuhtimine - description: Kaugjuhtimine (JOSM või Merkaartor) + description: Kaugjuhtimine (JOSM, Potlatch või Merkaartor) auth: providers: none: Puudub @@ -688,6 +693,7 @@ et: cape: Neem cave_entrance: Koopa sissepääs cliff: Klint + coastline: Rannajoon crater: Kraater dune: Düün fjord: Fjord @@ -867,6 +873,7 @@ et: level4: 4. järgu piir level5: 5. järgu piir level6: 6. järgu piir + level7: Omavalitsusüksuse piir level8: 8. järgu piir level9: 9. järgu piir level10: 10. järgu piir @@ -1055,11 +1062,38 @@ et: details: Üksikasjad muudatuskogumi kohta leiad aadressilt %{url}. unsubscribe: Et selle muudatuskogumi uuendusteadetest ära ütelda, mine aadressile %{url} ja klõpsa nuppu "Lõpeta tellimus". + confirmations: + confirm: + heading: Kontrolli oma e-posti. + introduction_1: Me saatsime sulle kinnitusmeili. + introduction_2: Kinnita oma konto, klikkides meilis lingile ja sa saad alustada + kaardistamist. + press confirm button: Klõpsa kinnitusnuppu, et konto aktiveerida. + button: Kinnita + success: Sinu kasutajakonto on kinnitatud, täname registreerimast! + already active: See konto on juba kinnitatud. + unknown token: See kinnituskood on aegunud või seda pole olemas. + reconfirm_html: Kui soovid, et saadaksime sulle uuesti kinnitusmeili, siis kliki siia. + confirm_resend: + success_html: Me saatsime sulle uue kinnitusmeili aadressile %{email} ja niipea + kui oled oma konto kinnitanud saad alustada kaardistamist.

    Kui + sa kasutad rämpskirjade vastast süsteemi, mis saadab kinnitustaotluse, siis + veendu, et oled kandnud aadressi %{sender} valgesse nimekirja, sest me ei + ole võimelised vastama ühelegi kinnitustaotlusele. + failure: Kasutajat %{name} ei leitud. + confirm_email: + heading: Kinnita e-posti aadressi muutmine + press confirm button: Klõpsa kinnitusnuppu, et kinnitada uus e-posti aadress. + button: Kinnita + success: Sinu e-posti aadressi muutmine on kinnitatud! + failure: E-posti aadress on juba antud pääsuloaga kinnitatud. + unknown_token: See kinnituskood on aegunud või seda pole olemas. messages: inbox: title: Saabunud sõnumid my_inbox: Saabunud sõnumid - outbox: saadetud sõnumid + my_outbox: Saadetud sõnumid messages: Sul on %{new_messages} ja %{old_messages}. new_messages: one: '%{count} uus sõnum' @@ -1094,9 +1128,8 @@ et: body: Vabandust, kuid sellise ID-ga sõnum puudub. outbox: title: Saadetud sõnumid - my_inbox_html: '%{inbox_link}' - inbox: Saabunud sõnumid - outbox: saadetud sõnumid + my_inbox: Saabunud sõnumid + my_outbox: Saadetud sõnumid messages: one: Sul on %{count} saadetud sõnum. other: Sul on %{count} saadetud sõnumit. @@ -1129,6 +1162,81 @@ et: as_unread: Sõnum on märgitud lugemata sõnumiks. destroy: destroyed: Sõnum kustutatud. + passwords: + lost_password: + title: Unustatud parool + heading: Parool ununenud? + email address: 'E-posti aadress:' + new password button: Lähtesta parool + help_text: Sisesta e-posti aadress, mida kasutasid registreerumisel. Saadame + sinna lingi, mida saad kasutada parooli lähtestamiseks. + notice email on way: Kahju, et parooli kaotasid, kuid ära muretse. Peagi saad + e-kirja, mille abil saad parooli lähtestada. + notice email cannot find: Seda e-posti aadressi ei leitud. + reset_password: + title: Lähtesta parool + heading: Kasutaja %{user} parooli lähtestamine + reset: Lähtesta parool + flash changed: Sinu parool on muudetud. + flash token bad: Ei leitud sellist kinnituskoodi. Kontrolli URL-i. + sessions: + new: + title: Sisselogimine + heading: Logi sisse + email or username: 'E-posti aadress või kasutajanimi:' + password: 'Parool:' + openid_html: '%{logo} OpenID:' + remember: Jäta mind meelde + lost password link: Kas unustasid parooli? + login_button: Logi sisse + register now: 'Registreeru:' + with username: 'Kas sul on juba OpenStreetMapi konto? Palun logi sisse oma kasutajanime + ja parooliga:' + with external: 'Teise võimalusena võid sisse logida kolmanda osapoole kaudu:' + new to osm: Kas OpenStreetMap on sulle uus? + to make changes: Et OpenStreetMapi andmeid muuta, peab sul olema kasutajakonto. + create account minute: Loo kasutajakonto. See võtab vaid hetke. + no account: Sa ei ole veel registreerinud kasutajaks? + account not active: Vabandust, sinu kasutajakonto ei ole veel aktiivne.
    Aktiveerimiseks + klõpsa palun lingil, mis saadeti sulle meiliga, või taotle + uut kontot kinnitavat meili. + account is suspended: Vabandust, sinu konto tegevus on peatatud kahtlase tegevuse + tõttu.
    Palun võta ühendust veebimeistriga, + kui soovid selle teema üle arutada. + auth failure: Kahjuks ei õnnestu nende andmetega sisse logida. + openid_logo_alt: Logi sisse OpenID-ga + auth_providers: + openid: + title: Logi sisse OpenID-ga + alt: Logi sisse OpenID URL-iga + google: + title: Logi sisse Google'i kaudu + alt: Logi sisse Google'i OpenID-ga + facebook: + title: Logi sisse Facebooki kaudu + alt: Logi sisse Facebooki kontoga + windowslive: + title: Logi sisse Windows Live'i kaudu + alt: Logi sisse Windows Live'i kontoga + github: + title: Logi sisse GitHubi kaudu + alt: Logi sisse GitHubi kontoga + wikipedia: + title: Logi sisse Vikipeedia kaudu + alt: Logi sisse Vikipeedia kontoga + yahoo: + title: Logi sisse Yahoo kaudu + alt: Logi sisse Yahoo OpenID-ga + wordpress: + title: Logi sisse Wordpressi kaudu + alt: Logi sisse Wordpressi OpenID-ga + aol: + title: Logi sisse AOL-i kaudu + alt: Logi sisse AOL-i OpenID-ga + destroy: + title: Logi välja + heading: Logi OpenStreetMapist välja + logout_button: Logi välja shared: markdown_help: title_html: Parsitud kramdowniga @@ -1525,23 +1633,6 @@ et: private: Üksnes omanikule destination: Üksnes läbisõiduks construction: Ehitatavad teed - richtext_area: - edit: Muuda - preview: Eelvaade - markdown_help: - title_html: Parsitud kramdowniga - headings: Pealkirjad - heading: Pealkiri - subheading: Alampealkiri - unordered: Järjestamata loend - ordered: Järjestatud loend - first: Esimene üksus - second: Teine üksus - link: Link - text: Tekst - image: Pilt - alt: Asendustekst - url: URL welcome: title: Tere tulemast! introduction_html: Tere tulemast OpenStreetMappi, vabasse ja muudetavasse maailmakaarti. @@ -1644,7 +1735,6 @@ et: more: rohkem trace_details: Vaata raja üksikasju view_map: Vaata kaarti - edit: redigeeri edit_map: Redigeeri kaarti public: AVALIK identifiable: TUVASTATAV @@ -1652,7 +1742,6 @@ et: trackable: JÄLGITAV by: kasutajalt in: kohas - map: asukoht kaardil index: public_traces: Avalikud GPS-rajad my_traces: Minu GPS-rajad @@ -1744,79 +1833,6 @@ et: destroy: flash: Klientrakenduse registreering hävitati. users: - login: - title: Sisselogimine - heading: Logi sisse - email or username: 'E-posti aadress või kasutajanimi:' - password: 'Parool:' - openid_html: '%{logo} OpenID:' - remember: Jäta mind meelde - lost password link: Kas unustasid parooli? - login_button: Logi sisse - register now: 'Registreeru:' - with username: 'Kas sul on juba OpenStreetMapi konto? Palun logi sisse oma kasutajanime - ja parooliga:' - with external: 'Teise võimalusena võid sisse logida kolmanda osapoole kaudu:' - new to osm: Kas OpenStreetMap on sulle uus? - to make changes: Et OpenStreetMapi andmeid muuta, peab sul olema kasutajakonto. - create account minute: Loo kasutajakonto. See võtab vaid hetke. - no account: Sa ei ole veel registreerinud kasutajaks? - account not active: Vabandust, sinu kasutajakonto ei ole veel aktiivne.
    Aktiveerimiseks - klõpsa palun lingil, mis saadeti sulle meiliga, või taotle - uut kontot kinnitavat meili. - account is suspended: Vabandust, sinu konto tegevus on peatatud kahtlase tegevuse - tõttu.
    Palun võta ühendust veebimeistriga, - kui soovid selle teema üle arutada. - auth failure: Kahjuks ei õnnestu nende andmetega sisse logida. - openid_logo_alt: Logi sisse OpenID-ga - auth_providers: - openid: - title: Logi sisse OpenID-ga - alt: Logi sisse OpenID URL-iga - google: - title: Logi sisse Google'i kaudu - alt: Logi sisse Google'i OpenID-ga - facebook: - title: Logi sisse Facebooki kaudu - alt: Logi sisse Facebooki kontoga - windowslive: - title: Logi sisse Windows Live'i kaudu - alt: Logi sisse Windows Live'i kontoga - github: - title: Logi sisse GitHubi kaudu - alt: Logi sisse GitHubi kontoga - wikipedia: - title: Logi sisse Vikipeedia kaudu - alt: Logi sisse Vikipeedia kontoga - yahoo: - title: Logi sisse Yahoo kaudu - alt: Logi sisse Yahoo OpenID-ga - wordpress: - title: Logi sisse Wordpressi kaudu - alt: Logi sisse Wordpressi OpenID-ga - aol: - title: Logi sisse AOL-i kaudu - alt: Logi sisse AOL-i OpenID-ga - logout: - title: Logi välja - heading: Logi OpenStreetMapist välja - logout_button: Logi välja - lost_password: - title: Unustatud parool - heading: Parool ununenud? - email address: 'E-posti aadress:' - new password button: Lähtesta parool - help_text: Sisesta e-posti aadress, mida kasutasid registreerumisel. Saadame - sinna lingi, mida saad kasutada parooli lähtestamiseks. - notice email on way: Kahju, et parooli kaotasid, kuid ära muretse. Peagi saad - e-kirja, mille abil saad parooli lähtestada. - notice email cannot find: Seda e-posti aadressi ei leitud. - reset_password: - title: Lähtesta parool - heading: Kasutaja %{user} parooli lähtestamine - reset: Lähtesta parool - flash changed: Sinu parool on muudetud. - flash token bad: Ei leitud sellist kinnituskoodi. Kontrolli URL-i. new: title: Registreerumine no_auto_account_create: Kahjuks ei ole meil võimalik luua hetkel sinu jaoks @@ -1936,13 +1952,13 @@ et: account: title: Konto muutmine my settings: Minu seaded - current email address: 'Praegune e-posti aadress:' - external auth: 'Väline autentimine:' + current email address: Praegune e-posti aadress + external auth: Väline autentimine openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: mis see on? public editing: - heading: 'Avalikud seaded:' + heading: Avalik redigeerimine enabled: Lubatud. Pole anonüümne ja saab andmeid muuta. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: mis see on? @@ -1959,7 +1975,7 @@ et: muutumisel.
  • Seda toimingut ei saa tühistada ja kõik uued kasutajad on nüüdsest vaikimisi avalikud.
  • contributor terms: - heading: 'Kaastöö tingimused:' + heading: Kaastöö tingimused agreed: Oled nõustunud uute kaastöötingimustega. not yet agreed: Sa ei ole veel nõustunud uute Kaastöö tingimustega. review link text: Loe ja nõustu uute Kaastöö tingimustega klõpsates endale @@ -1967,15 +1983,16 @@ et: agreed_with_pd: Samuti oled deklareerinud oma kaastöö autoriõigustest vabaks (Public Domain). link text: mis see on? - image: 'Pilt:' + image: Pilt gravatar: gravatar: Kasuta Gravatari + what_is_gravatar: Mis on Gravatar? new image: Lisa pilt keep image: Säilitada praegune pilt delete image: Eemalda praegune pilt replace image: Asenda praegune pilt image size hint: (ruudukujuline pilt mõõtudega vähemalt 100x100 on sobiv) - home location: 'Kodu asukoht:' + home location: Kodu asukoht no home location: Sa pole oma kodu asukohta märkinud. update home location on click: Kas uuendan kodu asukohta, kui klõpsan kaardil? save changes button: Salvesta muudatused @@ -1984,32 +2001,6 @@ et: flash update success confirm needed: Kasutajateabe värskendamine õnnestus. Kontrolli e-kirju, et kinnitada uus e-posti aadress. flash update success: Kasutaja informatsioon uuendatud edukalt. - confirm: - heading: Kontrolli oma e-posti. - introduction_1: Me saatsime sulle kinnitusmeili. - introduction_2: Kinnita oma konto, klikkides meilis lingile ja sa saad alustada - kaardistamist. - press confirm button: Klõpsa kinnitusnuppu, et konto aktiveerida. - button: Kinnita - success: Sinu kasutajakonto on kinnitatud, täname registreerimast! - already active: See konto on juba kinnitatud. - unknown token: See kinnituskood on aegunud või seda pole olemas. - reconfirm_html: Kui soovid, et saadaksime sulle uuesti kinnitusmeili, siis kliki siia. - confirm_resend: - success_html: Me saatsime sulle uue kinnitusmeili aadressile %{email} ja niipea - kui oled oma konto kinnitanud saad alustada kaardistamist.

    Kui - sa kasutad rämpskirjade vastast süsteemi, mis saadab kinnitustaotluse, siis - veendu, et oled kandnud aadressi %{sender} valgesse nimekirja, sest me ei - ole võimelised vastama ühelegi kinnitustaotlusele. - failure: Kasutajat %{name} ei leitud. - confirm_email: - heading: Kinnita e-posti aadressi muutmine - press confirm button: Klõpsa kinnitusnuppu, et kinnitada uus e-posti aadress. - button: Kinnita - success: Sinu e-posti aadressi muutmine on kinnitatud! - failure: E-posti aadress on juba antud pääsuloaga kinnitatud. - unknown_token: See kinnituskood on aegunud või seda pole olemas. set_home: flash success: Kodukoht edukalt salvestatud go_public: diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 397bafbfe..368ca8393 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -6,6 +6,7 @@ # Author: An13sa # Author: Asieriko # Author: EukeneFL +# Author: Garaolaza # Author: Gorkaazk # Author: Ibai # Author: Iñaki LL @@ -23,17 +24,21 @@ eu: formats: friendly: '%e %B %Y %H:%M-ean' helpers: + file: + prompt: Aukeratu fitxategia submit: diary_comment: create: Gorde diary_entry: create: Argitaratu update: Eguneratu + issue_comment: + create: Iruzkina gehitu message: create: Bidali client_application: create: Erregistratu - update: Aldatu + update: Eguneratu redaction: create: Erredakzioa sortu update: Gorde erredakzioa @@ -72,6 +77,7 @@ eu: relation: Erlazioa relation_member: Erlazio kidea relation_tag: Erlazio etiketa + report: Txostena session: Saioa trace: Trazoa tracepoint: Trazo puntua @@ -100,14 +106,14 @@ eu: trace: user: Erabiltzailea visible: Ikusgai - name: Izena + name: Fitxategi izena size: Tamaina latitude: Latitude longitude: Longitude public: Publikoa description: Deskribapena - gpx_file: 'GPX fitxategi igo:' - visibility: 'Ikusgarritasuna:' + gpx_file: 'GPX fitxategia igo:' + visibility: Ikusgarritasuna tagstring: 'Etiketak:' message: sender: Igorlea @@ -115,25 +121,38 @@ eu: body: Testua recipient: Hartzailea redaction: + title: Izenburua description: Deskribapena report: + category: 'Aukeratu arrazoi bat zure txostenerako:' details: Mesedez, eman arazoaren inguruko xehetasun gehiago (beharrezkoa). user: email: Eposta + email_confirmation: 'E-posta egiaztapena:' new_email: 'E-posta helbide berria:' active: Aktibo display_name: Erakusteko izena - description: Deskribapena - home_lat: 'Latitude:' - home_lon: 'Longitude:' - languages: Hizkuntzak + description: 'Profilaren deskribapena:' + home_lat: Latitudea + home_lon: 'Longitudea:' + languages: Hizkuntza lehenetsiak + preferred_editor: 'Lehenetsitako editorea:' pass_crypt: Pasahitza + pass_crypt_confirmation: 'Berretsi pasahitza:' help: trace: tagstring: koma mugatua user_block: + reason: Erabiltzailea blokaturik egoteko arrazoia. Egon ahal bezain lasai + eta zentzudun, egoeraren inguruko xehetasun guztiak emanez, mezu hori publikoki + ikusgai egongo dela gogoratuz. Gogoan izan erabiltzaile guztiek ez dutela + komunitatearen hizkera ulertzen; beraz, saiatu hitz arruntak erabiltzen. needs_view: Erabiltzaileak saioa hasi behar al du bloke hau garbitu aurretik? user: + email_confirmation: Zure helbidea ez da publikoki erakutsiko, ikusi gure pribatutasun + politika) informazio gehiagorako. new_email: (inoiz ez da publikoki bistaratuko) editor: default: Lehenetsia (orain %{name}) @@ -773,6 +792,7 @@ eu: cape: Lurmuturra cave_entrance: Kobazulo sarrera cliff: Labarra + coastline: Itsasertz crater: Kraterra dune: Duna fell: Ebakia @@ -797,7 +817,7 @@ eu: sand: Harea scree: Pilaketa scrub: Sasiak - spring: Udaberria + spring: Iturburua stone: Harria strait: Itsasartea tree: Zuhaitza @@ -1258,11 +1278,38 @@ eu: details: Aldaketari buruzko xehetasun gehiago %{url}n aurki daitezke. unsubscribe: Aldaketaren aldaketa eguneratzeak ezeztatzeko, bisitatu %{url} eta sakatu "Ezabatu harpidetza". + confirmations: + confirm: + heading: Helbide elektronikoa begiratu! + introduction_1: Berrespen-mezu bat bidali dizugu. + introduction_2: Berretsi kontua posta elektronikoaren estekan klik eginez eta + mapak hasteko gai izango zara. + press confirm button: Sakatu beheko berresteko botoia zure kontua aktibatzeko. + button: Berretsi + success: Zure kontua berretsi du, erregistratzeagatik milesker! + already active: Kontu hau dagoeneko berretsi da. + unknown token: Berrespen-kodea iraungi egin da edo ez da existitzen. + reconfirm_html: Berrespen-mezu elektronikoa bidaltzea behar baduzu, egin + klik hemen. + confirm_resend: + success_html: Berrespen ohar bat bidali dugu %{email} helbidera eta zure kontua + berretsi bezain laster, mapak eskuratu ahal izango dituzu.

    Berrespen + eskaerak bidaltzen dituen antispam sistema erabiltzen baduzu, mesedez ziurta + zaitez %{sender} zurien zerrenda duzula, baieztapen eskaerei erantzun ezin + diegulako. + failure: '%{name} erabiltzailea ez da aurkitu.' + confirm_email: + heading: Helbide elektronikoan aldaketa bat baieztatu + press confirm button: Sakatu beheko berresteko botoia zure helbide elektroniko + berria berresteko. + button: Berretsi + success: Helbide elektronikoan aldaketa baieztatu da! + failure: Helbide elektroniko bat egiaztatu da token honekin. + unknown_token: Baieztapen-kode hori iraungi da edo ez da existitzen. messages: inbox: title: Sarrera-ontzia my_inbox: Nire sarrera-ontzia - outbox: irteerako ontzia messages: '%{new_messages} eta %{old_messages} dituzu' new_messages: one: '%Mezu berri {count}' @@ -1297,9 +1344,6 @@ eu: body: Barkatu baina id horrekin ez dago mezurik. outbox: title: Irteerako ontzia - my_inbox_html: Nire %{inbox_link} - inbox: Sarrera-ontzia - outbox: irteerako ontzia messages: one: '%{count} Mezua bidali duzu' other: ' %{count} Mezuak bidali dituzu' @@ -1333,6 +1377,83 @@ eu: as_unread: Mezua irakurri gabe gisa markatu da destroy: destroyed: Mezua ezabatuta + passwords: + lost_password: + title: Ahaztutako pasahitza + heading: Pasahitza ahaztuta? + email address: 'Eposta helbidea:' + new password button: Pasahitza berrezarri + help_text: Sartu saioa hastean erabiltzen zenuen helbide elektronikoa, zure + pasahitza berrezarri ahal izateko erabil dezakezu bidaliko dizugun esteka. + notice email on way: Sentitzen duzu hau galdu izatea :-( baina posta elektronikoa + bidaltzen ari zaizu laster berrabiarazi dezakezun. + notice email cannot find: Eposta helbide hori ezin izan dugu aurkitu, barkatu. + reset_password: + title: Pasahitza berrezarri + heading: '%{user}-ren pasahitza berrezarri' + reset: Pasahitza berrezarri + flash changed: Zure pasahitza aldatu da. + flash token bad: Token hori ez da aurkitu, URL egiaztatu beharbada? + sessions: + new: + title: Saio-hasiera + heading: Saio-hasiera + email or username: 'Eposta helbidea edo Erabiltzaile izena:' + password: 'Pasahitza:' + openid_html: '%{logo} OpenID:' + remember: 'Gogora nazazu:' + lost password link: Pasahitza ahaztu duzu? + login_button: Saioa hasi + register now: Erregistratu orain + with username: 'Dagoeneko OpenStreetMap kontu bat duzu? Mesedez, saioa hasi + zure erabiltzaile-izenarekin eta pasahitzarekin:' + with external: 'Bestela, erabili hirugarrenen bat saioa hasteko:' + new to osm: Berria zara OpenStreetMapen? + to make changes: OpenStreetMap-en aldaketak egiteko, kontu bat izatea beharrezkoa + duzu. + create account minute: Sortu kontu bat. Minutu bat besterik ez duzu behar. + no account: Ez al duzu konturik? + account not active: Barkatu, zure kontua ez dago aktibo oraindik.
    Mesedez, + erabili esteka kontuko berrespena mezu elektronikoa zure kontua aktibatzeko + edo baieztapen mezu elektroniko berri bat eskatzeko + . + account is suspended: Barkatu, zure kontua eten egin da jarduera susmagarriak + direla-eta.
    Mesedez, jarri harremanetan webmasterrekin + honi buruz hitz egin nahi baduzu. + auth failure: Barkatu, ezin izan da saioa hasi xehetasun horiekin. + openid_logo_alt: ID irekiarekin saioa hasi + auth_providers: + openid: + title: ID irekiarekin saioa hasi + alt: Hasi saioa ID irekia duen URL batekin + google: + title: Saioa hasi Googlekin + alt: Google ID irekiarekin saioa hasi + facebook: + title: Saioa hasi Facebookekin + alt: Saioa hasi Facebookekin + windowslive: + title: Saioa hasi Windows Livekin + alt: Windows Live kontu batekin saioa hasi + github: + title: GitHub-rekin saioa hasi + alt: GitHub kontuarekin saioa hasi + wikipedia: + title: Saioa hasi Wikipediarekin + alt: Wikipedia kontuarekin saioa hasi + yahoo: + title: Saioa hasi Yahoorekin + alt: Yahoo Open IDarekin saioa hasi + wordpress: + title: Wordpress bidez saioa hasi + alt: Wordpress ID irekiarekin saioa hasi + aol: + title: AOL erabiliz saioa hasi + alt: AOL ID irekiarekin saioa hasi + destroy: + title: Saio-itxiera + heading: OpenStreetMap-etik saioa itxi + logout_button: Saioa itxi site: about: next: Hurrengoa @@ -1699,23 +1820,6 @@ eu: bicycle_shop: Bizikleta-denda bicycle_parking: Bizikleta-aparkalekua toilets: Komunak - richtext_area: - edit: Aldatu - preview: Aurrikusi - markdown_help: - title_html: Honekin analizatua:kramdown - headings: Atalburuak - heading: Goiburua - subheading: Azpi-goiburua - unordered: Ordenik gabeko zerrenda - ordered: Ordenatutako zerrenda - first: Lehenengo itema - second: Bigarren itema - link: Esteka - text: Testua - image: Irudia - alt: Testu alternatiboa - url: URLa welcome: title: Ongi etorri! introduction_html: Ongi etorri OpenStreetMapera, edonork alda dezakeen munduko @@ -1825,7 +1929,6 @@ eu: more: gehiago trace_details: Ikusi Aztarna Xehetasunak view_map: Mapa ikusi - edit: aldatu edit_map: Mapa aldatu public: PUBLIKOA identifiable: IDENTIFIKAGARRIA @@ -1833,7 +1936,6 @@ eu: trackable: JARRAIGARRIA by: 'honen arabera:' in: barruan - map: mapa index: public_traces: GPS aztarna publikoak my_traces: Nire GPS aztarnak @@ -1945,81 +2047,6 @@ eu: destroy: flash: Bezeroaren eskaera erregistroa suntsitua users: - login: - title: Saio-hasiera - heading: Saio-hasiera - email or username: 'Eposta helbidea edo Erabiltzaile izena:' - password: 'Pasahitza:' - openid_html: '%{logo} OpenID:' - remember: 'Gogora nazazu:' - lost password link: Pasahitza ahaztu duzu? - login_button: Saioa hasi - register now: Erregistratu orain - with username: 'Dagoeneko OpenStreetMap kontu bat duzu? Mesedez, saioa hasi - zure erabiltzaile-izenarekin eta pasahitzarekin:' - with external: 'Bestela, erabili hirugarrenen bat saioa hasteko:' - new to osm: Berria zara OpenStreetMapen? - to make changes: OpenStreetMap-en aldaketak egiteko, kontu bat izatea beharrezkoa - duzu. - create account minute: Sortu kontu bat. Minutu bat besterik ez duzu behar. - no account: Ez al duzu konturik? - account not active: Barkatu, zure kontua ez dago aktibo oraindik.
    Mesedez, - erabili esteka kontuko berrespena mezu elektronikoa zure kontua aktibatzeko - edo baieztapen mezu elektroniko berri bat eskatzeko - . - account is suspended: Barkatu, zure kontua eten egin da jarduera susmagarriak - direla-eta.
    Mesedez, jarri harremanetan webmasterrekin - honi buruz hitz egin nahi baduzu. - auth failure: Barkatu, ezin izan da saioa hasi xehetasun horiekin. - openid_logo_alt: ID irekiarekin saioa hasi - auth_providers: - openid: - title: ID irekiarekin saioa hasi - alt: Hasi saioa ID irekia duen URL batekin - google: - title: Saioa hasi Googlekin - alt: Google ID irekiarekin saioa hasi - facebook: - title: Saioa hasi Facebookekin - alt: Saioa hasi Facebookekin - windowslive: - title: Saioa hasi Windows Livekin - alt: Windows Live kontu batekin saioa hasi - github: - title: GitHub-rekin saioa hasi - alt: GitHub kontuarekin saioa hasi - wikipedia: - title: Saioa hasi Wikipediarekin - alt: Wikipedia kontuarekin saioa hasi - yahoo: - title: Saioa hasi Yahoorekin - alt: Yahoo Open IDarekin saioa hasi - wordpress: - title: Wordpress bidez saioa hasi - alt: Wordpress ID irekiarekin saioa hasi - aol: - title: AOL erabiliz saioa hasi - alt: AOL ID irekiarekin saioa hasi - logout: - title: Saio-itxiera - heading: OpenStreetMap-etik saioa itxi - logout_button: Saioa itxi - lost_password: - title: Ahaztutako pasahitza - heading: Pasahitza ahaztuta? - email address: 'Eposta helbidea:' - new password button: Pasahitza berrezarri - help_text: Sartu saioa hastean erabiltzen zenuen helbide elektronikoa, zure - pasahitza berrezarri ahal izateko erabil dezakezu bidaliko dizugun esteka. - notice email on way: Sentitzen duzu hau galdu izatea :-( baina posta elektronikoa - bidaltzen ari zaizu laster berrabiarazi dezakezun. - notice email cannot find: Eposta helbide hori ezin izan dugu aurkitu, barkatu. - reset_password: - title: Pasahitza berrezarri - heading: '%{user}-ren pasahitza berrezarri' - reset: Pasahitza berrezarri - flash changed: Zure pasahitza aldatu da. - flash token bad: Token hori ez da aurkitu, URL egiaztatu beharbada? new: title: Eman izena no_auto_account_create: Zoritxarrez ezin dizugu automatikoki kontu bat sortu. @@ -2197,33 +2224,6 @@ eu: flash update success confirm needed: Erabiltzaile informazio igoera arrakastatsua. Zure email-a begiratu posta elektroniko berria egiaztatzeko oharra ikusteko. flash update success: Erabiltzailearen informazioa behar bezala eguneratu da. - confirm: - heading: Helbide elektronikoa begiratu! - introduction_1: Berrespen-mezu bat bidali dizugu. - introduction_2: Berretsi kontua posta elektronikoaren estekan klik eginez eta - mapak hasteko gai izango zara. - press confirm button: Sakatu beheko berresteko botoia zure kontua aktibatzeko. - button: Berretsi - success: Zure kontua berretsi du, erregistratzeagatik milesker! - already active: Kontu hau dagoeneko berretsi da. - unknown token: Berrespen-kodea iraungi egin da edo ez da existitzen. - reconfirm_html: Berrespen-mezu elektronikoa bidaltzea behar baduzu, egin - klik hemen. - confirm_resend: - success_html: Berrespen ohar bat bidali dugu %{email} helbidera eta zure kontua - berretsi bezain laster, mapak eskuratu ahal izango dituzu.

    Berrespen - eskaerak bidaltzen dituen antispam sistema erabiltzen baduzu, mesedez ziurta - zaitez %{sender} zurien zerrenda duzula, baieztapen eskaerei erantzun ezin - diegulako. - failure: '%{name} erabiltzailea ez da aurkitu.' - confirm_email: - heading: Helbide elektronikoan aldaketa bat baieztatu - press confirm button: Sakatu beheko berresteko botoia zure helbide elektroniko - berria berresteko. - button: Berretsi - success: Helbide elektronikoan aldaketa baieztatu da! - failure: Helbide elektroniko bat egiaztatu da token honekin. - unknown_token: Baieztapen-kode hori iraungi da edo ez da existitzen. set_home: flash success: Etxeko helbidea modu egokian gorde da. go_public: diff --git a/config/locales/fa.yml b/config/locales/fa.yml index c68df3477..8152a40a6 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -116,11 +116,11 @@ fa: url: نشانی اینترنتی برنامه اصلی (الزامی) callback_url: Callback URL support_url: URL پشتیبانی - allow_read_prefs: ترجیحات کاربری آن‌ها را بخواند - allow_write_prefs: ترجیحات کاربری آن‌ها را تغییر دهد + allow_read_prefs: ترجیحات کاربری او را بخواند + allow_write_prefs: ترجیحات کاربری او را تغییر دهد allow_write_diary: روزنوشت ایجاد کند، نظر ثبت کند و دوست اضافه کند allow_write_api: نقشه را تغییر دهد - allow_read_gpx: ردهای GPS خصوصی آن‌ها را بخواند + allow_read_gpx: ردهای GPS خصوصی او را بخواند allow_write_gpx: ردهای GPS بارگذاری کند allow_write_notes: یادداشت‌ها را تغییر دهد diary_comment: @@ -407,7 +407,7 @@ fa: title: پرس‌وجوی عارضه‌ها introduction: روی نقشه کلیک کنید تا عارضه‌های نزدیک را بیابید nearby: عارضه‌های نزدیک - enclosing: عارضه‌های دربرگیرنده + enclosing: عارضه‌های دربرگیر changesets: changeset_paging_nav: showing_page: صفحهٔ %{page} @@ -908,7 +908,7 @@ fa: ice_rink: رینک یخ marina: لنگرگاه miniature_golf: گلف کوچک - nature_reserve: طبیعت حفاظت شده + nature_reserve: ذخیره‌گاه طبیعی outdoor_seating: فضای نشستن خارجی park: پارک picnic_table: میز پیکنیک @@ -982,6 +982,7 @@ fa: cape: دماغه cave_entrance: ورودی غار cliff: صخره + coastline: خط ساحلی crater: دهانه آتش فشان dune: تل شنی fell: سقوط گاه @@ -1061,9 +1062,9 @@ fa: region: منطقه sea: دریا square: مربع - state: ایالت + state: استان subdivision: زیربخش - suburb: حومه شهر + suburb: منطقه شهری town: شهر village: روستا "yes": Siedlung @@ -1236,7 +1237,7 @@ fa: level4: مرز استان level5: مرز شهرستان level6: مرز بخش - level7: مرز شهرداری + level7: مرز دهستان/شهر level8: مرز روستا level9: مرز منطقه شهری level10: مرز ناحیه شهری @@ -1413,10 +1414,18 @@ fa: گذاشته است:' footer: '‫همچنین می‌توانید نظر را در اینجا بخوانید: %{readurl}؛ اینجا به آن نظر دهید: %{commenturl}؛ یا از اینجا به نویسنده پیام بدهید: %{replyurl} ‬' + footer_html: '‫همچنین می‌توانید نظر را در اینجا بخوانید: %{readurl}؛ اینجا به + آن نظر دهید: %{commenturl}؛ یا از اینجا به نویسنده پیام بدهید: %{replyurl} + ‬' message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: ‫سلام %{to_user}،‬ header: ‫%{from_user} از طریق اوپن‌استریت‌مپ پیامی با موضوع «%{subject}» برای شما فرستاده است:‬ + header_html: ‫%{from_user} از طریق اوپن‌استریت‌مپ پیامی با موضوع «%{subject}» + برای شما فرستاده است:‬ + footer: '‫همچنین می‌توانید این پیام را در اینجا بخوانید: %{readurl} و از اینجا + به نویسنده پیام بدهید: %{replyurl} ‬' footer_html: '‫همچنین می‌توانید این پیام را در اینجا بخوانید: %{readurl} و از اینجا به نویسنده پیام بدهید: %{replyurl} ‬' friendship_notification: @@ -1425,17 +1434,40 @@ fa: had_added_you: ‫%{user} در اوپن‌استریت‌مپ شما را به‌عنوان دوست اضافه کرد.‬ see_their_profile: '‫می‌توانید نمایهٔ کاربری او را در اینجا ببینید: %{userurl} ‬' + see_their_profile_html: '‫می‌توانید نمایهٔ کاربری او را در اینجا ببینید: %{userurl} + ‬' befriend_them: '‫شما نیز می‌توانید از اینجا او را به‌عنوان دوست اضافه کنید: %{befriendurl} ‬' + befriend_them_html: '‫شما نیز می‌توانید از اینجا او را به‌عنوان دوست اضافه کنید: + %{befriendurl} ‬' + gpx_description: + description_with_tags_html: |- + به‌نظر می‌رسد فایل GPX شما: + %{trace_name} + با این توصیف: + %{trace_description} + و برچسب‌های زیر: + %{tags} + description_with_no_tags_html: |- + به‌نظر می‌رسد فایل GPX شما: + %{trace_name} + با این توصیف: + %{trace_description} + و بدون برچسب gpx_failure: + hi: ‫سلام %{to_user}،‬ failed_to_import: 'درون‌برد نشد. این خطا رخ داد:' + more_info_html: |- + برای کسب اطلاعات بیشتر دربارهٔ شکست درون‌برد GPX و راهکار پیشگیری از آن به این نشانی مراجعه کنید: + %{url} import_failures_url: https://wiki.openstreetmap.org/wiki/Fa:GPX_Import_Failures subject: '[OpenStreetMap] ‫شکست درون‌برد GPX‬' gpx_success: + hi: ‫سلام %{to_user}،‬ loaded_successfully: - one: با موفقیت و با %{trace_points} نقطه از 1 نقطهٔ ممکن بار شد. + one: با موفقیت و با %{trace_points} نقطه از 1 نقطهٔ ممکن بار شده است. other: با موفقیت و با %{trace_points} نقطه از %{possible_points} نقطهٔ ممکن - بار شد. + بار شده است. subject: '[OpenStreetMap] ‫موفقیت درون‌برد GPX‬' signup_confirm: subject: '[OpenStreetMap] به اوپن‌استریت‌مپ خوش آمدید' @@ -1469,16 +1501,24 @@ fa: داد‬' your_note: '‫%{commenter} روی یکی از یادداشت‌های شما بر نقشه نظر داد. این یادداشت نزدیک اینجاست: %{place}‬' + your_note_html: '‫%{commenter} روی یکی از یادداشت‌های نقشه‌ای شما نظر داد. + این یادداشت نزدیک اینجاست: %{place}‬' commented_note: '‫%{commenter} روی یکی از یادداشت‌های نقشه که شما بر آن نظر داده‌اید، نظر داد. این یادداشت نزدیک اینجاست: %{place}‬' + commented_note_html: '‫%{commenter} روی یکی از یادداشت‌های نقشه که شما بر + آن نظر داده‌اید، نظر داد. این یادداشت نزدیک اینجاست: %{place}‬' closed: subject_own: '[OpenStreetMap] ‫%{commenter} یکی از یادداشت‌های شما را حل کرد‬' subject_other: '[OpenStreetMap] ‫%{commenter} یکی از یادداشت‌های موردتوجه شما را حل کرد‬' your_note: '‫%{commenter} یکی از یادداشت‌های شما بر نقشه را حل کرد. یادداشت نزدیک اینجاست: %{place}‬' + your_note_html: '‫%{commenter} یکی از یادداشت‌های شما بر نقشه را حل کرد. یادداشت + نزدیک اینجاست: %{place}‬' commented_note: '‫%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن نظر داده‌اید، حل کرد. یادداشت نزدیک اینجاست: %{place}‬' + commented_note_html: '‫%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن + نظر داده‌اید، حل کرد. یادداشت نزدیک اینجاست: %{place}‬' reopened: subject_own: '[OpenStreetMap] ‫%{commenter} یکی از یادداشت‌های شما را دوباره فعال کرد‬' @@ -1486,9 +1526,14 @@ fa: شما را دوباره فعال کرد‬' your_note: '‫%{commenter} یکی از یادداشت‌های شما روی نقشه را دوباره فعال کرد. این یادداشت نزدیک اینجاست: %{place}‬' + your_note_html: '‫%{commenter} یکی از یادداشت‌های نقشه‌ای شما را دوباره فعال + کرد. این یادداشت نزدیک اینجاست: %{place}‬' commented_note: '‫%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن نظر داده‌اید دوباره فعال کرد. یادداشت نزدیک اینجاست: %{place}‬' + commented_note_html: '‫%{commenter} یکی از یادداشت‌های نقشه را که شما بر آن + نظر داده‌اید دوباره فعال کرد. یادداشت نزدیک اینجاست: %{place}‬' details: '‫جزئیات بیشتر دربارهٔ این یادداشت را اینجا ببینید: %{url}‬' + details_html: '‫جزئیات بیشتر دربارهٔ یادداشت را اینجا ببینید: %{url}‬' changeset_comment_notification: hi: ‫سلام %{to_user}، ‬ greeting: سلام،‏ @@ -1499,19 +1544,54 @@ fa: نظر داد‬' your_changeset: ‫%{commenter} روی یکی از بسته‌های تغییر شما که در %{time} ایجاد کردید، نظر داد + your_changeset_html: ‫%{commenter} روی یکی از بسته‌های تغییر شما در %{time} + نظر داد commented_changeset: ‫%{commenter} برای بستهٔ تغییری که %{changeset_author} در %{time} ایجاد کرده و شما مشترک آن هستید، نظر نوشت + commented_changeset_html: ‫%{commenter} برای بستهٔ تغییری که %{changeset_author} + ایجاد کرده و شما مشترک آن هستید، در %{time} نظر نوشت partial_changeset_with_comment: 'توضیح بستهٔ تغییر: «%{changeset_comment}»' + partial_changeset_with_comment_html: 'توضیح بستهٔ تغییر: «%{changeset_comment}»' partial_changeset_without_comment: بستهٔ تغییر توضیح ندارد details: '‫اطلاعات بیشتر دربارهٔ بستهٔ تغییر را می‌توانید اینجا ببینید: %{url} ‬' + details_html: '‫اطلاعات بیشتر دربارهٔ بستهٔ تغییر را می‌توانید اینجا ببینید: + %{url} ‬' unsubscribe: ‫برای لغو اطلاع‌رسانی‌های مربوط به این بستهٔ تغییر، به %{url} بروید و روی «لغو اشتراک» کلیک کنید.‬ + unsubscribe_html: ‫برای لغو اطلاع‌رسانی‌های مربوط به این بستهٔ تغییر، به %{url} + بروید و روی «لغو اشتراک» کلیک کنید.‬ + confirmations: + confirm: + heading: ایمیل‌تان را بررسی کنید! + introduction_1: یک ایمیل تأیید برای شما فرستادیم. + introduction_2: روی پیوندی که در ایمیل دریافتی هست کلید کنید و حساب خود را تأیید + نمایید. سپس می‌توانید نقشه‌کشی را آغاز کنید. + press confirm button: برای فعال‌سازی حسابتان روی دکمهٔ تأیید زیر کلیک کنید. + button: تأیید + success: ' تشکر بابت ثبت نام! حساب کاربری شما تایید شد.' + already active: این حساب کاربری قبلاً تأیید شده است. + unknown token: کد تأیید منقضی شده یا وجود ندارد. + reconfirm_html: اگر لازم است مجدداً ایمیل تأیید را بفرستیم، اینجا + کلیک کنید. + confirm_resend: + success_html: یادداشت تأیید دیگری به %{email} فرستادیم. به‌محض‌اینکه حسابتان + را تأیید کنید می‌توانید نقشه‌کشی را آغاز کنید.

    اگر از سیستم ضدهرزنامه + استفاده می‌کنید که درخواست تأیید می‌فرستد، لطفاً مطمئن شوید %{sender} را در + لیست سفید گذاشته باشید، زیرا ما نمی‌توانیم هیچ درخواست تأییدی را پاسخ دهیم. + failure: کاربر %{name} یافت نشد. + confirm_email: + heading: تأیید تغییر نشانی ایمیل + press confirm button: برای تأیید ایمیل جدیدتان دکمهٔ تأیید زیر را فشار دهید. + button: تأیید + success: تغییر نشانی ایمیل شما تأیید شد! + failure: یک نشانی ایمیل قبلاً با این توکن تأیید شده است. + unknown_token: کد تأیید منقضی شده یا وجود ندارد. messages: inbox: title: صندوق دریافت my_inbox: صندوق دریافت - outbox: صندوق ارسال + my_outbox: صندوق ارسال messages: '%{new_messages} و %{old_messages} دارید' new_messages: one: '%{count} پیام تازه' @@ -1546,9 +1626,8 @@ fa: body: متأسفانه هیچ پیامی با این شناسه وجود ندارد. outbox: title: صندوق ارسال - my_inbox_html: '%{inbox_link}' - inbox: صندوق دریافت - outbox: صندوق ارسال + my_inbox: صندوق دریافت + my_outbox: صندوق ارسال messages: one: '%{count} پیام ارسالی دارید' other: '%{count} پیام ارسالی دارید' @@ -1582,14 +1661,99 @@ fa: as_unread: پیام به عنوان نخوانده علامت‌گذاری شد destroy: destroyed: پیام حذف شد + passwords: + lost_password: + title: فراموشی گذرواژه + heading: گذرواژهٔ خود را فراموش کرده‌اید؟ + email address: 'نشانی ایمیل:' + new password button: بازنشانی گذرواژه + help_text: ایمیلی که با آن ثبت‌نام کرده‌اید را وارد کنید. ما پیوندی به آن می‌فرستیم + تا بتوانید به‌وسیلهٔ آن گذرواژهٔ خود را بازنشانی کنید. + notice email on way: متأسفیم که آن را گم کرده‌اید :-( اما ایمیلی در راه است + که می‌توانید به‌زودی آن را مجدد تنظیم کنید. + notice email cannot find: چنین ایمیلی پیدا نشد، متأسفیم. + reset_password: + title: بازنشانی گذرواژه + heading: بازنشانی گذرواژه برای %{user} + reset: بازنشانی گذرواژه + flash changed: گذرواژهٔ شما عوض شد. + flash token bad: توکن را نیافتید؟ نشانی را بررسی کنید شاید بیابید. + sessions: + new: + title: ورود + heading: ورود + email or username: 'نشانی ایمیل یا نام کاربری:' + password: 'گذرواژه:' + openid_html: '%{logo} OpenID:' + remember: مرا به خاطر بسپار + lost password link: گذرواژهٔ خود را فراموش کرده‌اید؟ + login_button: ورود + register now: اکنون ثبت‌نام کنید + with username: 'از قبل حساب OpenStreetMap دارید؟ لطفاً با نام کاربری و گذرواژه‌تان + وارد شوید:' + with external: 'به‌جای ثبت نام، از روش شخص ثالث استفاده کنید:' + new to osm: در OpenStreetMap تازه‌وارد هستید؟ + to make changes: برای ویرایش دادهٔ OpenStreetMap، باید حساب کاربری داشته باشید. + create account minute: یک حساب بسازید. فقط یک دقیقه طول می‌کشد. + no account: حساب کاربری ندارید؟ + account not active: پوزش می‌خواهیم، حسابتان هنوز فعال نشده‌است.
    لطفاً از + پیوندی که در ایمیل تأیید وجود دارد برای فعال‌سازی حساب خود استفاده کنید، یا + یک ایمیل تأیید دیگر درخواست دهید. + account is suspended: پوزش می‌خواهیم، حساب شما به دلیل فعالیت‌های مشکوک مسدود + شده‌است.
    برای گفت‌وگو دربارهٔ این مسئله لطفاً با مدیر + سایت تماس بگیرید. + auth failure: متأسفانه با این اطلاعات نمی‌توان وارد شد. + openid_logo_alt: ورود با OpenID + auth_providers: + openid: + title: ورود با OpenID + alt: ورود با نشانی OpenID + google: + title: ورود با گوگل + alt: ورود با OpenID گوگل + facebook: + title: ورود با فیسبوک + alt: ورود با حساب فیسبوک + windowslive: + title: ورود با Windows Live + alt: ورود با حساب Windows Live + github: + title: ورود با GitHub + alt: ورود با حساب GitHub + wikipedia: + title: ورود با ویکی‌پدیا + alt: ورود با حساب ویکی‌پدیا + yahoo: + title: ورود با یاهو + alt: ورود با حساب OpenID یاهو + wordpress: + title: ورود با وردپرس + alt: ورود با OpenID وردپرس + aol: + title: ورود با AOL + alt: ورود با AOL OpenID + destroy: + title: خروج + heading: خروج از OpenStreetMap + logout_button: خروج shared: markdown_help: + title_html: تجزیه با کرام‌داون + headings: عنوان‌‌بندی + heading: عنوان + subheading: عنوان فرعی + unordered: لیست نامرتب + ordered: لیست مرتب + first: اولین مورد + second: دومین مورد link: پیوند text: متن image: تصویر + alt: متن جایگزین url: آدرس اینترنتی richtext_field: - edit: ویرایش کنید + edit: ویرایش + preview: پیش‌نمایش site: about: next: بعدی @@ -1965,23 +2129,6 @@ fa: bicycle_shop: فروشگاه دوچرخه bicycle_parking: پارکینگ دوچرخه toilets: سرویس های بهداشتی - richtext_area: - edit: ویرایش - preview: پیش‌نمایش - markdown_help: - title_html: تجزیه با کرام‌داون - headings: عنوان‌‌بندی - heading: عنوان - subheading: عنوان فرعی - unordered: لیست نامرتب - ordered: لیست مرتب - first: اولین مورد - second: دومین مورد - link: پیوند - text: متن - image: تصویر - alt: متن جایگزین - url: نشانی اینترنتی welcome: title: خوش آمدید! introduction_html: به OpenStreetMap، نقشهٔ آزاد و قابل‌ویرایش جهان، خوش آمدید. @@ -2101,7 +2248,6 @@ fa: more: بیشتر trace_details: مشاهدهٔ جزئیات رد view_map: نمایش نقشه - edit: ویرایش edit_map: ویرایش نقشه public: عمومی identifiable: قابل شناسایی @@ -2109,7 +2255,6 @@ fa: trackable: قابل ردیابی by: از in: در - map: نقشه index: public_traces: ردهای GPS عمومی my_traces: ردهای جی‌پی‌اس من @@ -2222,79 +2367,6 @@ fa: destroy: flash: ثبت‌نام اپلیکیشن کارخواه از بین رفت users: - login: - title: ورود - heading: ورود - email or username: 'نشانی ایمیل یا نام کاربری:' - password: 'گذرواژه:' - openid_html: '%{logo} OpenID:' - remember: مرا به خاطر بسپار - lost password link: گذرواژهٔ خود را فراموش کرده‌اید؟ - login_button: ورود - register now: اکنون ثبت‌نام کنید - with username: 'از قبل حساب OpenStreetMap دارید؟ لطفاً با نام کاربری و گذرواژه‌تان - وارد شوید:' - with external: 'به‌جای ثبت نام، از روش شخص ثالث استفاده کنید:' - new to osm: در OpenStreetMap تازه‌وارد هستید؟ - to make changes: برای ویرایش دادهٔ OpenStreetMap، باید حساب کاربری داشته باشید. - create account minute: یک حساب بسازید. فقط یک دقیقه طول می‌کشد. - no account: حساب کاربری ندارید؟ - account not active: پوزش می‌خواهیم، حسابتان هنوز فعال نشده‌است.
    لطفاً از - پیوندی که در ایمیل تأیید وجود دارد برای فعال‌سازی حساب خود استفاده کنید، یا - یک ایمیل تأیید دیگر درخواست دهید. - account is suspended: پوزش می‌خواهیم، حساب شما به دلیل فعالیت‌های مشکوک مسدود - شده‌است.
    برای گفت‌وگو دربارهٔ این مسئله لطفاً با مدیر - سایت تماس بگیرید. - auth failure: متأسفانه با این اطلاعات نمی‌توان وارد شد. - openid_logo_alt: ورود با OpenID - auth_providers: - openid: - title: ورود با OpenID - alt: ورود با نشانی OpenID - google: - title: ورود با گوگل - alt: ورود با OpenID گوگل - facebook: - title: ورود با فیسبوک - alt: ورود با حساب فیسبوک - windowslive: - title: ورود با Windows Live - alt: ورود با حساب Windows Live - github: - title: ورود با GitHub - alt: ورود با حساب GitHub - wikipedia: - title: ورود با ویکی‌پدیا - alt: ورود با حساب ویکی‌پدیا - yahoo: - title: ورود با یاهو - alt: ورود با حساب OpenID یاهو - wordpress: - title: ورود با وردپرس - alt: ورود با OpenID وردپرس - aol: - title: ورود با AOL - alt: ورود با AOL OpenID - logout: - title: خروج - heading: خروج از OpenStreetMap - logout_button: خروج - lost_password: - title: فراموشی گذرواژه - heading: گذرواژهٔ خود را فراموش کرده‌اید؟ - email address: 'نشانی ایمیل:' - new password button: بازنشانی گذرواژه - help_text: ایمیلی که با آن ثبت‌نام کرده‌اید را وارد کنید. ما پیوندی به آن می‌فرستیم - تا بتوانید به‌وسیلهٔ آن گذرواژهٔ خود را بازنشانی کنید. - notice email on way: متأسفیم که آن را گم کرده‌اید :-( اما ایمیلی در راه است - که می‌توانید به‌زودی آن را مجدد تنظیم کنید. - notice email cannot find: چنین ایمیلی پیدا نشد، متأسفیم. - reset_password: - title: بازنشانی گذرواژه - heading: بازنشانی گذرواژه برای %{user} - reset: بازنشانی گذرواژه - flash changed: گذرواژهٔ شما عوض شد. - flash token bad: توکن را نیافتید؟ نشانی را بررسی کنید شاید بیابید. new: title: ثبت نام no_auto_account_create: متأسفانه در حال حاضر نمی‌توانیم به‌صورت خودکار برای @@ -2464,6 +2536,7 @@ fa: gravatar: gravatar: استفاده از Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Gravatar چیست؟ disabled: گراواتار غیرفعال شد. enabled: نمایش گراواتار شما فعال شد. new image: افزودن تصویر @@ -2481,31 +2554,6 @@ fa: flash update success confirm needed: اطلاعات کاربر با موفقیت روزآمد شد. برای تأیید نشانی ایمیل جدید، یادداشت ارسال‌شده به ایمیل‌تان را بررسی کنید. flash update success: اطلاعات کاربر با موفقیت روزآمد شد. - confirm: - heading: ایمیل‌تان را بررسی کنید! - introduction_1: یک ایمیل تأیید برای شما فرستادیم. - introduction_2: روی پیوندی که در ایمیل دریافتی هست کلید کنید و حساب خود را تأیید - نمایید. سپس می‌توانید نقشه‌کشی را آغاز کنید. - press confirm button: برای فعال‌سازی حسابتان روی دکمهٔ تأیید زیر کلیک کنید. - button: تأیید - success: ' تشکر بابت ثبت نام! حساب کاربری شما تایید شد.' - already active: این حساب کاربری قبلاً تأیید شده است. - unknown token: کد تأیید منقضی شده یا وجود ندارد. - reconfirm_html: اگر لازم است مجدداً ایمیل تأیید را بفرستیم، اینجا - کلیک کنید. - confirm_resend: - success_html: یادداشت تأیید دیگری به %{email} فرستادیم. به‌محض‌اینکه حسابتان - را تأیید کنید می‌توانید نقشه‌کشی را آغاز کنید.

    اگر از سیستم ضدهرزنامه - استفاده می‌کنید که درخواست تأیید می‌فرستد، لطفاً مطمئن شوید %{sender} را در - لیست سفید گذاشته باشید، زیرا ما نمی‌توانیم هیچ درخواست تأییدی را پاسخ دهیم. - failure: کاربر %{name} یافت نشد. - confirm_email: - heading: تأیید تغییر نشانی ایمیل - press confirm button: برای تأیید ایمیل جدیدتان دکمهٔ تأیید زیر را فشار دهید. - button: تأیید - success: تغییر نشانی ایمیل شما تأیید شد! - failure: یک نشانی ایمیل قبلاً با این توکن تأیید شده است. - unknown_token: کد تأیید منقضی شده یا وجود ندارد. set_home: flash success: موقعیت خانه با موفقیت ذخیره شد go_public: @@ -2686,6 +2734,8 @@ fa: custom_dimensions: تنظیم ابعاد سفارشی format: 'قالب:' scale: 'مقیاس: ‪' + image_dimensions: عکسی از لایهٔ استاندارد به‌ابعاد %{width} x %{height} تولید + می‌شود download: بارگیری short_url: نشانی کوتاه include_marker: شامل نشانگر @@ -2726,6 +2776,8 @@ fa: copyright: © مشارکت‌کنندگان OpenStreetMap donate_link_text: terms: شرایط وبسایت و API + cyclosm: سبک کاشی‌ها از CyclOSM + میزبانی با اوپن‌استریت‌مپ فرانسه thunderforest: کاشی‌ها با لطف Andy Allan opnvkarte: کاشی‌ها با لطف @@ -2853,7 +2905,9 @@ fa: way: راه relation: رابطه nothing_found: عارضه‌ای یافت نشد - error: 'خطار در ارتباط با %{server}: %{error}' + error: |- + خطا هنگام ارتباط با %{server}:‏ + %{error} timeout: اتمام مهلت ارتباط با %{server} context: directions_from: مسیریابی از اینجا diff --git a/config/locales/fi.yml b/config/locales/fi.yml index c1bd32886..b4ec26cf5 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -2,6 +2,7 @@ # Exported from translatewiki.net # Export driver: phpyaml # Author: 01miki10 +# Author: 3Johnny # Author: Actuallyisjoha # Author: Alluk. # Author: Antsa @@ -11,6 +12,7 @@ # Author: Daeron # Author: Espeox # Author: Jnovikov +# Author: Joquliina # Author: Konstaduck # Author: Laurianttila # Author: Lliehu @@ -18,8 +20,10 @@ # Author: Macofe # Author: Markosu # Author: McSalama +# Author: Mediawikitranslator # Author: Mikahama # Author: Moiman +# Author: Moj # Author: MrTapsa # Author: Nedergard # Author: Nelg @@ -155,18 +159,22 @@ fi: body: Viesti recipient: Vastaanottaja redaction: + title: Otsikko description: Kuvaus report: + category: Valitse ilmiannon syy details: Kuvaile ongelmaa (pakollinen) user: email: Sähköpostiosoite + email_confirmation: Sähköpostin varmistus new_email: Uusi sähköpostiosoite active: Aktivoitu display_name: Näyttönimi description: Henkilökuvaus - home_lat: 'Leveyspiiri:' - home_lon: 'Pituuspiiri:' + home_lat: Leveyspiiri + home_lon: Pituuspiiri languages: Kielet + preferred_editor: Ensisijainen muokkausohjelma pass_crypt: Salasana pass_crypt_confirmation: Vahvista salasana help: @@ -175,6 +183,9 @@ fi: user_block: needs_view: Pitääkö tämän käyttäjän kirjautua sisään ennen kuin esto poistetaan? user: + email_confirmation: Osoitettasi ei esitetä julkisesti. Lisätietoja tietosuojakäytännöstä + on saatavilla englanniksi. new_email: (ei näy muille) datetime: distance_in_words_ago: @@ -222,7 +233,7 @@ fi: description: iD (selainkäyttöinen muokkain) remote: name: Kauko-ohjaus - description: Kauko-ohjaus (JOSM tai Merkaartor) + description: Kauko-ohjaus (JOSM, Potlatch tai Merkaartor) auth: providers: none: Ei mitään @@ -661,6 +672,7 @@ fi: waste_disposal: Jätehuolto waste_dump_site: Kaatopaikka water_point: vesipiste + "yes": Palvelu boundary: administrative: Hallinnollinen raja census: Väestönlaskenta-alueen raja @@ -694,6 +706,7 @@ fi: hotel: Hotellirakennus house: Talo houseboat: Asuntovene + hut: Maja industrial: Teollisuusrakennus office: Toimistorakennus public: Julkinen rakennus @@ -701,6 +714,8 @@ fi: retail: Liikerakennus roof: Katto school: Koulurakennus + stable: Talli + temple: Temppelirakennus terrace: Rivitalo train_station: Rautatieasema university: Yliopistorakennus @@ -716,6 +731,7 @@ fi: painter: Taidemaalari photographer: Valokuvaaja plumber: Putkimies + sawmill: Sahalaitos shoemaker: Suutari tailor: Räätäli "yes": Käsityömyymälä @@ -723,7 +739,9 @@ fi: ambulance_station: Ensihoitoasema assembly_point: kohtaamispaikka defibrillator: Defibrillaattori + fire_xtinguisher: Palosammutin landing_site: Hätälaskualue + life_ring: Pelastusrengas phone: Hätäpuhelin water_tank: hätävesitankki "yes": Hätä @@ -767,6 +785,7 @@ fi: tertiary: Yhdystie tertiary_link: Yhdystie track: Metsätie + traffic_mirror: Liikennepeili traffic_signals: Liikennevalot trunk: Valtatie trunk_link: Valtatie @@ -837,7 +856,9 @@ fi: leisure: beach_resort: Rantakohde bird_hide: Linnunpesä + bowling_alley: Keilahalli common: Yhteinen maa + dance: Tanssisali dog_park: Koirapuisto firepit: Tulentekopaikka fishing: Kalastusalue @@ -851,6 +872,7 @@ fi: miniature_golf: Minigolf nature_reserve: Luonnonsuojelualue park: Puisto + picnic_table: Piknikpöytä pitch: Urheilukenttä playground: Leikkikenttä recreation_ground: Virkistysalue @@ -865,13 +887,16 @@ fi: "yes": Vapaa-aika man_made: adit: Suuaukko + antenna: Antenni beacon: Majakka beehive: ampiaispesä breakwater: Aallonmurtaja bridge: Silta bunker_silo: Bunkkeri + cairn: Kiviröykkiö chimney: piippu crane: Nosturi + cross: Risti dolphin: Kiinnityspaikka dyke: Pato embankment: Maavalli @@ -880,6 +905,7 @@ fi: groyne: Suojavalli kiln: Kalkkiuuni lighthouse: Majakka + manhole: Katukaivo mast: Masto mine: Kaivos mineshaft: kaivostunneli @@ -888,12 +914,14 @@ fi: pier: Laituri pipeline: Putkisto silo: Siilo + snow_cannon: Lumitykki storage_tank: Varastosäiliö surveillance: vartiointi telescope: Teleskooppi tower: Torni wastewater_plant: Jätevesilaitos watermill: Vesimylly + water_tap: Vesihana water_tower: Vesitorni water_well: Kaivo water_works: Vedenpuhdistuslaitos @@ -904,15 +932,19 @@ fi: airfield: Sotilaskenttä barracks: Kasarmi bunker: Bunkkeri + checkpoint: Tarkastuspiste + trench: Juoksuhauta "yes": armeija mountain_pass: "yes": Vuoristosola natural: + atoll: Atolli bay: Lahti beach: Hiekkaranta cape: Niemi cave_entrance: Luolan sisäänkäynti cliff: Jyrkänne + coastline: Rantaviiva crater: Kraatteri dune: Dyyni fell: Tunturi @@ -923,12 +955,14 @@ fi: grassland: Ruohomaa heath: Nummi hill: Mäki + hot_spring: Kuuma lähde island: Saari land: Maa marsh: Suo moor: Nummi mud: Muta peak: Huippu + peninsula: Niemimaa point: Niemi reef: Riutta ridge: Harju @@ -949,6 +983,7 @@ fi: office: accountant: Kirjanpitäjä administrative: Hallinto + advertising_agency: Mainostoimisto architect: Arkkitehti association: Yhdistys company: Yritys @@ -965,6 +1000,7 @@ fi: "yes": Toimisto place: allotments: Siirtolapuutarha + archipelago: Saaristo city: Kaupunki city_block: kortteli country: Maa @@ -1046,7 +1082,9 @@ fi: discount: Alennusmyymälä doityourself: Tee-se-itse dry_cleaning: Kuivapesula + e-cigarette: Sähkötupakkakauppa electronics: Elektroniikkakauppa + erotic: Seksikauppa estate_agent: Kiinteistönvälittäjä farm: Maatalouskauppa fashion: Muotikauppa @@ -1056,6 +1094,7 @@ fi: funeral_directors: Hautausurakoitsija furniture: Huonekaluliike garden_centre: Puutarhakeskus + gas: Huoltoasema general: Sekatavarakauppa gift: Lahjakauppa greengrocer: Vihanneskauppa @@ -1071,6 +1110,7 @@ fi: kiosk: Kioski kitchen: Keittiöliike laundry: Pesula + locksmith: Lukkoseppä lottery: Lotto mall: Ostoskeskus massage: hieronta @@ -1092,6 +1132,7 @@ fi: stationery: Paperikauppa supermarket: Supermarketti tailor: Räätäli + tattoo: Tatuointiliike tea: Teekauppa ticket: Lippupiste tobacco: Tupakkakauppa @@ -1124,6 +1165,7 @@ fi: picnic_site: Piknik-paikka theme_park: Teemapuisto viewpoint: Näköalapaikka + wilderness_hut: Erämaamökki zoo: Eläintarha tunnel: building_passage: Läpikäytävä @@ -1153,6 +1195,7 @@ fi: level4: Osavaltion raja level5: Alueen raja level6: Maakunnan raja + level7: Kunnanraja level8: Kunnan raja level9: Kylän raja level10: Asuinalueen raja @@ -1431,11 +1474,38 @@ fi: %{url} ja napsauttamalla Lopeta tilaus. unsubscribe_html: Peru tämän muutoskokoelman sähköposti-ilmoitukset siirtymällä osoitteeseen %{url} ja napsauttamalla Lopeta tilaus. + confirmations: + confirm: + heading: Tarkista sähköpostisi! + introduction_1: Vahvistusviesti lähetetty. + introduction_2: Aktivoi tili napsauttamalla vahvistustilissä olevaa linkkiä, + minkä jälkeen voit aloittaa kartan muokkaamisen! + press confirm button: Aktivoi uusi käyttäjätunnuksesi valitsemalla Vahvista. + button: Vahvista + success: Käyttäjätunnuksesi on nyt vahvistettu. + already active: Tämä tunnus on jo vahvistettu. + unknown token: Vahvistuskoodi on vanhentunut tai sitä ei ole. + reconfirm_html: Vahvistusviestin voi tilata uudelleen napsauttamalla + tästä. + confirm_resend: + success_html: Aktivointilinkin sisältävä viesti on lähetetty osoitteeseen %{email}. + Kartan muokkaamisen voi aloittaa heti käyttäjätunnuksen vahvistamisen jälkeen.

    Jos käytät vahvistuspyyntöjä lähettävää roskapostinesto-ohjelmaa, + lisää %{sender} sallittujen osoitteiden listalle, sillä vahvistuspyyntöihin + ei vastata. + failure: Käyttäjää %{name} ei löytynyt. + confirm_email: + heading: Vahvista sähköpostiosoitteen muutos + press confirm button: Varmenna sähköpostiosoitteesi valitsemalla Vahvista. + button: Vahvista + success: Sähköpostiosoitteesi muutos on nyt vahvistettu! + failure: Tällä tunnisteella on jo vahvistettu sähköpostiosoite. + unknown_token: Vahvistuskoodi on vanhentunut tai sitä ei ole. messages: inbox: title: Saapuneet my_inbox: Saapuneet - outbox: Lähetetyt + my_outbox: Lähetetyt messages: Kansiossa on %{new_messages} ja %{old_messages}. new_messages: one: '%{count} lukematon viesti' @@ -1469,9 +1539,8 @@ fi: body: Valitettavasti tällä ID-tunnuksella ei ole viestiä. outbox: title: Lähetetyt - my_inbox_html: '%{inbox_link}' - inbox: Saapuneet - outbox: Lähetetyt + my_inbox: Saapuneet + my_outbox: Lähetetyt messages: one: Kansiossa on %{count} lähetetty viesti. other: Kansiossa on %{count} lähetettyä viestiä. @@ -1505,6 +1574,78 @@ fi: as_unread: Viesti on merkitty lukemattomaksi. destroy: destroyed: Viesti on poistettu. + passwords: + lost_password: + title: Unohtunut salasana + heading: Unohditko salasanasi? + email address: 'Sähköpostiosoite:' + new password button: Lähetä salasanan palautusohjeet + help_text: Kirjoita alapuolelle kirjautumissähköpostiosoitteesi. Osoitteeseen + lähetetään salasanan palautusohjeet. + notice email on way: Salasanan palautusohjeet on lähetetty annettuun sähköpostiosoitteeseen. + notice email cannot find: Annettu sähköpostiosoite ei ole käytössä. + reset_password: + title: Salasanan vaihto + heading: Vaihda käyttäjän %{user} salasana + reset: Vaihda salasana + flash changed: Salasanasi on vaihdettu. + flash token bad: Tuntematon tunniste. Tarkista että URL on sama kuin postissasi. + sessions: + new: + title: Kirjautumissivu + heading: Kirjaudu + email or username: 'Sähköpostiosoite tai käyttäjätunnus:' + password: 'Salasana:' + openid_html: '%{logo} OpenID:' + remember: Pidä minut sisäänkirjautuneena + lost password link: Unohditko salasanasi? + login_button: Kirjaudu sisään + register now: Rekisteröidy + with username: 'Onko sinulla jo OpenStreetMap-tunnus? Kirjaudu sillä sisään:' + with external: 'Voit myös kirjautua jonkun muun palvelun tunnuksilla:' + new to osm: Oletko uusi OpenStreetMapin käyttäjä? + to make changes: OpenStreetMapin karttatietojen muuttaminen vaatii käyttäjätunnuksen. + create account minute: Luo käyttäjätunnus. Se kestää vain hetken. + no account: Eikö sinulla vielä ole käyttäjätunnusta? + account not active: Käyttäjätunnustasi ei ole vielä aktivoitu.
    Aktivoi + käyttäjätunnuksesi napsauttamalla sähköpostitse saamaasi vahvistuslinkkiä, + tai pyydä uusi varmistusviesti. + account is suspended: Valitettavasti käyttäjätilisi käyttö on estetty epäilyttävän + toiminnan seurauksena.
    Saat lisätietoja ottamalla yhteyttä ylläpitoon. + auth failure: Kirjautuminen epäonnistui. + openid_logo_alt: Kirjaudu sisään OpenID-tunnuksella + auth_providers: + openid: + title: Kirjaudu sisään OpenID:llä + alt: Kirjaudu sisään OpenID-osoitteella + google: + title: Kirjaudu käyttämällä Google-tunnustasi + alt: Kirjaudu käyttämällä Google OpenID-tunnustasi + facebook: + title: Kirjaudu Facebookin avulla + alt: Kirjaudu käyttämällä Facebook-tunnustasi + windowslive: + title: Kirjaudu Windows Liven avulla + alt: Kirjaudu sisään Windows Live -tililläsi + github: + title: Kirjaudu GitHubin avulla + alt: Kirjaudu käyttämällä GitHub-tiliäsi + wikipedia: + title: Kirjaudu sisään Wikipedialla + alt: Kirjaudu sisään Wikipedia-tunnuksella + yahoo: + title: Kirjaudu Yahoon avulla + alt: Kirjaudu käyttämällä Yahoo OpenID -tunnustasi + wordpress: + title: Kirjaudu WordPressin avulla + alt: Kirjaudu käyttämällä Wordpress OpenID -tunnustasi + aol: + title: Kirjaudu AOL:n avulla + alt: Kirjaudu käyttämällä AOL OpenID -tunnustasi + destroy: + title: Kirjaudu ulos + heading: Kirjaudu ulos OpenStreetMapista + logout_button: Kirjaudu ulos shared: markdown_help: title_html: Jäsennä Wikitekstinä @@ -1893,23 +2034,6 @@ fi: bicycle_shop: Pyöräkauppa bicycle_parking: Pyöräparkki toilets: Vessat - richtext_area: - edit: Muokkaa - preview: Esikatselu - markdown_help: - title_html: Jäsennä Wikitekstinä - headings: Otsikot - heading: Otsikko - subheading: Alaotsikko - unordered: Numeroimaton lista - ordered: Numeroitu lista - first: Ensimmäinen kohta - second: Toinen kohta - link: Linkki - text: Teksti - image: Kuva - alt: Vaihtoehtoinen teksti - url: Osoite welcome: title: Tervetuloa! introduction_html: 'Tervetuloa OpenStreetMapiin: ilmaiseen ja vapaasti muokattavaan @@ -1917,7 +2041,7 @@ fi: kartan muokkaamisen. Tutustu ensin kuitenkin näihin perusasioihin.' whats_on_the_map: title: Kartan sisältö - on_html: OpenStreetMapissä voi kartoittaa asioita, jotka ovat olemassa + on_html: OpenStreetMapissa voi kartoittaa asioita, jotka ovat olemassa juuri nyt – se sisältää miljoonia rakennuksia, teitä ja muita tietoja maailmasta. Voit kartoittaa mitä tahansa reaalimaailman piirteitä, jotka sinua kiinnostavat. @@ -2034,7 +2158,6 @@ fi: more: tiedot trace_details: Näytä jäljen tiedot view_map: Selaa karttaa - edit: muokkaa edit_map: Muokkaa karttaa public: JULKINEN identifiable: TUNNISTETTAVA @@ -2042,7 +2165,6 @@ fi: trackable: SEURATTAVA by: käyttäjältä in: avainsanoilla - map: sijainti kartalla index: public_traces: Julkiset GPS-jäljet my_traces: GPS-jälkeni @@ -2153,76 +2275,6 @@ fi: destroy: flash: Sovelluksen käyttöoikeus on poistettu. users: - login: - title: Kirjautumissivu - heading: Kirjaudu - email or username: 'Sähköpostiosoite tai käyttäjätunnus:' - password: 'Salasana:' - openid_html: '%{logo} OpenID:' - remember: Pidä minut sisäänkirjautuneena - lost password link: Unohditko salasanasi? - login_button: Kirjaudu sisään - register now: Rekisteröidy - with username: 'Onko sinulla jo OpenStreetMap-tunnus? Kirjaudu sillä sisään:' - with external: 'Voit myös kirjautua jonkun muun palvelun tunnuksilla:' - new to osm: Oletko uusi OpenStreetMapin käyttäjä? - to make changes: OpenStreetMapin karttatietojen muuttaminen vaatii käyttäjätunnuksen. - create account minute: Luo käyttäjätunnus. Se kestää vain hetken. - no account: Eikö sinulla vielä ole käyttäjätunnusta? - account not active: Käyttäjätunnustasi ei ole vielä aktivoitu.
    Aktivoi - käyttäjätunnuksesi napsauttamalla sähköpostitse saamaasi vahvistuslinkkiä, - tai pyydä uusi varmistusviesti. - account is suspended: Valitettavasti käyttäjätilisi käyttö on estetty epäilyttävän - toiminnan seurauksena.
    Saat lisätietoja ottamalla yhteyttä ylläpitoon. - auth failure: Kirjautuminen epäonnistui. - openid_logo_alt: Kirjaudu sisään OpenID-tunnuksella - auth_providers: - openid: - title: Kirjaudu sisään OpenID:llä - alt: Kirjaudu sisään OpenID-osoitteella - google: - title: Kirjaudu käyttämällä Google-tunnustasi - alt: Kirjaudu käyttämällä Google OpenID-tunnustasi - facebook: - title: Kirjaudu Facebookin avulla - alt: Kirjaudu käyttämällä Facebook-tunnustasi - windowslive: - title: Kirjaudu Windows Liven avulla - alt: Kirjaudu sisään Windows Live -tililläsi - github: - title: Kirjaudu GitHubin avulla - alt: Kirjaudu käyttämällä GitHub-tiliäsi - wikipedia: - title: Kirjaudu sisään Wikipedialla - alt: Kirjaudu sisään Wikipedia-tunnuksella - yahoo: - title: Kirjaudu Yahoon avulla - alt: Kirjaudu käyttämällä Yahoo OpenID -tunnustasi - wordpress: - title: Kirjaudu WordPressin avulla - alt: Kirjaudu käyttämällä Wordpress OpenID -tunnustasi - aol: - title: Kirjaudu AOL:n avulla - alt: Kirjaudu käyttämällä AOL OpenID -tunnustasi - logout: - title: Kirjaudu ulos - heading: Kirjaudu ulos OpenStreetMapista - logout_button: Kirjaudu ulos - lost_password: - title: Unohtunut salasana - heading: Unohditko salasanasi? - email address: 'Sähköpostiosoite:' - new password button: Lähetä salasanan palautusohjeet - help_text: Kirjoita alapuolelle kirjautumissähköpostiosoitteesi. Osoitteeseen - lähetetään salasanan palautusohjeet. - notice email on way: Salasanan palautusohjeet on lähetetty annettuun sähköpostiosoitteeseen. - notice email cannot find: Annettu sähköpostiosoite ei ole käytössä. - reset_password: - title: Salasanan vaihto - heading: Vaihda käyttäjän %{user} salasana - reset: Vaihda salasana - flash changed: Salasanasi on vaihdettu. - flash token bad: Tuntematon tunniste. Tarkista että URL on sama kuin postissasi. new: title: Rekisteröidy no_auto_account_create: Automaattinen käyttäjätunnuksen luonti ei ole juuri @@ -2355,13 +2407,13 @@ fi: account: title: Asetusten muokkaus my settings: Käyttäjäasetukset - current email address: 'Nykyinen sähköpostiosoite:' - external auth: 'Kolmannen osapuolen tunnukset kirjautuessa:' + current email address: Nykyinen sähköpostiosoite + external auth: Kolmannen osapuolen tunnukset kirjautuessa openid: link: https://wiki.openstreetmap.org/wiki/Fi:OpenID link text: Mitä tämä tarkoittaa? public editing: - heading: 'Muokkaukset julkisia:' + heading: Muokkaukset julkisia enabled: Kyllä. Karttatietojen muokkaus sallittu. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: Mitä tämä tarkoittaa? @@ -2378,7 +2430,7 @@ fi: toimintoa ei voi perua ja kaikki uudet käyttäjät ovat automaattisesti julkisia. contributor terms: - heading: 'Osallistumisehdot:' + heading: Osallistumisehdot agreed: Olet hyväksynyt osallistumisehdot. not yet agreed: Et ole vielä hyväksynyt osallistumisehtoja. review link text: Lue ja hyväksy uudistuneet osallistumisehdot napsauttamalla @@ -2400,7 +2452,7 @@ fi: replace image: Korvaa nykyinen kuva image size hint: (parhaat kuvat ovat neliönmuotoisia, joiden koko on vähintään 100x100) - home location: 'Kotipaikka:' + home location: Kotipaikka no home location: Kotipaikkaa ei ole vielä määritetty. update home location on click: Päivitä kotipaikka karttaa napsauttaessa save changes button: Tallenna muutokset @@ -2409,31 +2461,6 @@ fi: flash update success confirm needed: Käyttäjätietojen muutokset on tallennettu. Vahvista uusi sähköpostiosoite siihen lähetettyjen ohjeiden mukaisesti. flash update success: Käyttäjätietojen muutokset on tallennettu. - confirm: - heading: Tarkista sähköpostisi! - introduction_1: Vahvistusviesti lähetetty. - introduction_2: Aktivoi tilisi napsauttamalla vahvistustilissä olevaa linkkiä - ja olet valmis aloittamaan kartan muokkaamisen! - press confirm button: Aktivoi uusi käyttäjätunnuksesi valitsemalla Vahvista. - button: Vahvista - success: Käyttäjätunnuksesi on nyt vahvistettu. - already active: Tämä tunnus on jo vahvistettu. - unknown token: Vahvistuskoodi on vanhentunut tai sitä ei ole. - reconfirm_html: Tarvittaessa voimme lähettää uuden vahvistusviestin, napsauta - tästä. - confirm_resend: - success_html: Olemme lähettäneet aktivointilinkin sisältävän viestin osoitteeseen - %{email}. Vahvistettuasi käyttäjätunnuksesi voit aloittaa kartoittamisen.

    Jos käytät vahvistusviestejä lähettävää roskapostinesto-ohjelmaa, - lisää %{sender} sallittujen osoitteiden listalle, sillä emme voi vastata vahvistuspyyntöihin. - failure: Käyttäjää %{name} ei löytynyt. - confirm_email: - heading: Vahvista sähköpostiosoitteen muutos - press confirm button: Varmenna sähköpostiosoitteesi valitsemalla Vahvista. - button: Vahvista - success: Sähköpostiosoitteesi muutos on nyt vahvistettu! - failure: Tällä tunnisteella on jo vahvistettu sähköpostiosoite. - unknown_token: Vahvistuskoodi on vanhentunut tai sitä ei ole. set_home: flash success: Kodin sijainnin tallennus onnistui go_public: @@ -2469,7 +2496,7 @@ fi: unknown_signature_algorithm: Tunnistamaton allekirjoitusalgoritmi invalid_scope: Virheellinen ala auth_association: - heading: Sinun ID:tä ei ole vielä liitetty OpenStreetMap-tiliisi. + heading: ID:täsi ei ole vielä liitetty OpenStreetMap-tiliisi. option_1: 'Uusi OpenStreetMapin käyttäjä: luo käyttäjätunnus tällä lomakkeella.' option_2: 'Nykyinen OpenStreetMapin käyttäjä: kirjaudu sisään käyttäjätunnuksella ja salasanalla ja yhdistä tili käyttäjäasetuksissa.' @@ -2647,6 +2674,7 @@ fi: other: Olet %{count} jalan etäisyydellä tästä pisteestä base: standard: Perinteinen + cyclosm: CyclOSM cycle_map: Pyöräilykartta transport_map: Joukkoliikenne hot: Humanitaarinen diff --git a/config/locales/fit.yml b/config/locales/fit.yml index 56c93e50d..c85e9e660 100644 --- a/config/locales/fit.yml +++ b/config/locales/fit.yml @@ -654,11 +654,13 @@ fit: details: 'Lisätioja muutoskokoelmasta: %{url}' unsubscribe: Peruaksesi tilauksen päivityksistä tähän muutoskokoelmaan, vieraile sivula %{url} ja klikkaa "Unsubscribe". + confirmations: + confirm: + heading: Tarkista sinun e-posti! messages: inbox: title: Saapuneet my_inbox: Saapuneet - outbox: Lähetetyt messages: Kansiossa oon %{new_messages} ja %{old_messages}. new_messages: one: '%{count} lukematon viesti' @@ -691,9 +693,6 @@ fit: heading: Ei sellaista viestiä outbox: title: Lähätetyt - my_inbox_html: Minun %{inbox_link} - inbox: Saapuneet - outbox: Lähätetyt messages: one: Kansiossa oon %{count} lähätetty viesti. other: Kansiossa oon %{count} lähätettyä viestiä. @@ -724,6 +723,36 @@ fit: as_unread: Viesti markeerattu lukemattomaksi. destroy: destroyed: Viesti otettu poies + passwords: + lost_password: + title: Unohtunut salasana + heading: Unohditko salasanasi? + email address: 'E-postiatressi:' + new password button: Lähätä salasanan palautusohjeet + sessions: + new: + title: Lokkaussivu + heading: Lokkaa + email or username: 'E-postiatressi tai käyttäjänimi:' + password: 'Salasana:' + lost password link: Unhouttanu sinun salasanan? + login_button: Lokkaa sisäle + register now: Luo konttu nyt + openid_logo_alt: Lokkaa sisäle OpenID-konttulla + auth_providers: + openid: + title: Lokkaa sisäle OpenID:llä + alt: Lokkaa sisäle OpenID-atressilla + google: + title: Lokkaa sisäle Googlella + facebook: + title: Lokkaa sisäle Feispukilla + wikipedia: + title: Lokkaa sisäle Wikipeetialla + destroy: + title: Lokkaa ulos + heading: Lokkaa ulos OpenStreetMapista + logout_button: Lokkaa ulos site: about: next: Seuraava @@ -869,14 +898,6 @@ fit: entry: school: 1: yniversiteetti - richtext_area: - edit: Mookkaa - preview: Esikattelu - markdown_help: - link: Länkki - text: Teksti - image: Kuva - url: Atressi welcome: title: Tervetuloa! add_a_note: @@ -899,7 +920,6 @@ fit: trace_paging_nav: showing_page: Sivu %{page} trace: - edit: mookkaa edit_map: Mookkaa karttaa public: JULKINEN identifiable: TUNNISTETTAVA @@ -907,7 +927,6 @@ fit: trackable: SEURATTAVA by: käyttäjältä in: avainsanoilla - map: sijainti kartalla index: public_traces: Julkiset GPS-jäljet my_traces: Minun GPS-jäljet @@ -919,34 +938,6 @@ fit: delete: Ota poies kynti confirm: Oletko varma? users: - login: - title: Lokkaussivu - heading: Lokkaa - email or username: 'E-postiatressi tai käyttäjänimi:' - password: 'Salasana:' - lost password link: Unhouttanu sinun salasanan? - login_button: Lokkaa sisäle - register now: Luo konttu nyt - openid_logo_alt: Lokkaa sisäle OpenID-konttulla - auth_providers: - openid: - title: Lokkaa sisäle OpenID:llä - alt: Lokkaa sisäle OpenID-atressilla - google: - title: Lokkaa sisäle Googlella - facebook: - title: Lokkaa sisäle Feispukilla - wikipedia: - title: Lokkaa sisäle Wikipeetialla - logout: - title: Lokkaa ulos - heading: Lokkaa ulos OpenStreetMapista - logout_button: Lokkaa ulos - lost_password: - title: Unohtunut salasana - heading: Unohditko salasanasi? - email address: 'E-postiatressi:' - new password button: Lähätä salasanan palautusohjeet new: title: Luo konttu about: @@ -1000,8 +991,6 @@ fit: no home location: Kotopaikkaa ei ole vielä määritetty. save changes button: Säästä muutokset make edits public button: Tee mookkauksistani julkisia - confirm: - heading: Tarkista sinun e-posti! go_public: flash success: Kaikki tekemäsi mookkaukset ovat nyt julkisia. auth_failure: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index eabe2e5e9..9e8d3bbdc 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -34,6 +34,7 @@ # Author: Linedwell # Author: Litlok # Author: Ljubinka +# Author: Ltrlg # Author: Lucky # Author: Macofe # Author: Manaviko @@ -78,9 +79,12 @@ # Author: Zarisi --- fr: + html: + dir: ltr time: formats: friendly: '%e %B %Y à %-Hh%M' + blog: '%e %B %Y' helpers: file: prompt: Choisir un fichier @@ -223,9 +227,9 @@ fr: qu’expire ce blocage ? user: email_confirmation: Votre adresse n’est pas affichée publiquement, voyez notre - politique - de confidentialité pour plus d’informations. + politique de confidentialité pour plus d’informations. new_email: (jamais affichée publiquement) datetime: distance_in_words_ago: @@ -267,6 +271,7 @@ fr: one: l’année dernière other: il y a %{count} ans printable_name: + with_version: '%{id}, v%{version}' with_name_html: '%{name} (%{id})' editor: default: Par défaut (actuellement %{name}) @@ -596,6 +601,7 @@ fr: sur OpenStreetMap geonames_reverse_html: Résultats venant de GeoNames search_osm_nominatim: + prefix_format: '%{name}' prefix: aerialway: cable_car: Téléphérique @@ -1057,12 +1063,14 @@ fr: mountain_pass: "yes": Col de montagne natural: + atoll: Atoll bare_rock: Roche nue bay: Baie beach: Plage cape: Cap cave_entrance: Entrée de grotte cliff: Falaise + coastline: Littoral crater: Cratère dune: Dune fell: Lande @@ -1080,6 +1088,7 @@ fr: moor: Brande mud: Boue peak: Pic + peninsula: Péninsule point: Pointe reef: Récif ridge: Crête @@ -1127,6 +1136,7 @@ fr: "yes": Bureau place: allotments: Jardins familiaux + archipelago: Archipel city: Ville city_block: Bloc urbain country: Pays @@ -1465,6 +1475,9 @@ fr: successful_report: Votre rapport a bien été enregistré provide_details: Veuillez fournir les détails requis layouts: + project_name: + title: OpenStreetMap + h1: OpenStreetMap logo: alt_text: Logo d’OpenStreetMap home: Aller à votre domicile @@ -1547,9 +1560,9 @@ fr: befriend_them: 'Vous pouvez également l’ajouter comme ami(e) ici : %{befriendurl}.' befriend_them_html: Vous pouvez aussi les ajouter comme amis sur %{befriendurl}. gpx_description: - description_with_tags_html: 'Cela ressemble à votre fichier GPX %{trace_name} + description_with_tags_html: 'Il semblerait que votre fichier GPX %{trace_name} avec la description %{trace_description} et les balises suivantes : %{tags}' - description_with_no_tags_html: Cela ressemble à votre fichier GPX %{trace_name} + description_with_no_tags_html: Il semblerait que votre fichier GPX %{trace_name} avec la description %{trace_description} et sans balises gpx_failure: hi: Bonjour %{to_user}, @@ -1652,11 +1665,41 @@ fr: visitez %{url} et cliquez sur « Désabonner ». unsubscribe_html: Pour vous désabonner des mises à jour de cet ensemble de modifications, visitez %{url} et cliquez sur « Désabonner ». + confirmations: + confirm: + heading: Vérifiez votre courriel ! + introduction_1: Nous vous avons envoyé un courriel de confirmation. + introduction_2: Confirmez votre compte en cliquant sur le lien dans le courriel + et vous pourrez commencer à cartographier. + press confirm button: Appuyer le bouton Confirmer ci-dessous pour activer votre + compte. + button: Confirmer + success: Compte confirmé, merci de vous être inscrit ! + already active: Ce compte a déjà été confirmé. + unknown token: Le code de confirmation a expiré ou n’existe pas. + reconfirm_html: Si vous avez besoin que nous vous renvoyions un courriel de + confirmation, cliquez ici. + confirm_resend: + success_html: Nous avons envoyé une nouvelle confirmation à %{email} et dès + que vous aurez confirmé votre compte, vous pourrez commencer à cartographier.

    Si vous utilisez un filtre contre les courriels indésirables qui + renvoie à l’expéditeur des demandes de confirmation, veuillez ajouter %{sender} + à votre liste blanche, car nous ne sommes en mesure de répondre à aucune des + demandes de confirmation. + failure: L’utilisateur %{name} est introuvable. + confirm_email: + heading: Confirmer le changement de votre adresse de courriel + press confirm button: Appuyez sur le bouton Confirmer ci-dessous pour confirmer + votre nouvelle adresse de courriel. + button: Confirmer + success: Modification de votre adresse de courriel confirmée ! + failure: Une adresse de courriel a déjà été confirmée avec ce jeton d’authentification. + unknown_token: Ce code de confirmation a expiré ou n’existe pas. messages: inbox: title: Boîte de réception my_inbox: Ma boîte de réception - outbox: boîte d’envoi + my_outbox: Ma boîte d’envoi messages: Vous avez %{new_messages} et %{old_messages} new_messages: zero: zéro nouveau message @@ -1693,9 +1736,8 @@ fr: body: Désolé, il n’y a aucun message avec cet identifiant. outbox: title: Boîte d’envoi - my_inbox_html: Ma %{inbox_link} - inbox: boîte de réception - outbox: boîte d’envoi + my_inbox: Ma boîte de réception + my_outbox: Ma boîte d’envoi messages: one: Vous n’avez aucun message envoyé other: Vous avez %{count} messages envoyés @@ -1729,6 +1771,84 @@ fr: as_unread: Message marqué comme non lu destroy: destroyed: Message supprimé + passwords: + lost_password: + title: Mot de passe perdu + heading: Vous avez perdu votre mot de passe ? + email address: 'Adresse de courriel :' + new password button: Réinitialiser le mot de passe + help_text: Entrez l’adresse de courriel que vous avez utilisée à votre inscription, + nous enverrons à cette adresse un lien que vous pourrez utiliser pour réinitialiser + votre mot de passe. + notice email on way: Désolé que vous ayez perdu votre mot de passe :-( + Un courriel vous a été envoyé pour que vous puissiez vite le réinitialiser. + notice email cannot find: Cette adresse de courriel est introuvable, désolé. + reset_password: + title: Réinitialiser le mot de passe + heading: Réinitialiser le mot de passe de %{user} + reset: Réinitialiser le mot de passe + flash changed: Votre mot de passe a été modifié. + flash token bad: Ce jeton est introuvable, veuillez vérifier l’URL. + sessions: + new: + title: Se connecter + heading: Se connecter + email or username: 'Adresse de courriel ou nom d’utilisateur :' + password: 'Mot de passe :' + openid_html: '%{logo} OpenID :' + remember: Se souvenir de moi + lost password link: Vous avez perdu votre mot de passe ? + login_button: Se connecter + register now: S’inscrire maintenant + with username: 'Vous avez déjà un compte sur OpenStreetMap ? Connectez-vous + avec votre identifiant et votre mot de passe :' + with external: 'Vous pouvez également utiliser un service tiers pour vous connecter :' + new to osm: Nouveau sur OpenStreetMap ? + to make changes: Pour apporter des modifications aux données d’OpenStreetMap, + vous devez posséder un compte. + create account minute: Créer un compte. Ça ne prend qu’une minute. + no account: Vous n’avez pas encore de compte ? + account not active: Désolé, votre compte n’est pas encore actif.
    Veuillez + cliquer sur le lien dans le courriel de confirmation pour activer votre compte, + sinon demandez un nouveau courriel de confirmation. + account is suspended: Désolé, votre compte a été suspendu en raison d’une activité + suspecte.
    Veuillez contacter le responsable du + site si vous voulez en discuter. + auth failure: Désolé, mais les informations fournies n’ont pas permis de vous + identifier. + openid_logo_alt: Se connecter avec un OpenID + auth_providers: + openid: + title: Se connecter avec OpenID + alt: Se connecter avec une URL OpenID + google: + title: Connexion avec Google + alt: Se connecter avec un OpenID de Google + facebook: + title: Connexion avec Facebook + alt: Se connecter avec un compte de Facebook + windowslive: + title: Connexion avec Windows Live + alt: Se connecter avec un compte de Windows Live + github: + title: Connexion avec GitHub + alt: Se connecter avec un compte de GitHub + wikipedia: + title: Connexion avec Wikipédia + alt: Se connecter avec un compte de Wikipédia + yahoo: + title: Connexion avec Yahoo + alt: Se connecter avec un OpenID de Yahoo + wordpress: + title: Connexion avec Wordpress + alt: Se connecter avec un OpenID de Wordpress + aol: + title: Connexion avec AOL + alt: Se connecter avec un OpenID d’AOL + destroy: + title: Déconnexion + heading: Se déconnecter d’OpenStreetMap + logout_button: Déconnexion shared: markdown_help: title_html: Analysé avec kramdown @@ -2142,23 +2262,6 @@ fr: bicycle_shop: Magasin de vélos bicycle_parking: Parking à vélos toilets: Toilettes - richtext_area: - edit: Modifier - preview: Aperçu - markdown_help: - title_html: Analysé avec kramdown - headings: Titres - heading: Titre - subheading: Sous-titre - unordered: Liste non ordonnée - ordered: Liste ordonnée - first: Premier élément - second: Deuxième élément - link: Lien - text: Texte - image: Image - alt: Texte alternatif - url: URL welcome: title: Bienvenue ! introduction_html: Bienvenue dans OpenStreetMap, la carte du monde libre et @@ -2244,6 +2347,7 @@ fr: title: Modifier la trace %{name} heading: Modifier la trace %{name} visibility_help: qu’est-ce que cela signifie ? + visibility_help_url: https://wiki.openstreetmap.org/wiki/FR:Visibilit%C3%A9_des_traces_GPS update: updated: Traces mises à jour trace_optionals: @@ -2281,7 +2385,6 @@ fr: more: plus trace_details: Voir les détails de la trace view_map: Voir la carte - edit: modifier edit_map: Modifier la carte public: PUBLIQUE identifiable: IDENTIFIABLE @@ -2289,7 +2392,6 @@ fr: trackable: PISTABLE by: par in: dans - map: carte index: public_traces: Traces GPS publiques my_traces: Mes traces GPS @@ -2410,82 +2512,6 @@ fr: destroy: flash: Enregistrement de l’application cliente supprimé users: - login: - title: Connexion - heading: Connexion - email or username: 'Adresse de courriel ou nom d’utilisateur :' - password: 'Mot de passe :' - openid_html: '%{logo} OpenID :' - remember: Se souvenir de moi - lost password link: Vous avez perdu votre mot de passe ? - login_button: Se connecter - register now: S’inscrire maintenant - with username: 'Vous avez déjà un compte sur OpenStreetMap ? Connectez-vous - avec votre identifiant et votre mot de passe :' - with external: 'Vous pouvez également utiliser un service tiers pour vous connecter :' - new to osm: Nouveau sur OpenStreetMap ? - to make changes: Pour apporter des modifications aux données d’OpenStreetMap, - vous devez posséder un compte. - create account minute: Créer un compte. Ça ne prend qu’une minute. - no account: Vous n’avez pas encore de compte ? - account not active: Désolé, votre compte n’est pas encore actif.
    Veuillez - cliquer sur le lien dans le courriel de confirmation pour activer votre compte, - sinon demandez un nouveau courriel de confirmation. - account is suspended: Désolé, votre compte a été suspendu en raison d’une activité - suspecte.
    Veuillez contacter le responsable du - site si vous voulez en discuter. - auth failure: Désolé, mais les informations fournies n’ont pas permis de vous - identifier. - openid_logo_alt: Se connecter avec un OpenID - auth_providers: - openid: - title: Se connecter avec OpenID - alt: Se connecter avec une URL OpenID - google: - title: Se connecter avec Google - alt: Se connecter avec un OpenID de Google - facebook: - title: Se connecter avec Facebook - alt: Se connecter avec un compte de Facebook - windowslive: - title: Connexion avec Windows Live - alt: Se connecter avec un compte de Windows Live - github: - title: Connexion avec GitHub - alt: Connexion avec un compte de GitHub - wikipedia: - title: Se connecter avec Wikipédia - alt: Se connecter avec un compte de Wikipédia - yahoo: - title: Se connecter avec Yahoo - alt: Se connecter avec un OpenID de Yahoo - wordpress: - title: Se connecter avec Wordpress - alt: Se connecter avec un OpenID de Wordpress - aol: - title: Se connecter avec AOL - alt: Se connecter avec un OpenID d’AOL - logout: - title: Déconnexion - heading: Déconnexion d’OpenStreetMap - logout_button: Déconnexion - lost_password: - title: Mot de passe perdu - heading: Vous avez perdu votre mot de passe ? - email address: 'Adresse de courriel :' - new password button: Réinitialiser le mot de passe - help_text: Entrez l’adresse de courriel que vous avez utilisée à votre inscription, - nous enverrons à cette adresse un lien que vous pourrez utiliser pour réinitialiser - votre mot de passe. - notice email on way: Désolé que vous ayez perdu votre mot de passe :-( - Un courriel vous a été envoyé pour que vous puissiez vite le réinitialiser. - notice email cannot find: Cette adresse de courriel est introuvable, désolé. - reset_password: - title: Réinitialiser le mot de passe - heading: Réinitialiser le mot de passe de %{user} - reset: Réinitialiser le mot de passe - flash changed: Votre mot de passe a été modifié. - flash token bad: Ce jeton est introuvable, veuillez vérifier l’URL. new: title: S’inscrire no_auto_account_create: Malheureusement, nous sommes actuellement dans l’impossibilité @@ -2684,35 +2710,6 @@ fr: jour avec succès. Consultez la boîte de réception de votre messagerie pour confirmer votre nouvelle adresse de courriel. flash update success: Informations sur l’utilisateur mises à jour avec succès. - confirm: - heading: Vérifiez votre courriel ! - introduction_1: Nous vous avons envoyé un courriel de confirmation. - introduction_2: Confirmez votre compte en cliquant sur le lien dans le courriel - et vous pourrez commencer à cartographier. - press confirm button: Appuyer le bouton Confirmer ci-dessous pour activer votre - compte. - button: Confirmer - success: Compte confirmé, merci de vous être inscrit ! - already active: Ce compte a déjà été confirmé. - unknown token: Le code de confirmation a expiré ou n’existe pas. - reconfirm_html: Si vous avez besoin que nous vous renvoyions un courriel de - confirmation, cliquez ici. - confirm_resend: - success_html: Nous avons envoyé une nouvelle confirmation à %{email} et dès - que vous aurez confirmé votre compte, vous pourrez commencer à cartographier.

    Si vous utilisez un filtre contre les courriels indésirables qui - renvoie à l’expéditeur des demandes de confirmation, veuillez ajouter %{sender} - à votre liste blanche, car nous ne sommes en mesure de répondre à aucune des - demandes de confirmation. - failure: L’utilisateur %{name} est introuvable. - confirm_email: - heading: Confirmer le changement de votre adresse de courriel - press confirm button: Appuyez sur le bouton Confirmer ci-dessous pour confirmer - votre nouvelle adresse de courriel. - button: Confirmer - success: Modification de votre adresse de courriel confirmée ! - failure: Une adresse de courriel a déjà été confirmée avec ce jeton d’authentification. - unknown_token: Ce code de confirmation a expiré ou n’existe pas. set_home: flash success: Lieu de domicile enregistré avec succès go_public: @@ -2907,7 +2904,7 @@ fr: custom_dimensions: Définir les dimensions personnalisées format: 'Format :' scale: 'Échelle :' - image_dimensions: L’image affichera la mise en forme standard de %{width} x %{height} + image_dimensions: L’image affichera la mise en forme standard de %{width} × %{height} download: Télécharger short_url: URL courte include_marker: Inclure le marqueur @@ -2950,8 +2947,8 @@ fr: copyright: © Contributeurs de OpenStreetMap donate_link_text: terms: Conditions du site web et de l’API - cyclosm: Style de briques par CyclOSM - hébergé par OpenStreetMap France + cyclosm: Style de briques par CyclOSM + hébergé par OpenStreetMap France thunderforest: Carreaux gracieusement fournis par Andy Allan opnvkarte: Carreaux gracieusement fournis par MeMoMaps diff --git a/config/locales/fur.yml b/config/locales/fur.yml index 06e2461f1..b6dbef08d 100644 --- a/config/locales/fur.yml +++ b/config/locales/fur.yml @@ -546,6 +546,7 @@ fur: natural: bay: Rade beach: Splaze + coastline: Litorâl crater: Cratêr dune: Dune fjord: Fiort @@ -733,11 +734,31 @@ fur: il cambiament. note_comment_notification: anonymous: Un utent anonim + confirmations: + confirm: + heading: Controle la tô pueste! + introduction_1: Ti vin mandât un messaç di conferme. + introduction_2: Conferme il to profîl fracant sul leam tal messaç di pueste + e tu podarâs scomençâ a mapâ daurman. + press confirm button: Frache il boton Conferme par ativâ il to profîl. + button: Conferme + success: Profîl confermât, graziis par jessiti regjistrât! + already active: Chest profîl al è za stât confermât. + unknown token: Chest codiç di conferme al è scjadût o nol esist. + reconfirm_html: Se tu âs bisugne di un altri messaç di pueste par conferme, + frache culì. + confirm_resend: + failure: L'utent %{name} nol è stât cjatât. + confirm_email: + heading: Conferme dal cambiament de direzion email + press confirm button: Frache sul boton di conferme par confermâ la gnove direzion + di pueste. + button: Conferme + success: Tu âs confermât la tô direzion di pueste, graziis par jessiti regjistrât messages: inbox: title: In jentrade my_inbox: I miei messaçs in jentrade - outbox: in jessude messages: Tu âs %{new_messages} e %{old_messages} new_messages: one: '%{count} messaç gnûf' @@ -769,9 +790,6 @@ fur: heading: Messaç no cjatât outbox: title: In jessude - my_inbox_html: Messaçs %{inbox_link} - inbox: in jentrade - outbox: in jessude messages: one: Tu âs %{count} messaç in jessude other: Tu âs %{count} messaçs in jessude @@ -797,6 +815,44 @@ fur: as_unread: Messaç segnât come di lei destroy: destroyed: Messaç eliminât + passwords: + lost_password: + title: Password pierdude + heading: Âstu pierdût la password? + email address: 'Direzion di pueste:' + new password button: Azere la password + help_text: Scrîf la direzion di pueste eletroniche che tu âs doprât par iscrivîti + e ti mandarin un leam par tornâ a impuestâ la tô password. + notice email cannot find: No vin podût cjatâ la tô direzion di pueste, nus displâs. + reset_password: + title: Azere la password + heading: Azere la password par %{user} + reset: Azere la password + flash changed: La tô password e je stade cambiade. + sessions: + new: + title: Jentre + heading: Jentre + email or username: 'Direzion di pueste eletroniche o non utent:' + password: 'Password:' + openid_html: '%{logo} OpenID:' + remember: Visiti di me + lost password link: Password pierdude? + login_button: Jentre + register now: Regjistriti cumò + with username: 'Âstu za un profîl su OpenStreetMap? Jentre cul to non utent + e la tô password:' + new to osm: Sêstu gnûf su OpenStreetMap? + to make changes: Par cambiâ alc tai dâts di OpenStreetMap, tu scugnis vê un + profîl. + create account minute: Cree un profîl. I vûl dome un minût. + no account: No âstu ancjemò un profîl? + auth failure: Nus displâs, ma no si à rivât a jentrâ cun i dâts inserîts. + openid_logo_alt: Jentre cuntun OpenID + destroy: + title: Jes + heading: Va fûr di OpenStreetMap + logout_button: Jes site: about: next: Prossim @@ -930,23 +986,6 @@ fur: bridge: Rie nere = puint private: Acès privât construction: Stradis in costruzion - richtext_area: - edit: Cambie - preview: Anteprime - markdown_help: - title_html: Analizât cun Markdown - headings: Intestazions - heading: Titul - subheading: Sottitul - unordered: Liste no ordenade - ordered: Liste ordenade - first: Prin element - second: Secont element - link: Leam - text: Test - image: Figure - alt: Test alternatîf - url: URL welcome: title: Benvignût! whats_on_the_map: @@ -1000,14 +1039,12 @@ fur: more: plui trace_details: Cjale i detais dal percors view_map: Viôt mape - edit: cambie edit_map: Cambie mape public: PUBLIC identifiable: IDENTIFICABIL private: PRIVÂT by: di in: in - map: mape index: public_traces: Percors GPS publics public_traces_from: Percors GPS publics di %{user} @@ -1062,42 +1099,6 @@ fur: form: requests: 'Domande i permès ca sot al utent:' users: - login: - title: Jentre - heading: Jentre - email or username: 'Direzion di pueste eletroniche o non utent:' - password: 'Password:' - openid_html: '%{logo} OpenID:' - remember: Visiti di me - lost password link: Password pierdude? - login_button: Jentre - register now: Regjistriti cumò - with username: 'Âstu za un profîl su OpenStreetMap? Jentre cul to non utent - e la tô password:' - new to osm: Sêstu gnûf su OpenStreetMap? - to make changes: Par cambiâ alc tai dâts di OpenStreetMap, tu scugnis vê un - profîl. - create account minute: Cree un profîl. I vûl dome un minût. - no account: No âstu ancjemò un profîl? - auth failure: Nus displâs, ma no si à rivât a jentrâ cun i dâts inserîts. - openid_logo_alt: Jentre cuntun OpenID - logout: - title: Jes - heading: Va fûr di OpenStreetMap - logout_button: Jes - lost_password: - title: Password pierdude - heading: Âstu pierdût la password? - email address: 'Direzion di pueste:' - new password button: Azere la password - help_text: Scrîf la direzion di pueste eletroniche che tu âs doprât par iscrivîti - e ti mandarin un leam par tornâ a impuestâ la tô password. - notice email cannot find: No vin podût cjatâ la tô direzion di pueste, nus displâs. - reset_password: - title: Azere la password - heading: Azere la password par %{user} - reset: Azere la password - flash changed: La tô password e je stade cambiade. new: title: Regjistriti about: @@ -1234,26 +1235,6 @@ fur: flash update success confirm needed: Informazions dal utent inzornadis cun sucès. Controle la tô pueste par confermâ la tô gnove direzion di pueste eletroniche. flash update success: Informazions dal utent inzornadis cun sucès. - confirm: - heading: Controle la tô pueste! - introduction_1: Ti vin mandât un messaç di conferme. - introduction_2: Conferme il to profîl fracant sul leam tal messaç di pueste - e tu podarâs scomençâ a mapâ daurman. - press confirm button: Frache il boton Conferme par ativâ il to profîl. - button: Conferme - success: Profîl confermât, graziis par jessiti regjistrât! - already active: Chest profîl al è za stât confermât. - unknown token: Chest codiç di conferme al è scjadût o nol esist. - reconfirm_html: Se tu âs bisugne di un altri messaç di pueste par conferme, - frache culì. - confirm_resend: - failure: L'utent %{name} nol è stât cjatât. - confirm_email: - heading: Conferme dal cambiament de direzion email - press confirm button: Frache sul boton di conferme par confermâ la gnove direzion - di pueste. - button: Conferme - success: Tu âs confermât la tô direzion di pueste, graziis par jessiti regjistrât set_home: flash success: Lûc iniziâl salvât cun sucès go_public: diff --git a/config/locales/fy.yml b/config/locales/fy.yml index 80f64808a..884990de0 100644 --- a/config/locales/fy.yml +++ b/config/locales/fy.yml @@ -437,6 +437,13 @@ fy: to: Oan sent_message_summary: destroy_button: Fuortsmite + passwords: + lost_password: + email address: 'E-mailadres:' + sessions: + new: + password: 'Wachtwurd:' + openid_html: '%{logo} OpenID:' site: about: next: Folgjende @@ -489,13 +496,6 @@ fy: school: - Skoalle - universiteit - richtext_area: - edit: Bewurkje - preview: Proefbyld - markdown_help: - text: Tekst - image: Ôfbylding - url: URL welcome: title: Wolkom! traces: @@ -514,18 +514,11 @@ fy: trace: count_points: '%{count} punten' more: mear - edit: bewurkje public: IEPENBIER private: PRIVEE by: troch in: yn - map: kaart users: - login: - password: 'Wachtwurd:' - openid_html: '%{logo} OpenID:' - lost_password: - email address: 'E-mailadres:' new: email address: 'E-mailadres:' confirm email address: 'Befêstigjen e-mailadres:' diff --git a/config/locales/ga.yml b/config/locales/ga.yml index 1b280f419..4e99d2b08 100644 --- a/config/locales/ga.yml +++ b/config/locales/ga.yml @@ -1152,11 +1152,25 @@ ga: details: Tá tuilleadh sonraí faoin tacar athruithe ar fáil ag %{url}. unsubscribe: Le díliostáil ó nuashonruithe a dhéanfar ar an tacar athruithe seo, tabhair cuairt ar %{url} agus cliceáil ar "Díoliostáil". + confirmations: + confirm: + heading: Féach sna ríomhphoist! + introduction_1: Tá ríomhphost chun é a dheimhniú seolta chugat againn. + introduction_2: Deimhnigh do chuntas trí chliceáil ar an nasc sa ríomhphost + agus beidh tú in ann tosú ar léirscáiliú a dhéanamh. + button: Deimhnigh + success: Deimhníodh do chuntas, go raibh maith agat as clárú! + already active: Deimhníodh an cuntas seo cheana féin. + unknown token: Tá an cód deimhniúcháin seo imithe in éag, é sin nó níl sé ann. + confirm_resend: + failure: Níor aimsíodh an t-úsáideoir %{name}. + confirm_email: + button: Deimhnigh + success: Deimhníodh an t-athrú ar an seoladh ríomhphoist! messages: inbox: title: Bosca isteach my_inbox: Mo Bhosca Isteach - outbox: bosca amach messages: Tá %{new_messages} agus %{old_messages} agat. new_messages: one: '%{count} theachtaireacht amháin' @@ -1195,9 +1209,6 @@ ga: body: Ár leithscéil, níl teachtaireacht ann a bhfuil an ID sin aici. outbox: title: Bosca amach - my_inbox_html: Mo %{inbox_link} - inbox: bhosca isteach - outbox: bhosca amach messages: one: Tá %{count} teachtaireacht seolta amháin agat other: Tá %{count} teachtaireacht seolta agat @@ -1231,6 +1242,82 @@ ga: as_unread: Teachtaireacht marcáilte mar neamhléite destroy: destroyed: Teachtaireacht scriosta + passwords: + lost_password: + title: Focal faire caillte + heading: Focal Faire Caillte? + email address: 'Seoladh ríomhphoist:' + new password button: Athshocraigh an focal faire + help_text: Iontráil an seoladh ríomhphoist a d'úsáid tú le clárú, agus seolfaimid + nasc chugat a bheidh tú in ann a úsáid chun do phasfhocal a athshocrú. + notice email on way: Is oth linn gur chaill tú é :-( ach tá ríomhphost ar an + mbealach chugat le go mbeidh tú in ann é a athshocrú go luath. + notice email cannot find: Níorbh fhéidir an seoladh ríomhphoist sin a aimsiú, + ár leithscéil faoi sin. + reset_password: + title: Focal faire a athshocrú + heading: Focal Faire le haghaidh %{user} a Athshocrú + reset: Athshocraigh an Focal Faire + flash changed: Athraíodh d'fhocal faire. + flash token bad: Níor aimsíodh an ceadchomhartha sin, seiceáil an bhfuil an + URL cruinn? + sessions: + new: + title: Logáil isteach + heading: Logáil isteach + email or username: 'Seoladh Ríomhphoist nó Ainm Úsáideora:' + password: 'Focal Faire:' + openid_html: '%{logo} OpenID:' + remember: Cuimhnigh orm + lost password link: Focal faire caillte agat? + login_button: Logáil isteach + register now: Cláraigh anois + with username: 'Má tá cuntas OpenStreetMap agat cheana féin logáil isteach leis + an ainm úsáideora agus pasfhocal atá agat:' + with external: 'Nó, bain úsáid as tríú páirtí le logáil isteach:' + new to osm: Nua ar OpenStreetMap? + to make changes: Chun athruithe a dhéanamh ar shonraí OpenStreetMap, ní mór + duit cuntas a bheith agat. + create account minute: Is féidir cuntas a chruthú, ní thógfaidh sé ach nóiméad + ort. + no account: Níl cuntas agat? + account is suspended: Ár leithscéal, cuireadh do chuntas ar fionraí i ngeall + ar ghníomhaíocht amhrasach.
    Téigh i dteagmháil leis an riarthóir + gréasáin más mian leat é seo a phlé. + auth failure: Ár leithscéil, níorbh fhéidir logáil isteach leis na sonraí sin. + openid_logo_alt: Logáil isteach le OpenID + auth_providers: + openid: + title: Logáil isteach le OpenID + alt: Logáil isteach le URL OpenID + google: + title: Logáil isteach le Google + alt: Logáil isteach le OpenID Google + facebook: + title: Logáil isteach le Facebook + alt: Logáil isteach le Cuntas Facebook + windowslive: + title: Logáil isteach le Windows Live + alt: Logáil isteach le Cuntas Windows Live + github: + title: Logáil isteach le GitHub + alt: Logáil isteach le Cuntas GitHub + wikipedia: + title: Logáil isteach le Vicipéid + alt: Logáil isteach le Cuntas Vicipéid + yahoo: + title: Logáil isteach le Yahoo + alt: Logáil isteach le OpenID Yahoo + wordpress: + title: Logáil isteach le Wordpress + alt: Logáil isteach le OpenID Wordpress + aol: + title: Logáil isteach le AOL + alt: Logáil isteach le OpenID AOL + destroy: + title: Logáil amach + heading: Logáil amach as OpenStreetMap + logout_button: Logáil amach site: about: next: Ar aghaidh @@ -1530,23 +1617,6 @@ ga: bicycle_shop: Siopa rothar bicycle_parking: Páirceáil do rothair toilets: Leithreas - richtext_area: - edit: Cuir in eagar - preview: Réamhamharc - markdown_help: - title_html: Parsáilte le Markdown - headings: Ceannteidil - heading: Ceannteideal - subheading: Fotheideal - unordered: Liosta gan ord - ordered: Liosta in ord - first: An chéad mhír - second: An dara mír - link: Nasc - text: Téacs - image: Íomhá - alt: Téacs malartach - url: URL welcome: title: Fáilte! introduction_html: Fáilte go OpenStreepMap, léarscáil den Domhan atá saor in @@ -1637,7 +1707,6 @@ ga: more: tuilleadh trace_details: Amharc ar Shonraí an Loirg view_map: Amharc ar an Léarscáil - edit: cuir in eagar edit_map: Cuir an Léarscáil in Eagar public: POIBLÍ identifiable: IN-AITHEANTA @@ -1645,7 +1714,6 @@ ga: trackable: INRIANAITHE by: ag in: in - map: léarscáil index: public_traces: Loirg GPS phoiblí my_traces: Mo loirg GPS @@ -1757,80 +1825,6 @@ ga: destroy: flash: Scriosadh clárú an chliant-fheidhmchláir users: - login: - title: Logáil isteach - heading: Logáil isteach - email or username: 'Seoladh Ríomhphoist nó Ainm Úsáideora:' - password: 'Focal Faire:' - openid_html: '%{logo} OpenID:' - remember: Cuimhnigh orm - lost password link: Focal faire caillte agat? - login_button: Logáil isteach - register now: Cláraigh anois - with username: 'Má tá cuntas OpenStreetMap agat cheana féin logáil isteach leis - an ainm úsáideora agus pasfhocal atá agat:' - with external: 'Nó, bain úsáid as tríú páirtí le logáil isteach:' - new to osm: Nua ar OpenStreetMap? - to make changes: Chun athruithe a dhéanamh ar shonraí OpenStreetMap, ní mór - duit cuntas a bheith agat. - create account minute: Is féidir cuntas a chruthú, ní thógfaidh sé ach nóiméad - ort. - no account: Níl cuntas agat? - account is suspended: Ár leithscéal, cuireadh do chuntas ar fionraí i ngeall - ar ghníomhaíocht amhrasach.
    Téigh i dteagmháil leis an riarthóir - gréasáin más mian leat é seo a phlé. - auth failure: Ár leithscéil, níorbh fhéidir logáil isteach leis na sonraí sin. - openid_logo_alt: Logáil isteach le OpenID - auth_providers: - openid: - title: Logáil isteach le OpenID - alt: Logáil isteach le URL OpenID - google: - title: Logáil isteach le Google - alt: Logáil isteach le OpenID Google - facebook: - title: Logáil isteach le Facebook - alt: Logáil isteach le Cuntas Facebook - windowslive: - title: Logáil isteach le Windows Live - alt: Logáil isteach le Cuntas Windows Live - github: - title: Logáil isteach le GitHub - alt: Logáil isteach le Cuntas GitHub - wikipedia: - title: Logáil isteach le Vicipéid - alt: Logáil isteach le Cuntas Vicipéid - yahoo: - title: Logáil isteach le Yahoo - alt: Logáil isteach le OpenID Yahoo - wordpress: - title: Logáil isteach le Wordpress - alt: Logáil isteach le OpenID Wordpress - aol: - title: Logáil isteach le AOL - alt: Logáil isteach le OpenID AOL - logout: - title: Logáil amach - heading: Logáil amach as OpenStreetMap - logout_button: Logáil amach - lost_password: - title: Focal faire caillte - heading: Focal Faire Caillte? - email address: 'Seoladh ríomhphoist:' - new password button: Athshocraigh an focal faire - help_text: Iontráil an seoladh ríomhphoist a d'úsáid tú le clárú, agus seolfaimid - nasc chugat a bheidh tú in ann a úsáid chun do phasfhocal a athshocrú. - notice email on way: Is oth linn gur chaill tú é :-( ach tá ríomhphost ar an - mbealach chugat le go mbeidh tú in ann é a athshocrú go luath. - notice email cannot find: Níorbh fhéidir an seoladh ríomhphoist sin a aimsiú, - ár leithscéil faoi sin. - reset_password: - title: Focal faire a athshocrú - heading: Focal Faire le haghaidh %{user} a Athshocrú - reset: Athshocraigh an Focal Faire - flash changed: Athraíodh d'fhocal faire. - flash token bad: Níor aimsíodh an ceadchomhartha sin, seiceáil an bhfuil an - URL cruinn? new: title: Clárú no_auto_account_create: Ar an drochuair ní féidir linn cuntas a chruthú duit @@ -1939,20 +1933,6 @@ ga: image size hint: (íomhá chearnógach atá 100x100 ar a laghad is fearr) home location: 'Suíomh Baile:' save changes button: Sábháil na hAthruithe - confirm: - heading: Féach sna ríomhphoist! - introduction_1: Tá ríomhphost chun é a dheimhniú seolta chugat againn. - introduction_2: Deimhnigh do chuntas trí chliceáil ar an nasc sa ríomhphost - agus beidh tú in ann tosú ar léirscáiliú a dhéanamh. - button: Deimhnigh - success: Deimhníodh do chuntas, go raibh maith agat as clárú! - already active: Deimhníodh an cuntas seo cheana féin. - unknown token: Tá an cód deimhniúcháin seo imithe in éag, é sin nó níl sé ann. - confirm_resend: - failure: Níor aimsíodh an t-úsáideoir %{name}. - confirm_email: - button: Deimhnigh - success: Deimhníodh an t-athrú ar an seoladh ríomhphoist! index: title: Úsáideoirí heading: Úsáideoirí diff --git a/config/locales/gcf.yml b/config/locales/gcf.yml index 0fb248fbf..b6f10ac54 100644 --- a/config/locales/gcf.yml +++ b/config/locales/gcf.yml @@ -70,6 +70,29 @@ gcf: donate: Ba OpenStreetMap on Fòs, %{link} Pou fè matériel la vansé. make_a_donation: text: Ba OpenStreetMap On Fòs + confirmations: + confirm: + heading: Konfirmé kont a itilizatè la + press confirm button: Apiyé asi bouton la ki an ba pou konfirmé kont aw aktif + menm. + button: Konfirmé + confirm_email: + heading: Konfirmé chanjman a adres imél aw + press confirm button: Apiyé asi bouton la ki an ba pou konfirmé nouvo adres + imél aw. + button: Konfirmé + passwords: + lost_password: + heading: Ou pèd kòd aw? + email address: 'Adres imél aw :' + new password button: Voyé on nouvo kòd + sessions: + new: + heading: Konekté + email or username: 'Adres imél ouben nom itilizaté aw :' + password: 'Kòd aw:' + lost password link: Ou pèd kòd aw? + login_button: Konektéw site: index: js_1: Ou ka sèvi èvè on navigatè ki pa ka sipòté Javascript ouben Javascript @@ -90,16 +113,6 @@ gcf: where_am_i: Ki moun an yé? submit_text: Voyé users: - login: - heading: Konekté - email or username: 'Adres imél ouben nom itilizaté aw :' - password: 'Kòd aw:' - lost password link: Ou pèd kòd aw? - login_button: Konektéw - lost_password: - heading: Ou pèd kòd aw? - email address: 'Adres imél aw :' - new password button: Voyé on nouvo kòd new: no_auto_account_create: Malérezman, alè kilé, nou pé pa ouvè kont automatikman. contact_webmaster_html: Kontakté mèt web la pou y @@ -154,16 +167,6 @@ gcf: flash update success confirm needed: Enfowmasion asi itilisatè la bien anrèjistré. Gadé bwet imél aw pou konfirmé adres nouvo imél aw flash update success: Efowmasion asi itilisatè la bien anrejistré. - confirm: - heading: Konfirmé kont a itilizatè la - press confirm button: Apiyé asi bouton la ki an ba pou konfirmé kont aw aktif - menm. - button: Konfirmé - confirm_email: - heading: Konfirmé chanjman a adres imél aw - press confirm button: Apiyé asi bouton la ki an ba pou konfirmé nouvo adres - imél aw. - button: Konfirmé set_home: flash success: La ou ka rété la bien anrèjistré go_public: diff --git a/config/locales/gd.yml b/config/locales/gd.yml index 26a264161..bb91ca880 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -1063,11 +1063,39 @@ gd: partial_changeset_with_comment: leis a' bheachd '%{changeset_comment}' partial_changeset_without_comment: gun bheachd details: Gheibh thu barrachd fiosrachaidh air an seata atharraichean air %{url}. + confirmations: + confirm: + heading: Thoir sùil air a' phost-d agad! + introduction_1: Chuir sinn post-d dearbhaidh thugad. + introduction_2: Dearbhaich an cunntas agad 's tu a' briogadh air a' cheangal + sa post-d agus 's urrainn dhut tòiseachadh air an obair-mhapa. + press confirm button: Brùth air a' phutan "Dearbhaich" gu h-ìosal gus an cunntas + agad a ghnìomhachadh. + button: Dearbhaich + success: Chaidh an cunntas agad a dhearbhadh, mòran taing airson clàradh! + already active: Chaidh an cunntas seo a dhearbhadh mar-thà. + unknown token: Dh'fhalbh an ùine air a' chòd dearbhaidh seo no chan eil e ann. + reconfirm_html: Briog an-seo ma tha thu airson 's + gun cuir sinn post-d dearbhaidh dhut a-rithist. + confirm_resend: + success_html: Chuir sinn teachdaireachd dearbhaidh ùr gu %{email} agus 's urrainn + dhut tòiseachadh air an obair-mhapa nuair a bhios tu air an cunntas agad a + dhearbhadh.

    Ma chleachdas tu siostam an aghaidh spama a chuireas + iarrtasan dearbhaidh, dèan cinnteach gun cuir thu %{sender} air a gheal-liosta + air sgàth 's nach urrainn dhuinn freagairt ri iarrtas dearbhaidh sam bith. + failure: Cha deach an cleachdaiche %{name} a lorg. + confirm_email: + heading: Dearbhaich atharrachadh an t-seòlaidh puist-d + press confirm button: Brùth air a' phutan "Dearbhaich" gu h-ìosal gus an seòladh + puist-d ùr agad a dhearbhadh. + button: Dearbhaich + success: Chaidh an t-atharrachadh air an t-seòladh puist-d agad a dhearbhadh! + failure: Chaidh seòladh puist-d aig a bheil an tòcan seo a dhearbhadh mar-thà. + unknown_token: Dh'fhalbh an ùine air a' chòd dearbhaidh seo no chan eil e ann. messages: inbox: title: Am bogsa a-steach my_inbox: Am bogsa a-steach agam - outbox: am bogsa a-mach messages: Tha %{new_messages} agus %{old_messages} agad new_messages: other: '%{count} teachdaireachd ùr' @@ -1100,9 +1128,6 @@ gd: body: Duilich ach chan eil teachdaireachd air a bheil an id seo ann. outbox: title: Am bogsa a-mach - my_inbox_html: '%{inbox_link} agam' - inbox: am bogsa a-steach - outbox: am bogsa a-mach messages: other: Tha %{count} teachdaireachd chuirte agad to: Gu @@ -1134,6 +1159,85 @@ gd: as_unread: Chuir thu comharra nach deach an teachdaireachd a leughadh destroy: destroyed: Chaidh an teachdaireachd a sguabadh às + passwords: + lost_password: + title: Facal-faire air chall + heading: Na chaill thu am facal-faire agad? + email address: 'Seòladh puist-d:' + new password button: Ath-shuidhich am facal-faire + help_text: Cuir a-steach an seòladh puist-d a chleachd thu gus an cunntas agad + a chlàradh agus cuiridh sinn post-d dha as urrainn dhut cleachdadh gus am + facal-faire agad ath-shuidheachadh. + notice email on way: Tha sinn duilich gun do chaill thu e :-( ach tha post-d + gu bhith tighinn thugad ach an urrainn dhut ath-shuidheachadh a dh'aithghearr. + notice email cannot find: Duilich ach cha do rinn sinn lorg air an t-seòladh + puist-d ud. + reset_password: + title: Ath-shuidhich am facal-faire + heading: Ath-shuidhich am facal-faire aig %{user} + reset: Ath-shuidhich am facal-faire + flash changed: Chaidh am facal-faire agad atharrachadh. + flash token bad: Cha do rinn sinn lorg air an tòcan ud, an toir thu sùil air + an URL? + sessions: + new: + title: Clàraich a-steach + heading: Clàraich a-steach + email or username: 'Seòladh puist-d no ainm-cleachdaiche:' + password: 'Facal-faire:' + openid_html: 'OpenID %{logo}:' + remember: Cuimhnich orm + lost password link: Na chaill thu am facal-faire agad? + login_button: Clàraich a-steach + register now: Clàraich an-dràsta + with username: 'A bheil cunntas OpenStreetMap agad mar-thà? Clàraich a-steach + leis an ainm-chleachdaiche ''s an fhacal-fhaire agad:' + with external: 'No cleachd treas-phàrtaidh airson clàradh a-steach:' + new to osm: A bheil OpenStreetMap ùr dhut? + to make changes: Feumaidh cunntas a bhith agad mus atharraich thu dàta OpenStreetMap. + create account minute: Cruthaich cunntas. Chan doir e ach mionaid. + no account: Nach eil cunntas agad? + account not active: Duilich ach chan eil an cunntas agad gnìomhach fhathast.
    Cleachd an ceangal ann am post-d dearbhadh a' chunntais gus an cunntas agad + a ghnìomhachadh no iarr post-d dearbhaidh ùr. + account is suspended: Duilich ach chaidh an cunntas agad a chur à rèim ri linn + gnìomhachd amharasach.
    Cuir fios gun mhaighstir-lìn + nam bu toil leat bruidhinn mu dhèidhinn. + auth failure: Duilich ach chan urrainn dhuinn do clàradh a-steach leis an fiosrachadh + seo. + openid_logo_alt: Clàraich a-steach le OpenID + auth_providers: + openid: + title: Clàraich a-steach le OpenID + alt: Clàraich a-steach le URL OpenID + google: + title: Clàraich a-steach le Google + alt: Clàraich a-steach le OpenID Google + facebook: + title: Clàraich a-steach le Facebook + alt: Clàraich a-steach le cunntas Facebook + windowslive: + title: Clàraich a-steach le Windows Live + alt: Clàraich a-steach le cunntas Windows Live + github: + title: Clàraich a-steach le GitHub + alt: Clàraich a-steach le cunntas GitHub + wikipedia: + title: Clàraich a-steach leis an Uicipeid + alt: Clàraich a-steach le cunntas na h-Uicipeid + yahoo: + title: Clàraich a-steach le Yahoo + alt: Clàraich a-steach le OpenID Yahoo + wordpress: + title: Clàraich a-steach le Wordpress + alt: Clàraich a-steach le OpenID Wordpress + aol: + title: Clàraich a-steach le AOL + alt: Clàraich a-steach le OpenID AOL + destroy: + title: Clàraich a-mach + heading: Clàraich a-mach à OpenStreetMap + logout_button: Clàraich a-mach site: about: next: Air adhart @@ -1488,23 +1592,6 @@ gd: bicycle_shop: Bùth bhaidhseagalan bicycle_parking: Pàirceadh bhaidhseagalan toilets: Taighean-beaga - richtext_area: - edit: Deasaich - preview: Ro-sheall - markdown_help: - title_html: '''Ga pharsadh le Markdown' - headings: Ceann-sgrìobhaidhean - heading: Ceann-sgrìobhadh - subheading: Fo-cheann-sgrìobhadh - unordered: Liosa gun seòrsachadh - ordered: Liosta le seòrsachadh - first: A' chiad nì - second: An dàrna nì - link: Ceangal - text: Teacsa - image: Dealbh - alt: Teacsa eile - url: URL welcome: title: Fàilte! introduction_html: Fàilte gu OpenStreetMap, mapa saor an t-saoghail a ghabhas @@ -1607,7 +1694,6 @@ gd: more: barrachd trace_details: Seall mion-fhiosrachadh an lorgaidh view_map: Seall am mapa - edit: deasaich edit_map: Deasaich am mapa public: POBLACH identifiable: GABHAIDH AITHNEACHADH @@ -1615,7 +1701,6 @@ gd: trackable: GABHAIDH LORGADH by: le in: 'an-seo:' - map: mapa index: public_traces: Lorgaidhean GPS poblach public_traces_from: Lorgaidhean GPS poblach o %{user} @@ -1728,83 +1813,6 @@ gd: destroy: flash: Chaidh clàradh na h-aplacaid cliant a mhilleadh users: - login: - title: Clàraich a-steach - heading: Clàraich a-steach - email or username: 'Seòladh puist-d no ainm-cleachdaiche:' - password: 'Facal-faire:' - openid_html: 'OpenID %{logo}:' - remember: Cuimhnich orm - lost password link: Na chaill thu am facal-faire agad? - login_button: Clàraich a-steach - register now: Clàraich an-dràsta - with username: 'A bheil cunntas OpenStreetMap agad mar-thà? Clàraich a-steach - leis an ainm-chleachdaiche ''s an fhacal-fhaire agad:' - with external: 'No cleachd treas-phàrtaidh airson clàradh a-steach:' - new to osm: A bheil OpenStreetMap ùr dhut? - to make changes: Feumaidh cunntas a bhith agad mus atharraich thu dàta OpenStreetMap. - create account minute: Cruthaich cunntas. Chan doir e ach mionaid. - no account: Nach eil cunntas agad? - account not active: Duilich ach chan eil an cunntas agad gnìomhach fhathast.
    Cleachd an ceangal ann am post-d dearbhadh a' chunntais gus an cunntas agad - a ghnìomhachadh no iarr post-d dearbhaidh ùr. - account is suspended: Duilich ach chaidh an cunntas agad a chur à rèim ri linn - gnìomhachd amharasach.
    Cuir fios gun mhaighstir-lìn - nam bu toil leat bruidhinn mu dhèidhinn. - auth failure: Duilich ach chan urrainn dhuinn do clàradh a-steach leis an fiosrachadh - seo. - openid_logo_alt: Clàraich a-steach le OpenID - auth_providers: - openid: - title: Clàraich a-steach le OpenID - alt: Clàraich a-steach le URL OpenID - google: - title: Clàraich a-steach le Google - alt: Clàraich a-steach le OpenID Google - facebook: - title: Clàraich a-steach le Facebook - alt: Clàraich a-steach le cunntas Facebook - windowslive: - title: Clàraich a-steach le Windows Live - alt: Clàraich a-steach le cunntas Windows Live - github: - title: Clàraich a-steach le GitHub - alt: Clàraich a-steach le cunntas GitHub - wikipedia: - title: Clàraich a-steach leis an Uicipeid - alt: Clàraich a-steach le cunntas na h-Uicipeid - yahoo: - title: Clàraich a-steach le Yahoo - alt: Clàraich a-steach le OpenID Yahoo - wordpress: - title: Clàraich a-steach le Wordpress - alt: Clàraich a-steach le OpenID Wordpress - aol: - title: Clàraich a-steach le AOL - alt: Clàraich a-steach le OpenID AOL - logout: - title: Clàraich a-mach - heading: Clàraich a-mach à OpenStreetMap - logout_button: Clàraich a-mach - lost_password: - title: Facal-faire air chall - heading: Na chaill thu am facal-faire agad? - email address: 'Seòladh puist-d:' - new password button: Ath-shuidhich am facal-faire - help_text: Cuir a-steach an seòladh puist-d a chleachd thu gus an cunntas agad - a chlàradh agus cuiridh sinn post-d dha as urrainn dhut cleachdadh gus am - facal-faire agad ath-shuidheachadh. - notice email on way: Tha sinn duilich gun do chaill thu e :-( ach tha post-d - gu bhith tighinn thugad ach an urrainn dhut ath-shuidheachadh a dh'aithghearr. - notice email cannot find: Duilich ach cha do rinn sinn lorg air an t-seòladh - puist-d ud. - reset_password: - title: Ath-shuidhich am facal-faire - heading: Ath-shuidhich am facal-faire aig %{user} - reset: Ath-shuidhich am facal-faire - flash changed: Chaidh am facal-faire agad atharrachadh. - flash token bad: Cha do rinn sinn lorg air an tòcan ud, an toir thu sùil air - an URL? new: title: Clàraich no_auto_account_create: Gu mì-fhortanach, can urrainn dhuinn cunntas a chruthachadh @@ -1985,34 +1993,6 @@ gd: gu soirbheachail. Thoir sùil air a' phost-d agad gus an seòladh puist-d ùr agad a dhearbhadh. flash update success: Chaidh fiosrachadh a' chleachdaiche ùrachadh gu soirbheachail. - confirm: - heading: Thoir sùil air a' phost-d agad! - introduction_1: Chuir sinn post-d dearbhaidh thugad. - introduction_2: Dearbhaich an cunntas agad 's tu a' briogadh air a' cheangal - sa post-d agus 's urrainn dhut tòiseachadh air an obair-mhapa. - press confirm button: Brùth air a' phutan "Dearbhaich" gu h-ìosal gus an cunntas - agad a ghnìomhachadh. - button: Dearbhaich - success: Chaidh an cunntas agad a dhearbhadh, mòran taing airson clàradh! - already active: Chaidh an cunntas seo a dhearbhadh mar-thà. - unknown token: Dh'fhalbh an ùine air a' chòd dearbhaidh seo no chan eil e ann. - reconfirm_html: Briog an-seo ma tha thu airson 's - gun cuir sinn post-d dearbhaidh dhut a-rithist. - confirm_resend: - success_html: Chuir sinn teachdaireachd dearbhaidh ùr gu %{email} agus 's urrainn - dhut tòiseachadh air an obair-mhapa nuair a bhios tu air an cunntas agad a - dhearbhadh.

    Ma chleachdas tu siostam an aghaidh spama a chuireas - iarrtasan dearbhaidh, dèan cinnteach gun cuir thu %{sender} air a gheal-liosta - air sgàth 's nach urrainn dhuinn freagairt ri iarrtas dearbhaidh sam bith. - failure: Cha deach an cleachdaiche %{name} a lorg. - confirm_email: - heading: Dearbhaich atharrachadh an t-seòlaidh puist-d - press confirm button: Brùth air a' phutan "Dearbhaich" gu h-ìosal gus an seòladh - puist-d ùr agad a dhearbhadh. - button: Dearbhaich - success: Chaidh an t-atharrachadh air an t-seòladh puist-d agad a dhearbhadh! - failure: Chaidh seòladh puist-d aig a bheil an tòcan seo a dhearbhadh mar-thà. - unknown_token: Dh'fhalbh an ùine air a' chòd dearbhaidh seo no chan eil e ann. set_home: flash success: Chaidh far a bheil thu a' fuireach a shàbhaladh gu soirbheachail. go_public: diff --git a/config/locales/gl.yml b/config/locales/gl.yml index bf6a8f804..3478fbdc8 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1003,6 +1003,7 @@ gl: cape: Cabo cave_entrance: Entrada de cova cliff: Cantil + coastline: Litoral crater: Cráter dune: Duna fell: Brañal @@ -1590,11 +1591,38 @@ gl: olla %{url} e preme en "darse de baixa". unsubscribe_html: Para darse de baixa das actualizacións deste conxunto de modificacións, olla %{url} e preme en "darse de baixa". + confirmations: + confirm: + heading: Comproba o teu correo! + introduction_1: Enviámoslle un correo electrónico de confirmación. + introduction_2: Confirma a túa conta premendo na ligazón do correo electrónico + e poderás comezar a traballar nos mapas. + press confirm button: Preme sobre o botón de confirmación que aparece deseguido + para activar a túa conta. + button: Confirmar + success: Confirmouse a túa conta. Grazas por se rexistrar! + already active: Esta conta xa se confirmou. + unknown token: Ese código de confirmación caducou ou non existe. + reconfirm_html: Se quere que reenviemos o correo electrónico de confirmación, + prema aquí. + confirm_resend: + success_html: Procura unha nota de confirmación que che enviamos a %{email} + e comezarás a crear mapas decontado.

    Se empregas un sistema de + bloqueo de spam, asegúrate de incluír %{sender} na túa listaxe branca para + poder completar o proceso sen problemas. + failure: Non se atopou o usuario "%{name}". + confirm_email: + heading: Confirmar a modificación do enderezo de correo electrónico + press confirm button: Preme sobre o botón de confirmación que aparece deseguido + para confirmar o teu novo enderezo de correo electrónico. + button: Confirmar + success: Confirmámosche a modificación do enderezo de correo electrónico! + failure: Xa se confirmou un enderezo de correo electrónico con este pase. + unknown_token: Ese código de confirmación caducou ou non existe. messages: inbox: title: Caixa de entrada my_inbox: A miña caixa de entrada - outbox: caixa de saída messages: Ten %{new_messages} e %{old_messages} new_messages: one: '%{count} mensaxe nova' @@ -1629,9 +1657,6 @@ gl: body: Non hai ningunha mensaxe con esa ID. outbox: title: Caixa de saída - my_inbox_html: A miña %{inbox_link} - inbox: caixa de entrada - outbox: caixa de saída messages: one: Enviaches %{count} mensaxe other: Enviaches %{count} mensaxes @@ -1664,6 +1689,84 @@ gl: as_unread: Mensaxe marcada coma non lida destroy: destroyed: Mensaxe eliminada + passwords: + lost_password: + title: Contrasinal perdido + heading: Esqueceu o contrasinal? + email address: 'Enderezo de correo electrónico:' + new password button: Restabelecer o contrasinal + help_text: Escribe o enderezo de correo electrónico que empregaches para se + rexistrar. Enviarémosche unha ligazón que poderás empregar para restabelecer + o teu contrasinal. + notice email on way: Por desgraza perdeuno, pero hai en camiño unha mensaxe + de correo electrónico ca que o poderá restabelecelo axiña. + notice email cannot find: Non se puido atopar o enderezo de correo electrónico. + reset_password: + title: Restabelecer o contrasinal + heading: Restabelecer o contrasinal de %{user} + reset: Restabelecer o contrasinal + flash changed: Mudouse o teu contrasinal. + flash token bad: Non se atopou o pase. Quizabes tería que comprobar o enderezo + URL. + sessions: + new: + title: Rexistrarse + heading: Rexistro + email or username: 'Enderezo de correo electrónico ou nome de usuario:' + password: 'Contrasinal:' + openid_html: '%{logo} OpenID:' + remember: Lembrádeme + lost password link: Perdeches o teu contrasinal? + login_button: Iniciar a sesión + register now: Rexístrese agora + with username: 'Xa tes unha conta no OpenStreetMap? Accede ó sistema co teu + nome de usuario e contrasinal:' + with external: 'Ou ben, emprega un servizo de terceiros para acceder:' + new to osm: É novo no OpenStreetMap? + to make changes: Para facer as modificacións nos datos do OpenStreetMap, cómpre + ter unha conta. + create account minute: Crear unha conta. Tan só cústache un minuto. + no account: Non está rexistrado? + account not active: Sentímolo, a súa conta aínda non está activada.
    Prema + na ligazón que hai no correo de confirmación da conta ou solicite + un novo correo de confirmación. + account is suspended: Sentímolo, a túa conta foi suspendida debido a actividades + sospeitosas.
    Ponte en contacto co webmaster + se desexas debatelo. + auth failure: Sentímolo, non puido acceder ó sistema con eses datos. + openid_logo_alt: Acceder ó sistema cun OpenID + auth_providers: + openid: + title: Iniciar a sesión co OpenID + alt: Acceder ó sistema cun URL OpenID + google: + title: Acceder ó sistema co Google + alt: Acceder ó sistema cun OpenID de Google + facebook: + title: Iniciar a sesión co Facebook + alt: Iniciar a sesión cunha conta do Facebook + windowslive: + title: Iniciar a sesión co Windows Live + alt: Iniciar a sesión cunha conta do Windows Live + github: + title: Iniciar a sesión co GitHub + alt: Acceder cunha conta do GitHub + wikipedia: + title: Iniciar a sesión ca Wikipedia + alt: Iniciar a sesión cunha conta da Wikipedia + yahoo: + title: Iniciar a sesión co Yahoo + alt: Acceder ó sistema cun OpenID do Yahoo + wordpress: + title: Iniciar a sesión co Wordpress + alt: Acceder ó sistema cun OpenID do Wordpress + aol: + title: Iniciar a sesión co AOL + alt: Acceder ó sistema cun OpenID do AOL + destroy: + title: Pechar a sesión + heading: Saír do OpenStreetMap + logout_button: Pechar a sesión shared: markdown_help: title_html: Analizado co kramdown @@ -2087,23 +2190,6 @@ gl: bicycle_shop: Tenda de bicicletas bicycle_parking: Aparcadoiro de bicicletas toilets: Servizos - richtext_area: - edit: Editar - preview: Vista previa - markdown_help: - title_html: Analizado co kramdown - headings: Cabeceiras - heading: Cabeceira - subheading: Subcabeceira - unordered: Listaxe sen ordear - ordered: Listaxe ordeada - first: Primeiro elemento - second: Segundo elemento - link: Ligazón - text: Texto - image: Imaxe - alt: Texto alternativo - url: URL welcome: title: Reciba a nosa benvida! introduction_html: Dámoslle a benvida ó OpenStreetMap, o mapa do mundo libre @@ -2223,7 +2309,6 @@ gl: more: máis trace_details: Ollar os detalles da pista view_map: Ollar o mapa - edit: editar edit_map: Editar o mapa public: PÚBLICO identifiable: IDENTIFICÁBEL @@ -2231,7 +2316,6 @@ gl: trackable: RASTREXÁBEL by: por in: en - map: mapa index: public_traces: Pistas GPS públicas my_traces: As miñas pistas GPS @@ -2344,82 +2428,6 @@ gl: destroy: flash: Destruíu o rexistro da aplicación de cliente users: - login: - title: Rexistrarse - heading: Rexistro - email or username: 'Enderezo de correo electrónico ou nome de usuario:' - password: 'Contrasinal:' - openid_html: '%{logo} OpenID:' - remember: Lembrádeme - lost password link: Perdeches o teu contrasinal? - login_button: Iniciar a sesión - register now: Rexístrese agora - with username: 'Xa tes unha conta no OpenStreetMap? Accede ó sistema co teu - nome de usuario e contrasinal:' - with external: 'Ou ben, emprega un servizo de terceiros para acceder:' - new to osm: É novo no OpenStreetMap? - to make changes: Para facer as modificacións nos datos do OpenStreetMap, cómpre - ter unha conta. - create account minute: Crear unha conta. Tan só cústache un minuto. - no account: Non está rexistrado? - account not active: Sentímolo, a súa conta aínda non está activada.
    Prema - na ligazón que hai no correo de confirmación da conta ou solicite - un novo correo de confirmación. - account is suspended: Sentímolo, a túa conta foi suspendida debido a actividades - sospeitosas.
    Ponte en contacto co webmaster - se desexas debatelo. - auth failure: Sentímolo, non puido acceder ó sistema con eses datos. - openid_logo_alt: Acceder ó sistema cun OpenID - auth_providers: - openid: - title: Iniciar a sesión co OpenID - alt: Acceder ó sistema cun URL OpenID - google: - title: Acceder ó sistema co Google - alt: Acceder ó sistema cun OpenID de Google - facebook: - title: Iniciar a sesión co Facebook - alt: Iniciar a sesión cunha conta do Facebook - windowslive: - title: Iniciar a sesión co Windows Live - alt: Iniciar a sesión cunha conta do Windows Live - github: - title: Iniciar a sesión co GitHub - alt: Acceder cunha conta do GitHub - wikipedia: - title: Iniciar a sesión ca Wikipedia - alt: Iniciar a sesión cunha conta da Wikipedia - yahoo: - title: Iniciar a sesión co Yahoo - alt: Acceder ó sistema cun OpenID do Yahoo - wordpress: - title: Iniciar a sesión co Wordpress - alt: Acceder ó sistema cun OpenID do Wordpress - aol: - title: Iniciar a sesión co AOL - alt: Acceder ó sistema cun OpenID do AOL - logout: - title: Pechar a sesión - heading: Saír do OpenStreetMap - logout_button: Pechar a sesión - lost_password: - title: Contrasinal perdido - heading: Esqueceu o contrasinal? - email address: 'Enderezo de correo electrónico:' - new password button: Restabelecer o contrasinal - help_text: Escribe o enderezo de correo electrónico que empregaches para se - rexistrar. Enviarémosche unha ligazón que poderás empregar para restabelecer - o teu contrasinal. - notice email on way: Por desgraza perdeuno, pero hai en camiño unha mensaxe - de correo electrónico ca que o poderá restabelecelo axiña. - notice email cannot find: Non se puido atopar o enderezo de correo electrónico. - reset_password: - title: Restabelecer o contrasinal - heading: Restabelecer o contrasinal de %{user} - reset: Restabelecer o contrasinal - flash changed: Mudouse o teu contrasinal. - flash token bad: Non se atopou o pase. Quizabes tería que comprobar o enderezo - URL. new: title: Rexistrarse no_auto_account_create: Por desgraza, arestora non podemos crear unha conta @@ -2609,33 +2617,6 @@ gl: correcto. Procura no teu correo electrónico unha mensaxe para confirmar o teu novo enderezo. flash update success: Información de usuario actualizada correctamente. - confirm: - heading: Comproba o teu correo! - introduction_1: Enviámoslle un correo electrónico de confirmación. - introduction_2: Confirma a túa conta premendo na ligazón do correo electrónico - e poderás comezar a traballar nos mapas. - press confirm button: Preme sobre o botón de confirmación que aparece deseguido - para activar a túa conta. - button: Confirmar - success: Confirmouse a túa conta. Grazas por se rexistrar! - already active: Esta conta xa se confirmou. - unknown token: Ese código de confirmación caducou ou non existe. - reconfirm_html: Se quere que reenviemos o correo electrónico de confirmación, - prema aquí. - confirm_resend: - success_html: Procura unha nota de confirmación que che enviamos a %{email} - e comezarás a crear mapas decontado.

    Se empregas un sistema de - bloqueo de spam, asegúrate de incluír %{sender} na túa listaxe branca para - poder completar o proceso sen problemas. - failure: Non se atopou o usuario "%{name}". - confirm_email: - heading: Confirmar a modificación do enderezo de correo electrónico - press confirm button: Preme sobre o botón de confirmación que aparece deseguido - para confirmar o teu novo enderezo de correo electrónico. - button: Confirmar - success: Confirmámosche a modificación do enderezo de correo electrónico! - failure: Xa se confirmou un enderezo de correo electrónico con este pase. - unknown_token: Ese código de confirmación caducou ou non existe. set_home: flash success: Gardouse o domicilio go_public: diff --git a/config/locales/gsw.yml b/config/locales/gsw.yml index 77b821add..823700190 100644 --- a/config/locales/gsw.yml +++ b/config/locales/gsw.yml @@ -183,6 +183,21 @@ gsw: success: '%{name} isch jetz Dyy Frynd.' failed: Excusez, %{name} het nit as Frynd chenne zuegfiegt wäre. already_a_friend: Du bisch scho ne Frynd vu %{name}. + confirmations: + confirm_email: + heading: Änderig vu dr E-Mail-Adräss bstetige + press confirm button: Druck unte uf dr „Bstetige“-Chnopf go Dyy nej E-Mail-Adräss + bstetige. + button: Bstetige + success: Dyy E-Mail-Adräss isch bstetigt wore, dankschen fir s Regischtriere! + failure: E E-Mail-Adräss isch scho mit däm Link bstetigt wore. + passwords: + reset_password: + title: Passwort zrucksetze + heading: Passwort fir %{user} zrucksetze + reset: Passwort zrucksetze + flash changed: Dyy Passwort isch gänderet wore. + flash token bad: Mir hän des Chirzel leider nit chenne finde. Iberprief d URL. traces: visibility: private: Privat (nume as anonymi, nit sortierti Pinkt ohni Zytstämpfel aazeigt) @@ -233,13 +248,11 @@ gsw: more: meh trace_details: Track-Einzelheite aaluege view_map: Charten aazeige - edit: bearbeite edit_map: Charte bearbeite public: EFFETLI private: PRIVAT by: vu in: in - map: Charte index: public_traces: Effetligi GPS-Track public_traces_from: Effetligi GPS-Track vu %{user} @@ -250,22 +263,9 @@ gsw: make_public: made_public: Track, wu vereffetligt isch users: - reset_password: - title: Passwort zrucksetze - heading: Passwort fir %{user} zrucksetze - reset: Passwort zrucksetze - flash changed: Dyy Passwort isch gänderet wore. - flash token bad: Mir hän des Chirzel leider nit chenne finde. Iberprief d URL. popup: your location: Dyy Standort nearby mapper: Mapper in dr Nechi - confirm_email: - heading: Änderig vu dr E-Mail-Adräss bstetige - press confirm button: Druck unte uf dr „Bstetige“-Chnopf go Dyy nej E-Mail-Adräss - bstetige. - button: Bstetige - success: Dyy E-Mail-Adräss isch bstetigt wore, dankschen fir s Regischtriere! - failure: E E-Mail-Adräss isch scho mit däm Link bstetigt wore. go_public: flash success: Alli Dyyni Bearbeitige sion jetz effetlig, un Du derfsch jetz Bearbeitige mache. diff --git a/config/locales/he.yml b/config/locales/he.yml index 018f417a4..8e4dcc1b4 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -1029,12 +1029,14 @@ he: mountain_pass: "yes": מעבר הרים natural: + atoll: אטול bare_rock: סלע חשוף bay: מפרץ beach: חוף cape: כף cave_entrance: כניסה למערה cliff: מצוק + coastline: קו חוף crater: מכתש dune: דיונה fell: ערבה אלפינית @@ -1052,6 +1054,7 @@ he: moor: ערבה גבוהה mud: בוץ peak: פסגה + peninsula: חצי אי point: נקודה reef: שונית ridge: רכס @@ -1099,6 +1102,7 @@ he: "yes": משרד place: allotments: חלקות גינון + archipelago: ארכיפלג city: עיר city_block: בלוק בעיר country: ארץ @@ -1604,11 +1608,38 @@ he: %{url} וללחוץ על „ביטול מינוי”. unsubscribe_html: כדי לבטל את המעקב אחרי עדכוני מערכת השינויים הזאת, נא לבקר בכתובת %{url} וללחוץ על „ביטול מינוי”. + confirmations: + confirm: + heading: אימות חשבון משתמש + introduction_1: שלחנו לך מכתב אימות. + introduction_2: נא לאמת את החשבון שלך באמצעות לחיצה על קישור בדוא"ל, ואחרי זה + תהיה לך אפשרות להתחיל למפות. + press confirm button: נא ללחוץ על כפתור האישור כדי להפעיל את חשבונך. + button: אישור + success: חשבונך אושר, תודה שנרשמת! + already active: החשבון הזה כבר אושר. + unknown token: נראה שקוד האישור הזה פג או שאינו קיים. + reconfirm_html: אם ברצונך לקבל שוב מכתב אימות, נא ללחוץ + כאן. + confirm_resend: + success_html: שלחנו הודעת אישור חדש לכתובת %{email} ומרגע אישור חשבונך, אפשר + יהיה להתחיל למפות.

    אם בדואר האלקטרוני שלך מופעלת מערכת נגד דואר + זהל אשר שולחת בקשות אישור, נא להוסיף את %{sender} לרשימה הלבנה, מאחר ואיננו + יכולים להשיב לבקשות אישור כלשהן. + failure: משתמש %{name} לא נמצא. + confirm_email: + heading: אישור שינוי כתובת הדוא״ל + press confirm button: נא ללחוץ על כפתור האישור להלן כדי לאשר את כתובת הדוא״ל + החדשה. + button: אישור + success: שינוי כתובת הדוא״ל שלך אושר! + failure: כתובת הדוא״ל שלך כבר אושרה באסימון הזה. + unknown_token: קוד האישור פג או אינו קיים. messages: inbox: title: תיבת דואר נכנס my_inbox: תיבת הדואר הנכנס שלי - outbox: תיבת דואר יוצא + my_outbox: תיבת הדואר היוצא שלי messages: יש לך %{new_messages} ועוד %{old_messages} new_messages: one: הודעה חדשה אחת @@ -1641,9 +1672,8 @@ he: body: אנו מצטערים, אין הודעה עם מזהה זה. outbox: title: תיבת דואר יוצא - my_inbox_html: '%{inbox_link} שלי' - inbox: תיבת הדואר הנכנס - outbox: תיבת הדואר היוצא + my_inbox: תיבת הדואר הנכנס שלי + my_outbox: תיבת הדואר היוצא שלי messages: one: יש לך הודעה אחת שנשלחה other: יש לך %{count} הודעות שנשלחו @@ -1674,6 +1704,79 @@ he: as_unread: ההודעה סומנה כהודעה שלא נקראה destroy: destroyed: ההודעה נמחקה + passwords: + lost_password: + title: הסיסמה הלכה לאיבוד + heading: שכחת סיסמה? + email address: 'כתובת דוא״ל:' + new password button: נא לשלוח לי סיסמה חדשה + help_text: נא להזין את כתובת הדוא״ל שהשתמשת בה כדי להירשם. אנו נשלח אליה קישור + שאפשר להשתמש בו כדי לאפס את סיסמתך. + notice email on way: אנו מצטערים לשמוע שאיבדת אותה :-( אבל נשלח לדואר האלקטרוני + שלך מכתב שבאמצעותו אפשר לאפס אותה. + notice email cannot find: סליחה, הכתובת הזאת לא נמצאה. + reset_password: + title: איפוס סיסמה + heading: איפוס הסיסמה עבור %{user} + reset: איפוס הסיסמה + flash changed: סיסמתך שונתה. + flash token bad: לא מצאנו את האסימון ההוא, אולי בדיקת הכתובת תעזור? + sessions: + new: + title: כניסה + heading: כניסה + email or username: 'כתובת דואר אלקטרוני או שם משתמש:' + password: 'סיסמה:' + openid_html: '%{logo} OpenID:' + remember: לזכור אותי + lost password link: איבדת את הסיסמה שלך? + login_button: כניסה + register now: להירשם עכשיו + with username: 'כבר יש לך חשבון OpenStreetMap? נא להיכנס עם שם משתמש וסיסמה:' + with external: 'לחלופין, השתמשו בצד שלישי כדי להיכנס:' + new to osm: הגעת עכשיו ב־OpenStreetMap? + to make changes: כדי לשנות את נתוני OpenStreetMap, צריך שיהיה לך חשבון. + create account minute: נא ליצור חשבון. זה לוקח רק דקה. + no account: אין לך חשבון? + account not active: סליחה, החשבון הזה עדיין אינו פעיל.
    נא להשתמש בקישור + במכתב אישור החשבון כדי להפעיל את חשבונך או or לבקש + מכתב אישור חדש. + account is suspended: סליחה, החשבון הזה הושעה בעקבות פעילות חשודה.
    נא ליצור + קשר עם מנהל האתר אם ברצונך לדון בזה. + auth failure: סליחה, לא ניתן להיכנס עם הפרטים האלה. + openid_logo_alt: כניסה עם OpenID + auth_providers: + openid: + title: כניסה עם OpenID + alt: כניסה עם URL של OpenID + google: + title: כניסה עם גוגל + alt: כניסה עם OpenID של גוגל + facebook: + title: כניסה עם פייסבוק + alt: כניסה עם חשבון פייסבוק + windowslive: + title: כניסה עם Windows Live + alt: כניסה עם חשבון Windows Live + github: + title: כניסה באמצעות GitHub + alt: כניסה עם חשבון GitHub + wikipedia: + title: כניסה עם ויקיפדיה + alt: כניסה עם חשבון ויקיפדיה + yahoo: + title: כניסה עם יאהו + alt: כניסה עם OpenID של יאהו + wordpress: + title: כניסה עם וורדפרס + alt: כניסה עם OpenID של וורדפרס + aol: + title: כניסה עם AOL + alt: כניסה עם OpenID של AOL + destroy: + title: יציאה + heading: יציאה מ־OpenStreetMap + logout_button: יציאה shared: markdown_help: title_html: פוענח בעזרת kramdown @@ -2075,23 +2178,6 @@ he: bicycle_shop: חנות אופניים bicycle_parking: חניית אופניים toilets: שירותים - richtext_area: - edit: עריכה - preview: תצוגה מקדימה - markdown_help: - title_html: פוענח בעזרת kramdown - headings: כותרות - heading: כותרת - subheading: כותרת משנה - unordered: רשימה בלתי־ממוינת - ordered: רשימה ממוינת - first: הפריט הראשון - second: הפריט השני - link: קישור - text: טקסט - image: תמונה - alt: טקסט חלופי - url: כתובת welcome: title: ברוך בואך! introduction_html: ברוך בואך ל־OpenStreetMap, מפה חופשית של העולם, שאפשר לערוך. @@ -2200,7 +2286,6 @@ he: more: עוד trace_details: הצגת פרטי מסלול view_map: הצגת מפה - edit: עריכה edit_map: עריכת מפה public: ציבורי identifiable: בר זיהוי @@ -2208,7 +2293,6 @@ he: trackable: בר מעקב by: מאת in: ב - map: מפה index: public_traces: מסלולי GPS ציבוריים my_traces: הקלטות ה־GPS שלי @@ -2318,77 +2402,6 @@ he: destroy: flash: רישום יישום הלקוח נהרס users: - login: - title: כניסה - heading: כניסה - email or username: 'כתובת דואר אלקטרוני או שם משתמש:' - password: 'סיסמה:' - openid_html: '%{logo} OpenID:' - remember: לזכור אותי - lost password link: איבדת את הסיסמה שלך? - login_button: כניסה - register now: להירשם עכשיו - with username: 'כבר יש לך חשבון OpenStreetMap? נא להיכנס עם שם משתמש וסיסמה:' - with external: 'לחלופין, השתמשו בצד שלישי כדי להיכנס:' - new to osm: הגעת עכשיו ב־OpenStreetMap? - to make changes: כדי לשנות את נתוני OpenStreetMap, צריך שיהיה לך חשבון. - create account minute: נא ליצור חשבון. זה לוקח רק דקה. - no account: אין לך חשבון? - account not active: סליחה, החשבון הזה עדיין אינו פעיל.
    נא להשתמש בקישור - במכתב אישור החשבון כדי להפעיל את חשבונך או or לבקש - מכתב אישור חדש. - account is suspended: סליחה, החשבון הזה הושעה בעקבות פעילות חשודה.
    נא ליצור - קשר עם מנהל האתר אם ברצונך לדון בזה. - auth failure: סליחה, לא ניתן להיכנס עם הפרטים האלה. - openid_logo_alt: כניסה עם OpenID - auth_providers: - openid: - title: כניסה עם OpenID - alt: כניסה עם URL של OpenID - google: - title: כניסה עם גוגל - alt: כניסה עם OpenID של גוגל - facebook: - title: כניסה עם פייסבוק - alt: כניסה עם חשבון פייסבוק - windowslive: - title: כניסה עם Windows Live - alt: כניסה עם חשבון Windows Live - github: - title: כניסה באמצעות GitHub - alt: כניסה עם חשבון GitHub - wikipedia: - title: כניסה עם ויקיפדיה - alt: כניסה עם חשבון ויקיפדיה - yahoo: - title: כניסה עם יאהו - alt: כניסה עם OpenID של יאהו - wordpress: - title: כניסה עם וורדפרס - alt: כניסה עם OpenID של וורדפרס - aol: - title: כניסה עם AOL - alt: כניסה עם OpenID של AOL - logout: - title: יציאה - heading: יציאה מ־OpenStreetMap - logout_button: יציאה - lost_password: - title: הסיסמה הלכה לאיבוד - heading: שכחת סיסמה? - email address: 'כתובת דוא״ל:' - new password button: נא לשלוח לי סיסמה חדשה - help_text: נא להזין את כתובת הדוא״ל שהשתמשת בה כדי להירשם. אנו נשלח אליה קישור - שאפשר להשתמש בו כדי לאפס את סיסמתך. - notice email on way: אנו מצטערים לשמוע שאיבדת אותה :-( אבל נשלח לדואר האלקטרוני - שלך מכתב שבאמצעותו אפשר לאפס אותה. - notice email cannot find: סליחה, הכתובת הזאת לא נמצאה. - reset_password: - title: איפוס סיסמה - heading: איפוס הסיסמה עבור %{user} - reset: איפוס הסיסמה - flash changed: סיסמתך שונתה. - flash token bad: לא מצאנו את האסימון ההוא, אולי בדיקת הכתובת תעזור? new: title: הרשמה no_auto_account_create: למרבה הצער, כעת איננו יכולים ליצור לך חשבון באופן אוטומטי. @@ -2568,32 +2581,6 @@ he: flash update success confirm needed: מידע על המשתמש עודכן בהצלחה. נא לבדוק את תיבת הדוא"ל כדי לאמת את הדוא"ל החדש. flash update success: פרטי המשתמש עודכנו בהצלחה. - confirm: - heading: אימות חשבון משתמש - introduction_1: שלחנו לך מכתב אימות. - introduction_2: נא לאמת את החשבון שלך באמצעות לחיצה על קישור בדוא"ל, ואחרי זה - תהיה לך אפשרות להתחיל למפות. - press confirm button: נא ללחוץ על כפתור האישור כדי להפעיל את חשבונך. - button: אישור - success: חשבונך אושר, תודה שנרשמת! - already active: החשבון הזה כבר אושר. - unknown token: נראה שקוד האישור הזה פג או שאינו קיים. - reconfirm_html: אם ברצונך לקבל שוב מכתב אימות, נא ללחוץ - כאן. - confirm_resend: - success_html: שלחנו הודעת אישור חדש לכתובת %{email} ומרגע אישור חשבונך, אפשר - יהיה להתחיל למפות.

    אם בדואר האלקטרוני שלך מופעלת מערכת נגד דואר - זהל אשר שולחת בקשות אישור, נא להוסיף את %{sender} לרשימה הלבנה, מאחר ואיננו - יכולים להשיב לבקשות אישור כלשהן. - failure: משתמש %{name} לא נמצא. - confirm_email: - heading: אישור שינוי כתובת הדוא״ל - press confirm button: נא ללחוץ על כפתור האישור להלן כדי לאשר את כתובת הדוא״ל - החדשה. - button: אישור - success: שינוי כתובת הדוא״ל שלך אושר! - failure: כתובת הדוא״ל שלך כבר אושרה באסימון הזה. - unknown_token: קוד האישור פג או אינו קיים. set_home: flash success: מיקום ראשי נשמר בהצלחה go_public: diff --git a/config/locales/hi.yml b/config/locales/hi.yml index c025da550..bc16c203c 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -913,6 +913,12 @@ hi: destroy_button: खात्मा destroy: destroyed: संदेश खात्मा + passwords: + lost_password: + title: lost password + new password button: Send me a new password + reset_password: + title: reset password site: about: partners_title: हमारे साथी @@ -985,11 +991,6 @@ hi: show: key: उपभोक्ता कुंजी users: - lost_password: - title: lost password - new password button: Send me a new password - reset_password: - title: reset password show: my friends: मेरे मित्र account: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index f16a18b8c..cc3be967e 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -272,7 +272,7 @@ hr: comment: Komentari (%{count}) hidden_commented_by_html: Komentar skriven od %{user} u %{when} - commented_by_html: Komentirao/la %{user} u %{when} + commented_by_html: Komentirao/la %{user} %{when} changesetxml: XLM Set promjena osmchangexml: osmChange XML feed: @@ -802,6 +802,7 @@ hr: cape: Rt cave_entrance: Pećina (ulaz) cliff: Litica + coastline: Obala crater: Krater dune: Dina fell: Brdo @@ -1113,11 +1114,31 @@ hr: your_note: '%{commenter} je reaktivirao jednu od tvojih bilješki blizu %{place}.' commented_note: '%{commenter} je reaktivirao bilješku koju si komentirao/la. Ta je bilješka u blizini %{place}.' + confirmations: + confirm: + heading: Provjeri svoj email! + introduction_1: Poslali smo ti potvrdni email. + press confirm button: Pritisni potvrdi da bi aktivirali svoj korisnički račun. + button: Potvrdi + success: Tvoj račun je potvrđen , hvala na uključenju! + already active: Ovaj račun je već potvrđen. + unknown token: Taj potvrdni kôd je istekao ili ne postoji. + confirm_resend: + success_html: Poslali smo novu potvrdu na email %{email}, a čim potvrdiš svoj + račun, moći ćeš početi kartirati.

    Ako koristiš antispam sustav + koji šalje potvrdu zahtjeva, molim te da provjeriš je li %{sender} na tzv. + "whitelisti", jer nismo u mogućnosti odgovarati na potvrde zahtjeva. + failure: Korisnik %{name} nije pronađen. + confirm_email: + heading: Potvrdi promjenu email adrese. + press confirm button: Pritsni potvrdno dugme ispod i potvrdi novu email adresu. + button: Potvrdi + success: Promjena email adrese je potvrđena! + failure: Email adresa je već potvrđena s ovim token-om. messages: inbox: title: Dolazna pošta my_inbox: Dolazna pošta - outbox: odlazna pošta messages: Imate %{new_messages} i %{old_messages} new_messages: one: '%{count} nova poruka' @@ -1152,9 +1173,6 @@ hr: body: Nažalost nema poruka s tim id. outbox: title: Odlazna pošta - my_inbox_html: ' %{inbox_link}' - inbox: dolazna pošta - outbox: odlazna pošta messages: one: Imate %{count} poslanu poruku other: Imate %{count} poslane poruke @@ -1188,6 +1206,77 @@ hr: as_unread: Poruka označena nepročitanom destroy: destroyed: Poruka obrisana + passwords: + lost_password: + title: Izgubljena zaporka + heading: Zaboravljena zaporka? + email address: 'Email adresa:' + new password button: Reset lozinke + help_text: Unesite email adresu koju ste koristili za otvaranje računa i poslati + ćemo vam poveznicu kojom možete resetirati zaporku. + notice email on way: Žao mi je što ste je izgubili :-( ali email je na putu + tako da je možete resetirati uskoro. + notice email cannot find: Ne mogu pronaći email adresu. + reset_password: + title: Reset lozinke + heading: Reset lozinke za %{user} + reset: Reset lozinke + flash changed: Vaša lozinka je promjenjena. + flash token bad: Nije pronađen takav token, provjeri URL? + sessions: + new: + title: Prijava + heading: 'Prijava:' + email or username: 'Email adresa ili korisničko ime:' + password: 'Lozinka:' + openid_html: '%{logo} OpenID:' + remember: Zapamti me + lost password link: Izgubljena zaporka? + login_button: Prijava + register now: Registrirajte se sada + with external: 'Ili koristite drugi servis za prijavljivanje:' + new to osm: Novi na OpenStreetMap? + to make changes: Da bi napravili izmjene na OpenStreetMap podacima, morate imati + korisnički račun. + create account minute: Otvorite korisnički račun. To traje samo minutu. + no account: Nemate račun? + account not active: Žao nam je, Vaš korisnički račun još nije aktivan.
    + Molimo vas da koristite link u e-pošti potvrde da biste aktivirali svoj račun, + ili zatražiti novu e-poštu potvrde . + auth failure: Žao mi je, ne mogu prijaviti s ovim detaljima. + openid_logo_alt: Prijavi se sa OpenID-om + auth_providers: + openid: + title: Prijavi se sa OpenID-om + alt: Prijavi se sa URL-om OpenID-a + google: + title: Prijavi se sa Google-om + alt: Prijavi se sa Google-ovim OpenID-om + facebook: + title: Prijavi se sa Facebook-om + alt: Prijavi se sa računom Facebook-a + windowslive: + title: Prijavi se sa Windows Live-om + alt: Prijavi se sa računom Windows Live-a + github: + title: Prijavi se sa Github-om + alt: Prijavi se sa računom Github-a + wikipedia: + title: Prijavi se preko Wikipedije + alt: Prijavi se s Wikipedijinim računom + yahoo: + title: Prijavi se sa Yahoo-om + alt: Prijavi se sa Yahoo-ovim OpenID-om + wordpress: + title: Prijavi se sa Wordpressom + alt: Prijavi se sa Wordpressovim OpenID-om + aol: + title: Prijavi se sa AOL-om + alt: Prijavi se sa AOL-ovim OpenID-om + destroy: + title: Odjava + heading: Odjava iz OpenStreetMap + logout_button: Odjava site: about: next: Dalje @@ -1431,14 +1520,6 @@ hr: bicycle_shop: Biciklistička prodavaonica bicycle_parking: Parkiralište za bicikle toilets: Zahodi - richtext_area: - edit: Uredi - markdown_help: - link: Poveznica - text: Tekst - image: Slika - alt: Alternativni tekst - url: URL welcome: title: Dobrodošli! whats_on_the_map: @@ -1516,7 +1597,6 @@ hr: more: više trace_details: Vidi detalje traga view_map: Prikaži kartu - edit: uredi edit_map: Uredi kartu public: JAVNI identifiable: IDENTIFICIRAJUĆI @@ -1524,7 +1604,6 @@ hr: trackable: TRACKABLE by: od in: u - map: karta index: public_traces: Javni GNSS tragovi my_traces: Moji GNSS tragovi @@ -1611,75 +1690,6 @@ hr: destroy: flash: Uništena registracija klijent aplikacije users: - login: - title: Prijava - heading: 'Prijava:' - email or username: 'Email adresa ili korisničko ime:' - password: 'Lozinka:' - openid_html: '%{logo} OpenID:' - remember: 'Zapamti me:' - lost password link: Izgubljena zaporka? - login_button: Prijava - register now: Registrirajte se sada - with external: 'Ili koristite drugi servis za prijavljivanje:' - new to osm: Novi na OpenStreetMap? - to make changes: Da bi napravili izmjene na OpenStreetMap podacima, morate imati - korisnički račun. - create account minute: Otvorite korisnički račun. To traje samo minutu. - no account: Nemate račun? - account not active: Žao nam je, Vaš korisnički račun još nije aktivan.
    - Molimo vas da koristite link u e-pošti potvrde da biste aktivirali svoj račun, - ili zatražiti novu e-poštu potvrde . - auth failure: Žao mi je, ne mogu prijaviti s ovim detaljima. - openid_logo_alt: Prijavi se sa OpenID-om - auth_providers: - openid: - title: Prijavi se sa OpenID-om - alt: Prijavi se sa URL-om OpenID-a - google: - title: Prijavi se sa Google-om - alt: Prijavi se sa Google-ovim OpenID-om - facebook: - title: Prijavi se sa Facebook-om - alt: Prijavi se sa računom Facebook-a - windowslive: - title: Prijavi se sa Windows Live-om - alt: Prijavi se sa računom Windows Live-a - github: - title: Prijavi se sa Github-om - alt: Prijavi se sa računom Github-a - wikipedia: - title: Prijavi se preko Wikipedije - alt: Prijavi se s Wikipedijinim računom - yahoo: - title: Prijavi se sa Yahoo-om - alt: Prijavi se sa Yahoo-ovim OpenID-om - wordpress: - title: Prijavi se sa Wordpressom - alt: Prijavi se sa Wordpressovim OpenID-om - aol: - title: Prijavi se sa AOL-om - alt: Prijavi se sa AOL-ovim OpenID-om - logout: - title: Odjava - heading: Odjava iz OpenStreetMap - logout_button: Odjava - lost_password: - title: Izgubljena zaporka - heading: Zaboravljena zaporka? - email address: 'Email adresa:' - new password button: Reset lozinke - help_text: Unesite email adresu koju ste koristili za otvaranje računa i poslati - ćemo vam poveznicu kojom možete resetirati zaporku. - notice email on way: Žao mi je što ste je izgubili :-( ali email je na putu - tako da je možete resetirati uskoro. - notice email cannot find: Ne mogu pronaći email adresu. - reset_password: - title: Reset lozinke - heading: Reset lozinke za %{user} - reset: Reset lozinke - flash changed: Vaša lozinka je promjenjena. - flash token bad: Nije pronađen takav token, provjeri URL? new: title: Otvori račun no_auto_account_create: Nažalost nismo u mogućnosti automatski otvarati korisničke @@ -1841,26 +1851,6 @@ hr: flash update success confirm needed: Korisničke informacije su uspješno ažurirane. Provjeri email za poruku potvrde nove email adrese. flash update success: Korisničke informacije su uspješno ažurirane. - confirm: - heading: Provjeri svoj email! - introduction_1: Poslali smo ti potvrdni email. - press confirm button: Pritisni potvrdi da bi aktivirali svoj korisnički račun. - button: Potvrdi - success: Tvoj račun je potvrđen , hvala na uključenju! - already active: Ovaj račun je već potvrđen. - unknown token: Taj potvrdni kôd je istekao ili ne postoji. - confirm_resend: - success_html: Poslali smo novu potvrdu na email %{email}, a čim potvrdiš svoj - račun, moći ćeš početi kartirati.

    Ako koristiš antispam sustav - koji šalje potvrdu zahtjeva, molim te da provjeriš je li %{sender} na tzv. - "whitelisti", jer nismo u mogućnosti odgovarati na potvrde zahtjeva. - failure: Korisnik %{name} nije pronađen. - confirm_email: - heading: Potvrdi promjenu email adrese. - press confirm button: Pritsni potvrdno dugme ispod i potvrdi novu email adresu. - button: Potvrdi - success: Promjena email adrese je potvrđena! - failure: Email adresa je već potvrđena s ovim token-om. set_home: flash success: Lokacija doma uspješno snimljena. go_public: diff --git a/config/locales/hsb.yml b/config/locales/hsb.yml index 7099f8c5d..a224cf732 100644 --- a/config/locales/hsb.yml +++ b/config/locales/hsb.yml @@ -11,6 +11,8 @@ hsb: formats: friendly: '%e. %B %Y %H:%M' helpers: + file: + prompt: Dataju wubrać submit: diary_comment: create: Składować @@ -23,7 +25,7 @@ hsb: create: Pósłać client_application: create: Registrować - update: Wobdźěłać + update: Aktualizować redaction: create: Redakciju wutworić update: Redakciju składować @@ -46,6 +48,7 @@ hsb: diary_comment: Dźenikowy komentar diary_entry: Dźenikowy zapisk friend: Přećel + issue: Problem language: Rěč message: Powěsć node: Suk @@ -62,6 +65,7 @@ hsb: relation: Relacija relation_member: Relaciski čłon relation_tag: Relaciski atribut + report: Rozprawa session: Posedźenje trace: Ćěr tracepoint: Ćěrjowy dypk @@ -74,8 +78,17 @@ hsb: way_tag: Pućny atribut attributes: client_application: + name: Mjeno (trěbne) + url: URL hłowneje aplikacije (trěbna) callback_url: URL wróćowołanja support_url: URL podpěry + allow_read_prefs: twoje wužiwarske nastajenja wučitać + allow_write_prefs: twoje wužiwarske nastajenja změnić. + allow_write_diary: dźenikowe zapiski a komentary spisać a přećelow namakać + allow_write_api: kartu wobdźěłać + allow_read_gpx: twoje priwatne GPS-ćěrje čitać. + allow_write_gpx: GPS-ćěrje nahrawać + allow_write_notes: noticy wobdźěłać diary_comment: body: Tekst diary_entry: @@ -90,34 +103,41 @@ hsb: trace: user: Wužiwar visible: Widźomny - name: Mjeno + name: Datajowe mjeno size: Wulkosć latitude: Šěrokostnik longitude: Dołhostnik public: Zjawny description: Wopisanje gpx_file: 'GPX-dataju nahrać:' - visibility: 'Widźomnosć:' - tagstring: 'Atributy:' + visibility: Widźomnosć + tagstring: Tagy message: sender: Wotpósłar title: Tema body: Tekst recipient: Přijimowar redaction: + title: Titul description: Wopisanje report: + category: Wubjer přičinu za twoju rozprawu details: Prošu zapodaj wjace podrobnosćow k tutomu problemej (trěbne). user: + auth_provider: Poskićowar awtentifikacije + auth_uid: UID awtentifikacije email: E-mejl - new_email: 'Nowa e-mejlowa adresa:' + email_confirmation: Wobkrućenje mejlki + new_email: Nowa mejlowa adresa active: Aktiwny display_name: Wužiwarske mjeno - description: Wopisanje - home_lat: 'Šěrokostnik:' - home_lon: 'Dołhostnik:' - languages: Rěče + description: Profilowy wopis + home_lat: Šěrina + home_lon: Dołhota + languages: Preferowane rěče + preferred_editor: Preferowany editor pass_crypt: Hesło + pass_crypt_confirmation: Hesło wobkrućić help: trace: tagstring: přez komu dźěleny @@ -168,6 +188,14 @@ hsb: remote: name: Dalokowodźenje description: Dalokowodźenje (JOSM abo Merkaartor) + auth: + providers: + openid: OpenID + google: Google + facebook: Facebook + windowslive: Windows Live + github: GitHub + wikipedia: Wikipedija api: notes: comment: @@ -256,6 +284,7 @@ hsb: entry_html: Relacija %{relation_name} entry_role_html: Relacija %{relation_name} (jako %{relation_role}) not_found: + title: Njenamakane sorry: 'Wodaj, %{type} #%{id} njebu namakany.' type: node: suk @@ -324,7 +353,7 @@ hsb: next: Přichodna » previous: « Předchadna changeset: - anonymous: Anonymny + anonymous: Anonymnje no_edits: (žane změny) view_changeset_details: Podrobnosće sadźby změnow pokazać changesets: @@ -362,8 +391,8 @@ hsb: new: title: Nowy zapisk do dźenika form: - location: 'Městno:' - use_map_link: kartu wužiwać + location: Městno + use_map_link: Kartu wužiwać index: title: Wužiwarske dźeniki title_friends: Dźeniki přećelow @@ -372,6 +401,7 @@ hsb: in_language_title: Dźenikowe zapiski w rěči %{language} new: Nowy zapisk do dźenika new_title: Nowy zapisk do twojeho wužiwarskeho dźenika pisać + my_diary: Mój dźenik no_entries: Žane zapiski w dźeniku recent_entries: Najnowše zapiski w dźeniku older_entries: Starše zapiski @@ -393,7 +423,7 @@ hsb: diary_entry: posted_by_html: Spisany wot %{link_user} dnja %{created} w rěči %{language_link} comment_link: Komentar k tutomu zapiskej - reply_link: Na tutón zapisk wotmołwić + reply_link: Awtorej powěsć pósłać comment_count: few: '%{count} komentary' one: Jedyn komentar @@ -404,11 +434,13 @@ hsb: hide_link: Tutón zapisk schować unhide_link: Tutón zapisk zaso pokazać confirm: Wobkrućić + report: Tutón zapisk zdźělić diary_comment: comment_from_html: Komentar wot %{link_user} spisany dnja %{comment_created_at} hide_link: Tutón komentar schować unhide_link: Tutón komentar zaso pokazać confirm: Wobkrućić + report: Tutón komentar zdźělić location: location: 'Městno:' view: Pokazać @@ -521,6 +553,7 @@ hsb: marketplace: torhošćo monastery: klóšter motorcycle_parking: parkowanišćo za motorske + music_school: hudźbna šula nightclub: nócny klub nursing_home: starownja parking: parkowanišćo @@ -533,6 +566,7 @@ hsb: post_office: póštowy zarjad prison: jastwo pub: korčma + public_bath: zjawna kupjel public_building: zjawne twarjenje recycling: přijimarnja starowiznow restaurant: hosćenc @@ -560,6 +594,7 @@ hsb: census: mjeza ludličenskeho wobwoda national_park: nacionalny park protected_area: škitane pasmo + "yes": hranica bridge: aqueduct: akwedukt boardwalk: přibrjóžna promenada @@ -568,27 +603,55 @@ hsb: viaduct: wiadukt "yes": móst building: - apartments: Bydlenski blok + apartment: bydlenje + apartments: wjaceswójbny dom + barn: bróžnja + bungalow: bungalow + cabin: chata chapel: Kapałka - church: Cyrkej + church: cyrkwinske twarjenje + civic: zjawne twarjenje + college: wysokošulske twarjenje commercial: Wobchodniske twarjenje + construction: twarjenje w konstrukciji dormitory: Studentski internat farm: Hospodarske twarjenje garage: Garaža + garages: garaže + greenhouse: rostlinarnja + hangar: hangar hospital: Chorownja - hotel: Hotel + hotel: hotelowe twarjenje house: Dom + houseboat: bydlenski čołm + hut: chěžka industrial: Industrijowe twarjenje + kindergarten: pěstowarske twarjenje + manufacture: fabrikowe twarjenje office: Běrowowe twarjenje public: Zjawne twarjenje residential: Bydlenske twarjenje retail: Priwatne twarjenje + roof: třěcha + ruins: rozpadace twarjenje school: Šulske twarjenje + service: zawodne twarjenje + shed: kólnja + stable: hródź/konjenc + static_caravan: bydlenski wóz + temple: templowe twarjenje terrace: Terasa - train_station: Dwórnišćo + train_station: dwórnišćowe twarjenje university: Uniwersitne twarjenje + warehouse: skład "yes": twarjenje + club: + scout: skawtowe lěhwo + sport: sportowe towarstwo + "yes": towarstwo craft: + beekeper: pčołar + blacksmith: kowar brewery: piwarnja carpenter: ćěsla electrician: elektrikar @@ -596,8 +659,12 @@ hsb: painter: moler photographer: fotograf plumber: blachar + sawmill: rězak shoemaker: šewc + stonemason: kamjenjećesar tailor: krawc + window_construction: woknatwarc + winery: winicy "yes": rjemjeslniski wobchod emergency: ambulance_station: wuchowanska stacija @@ -665,14 +732,17 @@ hsb: house: dom manor: knježi dwór memorial: wopomnišćo + milestone: historiski milnik mine: podkopki mine_shaft: překop monument: pomnik + railway: historiska železniska čara roman_road: romska dróha ruins: rozpadanki stone: błudźenk tomb: row tower: wěža + wayside_chapel: přidróžna kapałka wayside_cross: swjaty křiž wayside_shrine: modlerski stołp wreck: wrak @@ -681,6 +751,7 @@ hsb: "yes": křižowanišćo landuse: allotments: zahrodki + aquaculture: akwakultura basin: basenk brownfield: lado cemetery: pohrjebnišćo @@ -700,9 +771,11 @@ hsb: military: wojerska kónčina mine: podkopki orchard: sadowa zahroda + plant_nursery: štomownja quarry: skała railway: železniski teren recreation_ground: wočerstwjenišćo + religious: nabožinski teritorij reservoir: zběranski basenk reservoir_watershed: wodowe přitočnišćo residential: sydlišćo @@ -714,6 +787,7 @@ hsb: beach_resort: mórske kupjele bird_hide: ptači schow common: gmejnski kraj + dance: rejowanska žurla dog_park: psyči park firepit: wohnišćo fishing: rybnišćo @@ -727,6 +801,7 @@ hsb: miniature_golf: minigolf nature_reserve: přirodoškitne pasmo park: park + picnic_table: piknikowe blido pitch: sportnišćo playground: hrajkanišćo recreation_ground: wočerstwjenišćo @@ -741,13 +816,21 @@ hsb: "yes": wólny čas man_made: adit: podkopk + advertising: wonkowne wabjenje + antenna: antena + avalanche_protection: škit před lawinami beacon: swětłownja + beam: hrjada beehive: kołć breakwater: přistawny nasyp bridge: móst bunker_silo: bunker + cairn: kamjentny mužik chimney: wuheń + clearcut: trjebjenje + communications_tower: škričkowy sćežor crane: kran + cross: křiž dyke: haćenje embankment: skłonina flagpole: chorhojowy sćežor @@ -763,11 +846,15 @@ hsb: pier: stołp pipeline: rołowód silo: silo + snow_cannon: sněhowa kanona + snow_fence: sněhowy płót storage_tank: składowanski tank surveillance: dohladowanje + telescope: teleskop tower: wěža wastewater_plant: wodočisćernja watermill: wodowy młyn + water_tap: wodowy honač water_tower: wodowa wěža water_well: studnja water_works: wodarnja @@ -778,6 +865,7 @@ hsb: airfield: wojerske lětanišćo barracks: kaserna bunker: bunker + checkpoint: kontrolny dypk "yes": wójsko mountain_pass: "yes": hórski přesmyk @@ -787,6 +875,7 @@ hsb: cape: kap cave_entrance: zachod prózdnjeńcy cliff: wuskała + coastline: Pobrjóžna linija crater: krater dune: nawěw fell: fjeld @@ -1018,6 +1107,7 @@ hsb: level4: krajna hranica level5: regionalna hranica level6: wokrjesna hranica + level7: gmejnska hranica level8: měšćanska hranica level9: hranica měšćanskeho dźěla level10: hranica štwórće @@ -1273,11 +1363,38 @@ hsb: details: Dalše podrobnosće wo sadźbje změnow namakaš na %{url}. unsubscribe: Zo by aktualizacije wo tutej sadźbje změnow wotskazał(a), wopytaj %{url} a klikń na „wotzjewić“ + confirmations: + confirm: + heading: Přepruwuj swoju e-mejl! + introduction_1: Smy ći wobkrućensku e-mejlku pósłali. + introduction_2: Wobkruć swoje konto kliknjo na wotkaz w e-mejlce a móžeš kartěrowanje + započeć. + press confirm button: Klikni deleka na wobkrućenske tłóčatko, zo by swoje konto + aktiwizował. + button: Wobkrućić + success: Twoje konto bu wobkrućene, dźakujemy so za registrowanje! + already active: Tute konto bu hižo wobkrućene. + unknown token: Wobkrućenski kod je spadnjeny abo njeeksistuje. + reconfirm_html: Jeli dyrbiš nam wobkrućensku e-mejlku znowa pósłać, klikń + tu. + confirm_resend: + success_html: Smy nowu wobkrućenski e-mejl na %{email} póslali a tak ruče hač + swoje konto wobkrućiš, móžeš kartěrowanje započeć.

    Jeli přećiwospamowy + system wužiwaš, kotryž wobkrućenske naprašowanja sćele, přewzmi adresu %{sender} + do swojeje běłeje lisćiny, dokelž njemóžemy na wobkrućenske naprašowanja wotmołwić. + failure: Wužiwar %{name} njenamakany. + confirm_email: + heading: Změnjenje e-mejloweje adresy wobkrućić + press confirm button: Klikń deleka na wobkrućenske tłóčatko, zo by swoju nowu + e-mejlowu adresu wobkrućił. + button: Wobkrućić + success: Změnjenje twojeje mejloweje adresy bu wobkrućena. + failure: E-mejlowa adresa je hižo z tutym kodom wobkrućena. + unknown_token: Wobkrućenski kod je spadnjeny abo njeeksistuje. messages: inbox: title: Póštowy kašćik my_inbox: Moja póšta - outbox: pósłane messages: Maš %{new_messages} a %{old_messages} new_messages: few: '%{count} nowe powěsće' @@ -1316,9 +1433,6 @@ hsb: body: Bohužel njeje powěsć z tutej ID. outbox: title: Pósłane - my_inbox_html: Moja %{inbox_link} - inbox: póšta - outbox: pósłane messages: few: Sy %{count} powěsće pósłał(a) one: Sy %{count} powěsć pósłał(a) @@ -1352,6 +1466,78 @@ hsb: as_unread: Powěsć jako njepřečitanu markěrowana destroy: destroyed: Powěsć wotstronjena + passwords: + lost_password: + title: Hesło zabyte + heading: Sy hesło zabył? + email address: 'E-mejlowa adresa:' + new password button: Hesło wróćo stajić + help_text: Zapódaj mejlowu adresu, kotruž sy za registrowanje wužił{{GENDER:||a|(a)}}, + pósćelemy wotkaz na nju, kotryž móžeš za wróćostajenje hesła wužić. + notice email on way: Sy jo zabył :-(, ale e-mejl je po puću, zo by móhł jo borze + wróćo stajić. + notice email cannot find: Wodaj, ale njemóžachmy tutu e-mejlowu adresu namakać. + reset_password: + title: Hesło wróćo stajić + heading: Hesło za wužiwarja %{user} wróćo stajić + reset: Hesło wróćo stajić + flash changed: Twoje hesło je so změniło. + flash token bad: Njemóžachmy tutón kod namakać, prošu přepruwuj URL. + sessions: + new: + title: Přizjewjenje + heading: Přizjewjenje + email or username: 'E-mejlowa adresa abo wužiwarske mjeno:' + password: 'Hesło:' + openid_html: '%{logo} OpenID:' + remember: 'Spomjatkować sej:' + lost password link: Swoje hesło zabył? + login_button: Přizjewjenje + register now: Nětko registrować + with username: 'Maš hižo konto pola OpenStreetMap? Prošu přizjew so z wužiwarskim + mjenom a hesłom:' + with external: 'Wužiwaj jako alternatiwu třećeho za přizjewjenje:' + new to osm: Nowy w OpenStreetMap? + to make changes: Zo by daty OpenStreetMap změnił, dyrbiš konto měć. + create account minute: Załož konto. Traje jenož chwilku. + no account: Nimaš žane konto? + account not active: Bohužel je twoje konto hišće aktiwne njeje.
    Prošu klikń + na wotkaz w e-mejlu kontoweho wubkrućenja, zo by swoje konto aktiwizował, + abo proš wo nowu wobkrućensku e-mejl. + account is suspended: Twoje konto bu bohužel podhladneje aktiwity dla wupowědźene.
    Stajće so prošu z webmasterom do zwiska, jeli + chceš wo tym diskutować. + auth failure: Bohužel přizjewjenje z tutymi podaćemi móžno njeje. + openid_logo_alt: Z OpenID přizjewić + auth_providers: + openid: + title: Přizjewjenje z OpenID + alt: Přizjewjenje z OpenID-URL + google: + title: Přizjewjenje z Google + alt: Přizjewjenje z Google OpenID + facebook: + title: Přizjewjenje z Facebook + alt: Přizjewjenje z facebookowym kontom + windowslive: + title: Přizjewjenje z Windows Live + alt: Přizjewjenje z kontom Windows Live + github: + title: Z GitHub přizjewić + alt: Z kontom GitHub přizjewić + yahoo: + title: Přizjewjenje z Yahoo + alt: Přizjewjenje z Yahoo OpenID + wordpress: + title: Přizjewjenje z Wordpress + alt: Přizjewjenje z Wordpress OpenID + aol: + title: Přizjewjenje z AOL + alt: Přizjewjenje z AOL OpenID + destroy: + title: Wotzjewić + heading: Z OpenStreetMap wotzjewić + logout_button: Wotzjewić site: about: next: Dale @@ -1684,24 +1870,6 @@ hsb: private: Priwatny přistup destination: Jenož za přidróžnych construction: Dróhi w twarje - richtext_area: - edit: Wobdźěłać - preview: Přehlad - markdown_help: - title_html: Z Markdown - analyzowany - headings: Nadpisy - heading: Nadpis - subheading: Podnapis - unordered: Naličenje - ordered: Čisłowana lisćina - first: Prěni element - second: Druhi element - link: Wotkaz - text: Tekst - image: Wobraz - alt: Alternatiwny tekst - url: URL welcome: title: Witaj! introduction_html: Witaj k OpenstreetMap, swobodnej a wobdźěłujomnej karće swěta. @@ -1807,7 +1975,6 @@ hsb: more: wjace trace_details: Podrobnosće ćěrje pokazać view_map: Kartu pokazać - edit: wobdźěłać edit_map: Kartu wobdźěłać public: ZJAWNY identifiable: IDENTIFIKUJOMNY @@ -1815,7 +1982,6 @@ hsb: trackable: SĆĚHUJOMNY by: wot in: w - map: karta index: public_traces: Zjawne GPS-ćěrje public_traces_from: Zjawne GPS-ćěrje wot %{user} @@ -1921,76 +2087,6 @@ hsb: destroy: flash: Registrowanje klientoweje aplikacije bu zničene users: - login: - title: Přizjewjenje - heading: Přizjewjenje - email or username: 'E-mejlowa adresa abo wužiwarske mjeno:' - password: 'Hesło:' - openid_html: '%{logo} OpenID:' - remember: 'Spomjatkować sej:' - lost password link: Swoje hesło zabył? - login_button: Přizjewjenje - register now: Nětko registrować - with username: 'Maš hižo konto pola OpenStreetMap? Prošu přizjew so z wužiwarskim - mjenom a hesłom:' - with external: 'Wužiwaj jako alternatiwu třećeho za přizjewjenje:' - new to osm: Nowy w OpenStreetMap? - to make changes: Zo by daty OpenStreetMap změnił, dyrbiš konto měć. - create account minute: Załož konto. Traje jenož chwilku. - no account: Nimaš žane konto? - account not active: Bohužel je twoje konto hišće aktiwne njeje.
    Prošu klikń - na wotkaz w e-mejlu kontoweho wubkrućenja, zo by swoje konto aktiwizował, - abo proš wo nowu wobkrućensku e-mejl. - account is suspended: Twoje konto bu bohužel podhladneje aktiwity dla wupowědźene.
    Stajće so prošu z webmasterom do zwiska, jeli - chceš wo tym diskutować. - auth failure: Bohužel přizjewjenje z tutymi podaćemi móžno njeje. - openid_logo_alt: Z OpenID přizjewić - auth_providers: - openid: - title: Přizjewjenje z OpenID - alt: Přizjewjenje z OpenID-URL - google: - title: Přizjewjenje z Google - alt: Přizjewjenje z Google OpenID - facebook: - title: Přizjewjenje z Facebook - alt: Přizjewjenje z facebookowym kontom - windowslive: - title: Přizjewjenje z Windows Live - alt: Přizjewjenje z kontom Windows Live - github: - title: Z GitHub přizjewić - alt: Z kontom GitHub přizjewić - yahoo: - title: Přizjewjenje z Yahoo - alt: Přizjewjenje z Yahoo OpenID - wordpress: - title: Přizjewjenje z Wordpress - alt: Přizjewjenje z Wordpress OpenID - aol: - title: Přizjewjenje z AOL - alt: Přizjewjenje z AOL OpenID - logout: - title: Wotzjewić - heading: Z OpenStreetMap wotzjewić - logout_button: Wotzjewić - lost_password: - title: Hesło zabyte - heading: Sy hesło zabył? - email address: 'E-mejlowa adresa:' - new password button: Hesło wróćo stajić - help_text: Zapódaj e-mejlowu adresu, kotruž sy za registrowanje wužił, pósćelemy - wotkaz na nju, kotryž móžeš wužiwać, zo by swoje hesło wroóćo stajił. - notice email on way: Sy jo zabył :-(, ale e-mejl je po puću, zo by móhł jo borze - wróćo stajić. - notice email cannot find: Wodaj, ale njemóžachmy tutu e-mejlowu adresu namakać. - reset_password: - title: Hesło wróćo stajić - heading: Hesło za wužiwarja %{user} wróćo stajić - reset: Hesło wróćo stajić - flash changed: Twoje hesło je so změniło. - flash token bad: Njemóžachmy tutón kod namakać, prošu přepruwuj URL. new: title: Registrować no_auto_account_create: Bohužel njemóžemy tuchwilu žane konto za tebje awtomatisce @@ -2157,33 +2253,6 @@ hsb: flash update success confirm needed: Wužiwarske informacije wuspěšnje zaktualizowane. Dóstanješ e-mejl z namołwu, swoju nowu e-mejlowu adresu wobkrućić. flash update success: Wužiwarske informacije wuspěšnje zaktualizowane. - confirm: - heading: Přepruwuj swoju e-mejl! - introduction_1: Smy ći wobkrućensku e-mejlku pósłali. - introduction_2: Wobkruć swoje konto kliknjo na wotkaz w e-mejlce a móžeš kartěrowanje - započeć. - press confirm button: Klikni deleka na wobkrućenske tłóčatko, zo by swoje konto - aktiwizował. - button: Wobkrućić - success: Twoje konto bu wobkrućene, dźakujemy so za registrowanje! - already active: Tute konto bu hižo wobkrućene. - unknown token: Wobkrućenski kod je spadnjeny abo njeeksistuje. - reconfirm_html: Jeli dyrbiš nam wobkrućensku e-mejlku znowa pósłać, klikń - tu. - confirm_resend: - success_html: Smy nowu wobkrućenski e-mejl na %{email} póslali a tak ruče hač - swoje konto wobkrućiš, móžeš kartěrowanje započeć.

    Jeli přećiwospamowy - system wužiwaš, kotryž wobkrućenske naprašowanja sćele, přewzmi adresu %{sender} - do swojeje běłeje lisćiny, dokelž njemóžemy na wobkrućenske naprašowanja wotmołwić. - failure: Wužiwar %{name} njenamakany. - confirm_email: - heading: Změnjenje e-mejloweje adresy wobkrućić - press confirm button: Klikń deleka na wobkrućenske tłóčatko, zo by swoju nowu - e-mejlowu adresu wobkrućił. - button: Wobkrućić - success: Změnjenje twojeje mejloweje adresy bu wobkrućena. - failure: E-mejlowa adresa je hižo z tutym kodom wobkrućena. - unknown_token: Wobkrućenski kod je spadnjeny abo njeeksistuje. set_home: flash success: Domjace stejnišćo bu wuspěšnje składowany go_public: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 2f3c56bb0..5416eebbf 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -38,7 +38,7 @@ hu: friendly: '%Y. %B %e., %H.%M' helpers: file: - prompt: Válassz egy fájlt + prompt: Fájl kiválasztása submit: diary_comment: create: Mentés @@ -46,20 +46,20 @@ hu: create: Közzététel update: Frissítés issue_comment: - create: Megjegyzés hozzáfűzése + create: Hozzászólás message: create: Küldés client_application: create: Regisztrálás update: Frissítés redaction: - create: Módosítás létrehozása - update: Módosítás mentése + create: Adattörlési művelet létrehozása + update: Adattörlési művelet mentése trace: create: Feltöltés update: Módosítások mentése user_block: - create: Blokkolás kiosztása + create: Blokkolás létrehozása update: Blokkolás frissítése activerecord: errors: @@ -71,9 +71,10 @@ hu: changeset: Módosításcsomag changeset_tag: Módosításcsomag címkéje country: Ország - diary_comment: Naplómegjegyzés + diary_comment: Hozzászólás a naplóhoz diary_entry: Naplóbejegyzés - friend: Barát + friend: Ismerős + issue: Probléma language: Nyelv message: Üzenet node: Pont @@ -90,20 +91,31 @@ hu: relation: Kapcsolat relation_member: Kapcsolat tagja relation_tag: Kapcsolat címkéje + report: Bejelentés session: Folyamat trace: Nyomvonal tracepoint: Nyomvonal pontja tracetag: Nyomvonal címkéje user: Felhasználó user_preference: Felhasználói beállítás - user_token: Felhasználói utalvány + user_token: Felhasználói token way: Vonal way_node: Vonal pontja way_tag: Vonal címkéje attributes: client_application: + name: Név (kötelező) + url: Fő alkalmazás URL-je (kötelező) callback_url: Visszahívási URL support_url: Támogatás URL + allow_read_prefs: felhasználói beállításaik elolvasása + allow_write_prefs: felhasználói beállításaik módosítása + allow_write_diary: naplóbejegyzések és hozzászólások készítése és ismerősök + hozzáadása + allow_write_api: a térkép módosítása + allow_read_gpx: magán GPS-nyomvonalaik olvasása + allow_write_gpx: GPS-nyomvonalak feltöltése + allow_write_notes: jegyzetek módosítása diary_comment: body: Szöveg diary_entry: @@ -114,7 +126,7 @@ hu: language: Nyelv friend: user: Felhasználó - friend: Barát + friend: Ismerős trace: user: Felhasználó visible: Látható @@ -136,16 +148,19 @@ hu: title: Cím description: Leírás report: - details: Kérlek részletezd a problémát (kötelező). + category: Válaszd ki a bejelentés okát + details: Kérjük, részletezd a problémát (kötelező). user: + auth_provider: Hitelesítésszolgáltató + auth_uid: Hitelesítési felhasználóazonosító email: E-mail email_confirmation: E-mail cím megerősítése new_email: Új e-mail-cím active: Aktív display_name: Megjelenítendő név description: Profil leírása - home_lat: 'Földrajzi szélesség:' - home_lon: 'Földrajzi hosszúság:' + home_lat: Földrajzi szélesség + home_lon: Földrajzi hosszúság languages: Előnyben részesített nyelvek preferred_editor: Előnyben részesített szerkesztő pass_crypt: Jelszó @@ -154,6 +169,11 @@ hu: trace: tagstring: vesszővel elválasztva user_block: + reason: A felhasználó letiltásának oka. Kérjük, légy a lehető legnyugodtabb + és ésszerűbb, adj meg minél több részletet a helyzetről, és ne feledd, hogy + az üzenet nyilvánosan látható lesz. Gondolj arra, hogy nem minden felhasználó + érti a közösségi szakzsargont, ezért kérjük, próbálj laikus kifejezéseket + használni. needs_view: Be kell jelentkeznie a felhasználónak, mielőtt a blokkolás feloldódik? user: email_confirmation: E-mail címed nem jelenik nyilvánosan. További információ @@ -206,29 +226,35 @@ hu: description: iD (böngészőben futó szerkesztő) remote: name: Távirányító - description: Távirányító (JOSM vagy Merkaartor) + description: Távirányító (JOSM, Potlatch, Merkaartor) auth: providers: + none: Nincs + openid: OpenID + google: Google + facebook: Facebook + windowslive: Windows Live + github: GitHub wikipedia: Wikipédia api: notes: comment: - opened_at_html: Létrehozva %{when} - opened_at_by_html: Létrehozta %{user} %{when} + opened_at_html: 'Létrehozva: %{when}' + opened_at_by_html: 'Létrehozta %{user} ekkor: %{when}' commented_at_html: 'Frissítve: %{when}' - commented_at_by_html: Frissítette %{user} %{when} + commented_at_by_html: 'Frissítette %{user} ekkor: %{when}' closed_at_html: 'Megoldva: %{when}' - closed_at_by_html: 'Megoldva: %{when} (%{user})' - reopened_at_html: 'Újra aktiválva: %{when}' - reopened_at_by_html: Újraaktiválta %{user} %{when} + closed_at_by_html: 'Megoldotta %{user} ekkor: %{when}' + reopened_at_html: 'Újraaktiválva: %{when}' + reopened_at_by_html: 'Újraaktiválta %{user} ekkor: %{when}' rss: title: OpenStreetMap jegyzetek - description_area: Jegyzetek listája, melyeket jelentettek vagy töröltek, vagy - melyekhez hozzászóltak az Ön területén [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})] + description_area: Bejelentett, hozzászólással ellátott vagy lezárt jegyzetek + a területeden [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})] description_item: RSS hírcsatorna a %{id} jegyzethez - opened: Új megjegyzés (%{place} közelében) - commented: Új hozzászólás (%{place} közelében) - closed: Lezárt jegyzet (%{place} közelében) + opened: új megjegyzés (%{place} közelében) + commented: új hozzászólás (%{place} közelében) + closed: lezárt jegyzet (%{place} közelében) reopened: újraaktivált jegyzet (%{place} közelében) entry: comment: Hozzászólás @@ -236,8 +262,8 @@ hu: browse: created: Létrehozva closed: Lezárva - created_html: Létrehozva %{time} - closed_html: Lezárva %{time} + created_html: 'Létrehozva: %{time}' + closed_html: 'Lezárva: %{time}' created_by_html: Létrehozta %{user}, %{time} deleted_by_html: Törölte %{user}, %{time} edited_by_html: Szerkesztette %{user}, %{time} @@ -246,7 +272,7 @@ hu: in_changeset: Módosításcsomag anonymous: névtelen no_comment: (nincs hozzászólás) - part_of: Része ennek + part_of: 'Része ennek:' part_of_relations: one: 1 kapcsolat other: '%{count} kapcsolat' @@ -254,36 +280,37 @@ hu: one: 1 vonal other: '%{count} vonal' download_xml: XML letöltése - view_history: Előzmények megjelenítése + view_history: Előzmények megtekintése view_details: Részletek megtekintése location: 'Hely:' changeset: - title: 'Módosításcsomag: %{id}' + title: '%{id} módosításcsomag' belongs_to: Szerző node: Pontok (%{count}) - node_paginated: Pontok (%{x}-%{y} összesen %{count}) + node_paginated: 'Pontok (%{x}-%{y} ennyiből: %{count})' way: Vonalak (%{count}) - way_paginated: Vonalak (%{x}-%{y} összesen %{count}) + way_paginated: 'Vonalak (%{x}-%{y} ennyiből: %{count})' relation: Kapcsolatok (%{count}) - relation_paginated: Kapcsolatok (%{x}-%{y} összesen %{count}) + relation_paginated: 'Kapcsolatok (%{x}-%{y} ennyiből: %{count})' comment: Hozzászólások (%{count}) - hidden_commented_by_html: 'Rejtett hozzászólás tőle: %{user}, %{when}' - commented_by_html: '%{user} megjegyzése, %{when}' + hidden_commented_by_html: Rejtett hozzászólás %{user} felhasználótól, %{when} + commented_by_html: Hozzászólás %{user} felhasználótól, %{when} changesetxml: Changeset XML osmchangexml: osmChange XML feed: - title: 'Módosításcsomag: %{id}' - title_comment: 'Módosításcsomag: %{id} - %{comment}' + title: '%{id} módosításcsomag' + title_comment: '%{id} módosításcsomag - %{comment}' join_discussion: Jelentkezz be, hogy bekapcsolódhass a megbeszélésbe discussion: Megbeszélés still_open: A módosításcsomag még nyitva van – a megbeszélés akkor nyílik meg, ha a módosításcsomag lezárul. node: - title_html: 'Pont: %{name}' - history_title_html: 'Pont történet: %{name}' + title_html: '%{name} pont' + history_title_html: '%{name} pont előzményei' way: - title_html: 'Vonal: %{name}' - history_title_html: 'Vonal történet: %{name}' + title_html: '%{name} vonal' + history_title_html: '%{name} vonal előzményei' nodes: Pontok nodes_count: other: '%{count} pont' @@ -291,8 +318,8 @@ hu: one: '%{related_ways} vonal része' other: '%{related_ways} vonalak része' relation: - title_html: Kapcsolat:%{name} - history_title_html: 'Kapcsolat történet: %{name}' + title_html: '%{name} kapcsolat' + history_title_html: '%{name} kapcsolat előzményei' members: Tagok members_count: one: 1 tag @@ -304,10 +331,11 @@ hu: way: 'Vonal:' relation: 'Kapcsolat:' containing_relation: - entry_html: 'Kapcsolat: %{relation_name}' - entry_role_html: 'Kapcsolat: %{relation_name} (mint %{relation_role})' + entry_html: '%{relation_name} kapcsolat' + entry_role_html: '%{relation_name} kapcsolat (mint %{relation_role})' not_found: - sorry: Sajnálom, a(z) %{id} azonosítójú %{type} nem található. + title: Nem található + sorry: Sajnáljuk, a(z) %{id} %{type} nem található. type: node: pont way: vonal @@ -315,8 +343,9 @@ hu: changeset: módosításcsomag note: jegyzet timeout: - sorry: Sajnálom, a(z) %{type} típusú %{id} azonosítójú adatok kinyerése túl - sokáig tartott. + title: Időtúllépési hiba + sorry: Sajnáljuk, a(z) %{id} azonosítójú %{type} adatainak beolvasása túl sokáig + tartott. type: node: pont way: vonal @@ -324,50 +353,50 @@ hu: changeset: módosításcsomag note: jegyzet redacted: - redaction: Eltávolítás %{id} - message_html: A %{type} %{version} verzióját nem lehet megjeleníteni, mert el - lett távolítva. További részletekért lásd %{redaction_link} + redaction: '%{id} adattörlési művelet' + message_html: 'A %{type} %{version} verzióját nem lehet megjeleníteni, mert + törölték. További részletek: %{redaction_link}' type: node: pont way: vonal relation: kapcsolat start_rjs: - feature_warning: '%{num_features} objektum ábrázolása jelentősen lassíthatja - a böngészőt. Biztos hogy meg akarod jeleníteni ezeket az adatokat?' + feature_warning: '%{num_features} objektum betöltése jelentősen lassíthatja + a böngésződet. Biztos hogy meg akarod jeleníteni ezeket az adatokat?' load_data: Adatok betöltése loading: Betöltés… tag_details: tags: Címkék wiki_link: - key: Wiki leírás oldal a %{key} címkéhez - tag: Wiki leírás oldal a %{key}=%{value} címkéhez + key: Wiki leírásoldal a(z) %{key} címkéhez + tag: Wiki leírásoldal a(z) %{key}=%{value} címkéhez wikidata_link: A(z) %{page} elem a Wikidatán wikipedia_link: A(z) %{page} szócikk a Wikipédián wikimedia_commons_link: A(z) %{page} elem a Wikimédia Commons-on - telephone_link: '%{phone_number} hívása' - colour_preview: '%{colour_value} szín előnézet' + telephone_link: '%{phone_number} felhívása' + colour_preview: '%{colour_value} szín előnézete' note: - title: 'Jegyzet: %{id}' + title: '%{id} jegyzet' new_note: Új jegyzet description: Leírás - open_title: 'Megoldatlan jegyzet: %{note_name}' - closed_title: 'Megoldott jegyzet: %{note_name}' - hidden_title: Rejtett jegyzet %{note_name} + open_title: '%{note_name} megoldatlan jegyzet' + closed_title: '%{note_name} megoldott jegyzet' + hidden_title: '%{note_name} rejtett jegyzet' opened_by_html: Létrehozta %{user}, %{when} opened_by_anonymous_html: Létrehozva névtelenül, %{when} - commented_by_html: '%{user} megjegyzése, %{when}' - commented_by_anonymous_html: Megjegyzés névtelenül, %{when} + commented_by_html: '%{user} hozzászólása, %{when}' + commented_by_anonymous_html: Névtelen megjegyzés, %{when} closed_by_html: Megoldotta %{user}, %{when} closed_by_anonymous_html: Megoldva névtelenül, %{when} reopened_by_html: Újraaktiválta %{user}, %{when} reopened_by_anonymous_html: Újraaktiválva névtelenül, %{when} hidden_by_html: Elrejtette %{user}, %{when} - report: Jegyzet jelentése + report: Jegyzet bejelentése query: - title: Funkciók lekérdezése - introduction: Kattintson a térképen a közeli funkciók kereséséhez. - nearby: Közeli funkciók - enclosing: Bentfoglalt funkciók + title: Objektumok lekérdezése + introduction: Kattints a térképre a közeli objektumok megtalálásához. + nearby: Közeli objektumok + enclosing: A helyet körülvevő objektumok changesets: changeset_paging_nav: showing_page: '%{page} oldal' @@ -379,42 +408,43 @@ hu: view_changeset_details: Módosításcsomag részleteinek megtekintése changesets: id: Azonosító - saved_at: Mentve + saved_at: 'Mentve:' user: Felhasználó - comment: Megjegyzés + comment: Hozzászólás area: Terület index: title: Módosításcsomagok title_user: '%{user} módosításcsomagjai' title_friend: Ismerőseim módosításcsomagjai title_nearby: Közeli felhasználók módosításcsomagjai - empty: Nincs módosításcsomag + empty: Nem található módosításcsomag empty_area: Nincs módosításcsomag erre a területre. empty_user: Nincs módosításcsomag ettől a felhasználótól. - no_more: Nem található módosításcsomag + no_more: Nem találtunk több módosításcsomagot no_more_area: Nincs több módosításcsomag ezen a területen. no_more_user: Nincs több módosításcsomag ettől a felhasználótól. - load_more: További betöltése + load_more: Továbbiak betöltése timeout: - sorry: Sajnálom, az általad kért módosításcsomagok listájának lekérése túl sokáig - tartott. + sorry: Sajnáljuk, az általad kért módosításcsomagok listájának beolvasása túl + sokáig tartott. changeset_comments: comment: - comment: 'Új hozzászólás #%{changeset_id} változtatáscsomaghoz %{author} felhasználótól' - commented_at_by_html: '%{when} frissítette %{user}' + comment: 'Új hozzászólás #%{changeset_id} módosításcsomaghoz %{author} felhasználótól' + commented_at_by_html: '%{user} frissítette ekkor: %{when}' comments: - comment: 'Új hozzászólás #%{changeset_id} változtatáscsomaghoz %{author} felhasználótól' + comment: 'Új hozzászólás #%{changeset_id} módosításcsomaghoz %{author} felhasználótól' index: - title_all: OpenStreetMap változtatáscsomag vita - title_particular: 'OpenStreetMap #%{changeset_id} változtatáscsomag vita' + title_all: OpenStreetMap módosításcsomag-megbeszélés + title_particular: 'A #%{changeset_id} OpenStreetMap módosításcsomaghoz tartozó + megbeszélés' timeout: - sorry: Sajnálom, az általad kért módosításcsomag-hozzászólás listájának lekérése - túl sokáig tartott. + sorry: Sajnáljuk, túl sokáig tartott az általad kért módosításcsomag-hozzászólások + listájának lekérése. diary_entries: new: title: Új naplóbejegyzés form: - location: 'Hely:' + location: Hely use_map_link: térkép használata index: title: Felhasználók naplói @@ -425,7 +455,7 @@ hu: new: Új naplóbejegyzés new_title: Új bejegyzés írása a felhasználói naplómba my_diary: Naplóm - no_entries: Nincsenek naplóbejegyzések + no_entries: Nincs naplóbejegyzés recent_entries: Legutóbbi naplóbejegyzések older_entries: Régebbi bejegyzések newer_entries: Újabb bejegyzések @@ -435,17 +465,18 @@ hu: show: title: '%{user} naplója | %{title}' user_title: '%{user} naplója' - leave_a_comment: Hozzászólás írása + leave_a_comment: Hozzászólás login_to_leave_a_comment_html: '%{login_link} a hozzászóláshoz' login: Bejelentkezés no_such_entry: title: Nincs ilyen naplóbejegyzés heading: 'Nincs naplóbejegyzés ezzel az azonosítóval: %{id}' - body: Sajnálom, de nincs naplóbejegyzés vagy hozzászólás %{id} azonosítóval. - Ellenőrizd a kifejezés helyességét, vagy lehet, hogy a link, amire kattintottál, - rossz. + body: Sajnáljuk, de nincs %{id} azonosítójú naplóbejegyzés vagy hozzászólás. + Kérjük, ellenőrizd a kifejezés helyességét. Az is lehet, hogy rossz linkre + kattintottál. diary_entry: - posted_by_html: '%{link_user} küldte ekkor: %{created} %{language_link} nyelven' + posted_by_html: '%{link_user} bejegyzése %{language_link} nyelven ekkor: %{created}' + updated_at_html: 'Utolsó frissítés: %{updated}' comment_link: Hozzászólás ehhez a bejegyzéshez reply_link: Üzenet küldése a szerzőnek comment_count: @@ -456,13 +487,13 @@ hu: hide_link: Bejegyzés elrejtése unhide_link: Bejegyzés megjelenítése confirm: Megerősítés - report: Bejegyzés jelentése + report: Bejegyzés bejelentése diary_comment: comment_from_html: '%{link_user} hozzászólása ekkor: %{comment_created_at}' hide_link: Hozzászólás elrejtése unhide_link: Hozzászólás megjelenítése confirm: Megerősítés - report: Bejegyzés jelentése + report: Hozzászólás bejelentése location: location: 'Hely:' view: Megtekintés @@ -470,33 +501,33 @@ hu: feed: user: title: '%{user} OpenStreetMap naplóbejegyzései' - description: Legutóbbi OpenStreetMap naplóbejegyzések %{user} felhasználótól + description: '%{user} legutóbbi OpenStreetMap naplóbejegyzései' language: title: OpenStreetMap naplóbejegyzések %{language_name} nyelven - description: Legutóbbi naplóbejegyzések az OpenStreetMap felhasználóitól %{language_name} + description: OpenStreetMap-felhasználók friss naplóbejegyzései %{language_name} nyelven all: title: OpenStreetMap naplóbejegyzések description: Legutóbbi naplóbejegyzések az OpenStreetMap felhasználóitól comments: has_commented_on: '%{display_name} hozzászólt az alábbi naplóbejegyzésekhez' - post: Hozzászólás + post: Bejegyzés when: Mikor - comment: Megjegyzés + comment: Hozzászólás newer_comments: Újabb hozzászólások older_comments: Régebbi hozzászólások friendships: make_friend: - heading: '%{user} felhasználó hozzáadása barátként?' - button: Ismerősnek jelölöm - success: '%{name} mostantól a barátod.' - failed: Sajnáljuk, sikertelen volt %{name} felvétele barátnak. - already_a_friend: '%{name} már a barátod.' + heading: '%{user} hozzáadása ismerősként?' + button: Hozzáadás ismerősként + success: '%{name} mostantól az ismerősöd.' + failed: Sajnáljuk, sikertelen volt %{name} felvétele ismerősnek. + already_a_friend: '%{name} már az ismerősöd.' remove_friend: - heading: '%{user} felhasználó eltávolítása a barátaid közül?' - button: Barát eltávolítása - success: '%{name} eltávolítva a barátaid közül.' - not_a_friend: '%{name} nem tartozik a barátaid közé.' + heading: '%{user} eltávolítása az ismerőseid közül?' + button: Ismerős eltávolítása + success: '%{name} eltávolítva az ismerőseid közül.' + not_a_friend: '%{name} nem tartozik az ismerőseid közé.' geocoder: search: title: @@ -511,38 +542,46 @@ hu: search_osm_nominatim: prefix: aerialway: - cable_car: Fülkés felvonó - chair_lift: Libegő + cable_car: Nagykabinos felvonó + chair_lift: Ülőlift drag_lift: Sífelvonó gondola: Gondola - platter: Sífelvonó - pylon: Pülón - station: Drótkötélpálya megálló + magic_carpet: Szállítószalagos sífelvonó + platter: Tányéros sífelvonó + pylon: Oszlop + station: Drótkötélpálya-megálló t-bar: Csákányos felvonó + "yes": Drótkötélpályás felvonó aeroway: aerodrome: Repülőtér - airstrip: Felszállópálya + airstrip: Leszállóhely apron: Forgalmi előtér gate: Kapu hangar: Hangár helipad: Helikopter-leszálló holding_position: Várakozási hely + navigationaid: Repülőtéri navigációs fény parking_position: Parkolóhely runway: Kifutópálya - taxiway: gurulóút + taxilane: Gurulóút + taxiway: Gurulóút terminal: Utasterminál + windsock: Szélzsák amenity: + animal_boarding: Állatpanzió animal_shelter: Állatmenhely arts_centre: Művészeti központ atm: Bankautomata bank: Bank bar: Bár - bbq: Grillsütő + bbq: Grillezőhely bench: Pad bicycle_parking: Kerékpártároló bicycle_rental: Kerékpárkölcsönző + bicycle_repair_station: Kerékpárszerelő pont biergarten: Sörkert - boat_rental: Csónakkölcsönző + blood_bank: Vérbank + boat_rental: Hajókölcsönző brothel: Bordélyház bureau_de_change: Pénzváltó bus_station: Autóbusz-állomás @@ -552,41 +591,51 @@ hu: car_wash: Autómosó casino: Kaszinó charging_station: Elektromos töltőállomás - childcare: Gyermekgondozás + childcare: Gyermekgondozás (bölcsőde) cinema: Mozi - clinic: Klinika + clinic: Rendelőintézet clock: Óra college: Főiskola - community_centre: Művelődési központ + community_centre: Közösségi ház + conference_centre: Konferencia-központ courthouse: Bíróság crematorium: Krematórium dentist: Fogorvos doctors: Orvosi rendelő drinking_water: Ivóvíz driving_school: Autósiskola - embassy: Nagykövetség - fast_food: Gyorsétterem + embassy: Külképviselet (nagykövetség) + events_venue: Rendezvényhelyszín + fast_food: Büfé, gyorsétterem ferry_terminal: Kompkikötő fire_station: Tűzoltóság - food_court: Ételudvar + food_court: Étkezőtér fountain: Szökőkút fuel: Benzinkút gambling: Szerencsejáték - grave_yard: Kis temető - grit_bin: Szóróanyag tároló + grave_yard: Templom körüli temető + grit_bin: Útszóróanyagos láda hospital: Kórház hunting_stand: Magasles - ice_cream: Jégkrém + ice_cream: Fagyalaltozó + internet_cafe: Internetkávézó kindergarten: Óvoda + language_school: Nyelviskola library: Könyvtár - marketplace: Vásártér + loading_dock: Teherautórakodó-rámpa + love_hotel: Love Hotel + marketplace: Piac + mobile_money_agent: Mobilpénz-feltöltés és -felvétel monastery: Kolostor - motorcycle_parking: Motoros parkoló - nightclub: Éjszakai bár + money_transfer: Pénzátutaló + motorcycle_parking: Motorkerékpár-parkoló + music_school: Zeneiskola + nightclub: Diszkó nursing_home: Idősek otthona parking: Parkoló parking_entrance: Parkoló bejárat parking_space: Parkolóhely + payment_terminal: Befizetőautomata pharmacy: Gyógyszertár place_of_worship: Vallási hely police: Rendőrség @@ -594,11 +643,15 @@ hu: post_office: Posta prison: Börtön pub: Kocsma + public_bath: Közfürdő + public_bookcase: Közösségi könyvespolc public_building: Középület + ranger_station: Nemzeti park látogatóközpontja recycling: Szelektív hulladékgyűjtő restaurant: Étterem + sanitary_dump_station: Szaniterürítő hely school: Iskola - shelter: Menedékhely + shelter: Esőbeálló shower: Zuhanyzó social_centre: Szociális központ social_facility: Szociális létesítmény @@ -609,181 +662,260 @@ hu: theatre: Színház toilets: WC townhall: Városháza + training: Képzés university: Egyetem + vehicle_inspection: Műszaki vizsgáló állomás vending_machine: Árusító automata veterinary: Állatorvosi rendelő village_hall: Községháza - waste_basket: Szemétgyűjtő kosár - waste_disposal: Hulladék lerakó - water_point: Víz mérő + waste_basket: Szemeteskosár + waste_disposal: Hulladéklerakó + waste_dump_site: Illegális hulladéklerakó + watering_place: Állatitató + water_point: Vízcsatlakozás (pl. lakókocsinak) + weighbridge: Hídmérleg + "yes": Hasznos vagy fontos létesítmény boundary: + aboriginal_lands: Őslakos-rezervátum administrative: Közigazgatási határ - census: Népszámlálási határ - national_park: Nemzeti Park + census: Népszámlálásikörzet-határ + national_park: Nemzeti park + political: Választókerület-határ protected_area: Védett terület + "yes": Határ bridge: aqueduct: Vízvezeték - boardwalk: Palló + boardwalk: Deszkajárda suspension: Függőhíd - swing: Nyitható híd - viaduct: Viadukt + swing: Elfordítható híd + viaduct: Völgyhíd "yes": Híd building: + apartment: Társasház apartments: Társasház + barn: Pajta + bungalow: Bungaló + cabin: Kis faház chapel: Kápolna - church: Templom + church: Templomépület + civic: Középület + college: Főiskolai épület commercial: Kereskedelmi épület - construction: Építés alatt álló épület - dormitory: Kollégium + construction: Épülő épület + detached: Családi ház (UK) + dormitory: Kollégiumépület + duplex: Ikerház farm: Tanyaépület + farm_auxiliary: Tanya melléképülete garage: Garázs + garages: Garázsok + greenhouse: Üvegház + hangar: Hangár hospital: Kórházépület - hotel: Szálloda - house: Ház + hotel: Szállodaépület + house: Családi ház + houseboat: Lakóhajó + hut: Kunyhó industrial: Ipari épület + kindergarten: Óvodaépület + manufacture: Gyártócsarnok office: Irodaház public: Középület - residential: Lakóház - retail: Kereskedelmi épület + residential: Lakóépület + retail: Kiskereskedelmi épület + roof: Tető + ruins: Romos épület school: Iskolaépület + semidetached_house: Ikerház + service: Gépészeti épület + shed: Fészer + stable: Lóistálló + static_caravan: Álló lakókocsi + temple: Nem keresztény templomépület terrace: Sorház - train_station: Felvételi épület + train_station: Vasútállomás-épület university: Egyetemi épület + warehouse: Raktár "yes": Épület + club: + scout: Cserkészotthon + sport: Sportegyesület + "yes": Klub craft: + beekeper: Méhészet + blacksmith: Kovácsműhely brewery: Sörfőzde carpenter: Ács + caterer: Konyha + confectionery: Édességkészítő + dressmaker: Nőiruha-készítő electrician: Villanyszerelő + electronics_repair: Elektromoskészülék-szerelő gardener: Kertész + glaziery: Üvegműves-műhely + handicraft: Kézműves műhely + hvac: Fűtés-, szellőztetés- és légkondicionálás-szerelő + metal_construction: Fémiparos műhely painter: Festő photographer: Fényképész plumber: Vízvezetékszerelő - shoemaker: Cipész + roofer: Tetőfedő + sawmill: Fűrészmalom + shoemaker: Cipőkészítő + stonemason: Kőműves tailor: Szabó + window_construction: Ablakkészítő + winery: Borászat "yes": Kézműves bolt emergency: + access_point: Mentési pont ambulance_station: Mentőállomás assembly_point: Gyülekezési pont defibrillator: Defibrillátor + fire_xtinguisher: Tűzoltó készülék + fire_water_pond: Tűzivíz-medence landing_site: Vészhelyzeti leszállóhely - phone: Segélyhívó - water_tank: Sürgősségi víztartály - "yes": Sürgősségi + life_ring: Mentőöv + phone: Segélyhívó telefon + siren: Sziréna + suction_point: Tűzivíz-vételező hely + water_tank: Tűzivíz-tartály + "yes": Vészhelyzeti infrastruktúra highway: - abandoned: Elhagyatott út + abandoned: Elhagyott út bridleway: Lovaglóút bus_guideway: Buszsín bus_stop: Buszmegálló - construction: Építés alatt álló közút + construction: Épülő út corridor: Folyosó cycleway: Kerékpárút elevator: Lift - emergency_access_point: Vészhelyzeti hozzáférési pont + emergency_access_point: Mentési pont + emergency_bay: Vészhelyzeti leállóöböl footway: Gyalogút ford: Gázló give_way: Elsőbbségadás kötelező tábla - living_street: Pihenőút + living_street: Lakó-pihenő övezet milestone: Kilométerkő motorway: Autópálya motorway_junction: Autópálya-csomópont - motorway_link: Autópálya - passing_place: Átkelőhely + motorway_link: Autópálya fel- vagy lehajtó + passing_place: Kitérő path: Ösvény pedestrian: Sétálóutca platform: Peron primary: Főút - primary_link: Főút + primary_link: Főút fel- vagy lehajtó proposed: Tervezett út raceway: Versenypálya residential: Lakóövezeti út - rest_area: Pihenési terület + rest_area: Pihenőhely (benzinkút nélkül) road: Út secondary: Összekötő út - secondary_link: Összekötő út + secondary_link: Összekötő út fel- vagy lehajtó service: Szervizút - services: Autópálya-pihenőhely - speed_camera: Sebességmérő kamera + services: Pihenőhely (benzinkúttal) + speed_camera: Traffipax steps: Lépcső stop: Stop tábla street_lamp: Utcai lámpa tertiary: Bekötőút - tertiary_link: Bekötőút - track: Földút - traffic_signals: Jelzőlámpák + tertiary_link: Bekötőút fel- vagy lehajtó + track: Mezőgazgasági/erdészeti út + traffic_mirror: Közlekedési tükör + traffic_signals: Jelzőlámpa + trailhead: Turistaút végpontja trunk: Autóút - trunk_link: Autóút - turning_loop: Autóforduló - unclassified: Egyéb út + trunk_link: Autóút fel- vagy lehajtó + turning_loop: Megfordulóhurok + unclassified: Egyéb közút "yes": Út historic: + aircraft: Történelmi légi jármű archaeological_site: Régészeti lelőhely - battlefield: Csatamező - boundary_stone: Határkő + bomb_crater: Történelmi bombatölcsér + battlefield: Csatatér + boundary_stone: Történelmi határkő building: Történelmi épület - bunker: Bunker + bunker: Történelmi bunker + cannon: Történelmi ágyú castle: Vár - church: Templom + charcoal_pile: Történelmi szénégető boksa + church: Történelmi templom city_gate: Városkapu citywalls: Városfal fort: Erőd - heritage: Világörökségi helyszín - house: Ház - manor: Majorság + heritage: Műemlék + hollow_way: Mélyút + house: Történelmi ház + manor: Kúria memorial: Emlékmű - mine: Bánya - mine_shaft: Bánya akna + milestone: Történelmi mérföldkő + mine: Történelmi bánya + mine_shaft: Történelmi bányaakna monument: Monumentális, épületszerű emlékmű + railway: Történelmi vasútvonal roman_road: Római út ruins: Rom - stone: Kő - tomb: Sírkő - tower: Torony - wayside_cross: Útszéli kereszt - wayside_shrine: Útszéli kegyhely + stone: Történelmi kő + tomb: Történelmi sír + tower: Történelmi torony + wayside_chapel: Út menti kápolna + wayside_cross: Út menti kereszt + wayside_shrine: Út menti kegyhely wreck: Hajóroncs "yes": Történelmi hely junction: "yes": Csomópont landuse: - allotments: Kert + allotments: Kiskertek + aquaculture: Akvakultúra basin: Medence - brownfield: Barnamező + brownfield: Barnamezős terület cemetery: Temető - commercial: Irodaterület - conservation: Védelmi terület + commercial: Kereskedelmi terület + conservation: Védett terület (elavult) construction: Építési terület farm: Tanya farmland: Mezőgazdasági terület - farmyard: Tanya épületei - forest: Erdő - garages: Garázs + farmyard: Tanyaudvar + forest: Telepített erdő + garages: Garázssor grass: Füves terület - greenfield: Zöldmező + greenfield: Zöldmezős terület industrial: Ipari terület landfill: Hulladéklerakó meadow: Rét military: Katonai terület mine: Bánya orchard: Gyümölcsös - quarry: Kőfejtő + plant_nursery: Faiskola + quarry: Külszíni fejtés, kőfejtő railway: Vasúti terület recreation_ground: Szabadidőpark + religious: Egyházi terület reservoir: Víztározó - reservoir_watershed: Víztározó + reservoir_watershed: Vízvédelmi terület residential: Lakóövezet - retail: Kereskedelmi terület - village_green: Közös mező - vineyard: Szőlős + retail: Kiskereskedelmi terület + village_green: Faluközponti mező + vineyard: Szőlő "yes": Földhasználat leisure: - beach_resort: Tengerparti üdülőhely + adult_gaming_centre: Játékterem (csak felnőtteknek) + amusement_arcade: Játékterem (kiskorúaknak is) + bandstand: Zenepavilon + beach_resort: Fürdőhely, vízparti strand bird_hide: Madárles - common: Közös terület - dog_park: Kutyapark + bleachers: Lelátó + bowling_alley: Bowlingpálya + common: Szabadidős tevékenységre használható közös föld (UK) + dance: Táncterem + dog_park: Kutyafuttató firepit: Tűzrakóhely fishing: Horgászterület - fitness_centre: Fitneszközpont - fitness_station: Fitneszterem + fitness_centre: Edzőterem + fitness_station: Fitneszpark garden: Kert golf_course: Golfpálya horse_riding: Lovaglás @@ -791,7 +923,9 @@ hu: marina: Kishajókikötő miniature_golf: Minigolfpálya nature_reserve: Természetvédelmi terület + outdoor_seating: Kiülős helyek park: Park + picnic_table: Piknikezőasztal pitch: Sportpálya playground: Játszótér recreation_ground: Szabadidőpark @@ -800,142 +934,178 @@ hu: slipway: Sólya sports_centre: Sportközpont stadium: Stadion - swimming_pool: Uszoda + swimming_pool: Úszómedence track: Futópálya - water_park: Vízipark + water_park: Strand, élményfürdő "yes": Szabadidő man_made: - adit: Tárna - beacon: Jelzőfény + adit: Bányatárna + advertising: Hirdetés + antenna: Antenna + avalanche_protection: Lavinavédelmi létesítmény + beacon: Jeladó + beam: Gerenda beehive: Méhkaptár breakwater: Hullámtörő bridge: Híd - bunker_silo: Bunker + bunker_silo: Falközi siló + cairn: Kőhalom (mesterséges) chimney: Kémény + clearcut: Tarvágás + communications_tower: Távközlési torony crane: Daru - dolphin: Kikötőbak - dyke: Gát + cross: Kereszt + dolphin: Cölöpgúla + dyke: Árvízvédelmi töltés embankment: Töltés flagpole: Zászlórúd gasometer: Gáztározó - groyne: Keresztgát + groyne: Sarkantyú kiln: Égetőkemence lighthouse: Világítótorony - mast: Torony + manhole: Csatornafedél + mast: Pózna mine: Bánya - mineshaft: Bánya akna - monitoring_station: Megfigyelő állomás - petroleum_well: Olajfúró + mineshaft: Bányaakna + monitoring_station: Megfigyelőállomás + petroleum_well: Olajkút pier: Móló pipeline: Csővezeték + pumping_station: Szivattyúház + reservoir_covered: Fedett víztározó silo: Siló - snow_fence: Hófogó háló - storage_tank: Tároló tartály - surveillance: Megfigyelés + snow_cannon: Hóágyú + snow_fence: Lavinakerítés + storage_tank: Tárolótartály + street_cabinet: Utcai közműszekrény + surveillance: Térfigyelő berendezés + telescope: Teleszkóp tower: Torony - wastewater_plant: Szennyvíz tisztító + utility_pole: Vezetéktartó oszlop + wastewater_plant: Szennyvíztisztító telep watermill: Vízimalom + water_tap: Vízcsap water_tower: Víztorony water_well: Kút - water_works: Vízművek + water_works: Vízmű windmill: Szélmalom works: Gyár - "yes": Mesterséges + "yes": Építmény military: airfield: Katonai repülőtér barracks: Laktanya bunker: Bunker + checkpoint: Ellenőrzőpont + trench: Lövészárok "yes": Katonai mountain_pass: - "yes": Hegyszoros + "yes": Hágó natural: + atoll: Atoll + bare_rock: Csupasz szikla bay: Öböl - beach: Part + beach: Természetes strand cape: Partfok - cave_entrance: Barlang bejárat - cliff: Szikla + cave_entrance: Barlangbejárat + cliff: Sziklaszirt + coastline: Partvonal crater: Kráter dune: Dűne - fell: Kopár + fell: Fjell fjord: Fjord forest: Erdő geyser: Gejzír glacier: Gleccser grassland: Füves puszta - heath: Puszta + heath: Fenyér hill: Domb + hot_spring: Hőforrás island: Sziget land: Szárazföld marsh: Mocsár moor: Mocsár - mud: Iszap + mud: Sár peak: Hegycsúcs + peninsula: Félsziget point: Pont reef: Zátony ridge: Hegygerinc rock: Szikla - saddle: Hágó + saddle: Nyereg sand: Homok - scree: Sziklatörmelék - scrub: Cserjés + scree: Törmeléklejtő + scrub: Bozót spring: Forrás stone: Kő strait: Tengerszoros tree: Fa valley: Völgy volcano: Vulkán - water: Tó - wetland: Láp - wood: Erdő + water: Víz + wetland: Vizenyős terület + wood: Természetes erdő + "yes": Természeti objektum office: accountant: Könyvelő - administrative: Admininsztrálás + administrative: Közigazgatási iroda + advertising_agency: Reklámügynökség architect: Építész - association: Egyesület - company: Cég - educational_institution: Oktatási intézmény - employment_agency: Foglalkoztatási Ügynökség - estate_agent: Ingatlanügynök + association: Egyesületi iroda + company: Vállalati iroda + diplomatic: Diplomáciai iroda + educational_institution: Oktatási intézmény irodája + employment_agency: Munkaközvetítő iroda + energy_supplier: Energiaszolgáltató irodája + estate_agent: Ingatlaniroda + financial: Pénzügyi cég irodája government: Kormányzati hivatal insurance: Biztosítási iroda - it: IT iroda + it: IT cég irodája lawyer: Ügyvéd + logistics: Logisztikai cég irodája + newspaper: Újságszerkesztőség ngo: Civil szervezet irodája - telecommunication: Távközlési iroda + notary: Közjegyző + religion: Egyházi iroda + research: Kutatóintézet + tax_advisor: Adótanácsadó + telecommunication: Távközlési cég irodája travel_agent: Utazási iroda "yes": Iroda place: - allotments: Veteményeskertek + allotments: Kiskertek + archipelago: Szigetcsoport city: Nagyváros - city_block: Várostömb + city_block: Háztömb country: Ország county: Megye farm: Tanya - hamlet: Község + hamlet: Falucska house: Ház houses: Házak island: Sziget islet: Kis sziget - isolated_dwelling: Elszigetelt épület - locality: Hely + isolated_dwelling: Magányos lakóhely + locality: Dűlő, lakatlan hely municipality: Település - neighbourhood: Szomszédság + neighbourhood: Környék + plot: Telek postcode: Irányítószám - quarter: Negyed + quarter: Kis városrész region: Régió sea: Tenger square: Tér - state: Állam + state: Tartomány subdivision: Településrész suburb: Városrész - town: Város - village: Nagyközség + town: Kisváros + village: Falu "yes": Hely railway: - abandoned: Felhagyott vasút - construction: Építés alatt álló vasút - disused: Használaton kívüli vasút - funicular: Siklóvasút + abandoned: Elhagyott vasútvonal + construction: Épülő vasútvonal + disused: Használaton kívüli vasútvonal + funicular: Sikló halt: Vasúti megállóhely junction: Vasúti csomópont level_crossing: Vasúti átjáró @@ -944,9 +1114,9 @@ hu: monorail: Egysínű vasút narrow_gauge: Keskeny nyomközű vasút platform: Vasúti peron - preserved: Megőrzött vasút + preserved: Nosztalgia-vasútvonal proposed: Tervezett vasút - spur: Vasúti szárnyvonal + spur: Iparvágány station: Vasútállomás stop: Vasúti megálló subway: Metró @@ -954,98 +1124,136 @@ hu: switch: Vasúti váltó tram: Villamos tram_stop: Villamosmegálló - yard: Rendező-pályaudvar + yard: Rendező pályaudvar shop: - alcohol: Alkoholos italbolt - antiques: Régiségek + agrarian: Gazdabolt + alcohol: Szeszesital-bolt + antiques: Régiségkereskedés + appliance: Háztartásigép-szaküzlet art: Művészeti bolt + baby_goods: Bababolt + bag: Táskaüzlet bakery: Pékség - beauty: Szépészeti bolt + bathroom_furnishing: Fürdőszoba-felszerelés + beauty: Szépségszalon + bed: Hálószoba-felszerelés beverages: Italbolt bicycle: Kerékpárbolt - bookmaker: Fogadáskötő + bookmaker: Fogadóiroda books: Könyvesbolt boutique: Butik - butcher: Hentesbolt + butcher: Hentes car: Autókereskedés car_parts: Autóalkatrészbolt - car_repair: Autószerviz + car_repair: Autószerelő carpet: Szőnyegbolt - charity: Adománybolt - chemist: Vegyipari bolt + charity: Jótékonysági bolt + cheese: Sajtszaküzlet + chemist: Drogéria + chocolate: Csokoládébolt clothes: Ruházati bolt + coffee: Kávéüzlet computer: Számítástechnikai bolt confectionery: Édességbolt - convenience: Kisbolt - copyshop: Fénymásoló bolt + convenience: Kis élelmiszerbolt + copyshop: Fénymásoló cosmetics: Kozmetikai bolt - deli: Delikátesz - department_store: Áruház + craft: Kézműveskellék-bolt + curtain: Függönybolt + dairy: Tejtermékbolt + deli: Csemegeüzlet + department_store: Nagyáruház discount: Diszkontárubolt doityourself: Barkácsbolt - dry_cleaning: Ruhatisztító - electronics: Elektronikai bolt - estate_agent: Ingatlankereskedés - farm: Kertészbolt - fashion: Divatbolt - florist: Virágárus + dry_cleaning: Vegytisztító + e-cigarette: E-cigaretta-bolt + electronics: Szórakoztató elektronikai szaküzlet + erotic: Erotikuskellék-üzlet + estate_agent: Ingatlaniroda + fabric: Méteráru + farm: Termelői bolt + fashion: Divatáru-szaküzlet + fishing: Horgászbolt + florist: Virágüzlet food: Élelmiszerbolt - funeral_directors: Temetkezési vállalkozó + frame: Képkeretező + funeral_directors: Temetkezési iroda furniture: Bútorbolt - garden_centre: Cserepes virágbolt - general: Vegyeskereskedés + garden_centre: Kertészet + gas: Palackozottgáz-bolt + general: Vegyesbolt gift: Ajándékbolt greengrocer: Zöldséges grocery: Fűszerbolt hairdresser: Fodrászat - hardware: Szerelési bolt - hifi: Hi-Fi bolt + hardware: Vas-műszaki bolt + health_food: Egészségesélelmiszer-bolt + hearing_aids: Hallókészülék-szaküzlet + herbalist: Gyógynövénybolt + hifi: Hi-Fi szaküzlet houseware: Háztartási bolt - interior_decoration: Belső dekoráció + ice_cream: Fagylaltozó + interior_decoration: Lakberendezési szaküzlet jewelry: Ékszerbolt kiosk: Trafik - kitchen: Konyhai felszerelés + kitchen: Konyhafelszerelés laundry: Mosoda + locksmith: Kovácsműhely lottery: Lottózó - mall: Üzletház - massage: Masszázs - mobile_phone: Mobiltelefonbolt - motorcycle: Motorbolt - music: Zenebolt + mall: Bevásárlóközpont + massage: Masszázsszalon + medical_supply: Gyógyászati segédeszközök boltja + mobile_phone: Mobiltelefon-szaküzlet + money_lender: Pénzkölcsönöző + motorcycle: Motorkeréképár-kereskedés + motorcycle_repair: Motorkerékpár-szerelő + music: Hanglemezbolt + musical_instrument: Hangszerüzlet newsagent: Újságárus + nutrition_supplements: Táplálékkiegészítők optician: Látszerész organic: Bioélelmiszerbolt outdoor: Túrabolt paint: Festékbolt - pawnbroker: Zálog + pastry: Süteménybolt + pawnbroker: Zálogház + perfumery: Illatszerbolt pet: Állatkereskedés - photo: Fotóbolt - seafood: Tengeri étel - second_hand: Használtcikk kereskedés + pet_grooming: Állatkozmetika + photo: Fényképészeti bolt + seafood: Halbolt + second_hand: Használtcikk-kereskedés + sewing: Rövidáru shoes: Cipőbolt sports: Sportbolt - stationery: Írószerbolt + stationery: Papírbolt + storage_rental: Raktárbérlés supermarket: Szupermarket tailor: Szabó + tattoo: Tetoválószalon + tea: Teaszaküzlet ticket: Jegyiroda tobacco: Dohánybolt toys: Játékbolt travel_agency: Utazási iroda - tyres: Gumibolt - vacant: Üres üzlet - variety_store: Vegyesbolt - video: Videókölcsönző - wine: Borüzlet + tyres: Autógumi-szaküzlet + vacant: Üres üzlethelyiség + variety_store: 100 forintos bolt + video: Videófilmbolt vagy -kölcsönző + video_games: Videojáték-szaküzlet + wholesale: Nagykereskedés + wine: Borszaküzlet "yes": Bolt tourism: - alpine_hut: Alpesi kunyhó - apartment: Nyaralóház + alpine_hut: Menedékház (személyzettel) + apartment: Apartman artwork: Műalkotás attraction: Látnivaló bed_and_breakfast: Vendégház cabin: Kunyhó + camp_pitch: Sátorhely camp_site: Kemping - caravan_site: Lakókocsitábor + caravan_site: Lakókocsihely chalet: Nyaralóház gallery: Galéria guest_house: Vendégház @@ -1056,45 +1264,49 @@ hu: museum: Múzeum picnic_site: Piknikezőhely theme_park: Vidámpark - viewpoint: Kilátó + viewpoint: Kilátóhely + wilderness_hut: Menedékház (személyzet nélkül) zoo: Állatkert tunnel: building_passage: Épület alatti átjáró culvert: Áteresz "yes": Alagút waterway: - artificial: Mesterséges víziút - boatyard: Hajóhangár + artificial: Mesterséges vízfolyás + boatyard: Hajótelep canal: Csatorna dam: Duzzasztógát - derelict_canal: Felhagyott csatorna + derelict_canal: Elhanyagolt csatorna ditch: Árok - dock: Kikötő - drain: Árok + dock: Dokk + drain: Vízelvezető árok lock: Zsilip - lock_gate: Zsilip - mooring: Kikötő - rapids: Zuhatag + lock_gate: Zsilipkapu + mooring: Kikötőhely + rapids: Zúgó river: Folyó stream: Patak wadi: Vádi waterfall: Vízesés weir: Bukógát - "yes": Vízi út + "yes": Vízfolyás admin_levels: level2: Országhatár - level4: Államhatár + level3: Térséghatár + level4: Tartományhatár level5: Régióhatár level6: Megyehatár + level7: Településhatár level8: Városhatár level9: Faluhatár level10: Városrészhatár + level11: Környékhatár types: cities: Nagyvárosok - towns: Városok + towns: Kisvárosok places: Helyek results: - no_results: Nem találhatók eredmények + no_results: Nem található eredmény more_results: További eredmények issues: index: @@ -1102,75 +1314,76 @@ hu: select_status: Állapot kiválasztása select_type: Típus kiválasztása select_last_updated_by: Utoljára módosította kiválasztása - reported_user: Jelentett felhasználó + reported_user: Behelentett felhasználó not_updated: Nem frissített search: Keresés search_guidance: 'Problémák keresése:' user_not_found: A felhasználó nem létezik - issues_not_found: Nem találni ilyen problémát - status: Státusz - reports: Jelentések + issues_not_found: Nem található ilyen probléma + status: Állapot + reports: Bejelentések last_updated: Utoljára frissítve last_updated_time_html: %{time} last_updated_time_user_html: %{time} %{user} által - link_to_reports: Jelentések megtekintése + link_to_reports: Bejelentések megtekintése reports_count: - one: 1 Jelentés - other: '%{count} Jelentés' + one: 1 bejelentés + other: '%{count} bejelentés' reported_item: Jelentett elem states: ignored: Mellőzve - open: Megnyitás + open: Nyitva resolved: Megoldva update: - new_report: A jelentésedet sikeresen regisztráltuk + new_report: Bejelentésedet sikeresen regisztráltuk successful_update: A jelentésed sikeresen frissítve - provide_details: Kérjük adja meg a szükséges részleteket + provide_details: Kérjük, add meg a szükséges részleteket show: - title: '%{status} Probléma #%{issue_id}' + title: '#%{issue_id} probléma %{status}' reports: - zero: Nincsen bejelentés + zero: Nincs bejelentés one: 1 bejelentés other: '%{count} bejelentés' report_created_at: Először bejelentve %{datetime} időpontban last_resolved_at: Utoljára megoldva %{datetime} időpontban last_updated_at: Utoljára frissítve %{displayname} által %{datetime} időpontban - resolve: Megold - ignore: Hanyagol - reopen: Újra megnyit + resolve: Megoldás + ignore: Mellőz + reopen: Újramegnyitás reports_of_this_issue: Ezen probléma bejelentései read_reports: Bejelentések olvasása new_reports: Új bejelentések - other_issues_against_this_user: Ezen felhasználóval kapcsolatos további problémák + other_issues_against_this_user: Más problémák ezzel a felhasználóval no_other_issues: Nincsenek további problémák ezzel a felhasználóval kapcsolatban - comments_on_this_issue: Hozzászólások ehhez a problémához + comments_on_this_issue: Hozzászólások a problémához resolve: - resolved: 'A probléma állapota átállítva a következőre: "megoldódott"' + resolved: 'A probléma állapota átállítva a következőre: „megoldva”' ignore: - ignored: 'A probléma állapota átállítva a következőre: "figyelmen kívül hagyva"' + ignored: 'A probléma állapota átállítva a következőre: „mellőzve”' reopen: - reopened: 'A probléma állapota átállítva a következőre: "nyitott"' + reopened: 'A probléma állapota átállítva a következőre: „nyitott”' comments: + comment_from_html: '%{user_link} hozzászólása (%{comment_created_at})' reassign_param: Probléma újrakiadása? reports: - reported_by_html: '%{user} által jelentve %{category} kategóriában' + reported_by_html: '%{user} bejelentette %{category} kategóriájúként ekkor: %{updated_at}' helper: reportable_title: - diary_comment: '%{entry_title}, hozzászólás #%{comment_id}' + diary_comment: '%{entry_title} naplóbejegyzés, #%{comment_id} hozzászólás' note: 'Megjegyzés #%{note_id}' issue_comments: create: - comment_created: A hozzászólásod sikeresen létrehozva + comment_created: Hozzászólásod sikeresen létrehozva reports: new: title_html: '%{link} bejelentése' missing_params: Nem hozhatsz létre új bejelentést disclaimer: - intro: Mielőtt elküldöd a bejelentést, kérlek bizonyosodj meg afelől, hogy - not_just_mistake: A probléma biztosan nem egy véletlen hiba + intro: 'Mielőtt elküldöd a bejelentést, kérjük, győződj meg a következőkről:' + not_just_mistake: Biztos vagy abban, hogy a probléma nem csupán egy hiba unable_to_fix: A problémát nem tudod megoldani a sem magad, sem a közösség tagjainak segítségével - resolve_with_user: A problémát megpróbáltad megoldani az érintett felhasználóval + resolve_with_user: Már megpróbáltad megoldani a problémát az érintett felhasználóval categories: diary_entry: spam_label: Ez a naplóbejegyzés spam/spamet tartalmaz @@ -1178,9 +1391,9 @@ hu: threat_label: Ez a naplóbejegyzés fenyegetést tartalmaz other_label: Egyéb diary_comment: - spam_label: Ez a napló hozzászólás spam/spamet tartalmaz + spam_label: Ez a naplóhozzászólás spam/spamet tartalmaz offensive_label: Ez a napló hozzászólás obszcén/sértő - threat_label: Ez a napló hozzászólás fenyegetést tartalmaz + threat_label: Ez a naplóhozzászólás fenyegetést tartalmaz other_label: Egyéb user: spam_label: Ez a felhasználói profil spam/spamet tartalmaz @@ -1194,8 +1407,8 @@ hu: abusive_label: A megjegyzés sértő other_label: Egyéb create: - successful_report: A jelentés sikeresen regisztrálva - provide_details: Kérjük adja meg a szükséges részleteket + successful_report: Bejelentésedet sikeresen regisztráltuk + provide_details: Kérjük, add meg a szükséges részleteket layouts: logo: alt_text: OpenStreetMap logó @@ -1212,8 +1425,8 @@ hu: issues: Problémák data: Adatok export_data: Adatok exportálása - gps_traces: Nyomvonalak - gps_traces_tooltip: GPS nyomvonalak kezelése + gps_traces: GPS-nyomvonalak + gps_traces_tooltip: GPS-nyomvonalak kezelése user_diaries: Naplók user_diaries_tooltip: Felhasználói naplók megtekintése edit_with: 'Szerkesztés a következővel: %{editor}' @@ -1232,7 +1445,7 @@ hu: munkát végeznek. osm_read_only: Az OpenStreetMap-adatbázis jelenleg csak olvasható, miközben alapvető adatbázis-karbantartási munkát végeznek. - donate: Támogasd az OpenStreetMapot a Hardverfrissítési Alapba történő %{link}sal. + donate: Támogasd az OpenStreetMapet a Hardverfrissítési Alapba történő %{link}sal. help: Súgó about: Névjegy copyright: Szerzői jog és licenc @@ -1242,40 +1455,58 @@ hu: foundation: Alapítvány foundation_title: Az OpenStreetMap Alapítvány make_a_donation: - title: Támogasd az OpenStreetMapot pénzadománnyal + title: Támogasd az OpenStreetMapet pénzadománnyal text: Adományozz learn_more: További info more: Több user_mailer: diary_comment_notification: - subject: '[OpenStreetMap] %{user} hozzászólt a naplóbejegyzésedhez' + subject: '[OpenStreetMap] %{user} hozzászólt egy naplóbejegyzéshez' hi: Szia, %{to_user}! - header: '%{from_user} hozzászólt az OpenStreetMap naplóbejegyzéshez %{subject} - tárggyal:' - footer: 'A hozzászólást elolvashatod itt is: %{readurl} és hozzászólhatsz itt: + header: '%{from_user} hozzászólt a(z) %{subject} OpenStreetMap naplóbejegyzéshez:' + header_html: '%{from_user} hozzászólt „%{subject}” OpenStreetMap naplóbejegyzéshez:' + footer: 'A hozzászólást elolvashatod itt: %{readurl}, hozzászólhatsz itt: %{commenturl} + vagy válaszolhatsz rá itt: %{replyurl}' + footer_html: 'A hozzászólást elolvashatod itt: %{readurl}, hozzászólhatsz itt: %{commenturl} vagy válaszolhatsz rá itt: %{replyurl}' message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: Szia %{to_user}! header: '%{from_user} küldött neked egy üzenetet az OpenStreetMapon keresztül %{subject} tárggyal:' + header_html: '%{from_user} üzenetet küldött neked az OpenStreetMap-en %{subject} + tárggyal:' + footer: Az üzenetet elolvashatja (%{readurl}) vagy küldhet egy válaszüzenetet + a szerzőnek (%{replyurl}). footer_html: 'Az üzenet a %{readurl} címen is elolvashatod, vagy válaszolhatsz rá itt: %{replyurl}' friendship_notification: - hi: Szia %{to_user}, - subject: '[OpenStreetMap] %{user} felvett a barátai közé' - had_added_you: '%{user} felvett a barátai közé az OpenStreetMapon.' + hi: Szia %{to_user}! + subject: '[OpenStreetMap] %{user} felvett az ismerősei közé' + had_added_you: '%{user} felvett az ismerősei közé az OpenStreetMapen.' see_their_profile: 'Megnézheted a profilját itt: %{userurl}.' - befriend_them: 'Felveheted őt barátnak is itt: %{befriendurl}.' + see_their_profile_html: 'A felhasználó profilját megtekintheti itt: %{userurl}' + befriend_them: 'Te is hozzáadhatod ismerősként itt: %{befriendurl}.' + befriend_them_html: 'Te is hozzáadhatod ismerősként itt: %{befriendurl}' + gpx_description: + description_with_tags_html: Úgy tűnik, a te %{trace_name} nevű, %{trace_description} + leírással és %{tags} címkékkel rendelkező GPX fájlod + description_with_no_tags_html: Úgy tűnik, a te %{trace_name} nevű, %{trace_description} + leírással rendelkező, címkék nélküli GPX fájlod gpx_failure: + hi: Szia %{to_user}! failed_to_import: 'importálása sikertelen. Ez a hiba:' - subject: '[OpenStreetMap] GPX importálás sikertelen' + more_info_html: 'A GPX importálási hibákról és elkerülésükről további tájékoztatás + olvasható itt: %{url}.' + import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures + subject: '[OpenStreetMap] Sikertelen GPX importálás' gpx_success: - loaded_successfully: |- - sikeresen betöltődött %{trace_points} ponttal a lehetséges - %{possible_points} pontból. - subject: '[OpenStreetMap] GPX importálás sikeres' + hi: Szia %{to_user}! + loaded_successfully: a lehetséges %{possible_points} pontból sikeresen betöltve + %{trace_points} ponttal. + subject: '[OpenStreetMap] Sikeres GPX importálás' signup_confirm: - subject: '[OpenStreetMap] Üdvözlünk az OpenStreetMapnál' + subject: '[OpenStreetMap] Üdvözlünk az OpenStreetMapen' greeting: Szia! created: Valaki (remélhetőleg te) most hozott létre egy fiókot az %{site_url}-on. confirm: 'Mielőtt folytathatnánk, meg kell bizonyosodnunk arról, hogy ez a kérés @@ -1284,7 +1515,7 @@ hu: welcome: Miután jóváhagytad a regisztrációt, további hasznos információkat olvashatsz az elinduláshoz. email_confirm: - subject: '[OpenStreetMap] E-mail cím megerősítése' + subject: '[OpenStreetMap] E-mail-cím megerősítése' greeting: Szia! hopefully_you: 'Valaki (remélhetőleg te) szeretné megváltoztatni az e-mail címét a %{server_url} címen, erre: %{new_address}.' @@ -1302,54 +1533,102 @@ hu: greeting: Szia! commented: subject_own: '[OpenStreetMap] %{commenter} hozzászólt az egyik jegyzetedhez' - subject_other: '[OpenStreetMap] %{commenter} hozzászólt az egyik jegyzethez, - amelyet te is figyelsz' + subject_other: '[OpenStreetMap] %{commenter} hozzászólt egy jegyzethez, amely + téged is érdekel' your_note: '%{commenter} hozzászólt az egyik jegyzetedhez, %{place} közelében.' - commented_note: '%{commenter} hozzászólt az egyik jegyzethez, amelyhez te - is, %{place} közelében.' + your_note_html: '%{commenter} hozzászólt az egyik jegyzetedhez, %{place} közelében.' + commented_note: '%{commenter} hozzászólt egy jegyzethez, amelyhez te is hozzászóltál. + A jegyzet %{place} közelében van.' + commented_note_html: '%{commenter} hozzászólt egy jegyzethez, amelyhez te + is hozzászóltál. A jegyzet %{place} közelében van.' closed: subject_own: '[OpenStreetMap] %{commenter} megoldotta az egyik jegyzetedet' - subject_other: '[OpenStreetMap] %{commenter} megoldotta az egyik jegyzetet, - amelyet te is figyelsz' - your_note: '[OpenStreetMap] %{commenter} megoldotta az egyik jegyzetedet %{place} - közelében.' - commented_note: '%{commenter} megoldotta az egyik jegyzetet, amelyhez hozzászóltál, - %{place} közelében.' + subject_other: '[OpenStreetMap] %{commenter} megoldott egy jegyzetet, amely + téged is érdekel' + your_note: '%{commenter} megoldotta az egyik jegyzetedet %{place} közelében.' + your_note_html: '%{commenter} megoldotta az egyik jegyzetedet %{place} közelében.' + commented_note: '%{commenter} megoldott egy jegyzetet, amelyhez hozzászóltál. + A jegyzet %{place} közelében van.' + commented_note_html: '%{commenter} megoldott egy jegyzetet, amelyhez hozzászóltál. + A jegyzet %{place} közelében van.' reopened: subject_own: '[OpenStreetMap] %{commenter} újra megnyitotta az egyik jegyzetedet' - subject_other: '[OpenStreetMap] %{commenter} újra megnyitotta az egyik jegyzetet, - amelyet te is figyelsz' - your_note: '%{commenter} újraaktiválta a(z) %{place} közelében lévő jegyzetedet.' - commented_note: '%{commenter} újraaktivált egy jegyzetet, amihez te is hozzászóltál. + subject_other: '[OpenStreetMap] %{commenter} újra megnyitott egy jegyzetet, + amely téged is érdekel' + your_note: '%{commenter} újra megnyitotta az egyik jegyzetedet %{place} közelében.' + your_note_html: '%{commenter} újra megnyitotta az egyik jegyzetedet %{place} + közelében.' + commented_note: '%{commenter} újra megnyitott egy jegyzetet, amelyhez hozzászóltál. A jegyzet %{place} közelében van.' - details: 'A jegyzetről további információk: %{url}.' + commented_note_html: '%{commenter} újra megnyitott egy jegyzetet, amelyhez + hozzászóltál. A jegyzet %{place} közelében van.' + details: 'A jegyzetről további részletek találhatók itt: %{url}.' + details_html: 'A jegyzetről további részletek találhatók itt: %{url}.' changeset_comment_notification: - hi: Szia %{to_user}, + hi: Szia %{to_user}! greeting: Szia! commented: - subject_own: '[OpenStreetMap] %{commenter} hozzászólt az egyik változtatáscsomagodhoz' - subject_other: '[OpenStreetMap] %{commenter} hozzászólt az egyik, általad - érdekesnek vélt változtatáscsomaghoz' - your_changeset: '%{commenter} megjegyzést fűzött a %{time}-i módosításcsomagodhoz.' - commented_changeset: '%{commenter} egy megjegyzést fűzött %{changeset_author} - %{time}-i módosításcsomagjához, amit figyelsz.' - partial_changeset_with_comment: „%{changeset_comment}” megjegyzéssel + subject_own: '[OpenStreetMap] %{commenter} hozzászólt az egyik módosításcsomagodhoz' + subject_other: '[OpenStreetMap] %{commenter} hozzászólt egy módosításcsomaghoz, + amely téged is érdekel' + your_changeset: '%{commenter} hozzászólt az egyik módosításcsomagodhoz ekkor: + %{time}' + your_changeset_html: '%{commenter} hozzászólt az egyik módosításcsomagodhoz + ekkor: %{time}' + commented_changeset: '%{commenter} hozzászólt %{changeset_author} általad + is figyelt módosításcsomagjához ekkor: %{time}' + commented_changeset_html: '%{commenter} hozzászólt %{changeset_author} általad + is figyelt módosításcsomagjához ekkor: %{time}' + partial_changeset_with_comment: „%{changeset_comment}” hozzászólással + partial_changeset_with_comment_html: '%{changeset_comment} hozzászólással' partial_changeset_without_comment: hozzászólás nélkül - details: 'További részletek a módosításcsomagról a következő címen találhatók: - %{url}.' + details: 'A módosításcsomagról további részletek találhatók itt: %{url}.' + details_html: 'A módosításcsomagról további részletek találhatók itt: %{url}.' unsubscribe: 'Az ehhez a módosításcsomaghoz tartozó frissítésekről való leiratkozáshoz - látogasd meg a következő oldalt: %{url}, és kattints a "Leiratkozás" gombra.' + látogass el a következő oldalra: %{url}, és kattints a „Leiratkozás” gombra.' + unsubscribe_html: 'Az ehhez a módosításcsomaghoz tartozó frissítésekről való + leiratkozáshoz látogass el a következő oldalra: %{url}, és kattints a „Leiratkozás” + gombra.' + confirmations: + confirm: + heading: Nézd meg az e-mailjeidet! + introduction_1: Jóváhagyó e-mailt küldtünk a címedre. + introduction_2: Erősítsd meg a regisztrációt a levélben található linkre kattintva + és máris kezdheted a térképezést. + press confirm button: Felhasználói fiókod megerősítéséhez nyomd meg az alábbi + megerősítés gombot. + button: Megerősítés + success: Felhasználói fiókod megerősítve, köszönjük a regisztrációt! + already active: Ez a fiók már megerősítésre került. + unknown token: Ez a megerősítési kód lejárt vagy nem létezik. + reconfirm_html: A jóváhagyó link újraküldéséhez kattints + ide. + confirm_resend: + success_html: Elküldtünk egy új megerősítő üzenetet %{email} címedre, és amint + megerősíted a felhasználói fiókodat, hozzákezdhetsz a térképezéshez.

    Ha olyan spamszűrőt használsz, amely megerősítési kéréseket küld, akkor + győződj meg róla, hogy a %{sender} címet engedélylistára tetted, mivel megerősítési + kérelmekre nem tudunk válaszolni. + failure: '%{name} felhasználó nem található.' + confirm_email: + heading: E-mail cím módosításának megerősítése + press confirm button: Új e-mail címed megerősítéséhez nyomd meg az alábbi megerősítés + gombot. + button: Megerősítés + success: Az e-mail címed módosítása megerősítve! + failure: Ezzel a tokennel már meg lett erősítve egy e-mail cím. + unknown_token: Ez a megerősítő kód lejárt, vagy nem létezik. messages: inbox: title: Beérkezett üzenetek my_inbox: Beérkezett üzeneteim - outbox: Elküldött üzenetek + my_outbox: Elküldött üzeneteim messages: '%{new_messages} és %{old_messages} van' new_messages: - one: egy új üzenet - other: '%{count} új üzenet' + one: 1 új üzeneted + other: '%{count} új üzeneted' old_messages: - one: egy régi üzeneted + one: 1 régi üzeneted other: '%{count} régi üzeneted' from: Feladó subject: Tárgy @@ -1375,12 +1654,11 @@ hu: no_such_message: title: Nincs ilyen üzenet heading: Nincs ilyen üzenet - body: Sajnálom, nincs üzenet ezzel az azonosítóval. + body: Sajnáljuk, nincs ilyen azonosítójú üzenet. outbox: title: Elküldött üzenetek - my_inbox_html: '%{inbox_link}' - inbox: Beérkezett üzenetek - outbox: Elküldött üzenetek + my_inbox: Beérkezett üzeneteim + my_outbox: Elküldött üzeneteim messages: one: Egy elküldött üzeneted van other: '%{count} elküldött üzeneted van' @@ -1391,9 +1669,9 @@ hu: kapcsolatot néhány %{people_mapping_nearby_link}vel? people_mapping_nearby: közeli térképszerkesztő reply: - wrong_user: „%{user}” néven jelentkeztél be, de a levelet, amit lekérdeztél - válaszolásra, nem ez a felhasználó kapta. Annak érdekében, hogy válaszolhass, - jelentkezz be a helyes felhasználóval. + wrong_user: „%{user}” néven jelentkeztél be, de azt az üzenetet, amelyre válaszolni + szeretnél, nem ez a felhasználó kapta. A válaszadáshoz jelentkezz be a helyes + felhasználónévvel. show: title: Üzenet olvasása from: Feladó @@ -1404,9 +1682,9 @@ hu: destroy_button: Törlés back: Vissza to: Címzett - wrong_user: „%{user}” néven jelentkeztél be, de a levelet, amit lekérdeztél - olvasásra, nem ez a felhasználó küldte vagy kapta. Annak érdekében, hogy elolvashasd - a levelet, jelentkezz be a helyes felhasználóval. + wrong_user: „%{user}” néven jelentkeztél be, de az üzenetet, amelyet el szeretnél + olvasni, nem ez a felhasználó küldte vagy kapta. Az elolvasásához jelentkezz + be a helyes felhasználónévvel. sent_message_summary: destroy_button: Törlés mark: @@ -1414,11 +1692,106 @@ hu: as_unread: Üzenet megjelölve olvasatlanként destroy: destroyed: Üzenet törölve + passwords: + lost_password: + title: Elvesztett jelszó + heading: Elfelejtetted jelszavad? + email address: 'E-mail cím:' + new password button: Jelszó alaphelyzetbe állítása + help_text: Add meg az e-mail címed, amellyel regisztráltál. Küldeni fogunk egy + hivatkozást, amellyel visszaállíthatod a jelszavad. + notice email on way: Sajnáljuk, hogy elvesztetted :-( de már úton van egy e-mail, + így nemsokára alaphelyzetbe állíthatod. + notice email cannot find: Sajnáljuk, az e-mail-cím nem található. + reset_password: + title: Jelszó alaphelyzetbe állítása + heading: '%{user} jelszavának alaphelyzetbe állítása' + reset: Jelszó alaphelyzetbe állítása + flash changed: Jelszavad megváltozott. + flash token bad: Nem találtad meg a tokent? Esetleg ellenőrizd az URL-t. + sessions: + new: + title: Bejelentkezés + heading: Bejelentkezés + email or username: 'E-mail cím vagy felhasználónév:' + password: 'Jelszó:' + openid_html: '%{logo} OpenID:' + remember: Emlékezz rám + lost password link: Elfelejtetted a jelszavad? + login_button: Bejelentkezés + register now: Regisztrálj most + with username: 'Már van OpenStreetMap-fiókod? Jelentkezz be a felhasználóneveddel + és jelszavaddal:' + with external: 'Alternatívaként használj külső fiókot a bejelentkezéshez:' + new to osm: Új vagy az OpenStreetMapnál? + to make changes: Ahhoz, hogy módosíthasd az OpenStreetMap-adatokat, rendelkezned + kell egy felhasználói fiókkal. + create account minute: Hozz létre egy felhasználói fiókot. Csak egy percet vesz + igénybe. + no account: Nem rendelkezel még felhasználói fiókkal? + account not active: Sajnáljuk, a fiókod még nincs aktiválva.
    Fiókod aktiválásához + kérjük, használd a fiókodat megerősítő emailben található hivatkozást, vagy + kérj egy új megerősítő e-mailt. + account is suspended: Sajnáljuk, a fiókodat gyanús tevékenység miatt felfüggesztettük.
    A kérdés tisztázásához írj a webmesternek. + auth failure: Sajnáljuk, ilyen adatokkal nem tudsz bejelentkezni. + openid_logo_alt: Bejelentkezés egy OpenID-vel + auth_providers: + openid: + title: Bejelentkezés OpenID-vel + alt: Bejelentkezés OpenID-URL-lel + google: + title: Bejelentkezés Google-lel + alt: Bejelentkezés Google OpenID-vel + facebook: + title: Bejelentkezés Facebook-kal + alt: Bejelentkezés Facebook fiókkal + windowslive: + title: Bejelentkezés Windows Live-val. + alt: Bejelentkezés Windows Live fiókkal + github: + title: Bejelentkezés GitHub-bal + alt: Bejelentkezés GitHub fiókkal + wikipedia: + title: Bejelentkezés Wikipédiával + alt: Wikipédia fiókkal való bejelentkezés + yahoo: + title: Bejelentkezés Yahoo-val + alt: Bejelentkezés Yahoo OpenID-vel + wordpress: + title: Bejelentkezés Wordpress-szel + alt: Bejelentkezés Wordpress OpenID-vel + aol: + title: Bejelentkezés AOL-lal + alt: Bejelentkezés AOL OpenID-vel + destroy: + title: Kijelentkezés + heading: Kijelentkezés az OpenStreetMapból + logout_button: Kijelentkezés + shared: + markdown_help: + title_html: Kramdownnal + elemezve + headings: Címsorok + heading: Cím + subheading: Alcím + unordered: Rendezetlen lista + ordered: Rendezett lista + first: Első elem + second: Második elem + link: Hivatkozás + text: Szöveg + image: Kép + alt: Alternatív szöveg + url: URL + richtext_field: + edit: Szerkesztés + preview: Előnézet site: about: next: Következő copyright_html: ©OpenStreetMap
    közreműködők - used_by_html: '%{name} több ezer weboldalnak, mobilalkalmazásnak, és hardver-eszköznek + used_by_html: '%{name} több ezer weboldalnak, mobilalkalmazásnak és hardvereszköznek biztosít térképadatokat' lede_text: Az OpenStreetMapet egy térképszerkesztő-közösség építi, akik hozzáadnak és karbantartanak adatokat világszerte utakról, ösvényekről, kávézókról, vasútállomásokról @@ -1443,10 +1816,18 @@ hu: licenccel teheted közzé. Lásd a Copyright és Licence oldalt a részletekért.' legal_title: Jogi segítség - legal_1_html: |- - Az oldalt és sok kapcsolódó szolgáltatást formálisan az OpenStreetMap Foundation (OSMF) üzemelteti, a közösség nevében. Az összes OSMF által üzemeltetett szolgáltatásra vonatkoznak a Felhasználási feltételek, az Elfogadható felhasználási irányelvek, és az Adatvédelmi nyilatkozat. -
    - Lépjen kapcsolatba az OSMF-fel, ha licencelési, szerzői jogi vagy más jogi kérdése vagy problémája van. + legal_1_html: Ezt az oldalt és sok más kapcsolódó szolgáltatást hivatalosan + az OpenStreetMap Alapítvány (OSMF) + üzemelteti, a közösség nevében. Az összes OSMF által üzemeltetett szolgáltatásra + vonatkoznak a felhasználási + feltételek, az elfogadható + felhasználásra vonatkozó irányelvek, és az adatvédelmi + nyilatkozat. + legal_2_html: "Ha licenccel kapcsolatos, szerzői jogi vagy más jogi kérdésed + van, fordulj az OSMF-hez.\n
    \nAz + OpenStreetMap elnevezés, a nagyítót ábrázoló logó és a State of the Map elnevezés + \naz OSMF + bejegyzett védjegyei." partners_title: Partnerek copyright: foreign: @@ -1456,9 +1837,8 @@ hu: english_link: az eredeti angol nyelvű native: title: Erről az oldalról - html: 'Jelenleg a szerzői jogi oldal angol nyelvű változatát látod. Visszaléphetsz - ezen oldalra: %{native_link}, vagy befejezheted a szerzői jogról szóló oldal - és %{mapping_link} olvasását.' + html: Jelenleg a szerzői jogi oldal angol nyelvű változatát látod. Visszaléphetsz + a %{native_link}, vagy befejezheted a szerzői jogról szóló oldal és %{mapping_link}. native_link: magyar nyelvű változatára mapping_link: kezdheted a térképezést legal_babble: @@ -1469,14 +1849,12 @@ hu: Commons Open Database License licenc (ODbL) alatt tett közzé az OpenStreetMap Alapítvány (OSMF). intro_2_html: |2- - Szabadon másolhatod, terjesztheted, továbbíthatod és átdolgozhatod adatainkat mindaddig, amíg feltünteted az OpenStreetMapot és közreműködőit. Ha módosítod vagy felhasználod az adatainkat, akkor az eredményt is csak azonos licenccel terjesztheted. A teljes jogi szabályzat ismerteti a jogaidat és kötelezettségeidet. - intro_3_1_html: |2- - Az OpenStreetMap térképeire és dokumentumaira a Creative - Commons Nevezd meg! - Így add tovább! 2.0 licenc (CC BY-SA) vonatkozik. - credit_title_html: Hogyan kell feltüntetned az OpenStreetMapot? + intro_3_1_html: Dokumentációnkra a Creative + Commons „Nevezd meg! – Így add tovább!” 2.0 (CC BY-SA) licenc vonatkozik. + credit_title_html: Hogyan kell feltüntetned az OpenStreetMapet? credit_1_html: Kérjük, hogy forrásként a “© OpenStreetMap közreműködők” szöveget tüntesd fel. credit_2_1_html: Azt is egyértelművé kell tenned, hogy az adatok az Open Database @@ -1489,6 +1867,9 @@ hu: hogy a felhasználókat irányítsd az openstreetmap.org címre (esetlegesen az "OpenStreetMap" szót kiegészítve erre a teljes címre), és az opendatacommons.org címre, illetve - ha szükséges - a creativecommons.org címre. + credit_3_1_html: |- + A www.openstreetmap.org webhelyen található „szokásos stílusú” térképcsempék az OpenStreetMap Alapítvány alkotása, az OpenStreetMap adatok felhasználásával, az Open Database Licenc alatt. Ha ezeket a csempéket felhasználod, kérjük, írd ki a következőt: + Alaptérkép és adatok az OpenStreetMapről és az OpenStreetMap Alapítványtól credit_4_html: |- Böngészhető elektronikus térkép esetén a forrásra vonatkozó hivatkozás jelenjen meg a térkép sarkában. Például: @@ -1545,24 +1926,21 @@ hu: tartalmaz a CC BY 4.0 licenc alapján.' contributors_za_html: |- - Dél-Afrika: tartalmaz olyan adatokat, amik a - Chief Directorate: - National Geo-Spatial Information-tól származnak, az állami szerzői jogok fenntartva. + Dél-Afrika: tartalmaz olyan adatokat, amelyek a + nemzeti térinformatikai főigazgatóságtól származnak, és az állam fenntartja a szerzői jogokat. contributors_gb_html: "Egyesült Királyság: Térképészeti Szolgálat adatai © Királyi szerzői és adatbázisjog \n2010-2019." contributors_footer_1_html: |- - További részletekért, és az OpenStreetMap javításához használt más forrásokról, - kérjük, olvassa el a hozzájárulók oldalát + További részletekért, és az OpenStreetMap javításához használt más forrásokról, kérjük, olvassa el a szerkesztők oldalát az OpenStreetMap wikin. - contributors_footer_2_html: |2- - Az adatok befoglalása az OpenStreetMapba nem jelenti azt, hogy az eredeti - adatszolgáltató támogatja az OpenStreetMapot, nyújt garanciát vagy - vállal rá felelősséget. - infringement_title_html: Copyright megsértése - infringement_1_html: |2- - Az OSM közreműködői emlékeztetve lettek arra, hogy soha ne adjanak hozzá adatokat egyetlen - szerzői jogvédett forrásból se (pl. Google Térkép vagy nyomtatott térképek) a - szerzői jog tulajdonosának kifejezett engedélye nélkül. + contributors_footer_2_html: Az adatok befoglalása az OpenStreetMapbe nem jelenti + azt, hogy az eredeti adatszolgáltató támogatja az OpenStreetMapet, garanciát + nyújt vagy felelősséget vállal rá. + infringement_title_html: Szerzőijog-sértés + infringement_1_html: Az OSM közreműködői emlékeztetve lettek arra, hogy soha + ne adjanak hozzá adatokat egyetlen szerzői jogvédett forrásból se (pl. Google + Térkép vagy nyomtatott térképek) a szerzői jog tulajdonosának kifejezett + engedélye nélkül. infringement_2_html: |- Ha úgy gondolod, hogy jogvédett anyag került jogszerűtlenül az OpenStreetMap adatbázisba vagy erre a weblapra, kérjük olvasd el az eltávolítási folyamat leírását vagy jelentsd be közvetlenül az @@ -1590,7 +1968,7 @@ hu: user_page_link: felhasználói oldal anon_edits_link_text: Nézz utána, miért van ez. id_not_configured: Az iD nincs beállítva - no_iframe_support: A böngésződ nem támogatja a HTML-kereteket, amely ehhez a + no_iframe_support: A böngésződ nem támogatja a HTML iframes-t, amely ehhez a funkcióhoz szükséges. export: title: Exportálás @@ -1598,7 +1976,7 @@ hu: manually_select: Más terület kézi kijelölése format_to_export: Exportálás formátuma osm_xml_data: OpenStreetMap XML adat - map_image: Térkép (Alapértelmezett réteg) + map_image: Térkép képe (az alapértelmezett réteget jeleníti meg) embeddable_html: Beágyazható HTML licence: Licenc export_details_html: Az OpenStreetMap adatokra az Open @@ -1639,7 +2017,7 @@ hu: paste_html: Webhelyekbe való beágyazáshoz illeszd be a HTML kódot export_button: Exportálás fixthemap: - title: Hibabejelentés / Térkép javítása + title: Probléma bejelentése / Térkép javítása how_to_help: title: Hogyan segíthetsz join_the_community: @@ -1648,16 +2026,17 @@ hu: hiányzik egy út vagy cím, a legjobb, ha csatlakozol az OpenStreetMap közösséghez és kijavítod az adatot saját magad. add_a_note: - instructions_html: Csak kattints a ikonra a térképnézetben. - Ez felrak egy helyjelölőt a térképre, amit húzással tudsz a megfelelő - helyre mozgatni. Írd meg hozzá az üzeneted, majd kattints a mentésre, - és a többi térképész meg fogja vizsgálni. + instructions_html: Csak kattints a ikonra vagy + ugyanerre az ikonra a térképmegjelenítőben. Ez felrak egy helyjelölőt + a térképre, amelyet húzással mozgathatsz. Írj hozzá egy üzenetet, majd + kattints a mentésre, és a többi térképész meg fogja vizsgálni. other_concerns: title: Egyéb aggályok - explanation_html: Ha kérdése merül fel az adataink felhasználásáról, vagy - a tartalomról, akkor keresse fel a szerzői jogi oldalunkat - a további jogi információkért, vagy lépjen kapcsolatba a megfelelő OSMF - munkacsoportot. + explanation_html: Ha kérdésed merül fel az adataink felhasználásával vagy + a tartalommal kapcsolatban, akkor további jogi információkért keresd fel + a szerzői jogi oldalunkat, vagy lépj kapcsolatba + a megfelelő OSMF + munkacsoporttal. help: title: Segítségkérés introduction: Az OpenStreetMap számos anyagot kínál fel ahhoz, hogy ismerkedj @@ -1682,28 +2061,38 @@ hu: helyi levelezőlistán. forums: title: Fórumok - description: Kérdések és beszélgetések helye azoknak, akik előnyben részesítik + description: Kérdések és megbeszélések helye azoknak, akik előnyben részesítik a hirdetőtábla stílusú felületet. irc: title: IRC description: Interaktív chat számos nyelven, számos témában. switch2osm: - title: válts osm-re - description: Segíts cégeknek és szervezeteknek OpenStreetMap-alapú térképekre - és egyéb szolgáltatásokra váltani. + title: Válts OSM-re! + description: Segítség cégeknek és szervezeteknek ahhoz, hogy átállhassanak + OpenStreetMap-alapú térképekre és egyéb szolgáltatásokra. welcomemat: url: https://welcome.openstreetmap.org/ - title: Szervezetek számára + title: Szervezeteknek + description: Szervezetednek tervei vannak az OpenStreetMappel? Minden szükségeset + megtalálsz az előszobában. wiki: url: https://wiki.openstreetmap.org/wiki/Hu:Main_Page title: OpenStreetMap Wiki description: Böngészd a wikit mélyreható OpenStreetMap dokumentációért. + potlatch: + removed: Az alapértelmezett szerkesztőd a Potlatch. Mivel az Adobe Flash Playert + visszavonták, a Potlatch webböngészőben már nem futtatható. + desktop_html: A Potlatchot azonban továbbra is hasznáhatod, ha letöltöd + a Windowsos vagy Maces asztali alkalmazást. + id_html: Alternatív megoldásként beállíthatod alapértelmezett szerkesztőként + az iD-t, amely a webböngészőben fut, mint korábban a Potlatch. Felhasználói + beállításaidat itt módosíthatod. sidebar: search_results: Keresés eredményei close: Bezár search: search: Keresés - get_directions: Útvonalterv + get_directions: Útvonaltervezés get_directions_title: Útirány keresése két pont között from: Innen to: Ide @@ -1720,10 +2109,10 @@ hu: primary: Főút secondary: Összekötő út unclassified: Egyéb út - track: Földút + track: Mezőgazdasági/erdészeti út bridleway: Lovaglóút cycleway: Kerékpárút - cycleway_national: Nemzeti kerékpárút + cycleway_national: Országos kerékpárút cycleway_regional: Regionális kerékpárút cycleway_local: Helyi kerékpárút footway: Gyalogút @@ -1733,7 +2122,7 @@ hu: - HÉV - villamos cable: - - Fülkés + - Nagykabinos felvonó - függőszékes felvonó runway: - Kifutópálya @@ -1753,14 +2142,14 @@ hu: retail: Kereskedelmi terület industrial: Ipari terület commercial: Kereskedelmi terület - heathland: Kopár terület + heathland: Fenyér lake: - Tó - víztározó farm: Tanya brownfield: Bontási terület cemetery: Temető - allotments: Kert + allotments: Kiskertek pitch: Sportpálya centre: Sportközpont reserve: Természetvédelmi terület @@ -1777,38 +2166,21 @@ hu: bridge: Fekete szegély = híd private: Behajtás csak engedéllyel destination: Csak célforgalom - construction: Utak építés alatt - bicycle_shop: Kerékpár bolt - bicycle_parking: Kerékpár parkoló - toilets: Nyilvános WC - richtext_area: - edit: Szerkeszt - preview: Előnézet - markdown_help: - title_html: 'Megjelenítés: kramdown' - headings: Címsorok - heading: Címsor - subheading: Alcím - unordered: Rendezetlen lista - ordered: Rendezett lista - first: Első tétel - second: Második tétel - link: Hivatkozás - text: Szöveg - image: Kép - alt: ALT szöveg - url: URL + construction: Épülő utak + bicycle_shop: Kerékpárbolt + bicycle_parking: Kerékpártároló + toilets: WC welcome: - title: Üdvözlet! + title: Üdvözlünk! introduction_html: Üdvözöl az OpenStreetMap - a szabad és szerkeszthető világtérkép - közössége. Most, hogy regisztráltál, máris elkezdheted a térképezést. Itt elérhető egy gyors összefoglaló a legfontosabb tudnivalókkal. whats_on_the_map: title: Mi van a térképen - on_html: Az OpenStreetMapen olyan dolgokat ábrázolunk, amelyek valódiak - és jelenleg is léteznek - épületek milliói, utak és egyéb részletek - a különböző helyeken. Bármi olyan, téged érdeklő elemet ábrázolhatsz, ami - fizikailag létezik. + on_html: 'Az OpenStreetMapen olyan dolgokat ábrázolunk, amelyek valódiak + és jelenleg is léteznek: milliónyi épület, út és más hely különféle + jellemzőkkel. A térképre bármilyen téged érdeklő, valóságban is létező objektumot + felrajzolhatsz.' off_html: Amit nem ábrázolunk azok szubjektív adatok mint például értékelés, történelmi vagy történeti helyek, adatok jogvédett forrásokból. Sose másolj semmit más internetes vagy papír térképekről, hacsak nincs erre @@ -1852,27 +2224,28 @@ hu: traces: visibility: private: Magán (megosztva csak névtelenül, rendezetlen pontok) - public: Nyilvános (megjelenik a nyomvonalak listáján névtelenül, rendezetlen - pontok) + public: Nyilvános (megjelenik a nyomvonalak listáján és névtelen, rendezetlen + pontokként) trackable: Követhető (megosztva csak névtelenül, rendezett pontok időbélyeggel) identifiable: Azonosítható (megjelenik a nyomvonalak listáján, és azonosítható, - rendezett pontok időbélyeggel) + időbélyeggel ellátott rendezett pontokként) new: - upload_trace: GPS nyomvonal feltöltése + upload_trace: GPS-nyomvonal feltöltése visibility_help: Mit jelent ez? visibility_help_url: https://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces - help: Segítség + help: Súgó help_url: https://wiki.openstreetmap.org/wiki/Upload create: - upload_trace: GPS nyomvonal feltöltése - trace_uploaded: A GPX fájl feltöltése megtörtént, és várakozik az adatbázisba - való beillesztésre. Ez általában fél órán belül megtörténik, és kapni fogsz - egy e-mailt, amint elkészült. - upload_failed: A GPX feltöltése meghiúsult. Kérjük próbálja újra. - traces_waiting: '%{count} nyomvonalad várakozik feltöltésre. Kérlek fontold + upload_trace: GPS-nyomvonal feltöltése + trace_uploaded: A GPX-fájl feltöltődött, és várakozik az adatbázisba való beillesztésre. + Ez általában fél órán belül megtörténik, és kapni fogsz egy e-mailt, amint + elkészült. + upload_failed: A GPX feltöltése meghiúsult. Kérjük, próbáld meg újra. + traces_waiting: '%{count} nyomvonalad várakozik feltöltésre. Kérjük, fontold meg, hogy megvárod, amíg ezek befejeződnek mielőtt feltöltesz továbbiakat, hogy így ne tartsd fel a többi felhasználót a sorban.' edit: + cancel: Mégse title: 'Nyomvonal szerkesztése: %{name}' heading: 'Nyomvonal szerkesztése: %{name}' visibility_help: Mit jelent ez? @@ -1889,6 +2262,7 @@ hu: uploaded: 'Feltöltve:' points: 'Pontok száma:' start_coordinates: 'Kezdőkoordináta:' + coordinates_html: '%{latitude}; %{longitude}' map: térkép edit: szerkesztés owner: 'Tulajdonos:' @@ -1910,7 +2284,6 @@ hu: more: tovább trace_details: Nyomvonal részleteinek megtekintése view_map: Térkép megtekintése - edit: szerkesztés edit_map: Térkép szerkesztése public: NYILVÁNOS identifiable: AZONOSÍTHATÓ @@ -1918,12 +2291,11 @@ hu: trackable: NYOMKÖVETHETŐ by: 'készítette:' in: 'címkék:' - map: térkép index: - public_traces: Nyilvános GPS nyomvonalak - my_traces: Saját GPS nyomvonalak - public_traces_from: '%{user} nyilvános GPS nyomvonalai' - description: Legfrissebb GPS nyomvonalak tallózása + public_traces: Nyilvános GPS-nyomvonalak + my_traces: Saját GPS-nyomvonalak + public_traces_from: '%{user} nyilvános GPS-nyomvonalai' + description: Böngészés a legutóbb feltöltött GPS-nyomvonalak között tagged_with: ' %{tags} címkével' empty_html: Még nincs mit megjeleníteni. Tölts fel új nyomvonalat, vagy olvass bővebben a GPS nyomvonalrögzítésről a wiki @@ -1941,41 +2313,40 @@ hu: heading: A GPX-tároló offline message: A GPX-fájltároló és -feltöltő rendszer jelenleg nem érhető el. georss: - title: OpenStreetMap GPS nyomvonalak + title: OpenStreetMap GPS-nyomvonalak description: - description_with_count: - other: GPX fájl %{count} ponttal %{user} felhasználótól + description_with_count: '%{user} GPX fájlja %{count} ponttal' description_without_count: GPX fájl %{user} felhasználótól application: permission_denied: Nincs megfelelő jogosultságod a művelet végrehajtásához require_cookies: - cookies_needed: Úgy tűnik, hogy a böngésződben le vannak tiltva a sütik – a - folytatás előtt engedélyezd azokat. + cookies_needed: Úgy tűnik, hogy a böngésződben le vannak tiltva a sütik. A folytatáshoz + engedélyezd őket. require_admin: not_an_admin: Ennek a műveletnek az elvégzéséhez adminisztrátori jogosultsággal kell rendelkezned. setup_user_auth: blocked_zero_hour: Sürgős üzeneted van az OpenStreetMap weboldalon. El kell olvasnod az üzenetet, mielőtt elmentheted a változtatásokat. - blocked: Az API-hoz való hozzáférésed blokkolva lett. Jelentkezz be a webes - felületen a részletek megtekintéséhez. + blocked: Az API-hoz való hozzáférésed blokkolva lett. A részletek megtekintéséhez + jelentkezz be a webes felületen. need_to_see_terms: Az API-hoz való hozzáférésed ideiglenesen felfüggesztésre került. Jelentkezz be a webes felületen a közreműködési feltételek megtekintéséhez. Ezt nem kell elfogadnod, de meg kell tekintened. oauth: authorize: title: A fiókodhoz való hozzáférés engedélyezése - request_access_html: A(z) %{app_name} alkalmazás hozzáférést kér a felhasználói - fiókodhoz, %{user}. Kérlek, jelöld, ha azt szeretnéd, hogy az alkalmazás rendelkezzen - a következő képességekkel. Választhatsz olyan sokat vagy keveset, amennyit - szeretnél. + request_access_html: Kedves %{user}! A(z) %{app_name} alkalmazás hozzáférést + kér a felhasználói fiókodhoz. Kérlek, jelöld, ha azt szeretnéd, hogy az alkalmazás + képes legyen az alábbiakra. Annyit választasz ki, amennyit szeretnél. allow_to: 'Az alábbiak engedélyezése a kliensalkalmazásnak:' allow_read_prefs: felhasználói beállítások olvasása. allow_write_prefs: felhasználói beállítások módosítása. - allow_write_diary: naplóbejegyzések, hozzászólások készítése és barátok hozzáadása. + allow_write_diary: naplóbejegyzések, hozzászólások létrehozása és ismerősök + hozzáadása. allow_write_api: a térkép módosítása. - allow_read_gpx: magán GPS nyomvonalak olvasása. - allow_write_gpx: GPS nyomvonalak feltöltése. + allow_read_gpx: magán GPS-nyomvonalaid olvasása. + allow_write_gpx: GPS-nyomvonalak feltöltése. allow_write_notes: jegyzet módosítása grant_access: Hozzáférés megadása authorize_success: @@ -1987,20 +2358,20 @@ hu: denied: '%{app_name} alkalmazástól megtagadtad, hogy hozzáférhessen a fiókodhoz.' invalid: A hitelesítő token érvénytelen. revoke: - flash: Visszavontad az utalványt a(z) %{application} alkalmazáshoz + flash: Visszavontad a(z) %{application} tokenjét permissions: missing: Nem engedted meg az alkalmazás számára, hogy hozzáférjen ehhez a létesítményhez oauth_clients: new: title: Új alkalmazás regisztrálása edit: - title: Alkalmazás szerkesztése + title: Alkalmazásod szerkesztése show: title: '%{app_name} OAuth részletei' key: 'Fogyasztói kulcs:' secret: 'Fogyasztói titok:' - url: 'Utalványkérési URL:' - access_url: 'Utalvány-hozzáférési URL:' + url: 'Tokenkérési URL:' + access_url: 'Token-hozzáférési URL:' authorize_url: 'Felhatalmazási URL:' support_notice: Támogatjuk a HMAC-SHA1 (ajánlott) és az RSA-SHA1 hitelesítést. edit: Részletek szerkesztése @@ -2010,20 +2381,21 @@ hu: index: title: OAuth részletek my_tokens: Engedélyezett alkalmazások - list_tokens: 'A következő utalványok kerültek kibocsátásra a nevedben:' + list_tokens: 'A nevedben a következő tokenek lettek kibocsátva alkalmazásokhoz:' application: Alkalmazás neve - issued_at: Kibocsátva ekkor + issued_at: 'Kibocsátva:' revoke: Visszavonás! - my_apps: Kliensalkalmazások - no_apps_html: Van olyan alkalmazásod, amit szeretnél regisztrálni a velünk való - használathoz a(z) %{oauth} szabvány használatával? Regisztrálnod kell a webalkalmazásod, - mielőtt OAuth kéréseket küld ehhez a szolgáltatáshoz. + my_apps: Kliensalkalmazásaim + no_apps_html: Van egy olyan alkalmazásod, amit szeretnél regisztrálni a velünk + való használathoz a(z) %{oauth} szabvány használatával? Regisztrálnod kell + a webalkalmazásod, mielőtt OAuth kéréseket küld ehhez a szolgáltatáshoz. + oauth: OAuth registered_apps: 'A következő kliensalkalmazások vannak regisztrálva:' - register_new: Alkalmazás regisztrálása + register_new: Alkalmazásod regisztrálása form: requests: 'A következő engedélyek kérése a felhasználótól:' not_found: - sorry: Sajnálom, a(z) %{type} nem található. + sorry: Sajnáljuk, ez a(z) %{type} nem található. create: flash: Az információ sikeresen regisztrálva update: @@ -2031,95 +2403,20 @@ hu: destroy: flash: A kliensalkalmazás regisztrációja törölve users: - login: - title: Bejelentkezés - heading: Bejelentkezés - email or username: 'E-mail cím vagy felhasználónév:' - password: 'Jelszó:' - openid_html: '%{logo} OpenID:' - remember: Emlékezz rám - lost password link: Elfelejtetted a jelszavad? - login_button: Bejelentkezés - register now: Regisztrálj most - with username: 'Már van OpenStreetMap fiókod? Jelentkezz be a felhasználóneveddel - és jelszavaddal:' - with external: 'Alternatívaként használj külső fiókot a bejelentkezéshez:' - new to osm: Új vagy az OpenStreetMapnál? - to make changes: Ahhoz, hogy módosíthasd az OpenStreetMap-adatokat, rendelkezned - kell egy felhasználói fiókkal. - create account minute: Hozz létre egy felhasználói fiókot. Csak egy percet vesz - igénybe. - no account: Nem rendelkezel még felhasználói fiókkal? - account not active: Sajnálom, a felhasználói fiókod még nincs aktiválva.
    Fiókod aktiválásához kérlek, használd a fiókodat megerősítő emailben található - hivatkozást, vagy
    kérj egy új megerősítő emailt. - account is suspended: 'Sajnáljuk, a fiókodat felfüggesztettük gyanús tevékenység - miatt.
    Lépj kapcsolatba ezen a címen: a webmasterrel a - kérdés tisztázásához.' - auth failure: Sajnálom, ilyen adatokkal nem tudsz bejelentkezni. - openid_logo_alt: Bejelentkezés egy OpenID-vel - auth_providers: - openid: - title: Bejelentkezés OpenID-vel - alt: Bejelentkezés OpenID-URL-lel - google: - title: Bejelentkezés Google-lel - alt: Bejelentkezés Google OpenID-vel - facebook: - title: Bejelentkezés Facebook-kal - alt: Bejelentkezés Facebook fiókkal - windowslive: - title: Bejelentkezés Windows Live-val. - alt: Bejelentkezés Windows Live fiókkal - github: - title: Bejelentkezés GitHub-bal - alt: Bejelentkezés GitHub fiókkal - wikipedia: - title: Bejelentkezés Wikipédiával - alt: Wikipédia fiókkal való bejelentkezés - yahoo: - title: Bejelentkezés Yahoo-val - alt: Bejelentkezés Yahoo OpenID-vel - wordpress: - title: Bejelentkezés Wordpress-szel - alt: Bejelentkezés Wordpress OpenID-vel - aol: - title: Bejelentkezés AOL-lal - alt: Bejelentkezés AOL OpenID-vel - logout: - title: Kijelentkezés - heading: Kijelentkezés az OpenStreetMapból - logout_button: Kijelentkezés - lost_password: - title: Elvesztett jelszó - heading: Elfelejtetted jelszavad? - email address: 'E-mail cím:' - new password button: Jelszó alaphelyzetbe állítása - help_text: Add meg az e-mail címed, amellyel regisztráltál; küldeni fogunk egy - hivatkozást, amivel visszaállíthatod a jelszavad. - notice email on way: Sajnálom, hogy elvesztetted :-( de már úton van egy e-mail, - így nemsokára alaphelyzetbe állíthatod. - notice email cannot find: Sajnáljuk, az e-mail-cím nem található. - reset_password: - title: Jelszó alaphelyzetbe állítása - heading: '%{user} jelszavának alaphelyzetbe állítása' - reset: Jelszó alaphelyzetbe állítása - flash changed: Jelszavad megváltozott. - flash token bad: Nem található ez az utalvány, ellenőrizd az URL-t. new: title: Felhasználói fiók létrehozása no_auto_account_create: Sajnos jelenleg nem tudunk neked létrehozni automatikusan egy felhasználói fiókot. - contact_webmaster_html: Kérlek fordulj a webmesterhez - (angolul), hogy lehetővé tegye felhasználói fiók létrehozását - mi igyekszünk + contact_webmaster_html: Kérjük, fordulj a webmesterhez + (angolul), hogy lehetővé tegye felhasználói fiók létrehozását. Igyekszünk olyan gyorsan foglalkozni a kéréssel, amilyen gyorsan csak lehet. about: header: Szabad és szerkeszthető html: |-

    Ellentétben más térképekkel, az OpenStreetMapet teljes mértékben hozzád hasonló emberek készítik és bárki szabadon javíthatja, frissítheti, letöltheti vagy felhasználhatja.

    Regisztrálj és máris kezdheted a térképszerkesztést. Egy jóváhagyó e-mailt fogunk küldeni a címedre.

    - email address: 'E-mail cím:' - confirm email address: 'E-mail cím megerősítése:' + email address: 'E-mail-cím:' + confirm email address: 'E-mail-cím megerősítése:' display name: 'Megjelenítendő név:' display name description: A nyilvánosan megjelenített felhasználóneved. A beállításaidban később megváltoztathatod. @@ -2129,19 +2426,22 @@ hu: de néhány extra eszköz vagy szerver igényelhet egyet. continue: Regisztráció terms accepted: Köszönjük, hogy elfogadtad az új hozzájárulási feltételeket! - terms declined: Sajnáljuk, hogy úgy döntöttél, nem fogadod el az új hozzájárulási + terms declined: Sajnáljuk, hogy úgy döntöttél, nem fogadod el az új közreműködési feltételeket. További információért lásd ezt a wiki oldalt. terms declined url: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined terms: title: Feltételek heading: Feltételek heading_ct: Hozzájárulási feltételek - read and accept with tou: Kérlek olvasd el a hozzájárulói megállapodást és felhasználási - feltételeket, majd a jelölőnégyzetek használatával erősítsd meg, hogy elfogadod - őket, ezután kattints a folytatás gombra. + read and accept with tou: Kérjük, olvasd el a közreműködői megállapodást és + felhasználási feltételeket, majd a jelölőnégyzetek használatával erősítsd + meg, hogy elfogadod őket, ezután kattints a folytatás gombra. contributor_terms_explain: Ez a megállapodás vonatkozik a jelenlegi és jövőbeli hozzájárulásaidra. read_ct: Elolvastam és elfogadom a hozzájárulói feltételeket + tou_explain_html: A webhely és az OSMF által biztosított egyéb infrastruktúra + használatát ezek a %{tou_link} szabályozzák. Kérjük, kattints a linkre, majd + olvasd el és fogadd el a szöveget. read_tou: Elolvastam és elfogadom a felhasználási feltételeket consider_pd: A fenti megállapodáson felül, a hozzájárulásaimat közkinccsé nyilvánítom consider_pd_why: mi ez? @@ -2151,9 +2451,9 @@ hu: fordítás' continue: Folytatás declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined - decline: Elutasítom - you need to accept or decline: Kérünk, hogy olvasd el, ezután fogadd vagy utasítsd - el az új hozzájárulási feltételeket a folytatáshoz. + decline: Elutasítás + you need to accept or decline: A folytatáshoz kérjük, olvasd el, majd fogadd + el vagy utasítsd el az új közreműködési feltételeket. legale_select: 'Kérlek, válaszd ki a lakóhelyed szerinti országot:' legale_names: france: Franciaország @@ -2162,29 +2462,29 @@ hu: no_such_user: title: Nincs ilyen felhasználó heading: '%{user} felhasználó nem létezik' - body: Sajnálom, nincs %{user} nevű felhasználó. Ellenőrizd a helyességét, vagy - lehet, hogy a link, amire kattintottál, rossz. + body: Sajnáljuk, nincs %{user} nevű felhasználó. Ellenőrizd a helyességét. Az + is lehet, hogy rossz linkre kattintottál. deleted: törölve show: my diary: Naplóm new diary entry: új naplóbejegyzés my edits: Szerkesztéseim - my traces: Saját nyomvonalak - my notes: Saját jegyzeteim + my traces: Nyomvonalaim + my notes: Jegyzeteim my messages: Üzeneteim my profile: Profilom my settings: Beállításaim - my comments: Saját megjegyzések + my comments: Hozzászólásaim oauth settings: oauth beállítások - blocks on me: Saját blokkolásaim + blocks on me: Engem sújtó blokkolások blocks by me: Általam kiosztott blokkolások send message: Üzenet küldése diary: Napló edits: Szerkesztések traces: Nyomvonalak notes: Térképjegyzetek - remove as friend: Barát eltávolítása - add as friend: Felvétel barátnak + remove as friend: Ismerős eltávolítása + add as friend: Felvétel ismerősnek mapper since: 'Térképszerkesztő ezóta:' ct status: 'Hozzájárulási feltételek:' ct undecided: Nem eldöntött @@ -2199,11 +2499,11 @@ hu: if_set_location_html: Ha beállítod a lakhelyedet a %{settings_link} oldalon, megnézheted a hozzád közeli felhasználókat. settings_link_text: beállítások - my friends: Barátaim - no friends: Még nem adtál meg egyetlen barátot sem. - km away: '%{count} km-re innen' - m away: '%{count} m-re innen' - nearby users: Egyéb közeli felhasználók + my friends: Ismerőseim + no friends: Még nem adtál meg egyetlen ismerőst sem. + km away: '%{count} km távolságra' + m away: '%{count} m távolságra' + nearby users: További közeli felhasználók no nearby users: Még nincsenek más felhasználók, akik megadták, hogy a közelben szerkesztenek. role: @@ -2217,7 +2517,7 @@ hu: moderator: Moderátori hozzáférés viszzavonása block_history: Aktív blokkolások moderator_history: Kiosztott blokkolások - comments: Megjegyzések + comments: Hozzászólások create_block: felhasználó blokkolása activate_user: felhasználó aktiválása deactivate_user: felhasználó deaktiválása @@ -2226,17 +2526,17 @@ hu: unhide_user: felhasználó elrejtésének megszüntetése delete_user: felhasználó törlése confirm: Megerősítés - friends_changesets: Ismerőseid módosításcsomagjai - friends_diaries: barátok naplóbejegyzései - nearby_changesets: közeli felhasználók módosításai + friends_changesets: ismerősök módosításcsomagjai + friends_diaries: ismerősök naplóbejegyzései + nearby_changesets: közeli felhasználók módosításcsomagjai nearby_diaries: közeli felhasználók naplóbejegyzései - report: Felhasználó jelentése + report: Felhasználó bejelentése popup: your location: Helyed nearby mapper: Közeli térképszerkesztő - friend: Barát + friend: Ismerős account: - title: Felhasználói fiók szerkesztése + title: Fiók szerkesztése my settings: Beállításaim current email address: Jelenlegi e-mail-cím external auth: Külső hitelesítés @@ -2266,7 +2566,7 @@ hu: heading: Hozzájárulási feltételek agreed: Elfogadtad az új hozzájárulási feltételeket. not yet agreed: Még nem fogadtad el az új hozzájárulási feltételeket. - review link text: Kérlek, kövesd ezt a hivatkozást az új hozzájárulási feltételek + review link text: Kérjük, kövesd ezt a hivatkozást az új közreműködési feltételek áttekintéséhez és elfogadásához. agreed_with_pd: Azt is kijelentetted, hogy a szerkesztéseid közkincsnek tekinthetők. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms @@ -2285,7 +2585,7 @@ hu: image size hint: (legalább 100x100 pixel nagyságú négyzetes kép javasolt) home location: Otthon no home location: Nem adtad meg az otthonod helyét. - update home location on click: Otthon helyének frissítése, amikor a térképre + update home location on click: Frissüljön-e az otthonom helye, amikor a térképre kattintok? save changes button: Módosítások mentése make edits public button: Szerkesztéseim nyilvánossá tétele @@ -2293,34 +2593,6 @@ hu: flash update success confirm needed: Felhasználói információk sikeresen frissítve. Nézd meg az e-mailjeidet az új e-mail címedet megerősítő levélhez. flash update success: Felhasználói információk sikeresen frissítve. - confirm: - heading: Nézd meg az e-mailjeidet! - introduction_1: Jóváhagyó e-mailt küldtünk a címedre. - introduction_2: Erősítsd meg a regisztrációt a levélben található linkre kattintva - és máris kezdheted a térképezést. - press confirm button: Felhasználói fiókod megerősítéséhez nyomd meg az alábbi - megerősítés gombot. - button: Megerősítés - success: Felhasználói fiókod megerősítve, köszönjük a regisztrációt! - already active: Ez a fiók már megerősítésre került. - unknown token: Ez a megerősítési kód lejárt vagy nem létezik. - reconfirm_html: A jóváhagyó link újraküldéséhez kattints - ide. - confirm_resend: - success_html: Elküldtünk egy új megerősítő üzenetet a(z) %{email} címre, és - amint megerősíted a felhasználói fiókodat, hozzákezdhetsz a térképezéshez.

    Ha használsz olyan antispam rendszert, amely megerősítési kérelmeket - küld, akkor győződj meg róla, hogy engedélylistára tetted a %{sender} címet, - mivel nem tudunk válaszolni megerősítési kérelmekre. - failure: '%{name} felhasználó nem található.' - confirm_email: - heading: E-mail cím módosításának megerősítése - press confirm button: Új e-mail címed megerősítéséhez nyomd meg az alábbi megerősítés - gombot. - button: Megerősítés - success: Az e-mail címed módosítása megerősítve! - failure: Egy e-mail cím már megerősítésre került ezzel az utalvánnyal. - unknown_token: Ez a megerősítő kód lejárt, vagy nem létezik. set_home: flash success: Otthon helye sikeresen mentve go_public: @@ -2331,7 +2603,7 @@ hu: heading: Felhasználók showing: one: '%{page}. oldal (%{first_item}. elem, összesen: %{items})' - other: '%{page}. oldal (%{first_item}-%{last_item}. elem, összesen: %{items})' + other: '%{page}. oldal (%{first_item}–%{last_item}. elem, összesen: %{items})' summary_html: '%{name} létrejött innen: %{ip_address}, ekkor: %{date}' summary_no_ip_html: '%{name} letrejött ekkor: %{date}' confirm: Kijelölt felhasználók megerősítése @@ -2374,22 +2646,22 @@ hu: heading: Szerep kiosztásának megerősítése are_you_sure: Biztosan kiosztod '%{name}' felhasználónak a '%{role}' szerepet? confirm: Megerősítés - fail: A '%{role}' szerep nem osztható ki '%{name}' felhasználónak. Kérlek ellenőrizd, - hogy mind a felhasználó, mind a szerep érvényes-e. + fail: '%{name} felhasználónak nem sikerült meadni a %{role} szerepet. Kérjük, + ellenőrizd, hogy a felhasználó és a szerep érvényes-e.' revoke: title: Szerep visszavonásának megerősítése heading: Szerep visszavonásának megerősítése are_you_sure: Biztosan megfosztod '%{name}' felhasználót '%{role}' szerepétől? confirm: Megerősítés - fail: A '%{role}' szerep nem vonható vissza '%{name}' felhasználótól. Kérlek - ellenőrizd, hogy mind a felhasználó, mind a szerep érvényes-e. + fail: A %{role} szerepet nem sikerült visszavonni %{name} felhasználótól. Kérjük, + ellenőrizd, hogy a felhasználó és a szerep érvényes-e. user_blocks: model: non_moderator_update: Blokkolás kiosztásához vagy frissítéséhez moderátornak kell lenned. non_moderator_revoke: Blokkolás visszavonásához moderátornak kell lenned. not_found: - sorry: Sajnálom, a(z) %{id} azonosítójú felhasználói blokkolás nem található. + sorry: Sajnáljuk, a(z) %{id} azonosítójú felhasználói blokkolás nem található. back: Vissza a tartalomjegyzékhez new: title: '%{name} blokkolása' @@ -2411,8 +2683,8 @@ hu: block_period: A blokkolási időszaknak egy, a legördülő listából kiválasztható értéknek kell lennie. create: - try_contacting: Kérlek, próbálj meg kapcsolatba lépni a felhasználóval, mielőtt - blokkolod őt, és a válaszoláshoz adj neki ésszerű időt a válasz. + try_contacting: Kérjük, próbálj meg kapcsolatba lépni a felhasználóval, mielőtt + blokkolod, és adj neki ésszerű időt a válaszadáshoz. try_waiting: Kérlek, adj a felhasználónak ésszerű időt a válaszoláshoz, mielőtt blokkolod őt. flash: '%{name} felhasználó blokkolva lett.' @@ -2439,8 +2711,8 @@ hu: time_past_html: Véget ért %{time} időpontban. block_duration: hours: - one: 1 órája - other: '%{count} órája' + one: 1 óra + other: '%{count} óra' days: one: 1 nap other: '%{count} nap' @@ -2512,6 +2784,8 @@ hu: custom_dimensions: Kiterjedés megadása format: 'Formátum:' scale: 'Méretarány:' + image_dimensions: A kép az alapértelmezett réteget fogja megjeleníteni a következőnél + %{width} × %{height}. download: Letöltés short_url: Rövid URL include_marker: Helyjelölővel @@ -2520,7 +2794,7 @@ hu: view_larger_map: Nagyobb térkép only_standard_layer: Csak az alap réteget lehet képként exportálni embed: - report_problem: Probléma jelentése + report_problem: Probléma bejelentése key: title: Jelmagyarázat tooltip: Jelmagyarázat @@ -2530,23 +2804,40 @@ hu: in: Nagyítás out: Kicsinyítés locate: - title: Mutasd a helyzetemet + title: Helyzetem megjelenítése + metersPopup: + one: Egy méternél közelebb vagy ehhez a ponthoz + other: '%{count} méternél közelebb vagy ehhez a ponthoz' + feetPopup: + one: Egy lábnál is közelebb vagy ehhez a ponthoz + other: '%{count} lábnál közelebb vagy ehhez a ponthoz' base: standard: Alapértelmezett + cyclosm: CyclOSM cycle_map: Kerékpártérkép transport_map: Tömegközlekedés hot: Humanitárius + opnvkarte: ÖPNVKarte (tömegközlekedés) layers: header: Térképnézetek notes: Térképjegyzetek data: Térképadatok - gps: Nyilvános GPS nyomvonalak + gps: Nyilvános GPS-nyomvonalak overlays: További rétegek engedélyezése a térkép hibáinak javítása érdekében title: Rétegek copyright: © OpenStreetMap közreműködők donate_link_text: terms: A weboldal és API felhasználási feltételei + cyclosm: 'Csempestílus: CyclOSM, + üzemeltető: OpenStreetMap France' + thunderforest: Csempék Andy Allen + jóvoltából + opnvkarte: Csempék a MeMoMaps + jóvoltából + hotosm: 'Csempestílus: Humanitarian + OpenStreetMap Team, üzemeltető: OpenStreetMap + France' site: edit_tooltip: Térkép szerkesztése edit_disabled_tooltip: Közelíts a térkép szerkesztéséhez @@ -2554,11 +2845,11 @@ hu: createnote_disabled_tooltip: Nagyíts térképes jegyzet hozzáadásához map_notes_zoom_in_tooltip: Nagyítsd fel a térképet a jegyzetek megjelenítéséhez map_data_zoom_in_tooltip: Nagyítsd fel a térképet a térképadatok megjelenítéséhez - queryfeature_tooltip: Funkciók lekérdezése - queryfeature_disabled_tooltip: Közelíts a lekérdezés funkció használatához + queryfeature_tooltip: Objektumok lekérdezése + queryfeature_disabled_tooltip: Objektumok lekérdezéséhez nagyíts a térképre changesets: show: - comment: Megjegyzés + comment: Hozzászólás subscribe: Feliratkozás unsubscribe: Leiratkozás hide_comment: elrejt @@ -2573,14 +2864,14 @@ hu: származó információkat. add: Jegyzet hozzáadása show: - anonymous_warning: Ez a jegyzet névtelen felhasználók megjegyzéseit is tartalmazza, - melyeket ellenőrizni szükséges. + anonymous_warning: Ez a jegyzet névtelen felhasználók hozzászólásait is tartalmazza, + amelyeket független módon kell ellenőrizni. hide: Elrejtés resolve: Megoldás reactivate: Újraaktiválás - comment_and_resolve: Hozzászólás és lezárás + comment_and_resolve: Hozzászólás és megoldás comment: Hozzászólás - edit_help: Mozgassa a térképet, nagyítson ott ahol módosítani szeretne, majd kattintson + edit_help: Mozgasd a térképet, nagyíts ott ahol módosítani szeretnéd, majd kattints ide. directions: ascend: Emelkedés @@ -2596,10 +2887,11 @@ hu: distance: Távolság errors: no_route: Nem található útvonal a két hely között. - no_place: Sajnálom – '%{place}' nem található. + no_place: Sajnáljuk, %{place} helyet nem sikerült megtalálnunk a térképen. instructions: continue_without_exit: Folyamatosan %{name} slight_right_without_exit: Enyhén jobbra %{name} + offramp_right: Hajts ki jobbra offramp_right_with_exit: Hajts ki a jobb oldali %{exit} kijáraton offramp_right_with_exit_name: 'Hajts ki a jobb oldali %{exit} kijáraton a következőre: %{name}' @@ -2608,7 +2900,15 @@ hu: offramp_right_with_exit_name_directions: 'Hajts ki a jobb oldali %{exit} kijáraton a következőre: %{name}, %{directions} felé' offramp_right_with_name: 'Forduljon jobbra erre: %{name}' + offramp_right_with_directions: Hajtson ki jobbra %{directions} irányába + offramp_right_with_name_directions: 'Hajtson ki jobbra, erre: %{name}, %{directions} + irányába' onramp_right_without_exit: 'Forduljon jobbra, erre: %{name}' + onramp_right_with_directions: Forduljon jobbra a kijáraton %{directions} irányába + onramp_right_with_name_directions: Fordulj jobbra a(z) %{name} feljáróra, + %{directions} irányába + onramp_right_without_directions: Forduljon jobbra a kijáraton + onramp_right: Forduljon jobbra a kijáraton endofroad_right_without_exit: 'Az út végén forduljon jobbra erre: %{name}' merge_right_without_exit: 'Forduljon jobbra, erre: %{name}' fork_right_without_exit: 'Az elágazásnál forduljon jobbra, erre: %{name}' @@ -2617,8 +2917,23 @@ hu: uturn_without_exit: Forduljon vissza %{name} sharp_left_without_exit: Élesen balra %{name} turn_left_without_exit: Forduljon balra %{name} + offramp_left: Hajts fel a feljáróra a bal oldalon + offramp_left_with_exit: Hajts ki a(z) %{exit} kijáraton a bal oldalon + offramp_left_with_exit_name: 'Hajts ki a(z) %{exit} kijáraton balra erre: + %{name}' + offramp_left_with_exit_directions: Hajts ki a(z) %{exit} kijáraton balra %{directions} + irányába + offramp_left_with_exit_name_directions: 'Hajts ki a(z) %{exit} kijáraton balra + erre: %{name}, %{directions} irányába' offramp_left_with_name: 'Forduljon balra, erre: %{name}' + offramp_left_with_directions: Hajts fel a feljáróra a bal oldalon %{directions} + irányába + offramp_left_with_name_directions: 'Hajts fel a feljáróra balra erre: %{name}, + %{directions} irányába' onramp_left_without_exit: 'Forduljon balra, erre: %{name}' + onramp_left_with_directions: Fordulj balra a feljáróra %{directions} irányába + onramp_left_with_name_directions: Fordulj balra a(z) %{name} feljáróra, %{directions} + irányába onramp_left_without_directions: Hajtson rá a bal oldali rámpára onramp_left: Hajtson rá a bal oldali rámpára endofroad_left_without_exit: 'Az út végén forduljon balre, erre: %{name}' @@ -2654,50 +2969,50 @@ hu: tenth: "10." time: Időtartam query: - node: Csomópont + node: Pont way: Vonal relation: Kapcsolat - nothing_found: Nem találhatók adatok + nothing_found: Nem található objektum error: 'Hiba a %{server} szerverhez való kapcsolódáshoz: %{error}' - timeout: Időtúllépés a %{server}szerverhez kapcsolódás során + timeout: Időtúllépés a %{server} szerverhez való kapcsolódáskor context: directions_from: Navigáció innen directions_to: Navigáció ide add_note: Jegyzet hozzáadása itt show_address: Cím megjelenítése - query_features: Funkciók lekérdezése + query_features: Objektumok lekérdezése centre_map: Térkép középre hozása itt redactions: edit: - heading: Módosítás szerkesztése - title: Módosítás szerkesztése + heading: Adattörlési művelet szerkesztése + title: Adattörlési művelet szerkesztése index: - empty: Nincs mutatandó módosítás. - heading: Módosítások listája - title: Módosítások listája + empty: Nincs megjeleníthető adattörlési művelet. + heading: Adattörlések listája + title: Adattörlések listája new: - heading: Információ megadása az új módosításról - title: Új módosítás létrehozása + heading: Információ megadása új adattörlési művelethez + title: Új adattörlési művelet létrehozása show: description: 'Leírás:' - heading: '"%{title}" módosítás mutatása' - title: Módosítás mutatása + heading: „%{title}” adattörlési művelet megjelenítése + title: Adattörlési művelet megjelenítése user: 'Készítő:' - edit: Ennek a módosításnak mutatása - destroy: Módosítás eltávolítása + edit: Ennek az adattörlési műveletnek a szerkesztése + destroy: Adattörlési művelet eltávolítása confirm: Biztos vagy benne? create: - flash: Módosítás létrehozva. + flash: Adattörlési művelet létrehozva. update: - flash: Változtatások elmentve. + flash: Módosítások elmentve. destroy: - not_empty: A módosítás nem üres. Vond vissza az összes ehhez tartozó verziót, - mielőtt törlöd ezt a módosítást. - flash: Módosítás törölve. - error: Hiba történt a művelet végrehajtása során. + not_empty: Az adattörlési művelet nem üres. A megsemmisítés előtt vond vissza + az ehhez az adattörlési művelethez tartozó összes verziót. + flash: Adattörlési művelet megsemmisítve. + error: Hiba történt az adattörlési művelet megsemmisítésekor. validations: leading_whitespace: első karaktere(i) szóközök trailing_whitespace: utolsó karaktere(i) szóközök invalid_characters: érvénytelen karaktereket tartalmaz - url_characters: speciális URL karaktereket tartalmaz (%{characters}) + url_characters: 'speciális URL karaktereket tartalmaz: (%{characters})' ... diff --git a/config/locales/ia.yml b/config/locales/ia.yml index 33a3497df..84d47b3dc 100644 --- a/config/locales/ia.yml +++ b/config/locales/ia.yml @@ -120,27 +120,41 @@ ia: body: Texto recipient: Destinatario redaction: + title: Titulo description: Description report: category: Selige un motivo pro tu reporto details: Per favor, forni plus detalios sur le problema (obligatori). user: + auth_provider: Fornitor de authentication + auth_uid: UID de authentication email: E-mail - new_email: 'Adresse de e-mail nove:' + email_confirmation: Confirmation del e-mail + new_email: Nove adresse de e-mail active: Active display_name: Nomine public - description: Description - home_lat: 'Latitude:' - home_lon: 'Longitude:' - languages: Linguas + description: Description del profilo + home_lat: Latitude + home_lon: Longitude + languages: Linguas preferite + preferred_editor: Editor preferite pass_crypt: Contrasigno pass_crypt_confirmation: Confirmar contrasigno help: trace: tagstring: separate per commas user_block: + reason: Le motivo proque le usator es blocate. Per favor sia tanto calme e + rationabile como possibile, e da tante detalios sur le situation como tu + pote. Non oblida que le message essera publicamente visibile. Nota ben que + non tote le usatores comprende le jargon del communitate; per favor tenta + usar terminos simple. needs_view: Debe le usator aperir un session ante que iste blocada es cancellate? user: + email_confirmation: Tu adresse non es monstrate publicamente. Vide nostre + politica + de confidentialitate pro plus information. new_email: (nunquam monstrate publicamente) datetime: distance_in_words_ago: @@ -802,22 +816,27 @@ ia: bunker: Bunker cannon: Cannon historic castle: Castello + charcoal_pile: Pila de carbon historic church: Ecclesia city_gate: Porta de citate citywalls: Muro del citate fort: Forte heritage: Sito de patrimonio + hollow_way: Cammino cave house: Casa manor: Casa seniorial memorial: Memorial + milestone: Petra milliari historic mine: Mina mine_shaft: Puteo de mina monument: Monumento + railway: Ferrovia historic roman_road: Via roman ruins: Ruinas stone: Petra tomb: Tumba tower: Turre + wayside_chapel: Cappella al bordo del cammino wayside_cross: Cruce juxta le via wayside_shrine: Reliquario juxta le via wreck: Naufragio @@ -826,6 +845,7 @@ ia: "yes": Intersection landuse: allotments: Jardines familial + aquaculture: Aquacultura basin: Bassino brownfield: Terreno industrial subutilisate cemetery: Cemeterio @@ -933,6 +953,7 @@ ia: cape: Capo cave_entrance: Entrata de caverna cliff: Precipitio + coastline: Litoral crater: Crater dune: Duna fell: Montania @@ -1434,11 +1455,39 @@ ia: %{url}. unsubscribe: Pro disabonar te del actualisationes de iste gruppo de modificationes, visita %{url} e clicca sur "Disabonar". + confirmations: + confirm: + heading: Verifica tu e-mail! + introduction_1: Nos te ha inviate un message de confirmation. + introduction_2: Confirma tu conto con un clic sur le ligamine in le message + e tu potera comenciar a cartographiar. + press confirm button: Preme le button de confirmation ci infra pro activar tu + conto. + button: Confirmar + success: Tu conto ha essite confirmate, gratias pro inscriber te! + already active: Iste conto ha ja essite confirmate. + unknown token: Iste codice de confirmation ha expirate o non existe. + reconfirm_html: Pro reciper un altere message de confirmation, clicca + hic. + confirm_resend: + success_html: Nos ha inviate un nove message de confirmation a %{email} e si + tosto que tu confirma le conto, tu potera comenciar a cartographar.

    Si tu usa un systema anti-spam que invia requestas de confirmation, alora + per favor assecura te de adder %{sender} al lista blanc, alteremente nos non + pote responder a requestas de confirmation. + failure: Usator %{name} non trovate. + confirm_email: + heading: Confirmar un cambio de adresse de e-mail + press confirm button: Preme le button Confirmar ci infra pro confirmar tu nove + adresse de e-mail. + button: Confirmar + success: Le cambio del adresse de e-mail ha essite confirmate. + failure: Un adresse de e-mail ha ja essite confirmate con iste token. + unknown_token: Iste codice de confirmation ha expirate o non existe. messages: inbox: title: Cassa de entrata my_inbox: Mi cassa de entrata - outbox: cassa de exito messages: Tu ha %{new_messages} e %{old_messages} new_messages: one: '%{count} nove message' @@ -1473,9 +1522,6 @@ ia: body: Non existe un message con iste ID. outbox: title: Cassa de exito - my_inbox_html: Mi %{inbox_link} - inbox: cassa de entrata - outbox: cassa de exito messages: one: Tu ha %{count} message inviate other: Tu ha %{count} messages inviate @@ -1509,6 +1555,82 @@ ia: as_unread: Message marcate como non legite destroy: destroyed: Message delite + passwords: + lost_password: + title: Contrasigno perdite + heading: Contrasigno oblidate? + email address: 'Adresse de e-mail:' + new password button: Reinitialisar contrasigno + help_text: Entra le adresse de e-mail que tu usava pro inscriber te, e nos te + inviara un ligamine a iste adresse que tu pote usar pro reinitialisar tu contrasigno. + notice email on way: Es infortunate que tu lo perdeva :-( ma un e-mail es in + via que te permittera de reinitalisar lo tosto. + notice email cannot find: Non poteva trovar iste adresse de e-mail, pardono. + reset_password: + title: Reinitialisar contrasigno + heading: Reinitialisar le contrasigno de %{user} + reset: Reinitialisar contrasigno + flash changed: Tu contrasigno ha essite cambiate. + flash token bad: Token non trovate. Verifica le URL. + sessions: + new: + title: Aperir session + heading: Aperir session + email or username: 'Adresse de e-mail o nomine de usator:' + password: 'Contrasigno:' + openid_html: 'OpenID de %{logo}:' + remember: 'Memorar me:' + lost password link: Contrasigno perdite? + login_button: Aperir session + register now: Registrar ora + with username: 'Ha tu jam un conto de OpenStreetMap? Per favor aperi session + con tu nomine de usator e contrasigno:' + with external: 'Alternativemente, usa un tertio pro aperir session:' + new to osm: Nove a OpenStreetMap? + to make changes: Pro facer modificationes in le datos de OpenStreetMap, es necessari + haber un conto. + create account minute: Crea un conto. Isto dura solmente un minuta. + no account: Non ha un conto? + account not active: Pardono, tu conto non es ancora active.
    Per favor clicca + super le ligamine in le e-mail de confirmation pro activar tu conto, o requesta un nove message de confirmation.. + account is suspended: Le tue conto ha essite suspendite a causa de activitate + suspecte.
    Per favor contacta le webmaster + si tu vole discuter isto. + auth failure: Pardono, non poteva aperir un session con iste detalios. + openid_logo_alt: Aperir session con OpenID + auth_providers: + openid: + title: Aperir session con OpenID + alt: Aperir session con un URL de OpenID + google: + title: Aperir session con Google + alt: Aperir session con un OpenID de Google + facebook: + title: Aperir session con Facebook + alt: Aperir session con un conto de Facebook + windowslive: + title: Aperir session con Windows Live + alt: Aperir session con un conto de Windows Live + github: + title: Aperir session con GitHub + alt: Aperir session con un conto de GitHub + wikipedia: + title: Aperir session con Wikipedia + alt: Aperir session con un conto de Wikipedia + yahoo: + title: Aperir session con Yahoo + alt: Aperir session con un OpenID de Yahoo + wordpress: + title: Aperir session con WordPress + alt: Aperir session con un OpenID de WordPress + aol: + title: Aperir session con AOL + alt: Aperir session con un OpenID de AOL + destroy: + title: Clauder session + heading: Clauder le session de OpenStreetMap + logout_button: Clauder session site: about: next: Sequente @@ -1881,23 +2003,6 @@ ia: bicycle_shop: Magazin de bicyclettas bicycle_parking: Parcamento de bicyclettas toilets: Toilettes - richtext_area: - edit: Modificar - preview: Previsualisation - markdown_help: - title_html: Processate con kramdown - headings: Titulos - heading: Titulo - subheading: Subtitulo - unordered: Lista non ordinate - ordered: Lista ordinate - first: Prime elemento - second: Secunde elemento - link: Ligamine - text: Texto - image: Imagine - alt: Texto alternative - url: URL welcome: title: Benvenite! introduction_html: Bevenite a OpenStreetMap, le carta libere e modificabile @@ -2013,7 +2118,6 @@ ia: more: plus trace_details: Vider detalios del tracia view_map: Vider carta - edit: modificar edit_map: Modificar carta public: PUBLIC identifiable: IDENTIFICABILE @@ -2021,7 +2125,6 @@ ia: trackable: TRACIABILE by: per in: in - map: carta index: public_traces: Tracias GPS public my_traces: Mi tracias GPS @@ -2134,80 +2237,6 @@ ia: destroy: flash: Le registration del application cliente ha essite destruite users: - login: - title: Aperir session - heading: Aperir session - email or username: 'Adresse de e-mail o nomine de usator:' - password: 'Contrasigno:' - openid_html: 'OpenID de %{logo}:' - remember: 'Memorar me:' - lost password link: Contrasigno perdite? - login_button: Aperir session - register now: Registrar ora - with username: 'Ha tu jam un conto de OpenStreetMap? Per favor aperi session - con tu nomine de usator e contrasigno:' - with external: 'Alternativemente, usa un tertio pro aperir session:' - new to osm: Nove a OpenStreetMap? - to make changes: Pro facer modificationes in le datos de OpenStreetMap, es necessari - haber un conto. - create account minute: Crea un conto. Isto dura solmente un minuta. - no account: Non ha un conto? - account not active: Pardono, tu conto non es ancora active.
    Per favor clicca - super le ligamine in le e-mail de confirmation pro activar tu conto, o requesta un nove message de confirmation.. - account is suspended: Le tue conto ha essite suspendite a causa de activitate - suspecte.
    Per favor contacta le webmaster - si tu vole discuter isto. - auth failure: Pardono, non poteva aperir un session con iste detalios. - openid_logo_alt: Aperir session con OpenID - auth_providers: - openid: - title: Aperir session con OpenID - alt: Aperir session con un URL de OpenID - google: - title: Aperir session con Google - alt: Aperir session con un OpenID de Google - facebook: - title: Aperir session con Facebook - alt: Aperir session con un conto de Facebook - windowslive: - title: Aperir session con Windows Live - alt: Aperir session con un conto de Windows Live - github: - title: Aperir session con GitHub - alt: Aperir session con un conto de GitHub - wikipedia: - title: Aperir session con Wikipedia - alt: Aperir session con un conto de Wikipedia - yahoo: - title: Aperir session con Yahoo - alt: Aperir session con un OpenID de Yahoo - wordpress: - title: Aperir session con WordPress - alt: Aperir session con un OpenID de WordPress - aol: - title: Aperir session con AOL - alt: Aperir session con un OpenID de AOL - logout: - title: Clauder session - heading: Clauder le session de OpenStreetMap - logout_button: Clauder session - lost_password: - title: Contrasigno perdite - heading: Contrasigno oblidate? - email address: 'Adresse de e-mail:' - new password button: Reinitialisar contrasigno - help_text: Entra le adresse de e-mail que tu usava pro inscriber te, e nos te - inviara un ligamine a iste adresse que tu pote usar pro reinitialisar tu contrasigno. - notice email on way: Es infortunate que tu lo perdeva :-( ma un e-mail es in - via que te permittera de reinitalisar lo tosto. - notice email cannot find: Non poteva trovar iste adresse de e-mail, pardono. - reset_password: - title: Reinitialisar contrasigno - heading: Reinitialisar le contrasigno de %{user} - reset: Reinitialisar contrasigno - flash changed: Tu contrasigno ha essite cambiate. - flash token bad: Token non trovate. Verifica le URL. new: title: Crear conto no_auto_account_create: Infortunatemente in iste momento non es possibile crear @@ -2341,13 +2370,13 @@ ia: account: title: Modificar conto my settings: Mi configurationes - current email address: 'Adresse de e-mail actual:' - external auth: 'Authentication externe:' + current email address: Adresse de e-mail actual + external auth: Authentication externe openid: link: http://wiki.openstreetmap.org/wiki/OpenID link text: que es isto? public editing: - heading: 'Modification public:' + heading: Modification public enabled: Activate. Non anonyme e pote modificar datos. enabled link: http://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: que es isto? @@ -2365,7 +2394,7 @@ ia: public.
  • Iste action non pote esser revertite e tote le nove usatores es ora public per predefinition.
  • contributor terms: - heading: 'Conditiones de contributor:' + heading: Conditiones de contributor agreed: Tu ha acceptate le nove Conditiones de Contributor. not yet agreed: Tu non ha ancora acceptate le nove Conditiones de Contributor. review link text: Per favor seque iste ligamine a tu convenientia pro revider @@ -2373,7 +2402,7 @@ ia: agreed_with_pd: Tu ha anque declarate que tu considera tu modificationes como liberate al Dominio Public. link text: que es isto? - image: 'Imagine:' + image: Imagine gravatar: gravatar: Usar Gravatar disabled: Gravatar ha essite disactivate. @@ -2383,7 +2412,7 @@ ia: delete image: Remover le imagine actual replace image: Reimplaciar le imagine actual image size hint: (imagines quadrate de al minus 100×100 functiona melio) - home location: 'Position de origine:' + home location: Position de origine no home location: Tu non ha entrate tu position de origine. update home location on click: Actualisar le position de origine quando io clicca super le carta? @@ -2393,34 +2422,6 @@ ia: flash update success confirm needed: Informationes del usator actualisate con successo. Tu recipera in e-mail un nota pro confirmar tu nove adresse de e-mail. flash update success: Informationes del usator actualisate con successo. - confirm: - heading: Verifica tu e-mail! - introduction_1: Nos te ha inviate un message de confirmation. - introduction_2: Confirma tu conto con un clic sur le ligamine in le message - e tu potera comenciar a cartographiar. - press confirm button: Preme le button de confirmation ci infra pro activar tu - conto. - button: Confirmar - success: Tu conto ha essite confirmate, gratias pro inscriber te! - already active: Iste conto ha ja essite confirmate. - unknown token: Iste codice de confirmation ha expirate o non existe. - reconfirm_html: Pro reciper un altere message de confirmation, clicca - hic. - confirm_resend: - success_html: Nos ha inviate un nove message de confirmation a %{email} e si - tosto que tu confirma le conto, tu potera comenciar a cartographar.

    Si tu usa un systema anti-spam que invia requestas de confirmation, alora - per favor assecura te de adder %{sender} al lista blanc, alteremente nos non - pote responder a requestas de confirmation. - failure: Usator %{name} non trovate. - confirm_email: - heading: Confirmar un cambio de adresse de e-mail - press confirm button: Preme le button Confirmar ci infra pro confirmar tu nove - adresse de e-mail. - button: Confirmar - success: Le cambio del adresse de e-mail ha essite confirmate. - failure: Un adresse de e-mail ha ja essite confirmate con iste token. - unknown_token: Iste codice de confirmation ha expirate o non existe. set_home: flash success: Position de origine confirmate con successo go_public: diff --git a/config/locales/id.yml b/config/locales/id.yml index 47a42c1d0..c8904d3ee 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -2,6 +2,7 @@ # Exported from translatewiki.net # Export driver: phpyaml # Author: Akmaie Ajam +# Author: Andikbuyung # Author: Arief # Author: Arifin.wijaya # Author: ArlandGa @@ -21,6 +22,7 @@ # Author: JakArtisan # Author: Kenrick95 # Author: Macofe +# Author: Mnam23 # Author: Pebaryan # Author: RXerself # Author: Rachmat04 @@ -143,19 +145,22 @@ id: body: Isi recipient: Penerima redaction: + title: Judul description: Deskripsi report: category: 'Pilih alasan laporan Anda:' details: Silakan berikan rincian tentang masalah (wajib). user: email: Email - new_email: 'Alamat Email Baru:' + email_confirmation: Konfirmasi Surel + new_email: Alamat Surel Baru active: Aktif display_name: Nama Tampilan - description: Keterangan - home_lat: 'Garis Lintang:' - home_lon: 'Garis Bujur:' - languages: Bahasa + description: Deskripsi Profil + home_lat: Garis Lintang + home_lon: Garis Bujur + languages: Bahasa yang Dipilih + preferred_editor: Editor yang Dipilih pass_crypt: Kata Sandi pass_crypt_confirmation: Konfirmasi Kata Sandi help: @@ -211,7 +216,7 @@ id: description: iD (editor di dalam browser internet) remote: name: Pengendali Jarak Jauh - description: Remote Control (JOSM atau Merkaartor) + description: Remote Control (JOSM, Potlatch, Merkaartor) auth: providers: none: Tidak ada @@ -439,8 +444,8 @@ id: new: title: Entri Baru Catatan Harian form: - location: 'Lokasi:' - use_map_link: gunakan peta + location: Lokasi + use_map_link: Gunakan Peta index: title: Catatan harian pengguna title_friends: Catatan harian teman @@ -1483,11 +1488,39 @@ id: %{url} dan kli "Berhenti berlangganan". unsubscribe_html: Untuk berhenti berlangganan pembaruan perubahan set ini, kunjungi %{url} dan tekan "Berhenti berlangganan". + confirmations: + confirm: + heading: Periksa surel Anda! + introduction_1: Kami telah mengirim konfirmasi ke surel Anda. + introduction_2: Konfirmasi akun Anda dengan mengklik pranala dalam surel dan + Anda akan dapat memulai pemetaan. + press confirm button: Tekan tombol konfirmasi di bawah ini untuk mengaktifkan + akun Anda. + button: Konfirmasi + success: Akun Anda telah dikonfirmasi, terima kasih telah mendaftar! + already active: Akun ini telah dikonfirmasi. + unknown token: Kode konfirmasi telah kedaluwarsa atau tidak ada. + reconfirm_html: Jika Anda membutuhkan kami mengirimkan ulang surel konfirmasi, + klik di sini. + confirm_resend: + success_html: Kami telah mengirim catatan konfirmasi baru ke %{email} dan setelah + Anda mengkonfirmasi akun, Anda akan dapat mulai melakukan pemetaan.

    Jika Anda menggunakan sistem anti spam yang mengirimkan permintaan konfirmasi + silahkan pastikan Anda memasukkan %{sender} ke dalam daftar putih karena kami + tidak dapat membalas permintaan konfirmasi Anda. + failure: Pengguna %{name} tidak ditemukan. + confirm_email: + heading: Konfirmasi perubahan alamat email + press confirm button: Tekan tombol konfirmasi di bawah ini untuk melakukan konfirmasi + alamat email baru Anda. + button: Konfirmasi + success: Perubahan alamat email Anda telah dikonfirmasi! + failure: Sebuah alamat email telah dikonfirmasikan dengan token ini. + unknown_token: Kode konfirmasi tersebut telah kedaluwarsa atau tidak ada. messages: inbox: title: Kotak Masuk my_inbox: Kotak Masuk Saya - outbox: Kotak keluar messages: Anda memiliki %{new_messages} dan %{old_messages} new_messages: one: '%{count} pesan baru' @@ -1522,9 +1555,6 @@ id: body: Maaf tidak ada pesan dengan id tersebut. outbox: title: Kotak keluar - my_inbox_html: '%{inbox_link} saya' - inbox: kotak masuk - outbox: kotak keluar messages: one: Anda memiliki %{count} pesan terkirim other: Anda memiliki %{count} pesan terkirim @@ -1557,6 +1587,83 @@ id: as_unread: Pesan ditandai sebagai belum dibaca destroy: destroyed: Pesan dihapus + passwords: + lost_password: + title: Kehilangan kata sandi + heading: Lupa Kata Sandi? + email address: 'Alamat Email:' + new password button: Setel ulang kata sandi + help_text: Masukkan alamat email yang Anda gunakan untuk mendaftar, kami akan + mengirim link ke alamat tersebut yang dapat Anda gunakan untuk menyetel ulang + kata sandi Anda. + notice email on way: Maaf sudah hilang :-( namun sebuah email telah dikirimkan + agar Anda dapat segera mengatur ulang. + notice email cannot find: Tidak dapat menemukan alamat email tersebut, maaf. + reset_password: + title: Setel ulang kata sandi + heading: Setel ulang kata sandi untuk %{user} + reset: Setel Ulang Kata Sandi + flash changed: Kata sandi Anda telah diubah. + flash token bad: Tidak dapat menemukan token tersebut, cek URL nya mungkin? + sessions: + new: + title: Login + heading: Login + email or username: 'Alamat Email atau Nama Pengguna:' + password: 'Kata Sandi:' + openid_html: '%{logo} OpenID:' + remember: Ingat saya + lost password link: Kehilangan kata sandi Anda? + login_button: Login + register now: Daftar sekarang + with username: 'Sudah memiliki akun OpenStreetMap? Silahkan login menggunakan + nama pengguna dan kata sandi Anda:' + with external: 'Atau, gunakan pihak ketiga untuk masuk:' + new to osm: Baru di OpenStreetMap? + to make changes: Untuk membuat perubahan data OpenStreetMap, Anda harus memiliki + sebuah akun. + create account minute: Buat sebuah akun. Hanya membutuhkan satu menit. + no account: Belum memiliki akun? + account not active: Maaf, akun Anda belum aktif.
    Silahkan gunakan link + pada email konfirmasi untuk mengaktifkan akun Anda, atau minta + email konfirmasi yang baru. + account is suspended: Maaf, akun Anda telah dihentikan karena adanya aktivitas + mencurigakan.
    Silahkan kontak/hubungiwebmaster + jika Anda ingin mendiskusikannya. + auth failure: Maaf, tidak bisa login dengan rincian tersebut. + openid_logo_alt: Login dengan OpenID + auth_providers: + openid: + title: Masuk log dengan OpenID + alt: Masuk log dengan URL OpenID + google: + title: Masuk log dengan Google + alt: Masuk dengan Google OpenID + facebook: + title: Masuk dengan Facebook + alt: Masuk dengan akun Facebook + windowslive: + title: Masuk dengan Windows Live + alt: Masuk dengan akun Windows Live + github: + title: Masuk dengan GitHub. + alt: Masuk dengan Akun GitHub. + wikipedia: + title: Masuk log dengan Wikipedia + alt: Masuk log dengan akun Wikipedia + yahoo: + title: Masuk log dengan Yahoo + alt: Masuk log dengan Yahoo OpenID + wordpress: + title: Masuk log dengan Wordpress + alt: Masuk log dengan Wordpress OpenID + aol: + title: Masuk log dengan AOL + alt: Masuk dengan AOL OpenID + destroy: + title: Logout + heading: Logout dari OpenStreetMap + logout_button: Logout site: about: next: Berikutnya @@ -1941,23 +2048,6 @@ id: bicycle_shop: Toko sepeda bicycle_parking: Tempat parkir sepeda toilets: Toilet - richtext_area: - edit: Edit - preview: Tinjauan - markdown_help: - title_html: Diurai dengan kramdown - headings: Judul - heading: Judul - subheading: Subjudul - unordered: Daftar tak berurut - ordered: Daftar terurut - first: Objek pertama - second: Objek kedua - link: Tautan - text: Teks - image: Gambar - alt: Teks Alternatif - url: URL welcome: title: Selamat datang! introduction_html: Selamat datang di OpenStreetMap, peta dunia gratis dan dapat @@ -2078,7 +2168,6 @@ id: more: selebihnya trace_details: Lihat Perincian Jejak view_map: Lihat peta - edit: edit edit_map: Edit Peta public: UMUM identifiable: DIIDENTIFIKASI @@ -2086,7 +2175,6 @@ id: trackable: DILACAK by: oleh in: dalam - map: peta index: public_traces: Jejak GPS Umum my_traces: Trek GPS saya @@ -2199,81 +2287,6 @@ id: destroy: flash: Registrasi aplikasi klien telah dibatalkan. users: - login: - title: Login - heading: Login - email or username: 'Alamat Email atau Nama Pengguna:' - password: 'Kata Sandi:' - openid_html: '%{logo} OpenID:' - remember: Ingat saya - lost password link: Kehilangan kata sandi Anda? - login_button: Login - register now: Daftar sekarang - with username: 'Sudah memiliki akun OpenStreetMap? Silahkan login menggunakan - nama pengguna dan kata sandi Anda:' - with external: 'Atau, gunakan pihak ketiga untuk masuk:' - new to osm: Baru di OpenStreetMap? - to make changes: Untuk membuat perubahan data OpenStreetMap, Anda harus memiliki - sebuah akun. - create account minute: Buat sebuah akun. Hanya membutuhkan satu menit. - no account: Belum memiliki akun? - account not active: Maaf, akun Anda belum aktif.
    Silahkan gunakan link - pada email konfirmasi untuk mengaktifkan akun Anda, atau minta - email konfirmasi yang baru. - account is suspended: Maaf, akun Anda telah dihentikan karena adanya aktivitas - mencurigakan.
    Silahkan kontak/hubungiwebmaster - jika Anda ingin mendiskusikannya. - auth failure: Maaf, tidak bisa login dengan rincian tersebut. - openid_logo_alt: Login dengan OpenID - auth_providers: - openid: - title: Masuk log dengan OpenID - alt: Masuk log dengan URL OpenID - google: - title: Masuk log dengan Google - alt: Masuk dengan Google OpenID - facebook: - title: Masuk dengan Facebook - alt: Masuk dengan akun Facebook - windowslive: - title: Masuk dengan Windows Live - alt: Masuk dengan akun Windows Live - github: - title: Masuk dengan GitHub. - alt: Masuk dengan Akun GitHub. - wikipedia: - title: Masuk log dengan Wikipedia - alt: Masuk log dengan akun Wikipedia - yahoo: - title: Masuk log dengan Yahoo - alt: Masuk log dengan Yahoo OpenID - wordpress: - title: Masuk log dengan Wordpress - alt: Masuk log dengan Wordpress OpenID - aol: - title: Masuk log dengan AOL - alt: Masuk dengan AOL OpenID - logout: - title: Logout - heading: Logout dari OpenStreetMap - logout_button: Logout - lost_password: - title: Kehilangan kata sandi - heading: Lupa Kata Sandi? - email address: 'Alamat Email:' - new password button: Setel ulang kata sandi - help_text: Masukkan alamat email yang Anda gunakan untuk mendaftar, kami akan - mengirim link ke alamat tersebut yang dapat Anda gunakan untuk menyetel ulang - kata sandi Anda. - notice email on way: Maaf sudah hilang :-( namun sebuah email telah dikirimkan - agar Anda dapat segera mengatur ulang. - notice email cannot find: Tidak dapat menemukan alamat email tersebut, maaf. - reset_password: - title: Setel ulang kata sandi - heading: Setel ulang kata sandi untuk %{user} - reset: Setel Ulang Kata Sandi - flash changed: Kata sandi Anda telah diubah. - flash token bad: Tidak dapat menemukan token tersebut, cek URL nya mungkin? new: title: Mendaftar no_auto_account_create: Sayangnya saat ini kami tidak dapat membuatkan akun @@ -2411,13 +2424,13 @@ id: account: title: Edit akun my settings: Pengaturan saya - current email address: 'Alamat Email Saat Ini:' - external auth: 'Autentikasi Eksternal:' + current email address: Alamat surel saat ini + external auth: Autentikasi Eksternal openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: Apa ini? public editing: - heading: 'Mengedit secara publik:' + heading: Menyunting secara publik enabled: Diaktifkan. Tidak anonim dan dapat mengedit data. enabled link: http://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: Apa ini? @@ -2435,7 +2448,7 @@ id: anda menjadi pengguna umum.
  • Tindakan ini tidak dapat dikembalikan dan semua pengguna baru akan diatur sebagai pengguna umum secara standar.
  • contributor terms: - heading: 'Syarat-syarat Kontributor:' + heading: Syarat-syarat Kontributor agreed: Anda telah menyetujui Persyaratan Kontributor yang baru. not yet agreed: Anda belum menyetujui Persyaratan Kontributor yang baru. review link text: Silahkan ikuti link ini untuk kenyamanan Anda untuk meninjau @@ -2444,7 +2457,7 @@ id: Anda berada dalam Domain publik. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: Apa ini? - image: 'Gambar:' + image: Gambar gravatar: gravatar: Gunakan Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar @@ -2456,7 +2469,7 @@ id: replace image: Ganti gambar saat ini image size hint: (kotak gambar yang dapat bekerja terbaik paling tidak berukuran 100x100) - home location: 'Lokasi Beranda:' + home location: Lokasi Beranda no home location: Anda telah memasukkan lokasi rumah Anda. update home location on click: Memperbarui lokasi rumah ketika saya klik pada peta? @@ -2466,34 +2479,6 @@ id: flash update success confirm needed: Informasi pengguna telah berhasil diperbarui. Periksa email untuk melakukan konfirmasi alamat email. flash update success: Informasi mengenai pengguna sudah berhasil diperbarui. - confirm: - heading: Periksa surel Anda! - introduction_1: Kami telah mengirim konfirmasi ke surel Anda. - introduction_2: Konfirmasi akun Anda dengan mengklik pranala dalam surel dan - Anda akan dapat memulai pemetaan. - press confirm button: Tekan tombol konfirmasi di bawah ini untuk mengaktifkan - akun Anda. - button: Konfirmasi - success: Akun Anda telah dikonfirmasi, terima kasih telah mendaftar! - already active: Akun ini telah dikonfirmasi. - unknown token: Kode konfirmasi telah kedaluwarsa atau tidak ada. - reconfirm_html: Jika Anda membutuhkan kami mengirimkan ulang surel konfirmasi, - klik di sini. - confirm_resend: - success_html: Kami telah mengirim catatan konfirmasi baru ke %{email} dan setelah - Anda mengkonfirmasi akun, Anda akan dapat mulai melakukan pemetaan.

    Jika Anda menggunakan sistem anti spam yang mengirimkan permintaan konfirmasi - silahkan pastikan Anda memasukkan %{sender} ke dalam daftar putih karena kami - tidak dapat membalas permintaan konfirmasi Anda. - failure: Pengguna %{name} tidak ditemukan. - confirm_email: - heading: Konfirmasi perubahan alamat email - press confirm button: Tekan tombol konfirmasi di bawah ini untuk melakukan konfirmasi - alamat email baru Anda. - button: Konfirmasi - success: Perubahan alamat email Anda telah dikonfirmasi! - failure: Sebuah alamat email telah dikonfirmasikan dengan token ini. - unknown_token: Kode konfirmasi tersebut telah kedaluwarsa atau tidak ada. set_home: flash success: Lokasi rumah berhasil disimpan go_public: diff --git a/config/locales/is.yml b/config/locales/is.yml index 1eec31fbd..34d17394f 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -983,6 +983,7 @@ is: cape: Höfði cave_entrance: Hellisop cliff: Klettar + coastline: Strandlengjan crater: Gígur dune: Alda fell: Fell @@ -1531,11 +1532,38 @@ is: details: Nánari upplýsingar um breytingasettið er að finna á %{url}. unsubscribe: Til að hætta áskrift að uppfærslum á þessu breytingasetti, farðu þá á %{url} og smelltu á "Segja upp áskrift". + confirmations: + confirm: + heading: Athuga með tölvupóstinn þinn! + introduction_1: Við höfum sent þér staðfestingartölvupóst. + introduction_2: Staðfestu aðganginn þinn með því að smella á tengilinn í tölvupóstinum + og þá geturðu hafið kortlagningu. + press confirm button: Hér getur þú staðfest að þú viljir virkja notandaaðganginn + þinn. + button: Staðfesta + success: Notandinn þinn hefur verið staðfestur. + already active: Þessi notandaaðgangur hefur þegar verið staðfestur. + unknown token: Þessi staðfestingarkóði er útrunninn eða er ekki til staðar. + reconfirm_html: Ef þú vilt að við sendum þér staðfestingarpóstinn aftur, smelltu hér. + confirm_resend: + success_html: Við höfum sent staðfestingarskilaboð til %{email}, um leið og + þú staðfestir aðganginn þinn geturðu farið að vinna í kortunum.

    Ef + þú ert að nota ruslpóstsíukerfi sem sendir staðfestingarbeiðnir, gakktu úr + skugga um að %{sender} sé á lista yfir leyfða sendendur, því við erum ekki + fær um að svara neinum staðfestingarbeiðnum. + failure: Notandinn %{name} fannst ekki. + confirm_email: + heading: Staðfesta breytingu á netfangi + press confirm button: Hér getur þú staðfest breytingu á netfangi. + button: Staðfesta + success: Breyting á netfanginu þínu hefur verið staðfest. + failure: Netfang hefur þegar verið staðfest með þessum lykli. + unknown_token: Þessi staðfestingarkóði er útrunninn eða er ekki til staðar. messages: inbox: title: Innhólf my_inbox: Innhólfið mitt - outbox: úthólf messages: Þú átt %{new_messages} og %{old_messages} new_messages: one: '%{count} ný skilaboð' @@ -1570,9 +1598,6 @@ is: body: Því miður er ekkert skilaboð með þetta auðkenni. outbox: title: Úthólf - my_inbox_html: Mitt %{inbox_link} - inbox: innhólf - outbox: úthólf messages: one: Þú hefur sent %{count} skilaboð other: Þú hefur sent %{count} skilaboð @@ -1606,6 +1631,81 @@ is: as_unread: Skilaboðin voru merkt sem ólesin destroy: destroyed: Skilaboðunum var eytt + passwords: + lost_password: + title: Glatað lykilorð + heading: Gleymt lykilorð? + email address: 'Tölvupóstfang:' + new password button: Senda nýtt lykilorð á netfangið þitt + help_text: Sláðu inn netfangið sem þú skráðir þig með, við munum senda tengil + á það sem þú getur notað til að breyta lykilorðinu þínu. + notice email on way: Nýtt lykilorð er á leiðinni í innhólfið þitt. + notice email cannot find: Þetta netfang fannst ekki. + reset_password: + title: Lykilorð endurstillt + heading: Endurstillti lykilorð fyrir notandann %{user} + reset: Endurstilla lykilorð + flash changed: Lykilorðinu þínu hefur verið breytt + flash token bad: Þessi leynistrengur fannst ekki, kannski er slóðin röng? + sessions: + new: + title: Innskrá + heading: Innskrá + email or username: 'Netfang eða notandanafn:' + password: 'Lykilorð:' + openid_html: '%{logo} OpenID:' + remember: 'Muna innskráninguna:' + lost password link: Gleymdirðu lykilorðinu þínu? + login_button: Innskrá + register now: Skrá þig núna + with username: 'Ertu þegar með OpenStreetMap-aðgang? Skráðu þig inn með notandanafni + og lykilorði:' + with external: 'Þú getur líka notað utanaðkomandi þjónustur til innskráningar:' + new to osm: Nýr í OpenStreetMap? + to make changes: Til að gera breytingar í OpenStreetMap verðurðu að vera með + notandaaðgang. + create account minute: Stofnaðu aðgang. Það tekur eina mínútu. + no account: Ertu ekki með aðgang? + account not active: Þessi reikningur er ekki virkur.
    Vinsamlegast smelltu + á tengilinn í staðfestingarpóstinum sem þú fékkst til að virkja reikninginn, + eða óskaðu eftir nýjum staðfestingarpósti. + account is suspended: Því miður, notandaaðgangurinn þinn hefur verið frystur + vegna grunsamlegrar virkni.
    Hafðu samband við vefstjóra + ef þú vilt ræða þetta mál. + auth failure: Þetta notandanafn eða lykilorð er rangt. + openid_logo_alt: Skrá inn með OpenID-aðgangi + auth_providers: + openid: + title: Skrá inn með OpenID + alt: Skrá inn með OpenID-slóð + google: + title: Skrá inn með Google + alt: Skrá inn með Google OpenID-aðgangi + facebook: + title: Skrá inn með Facebook + alt: Skrá inn með Facebook-aðgangi + windowslive: + title: Skrá inn með Windows Live + alt: Skrá inn með Windows Live aðgangi + github: + title: Skrá inn með GitHub + alt: Skrá inn með GitHub-aðgangi + wikipedia: + title: Skrá inn með Wikipedia + alt: Skrá inn með Wikipedia-aðgangi + yahoo: + title: Skrá inn með Yahoo + alt: Skrá inn með Yahoo OpenID-aðgangi + wordpress: + title: Skrá inn með Wordpress + alt: Skrá inn með Wordpress OpenID-aðgangi + aol: + title: Skrá inn með AOL + alt: Skrá inn með AOL OpenID-aðgangi + destroy: + title: Útskráning + heading: Skrá út úr OpenStreetMap + logout_button: Útskráning site: about: next: Næsta @@ -2007,23 +2107,6 @@ is: bicycle_shop: Hjólaverslun bicycle_parking: Reiðhjólastæði toilets: Salerni - richtext_area: - edit: Breyta - preview: Forskoðun - markdown_help: - title_html: Þáttað með kramdown - headings: Fyrirsagnir - heading: Fyrirsögn - subheading: Undirfyrirsögn - unordered: Óraðaður listi - ordered: Raðaður listi - first: Fyrsta atriði - second: Annað atriði - link: Tengill - text: Texti - image: Mynd - alt: Alt-texti - url: Slóð (URL) welcome: title: Velkomin! introduction_html: |- @@ -2145,7 +2228,6 @@ is: more: upplýsingar trace_details: Sýna upplýsingar um ferilinn view_map: Skoða kort - edit: breyta edit_map: Breyta korti public: OPIÐ ÖLLUM identifiable: AUÐKENNANLEGT @@ -2153,7 +2235,6 @@ is: trackable: REKJANLEGT by: eftir in: í - map: kort index: public_traces: Allir ferlar my_traces: GPS-ferlarnir mínir @@ -2271,79 +2352,6 @@ is: destroy: flash: Eyðilagði skráningu biðlaraforritsins users: - login: - title: Innskrá - heading: Innskrá - email or username: 'Netfang eða notandanafn:' - password: 'Lykilorð:' - openid_html: '%{logo} OpenID:' - remember: 'Muna innskráninguna:' - lost password link: Gleymdirðu lykilorðinu þínu? - login_button: Innskrá - register now: Skrá þig núna - with username: 'Ertu þegar með OpenStreetMap-aðgang? Skráðu þig inn með notandanafni - og lykilorði:' - with external: 'Þú getur líka notað utanaðkomandi þjónustur til innskráningar:' - new to osm: Nýr í OpenStreetMap? - to make changes: Til að gera breytingar í OpenStreetMap verðurðu að vera með - notandaaðgang. - create account minute: Stofnaðu aðgang. Það tekur eina mínútu. - no account: Ertu ekki með aðgang? - account not active: Þessi reikningur er ekki virkur.
    Vinsamlegast smelltu - á tengilinn í staðfestingarpóstinum sem þú fékkst til að virkja reikninginn, - eða óskaðu eftir nýjum staðfestingarpósti. - account is suspended: Því miður, notandaaðgangurinn þinn hefur verið frystur - vegna grunsamlegrar virkni.
    Hafðu samband við vefstjóra - ef þú vilt ræða þetta mál. - auth failure: Þetta notandanafn eða lykilorð er rangt. - openid_logo_alt: Skrá inn með OpenID-aðgangi - auth_providers: - openid: - title: Skrá inn með OpenID - alt: Skrá inn með OpenID-slóð - google: - title: Skrá inn með Google - alt: Skrá inn með Google OpenID-aðgangi - facebook: - title: Skrá inn með Facebook - alt: Skrá inn með Facebook-aðgangi - windowslive: - title: Skrá inn með Windows Live - alt: Skrá inn með Windows Live aðgangi - github: - title: Skrá inn með GitHub - alt: Skrá inn með GitHub-aðgangi - wikipedia: - title: Skrá inn með Wikipedia - alt: Skrá inn með Wikipedia-aðgangi - yahoo: - title: Skrá inn með Yahoo - alt: Skrá inn með Yahoo OpenID-aðgangi - wordpress: - title: Skrá inn með Wordpress - alt: Skrá inn með Wordpress OpenID-aðgangi - aol: - title: Skrá inn með AOL - alt: Skrá inn með AOL OpenID-aðgangi - logout: - title: Útskráning - heading: Skrá út úr OpenStreetMap - logout_button: Útskráning - lost_password: - title: Glatað lykilorð - heading: Gleymt lykilorð? - email address: 'Tölvupóstfang:' - new password button: Senda nýtt lykilorð á netfangið þitt - help_text: Sláðu inn netfangið sem þú skráðir þig með, við munum senda tengil - á það sem þú getur notað til að breyta lykilorðinu þínu. - notice email on way: Nýtt lykilorð er á leiðinni í innhólfið þitt. - notice email cannot find: Þetta netfang fannst ekki. - reset_password: - title: Lykilorð endurstillt - heading: Endurstillti lykilorð fyrir notandann %{user} - reset: Endurstilla lykilorð - flash changed: Lykilorðinu þínu hefur verið breytt - flash token bad: Þessi leynistrengur fannst ekki, kannski er slóðin röng? new: title: Nýskrá no_auto_account_create: Því miður getum við eki búið til reikning fyrir þig @@ -2536,33 +2544,6 @@ is: var sendur á netfangið þitt sem þú þarft að bregðast við til að netfangið þitt verði staðfest. flash update success: Stillingarnar þínar voru uppfærðar. - confirm: - heading: Athuga með tölvupóstinn þinn! - introduction_1: Við höfum sent þér staðfestingartölvupóst. - introduction_2: Staðfestu aðganginn þinn með því að smella á tengilinn í tölvupóstinum - og þá geturðu hafið kortlagningu. - press confirm button: Hér getur þú staðfest að þú viljir virkja notandaaðganginn - þinn. - button: Staðfesta - success: Notandinn þinn hefur verið staðfestur. - already active: Þessi notandaaðgangur hefur þegar verið staðfestur. - unknown token: Þessi staðfestingarkóði er útrunninn eða er ekki til staðar. - reconfirm_html: Ef þú vilt að við sendum þér staðfestingarpóstinn aftur, smelltu hér. - confirm_resend: - success_html: Við höfum sent staðfestingarskilaboð til %{email}, um leið og - þú staðfestir aðganginn þinn geturðu farið að vinna í kortunum.

    Ef - þú ert að nota ruslpóstsíukerfi sem sendir staðfestingarbeiðnir, gakktu úr - skugga um að %{sender} sé á lista yfir leyfða sendendur, því við erum ekki - fær um að svara neinum staðfestingarbeiðnum. - failure: Notandinn %{name} fannst ekki. - confirm_email: - heading: Staðfesta breytingu á netfangi - press confirm button: Hér getur þú staðfest breytingu á netfangi. - button: Staðfesta - success: Breyting á netfanginu þínu hefur verið staðfest. - failure: Netfang hefur þegar verið staðfest með þessum lykli. - unknown_token: Þessi staðfestingarkóði er útrunninn eða er ekki til staðar. set_home: flash success: Staðsetning þín hefur verið stillt go_public: diff --git a/config/locales/it.yml b/config/locales/it.yml index 42e9256c9..cdd4efd4b 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -1,6 +1,7 @@ # Messages for Italian (italiano) # Exported from translatewiki.net # Export driver: phpyaml +# Author: Ajeje Brazorf # Author: Albe Albe 460 # Author: Alessioz # Author: Alexmar983 @@ -48,6 +49,7 @@ # Author: Simone # Author: SimoneSVC # Author: Sorcrosc +# Author: Toa # Author: Tuxfuzz # Author: Ximo17 # Author: ZioNicco @@ -478,7 +480,7 @@ it: user_title: Diario di %{user} in_language_title: Voci del diario in %{language} new: Nuova voce del diario - new_title: Componi una nuova voce nel mio diario utente + new_title: Componi una nuova voce nel tuo diario utente my_diary: Il mio diario no_entries: Nessuna voce nel diario recent_entries: Voci del diario recenti @@ -719,6 +721,7 @@ it: apartments: Appartamenti barn: Fienile bungalow: Bungalow + cabin: Cabina chapel: Cappella church: Chiesa civic: Edificio civico @@ -799,6 +802,7 @@ it: life_ring: Salvagente phone: Telefono di emergenza siren: Sirena di emergenza + suction_point: Punto d'aspirazione di emergenza water_tank: Serbatoio d'acqua di emergenza "yes": Emergenza highway: @@ -810,7 +814,7 @@ it: corridor: Corridoio cycleway: Percorso ciclabile elevator: Ascensore - emergency_access_point: Colonnina SOS + emergency_access_point: Punto di accesso di emergenza footway: Percorso pedonale ford: Guado give_way: Segnale di dare precedenza @@ -1025,6 +1029,7 @@ it: cape: Capo cave_entrance: Entrata di grotta/caverna cliff: Rupe + coastline: Litorale crater: Cratere dune: Duna fell: Prato alpino @@ -1042,6 +1047,7 @@ it: moor: Molo mud: Zona fangosa (sabbie mobili) peak: Picco montuoso + peninsula: Penisola point: Punto reef: Scogliera ridge: Cresta montuosa @@ -1089,6 +1095,7 @@ it: "yes": Ufficio place: allotments: Orti casalinghi + archipelago: Arcipelago city: Città city_block: Isolato urbano country: Nazione @@ -1506,9 +1513,9 @@ it: befriend_them: Puoi anche aggiungerli come amici in %{befriendurl}. befriend_them_html: Puoi anche aggiungerli come amici in %{befriendurl}. gpx_description: - description_with_tags_html: 'Sembra come il tuo file GPX %{trace_name} con la + description_with_tags_html: 'Sembra che il tuo file GPX %{trace_name} con la descrizione %{trace_description} e le seguenti etichette: %{tags}' - description_with_no_tags_html: Sembra come il tuo file GPX %{trace_name} con + description_with_no_tags_html: Sembra che il tuo file GPX %{trace_name} con la descrizione %{trace_description} e senza etichette gpx_failure: hi: Ciao %{to_user}, @@ -1520,8 +1527,8 @@ it: gpx_success: hi: Ciao %{to_user}, loaded_successfully: - one: caricato con successo con %{trace_points} di 1 punto possibile. - other: caricato con successo con %{trace_points} dei possibili %{possible_points} + one: sia stato caricato con successo con %{trace_points} di 1 punto possibile. + other: sia stato caricato con successo con %{trace_points} dei possibili %{possible_points} punti. subject: '[OpenStreetMap] Importazione GPX completata con successo' signup_confirm: @@ -1612,11 +1619,40 @@ it: visita %{url} e fai clic su "Cancellazione". unsubscribe_html: Per cancellarsi dagli aggiornamenti di questo insieme di modifiche, visita %{url} e fai clic su "Cancellazione". + confirmations: + confirm: + heading: Controlla la tua e-mail! + introduction_1: Ti abbiamo inviato una email di conferma. + introduction_2: Conferma il tuo account cliccando sul link presente nella mail + e sarai in grado di avviare la mappatura. + press confirm button: Premere sul pulsante di conferma sottostante per attivare + il proprio profilo utente. + button: Conferma + success: Il profilo utente è stato confermato, grazie per l'iscrizione! + already active: Questo profilo è stato già confermato. + unknown token: Questo codice di conferma è scaduto oppure non esiste. + reconfirm_html: Per richiedere nuovamente una email di conferma, Clicca + qui. + confirm_resend: + success_html: È stato spedito un nuovo messaggio di conferma all'indirizzo %{email} + e non appena verrà confermato il proprio profilo si sarà in grado di mappare.

    Se si utilizzano dei filtri antispam che spediscono richieste di conferma + assicurarsi di inserire l'indirizzo %{sender} nella whitelist, altrimenti + non siamo in grado di rispondere ad alcuna richiesta di conferma. + failure: Utente %{name} non trovato. + confirm_email: + heading: Conferma una variazione di indirizzo email + press confirm button: Premere sul pulsante di conferma sottostante per confermare + il nuovo indirizzo email. + button: Conferma + success: Confermata la modifica di indirizzo email! + failure: Un indirizzo email con questo codice è già stato confermato. + unknown_token: Questo codice di conferma è scaduto oppure non esiste. messages: inbox: title: Posta in arrivo my_inbox: Posta in arrivo - outbox: posta in uscita + my_outbox: Posta in uscita messages: Hai %{new_messages} e %{old_messages} new_messages: one: '%{count} nuovo messaggio' @@ -1651,9 +1687,8 @@ it: body: Siamo spiacenti, non ci sono messaggi con l'id indicato. outbox: title: Posta in uscita - my_inbox_html: Mia %{inbox_link} - inbox: posta in arrivo - outbox: posta in uscita + my_inbox: Posta in arrivo + my_outbox: Posta in uscita messages: one: Hai %{count} messaggio inviato other: Hai %{count} messaggi inviati @@ -1687,6 +1722,85 @@ it: as_unread: Messaggio marcato come non letto destroy: destroyed: Messaggio eliminato + passwords: + lost_password: + title: password persa + heading: Password dimenticata? + email address: 'Indirizzo email:' + new password button: Reimposta password + help_text: Inserire l'indirizzo email che si è utilizzato per l'iscrizione, + a cui verrà inviato un collegamento che permetterà la reimpostazione della + propria password. + notice email on way: Siamo spiacenti che tu l'abbia persa :-( ma una email ti + è stata spedita in modo che tu la possa presto reimpostare. + notice email cannot find: Spiacenti, ma non è possibile trovare l'indirizzo + email. + reset_password: + title: Reimposta password + heading: Reimposta password per %{user} + reset: Reimposta password + flash changed: La propria password è stata modificata. + flash token bad: Non è stato possibile trovare il codice. Controllare l'indirizzo + URL. + sessions: + new: + title: Entra + heading: Entra + email or username: 'Indirizzo email o nome utente:' + password: 'Password:' + openid_html: '%{logo} OpenID:' + remember: Ricordati di me + lost password link: Persa la password? + login_button: Entra + register now: Registrati ora + with username: 'Possiedi già un profilo OpenStreetMap? Entra con il tuo nome + utente e password:' + with external: In alternativa, effettua l'accesso tramite terze parti + new to osm: Sei nuovo su OpenStreetMap? + to make changes: Per apportare modifiche ai dati di OpenStreetMap, è necessario + disporre di un account. + create account minute: Crea un account. Richiede solo un minuto. + no account: Non hai un'utenza? + account not active: Spiacenti, il tuo profilo non è ancora attivo.
    Si prega + di utilizzare il collegamento presente nell'email di conferma per attivare + il proprio profilo, oppure richiedere l'invio di una + nuova email di conferma. + account is suspended: Siamo spiacenti, il tuo account è stato sospeso a causa + di attività sospette.
    Se desideri discuterne, puoi contattare il webmaster. + auth failure: Spiacenti, non si può accedere con questi dettagli. + openid_logo_alt: Accedi con un OpenID + auth_providers: + openid: + title: Accedi con OpenID + alt: Accedi con un URL OpenID + google: + title: Accedi con Google + alt: Accedi con un OpenID di Google + facebook: + title: Accedi con Facebook + alt: Accedi con un Account Facebook + windowslive: + title: Accedi con Windows Live + alt: Accedi con un Account Windows Live + github: + title: Accedi con GitHub + alt: Effettua l'acceso con un'utenza GitHub + wikipedia: + title: Accedi con Wikipedia + alt: Accedi con un'utenza Wikipedia + yahoo: + title: Accedi con Yahoo + alt: Accedi con un OpenID di Yahoo + wordpress: + title: Accedi con Wordpress + alt: Accedi con un OpenID di Wordpress + aol: + title: Accedi con AOL + alt: Accedi con un OpenID di AOL + destroy: + title: Esci + heading: Esci da OpenStreetMap + logout_button: Esci shared: markdown_help: title_html: Analizzato con kramdown @@ -2096,23 +2210,6 @@ it: bicycle_shop: Negozio di biciclette bicycle_parking: Parcheggio per biciclette toilets: Bagni pubblici - richtext_area: - edit: Modifica - preview: Anteprima - markdown_help: - title_html: Analizzato con kramdown - headings: Intestazioni - heading: Intestazione - subheading: Sottotitolo - unordered: Elenco puntato - ordered: Elenco ordinato - first: Prima voce - second: Seconda voce - link: Collegamento - text: Testo - image: Immagine - alt: Testo alternativo - url: URL welcome: title: Benvenuto! introduction_html: Benvenuti in OpenStreetMap, la mappa del mondo libera e modificabile. @@ -2236,7 +2333,6 @@ it: more: altri trace_details: Visualizza i dettagli del tracciato view_map: Visualizza mappa - edit: modifica edit_map: Modifica mappa public: PUBBLICO identifiable: IDENTIFICABILE @@ -2244,7 +2340,6 @@ it: trackable: TRACCIABILE by: da in: in - map: mappa index: public_traces: Tracciati GPS pubblici my_traces: I miei tracciati GPS @@ -2358,83 +2453,6 @@ it: destroy: flash: Distrutta la registrazione dell'applicazione client users: - login: - title: Entra - heading: Entra - email or username: 'Indirizzo email o nome utente:' - password: 'Password:' - openid_html: '%{logo} OpenID:' - remember: Ricordati di me - lost password link: Persa la password? - login_button: Entra - register now: Registrati ora - with username: 'Possiedi già un profilo OpenStreetMap? Entra con il tuo nome - utente e password:' - with external: In alternativa, effettua l'accesso tramite terze parti - new to osm: Sei nuovo su OpenStreetMap? - to make changes: Per apportare modifiche ai dati di OpenStreetMap, è necessario - disporre di un account. - create account minute: Crea un account. Richiede solo un minuto. - no account: Non hai un'utenza? - account not active: Spiacenti, il tuo profilo non è ancora attivo.
    Si prega - di utilizzare il collegamento presente nell'email di conferma per attivare - il proprio profilo, oppure richiedere l'invio di una - nuova email di conferma. - account is suspended: Siamo spiacenti, il tuo account è stato sospeso a causa - di attività sospette.
    Se desideri discuterne, puoi contattare il webmaster. - auth failure: Spiacenti, non si può accedere con questi dettagli. - openid_logo_alt: Accedi con un OpenID - auth_providers: - openid: - title: Accedi con OpenID - alt: Accedi con un URL OpenID - google: - title: Accedi con Google - alt: Accedi con un OpenID di Google - facebook: - title: Accedi con Facebook - alt: Accedi con un Account Facebook - windowslive: - title: Accedi con Windows Live - alt: Accedi con un Account Windows Live - github: - title: Accedi con GitHub - alt: Effettua l'acceso con un'utenza GitHub - wikipedia: - title: Accedi con Wikipedia - alt: Accedi con un'utenza Wikipedia - yahoo: - title: Accedi con Yahoo - alt: Accedi con un OpenID di Yahoo - wordpress: - title: Accedi con Wordpress - alt: Accedi con un OpenID di Wordpress - aol: - title: Accedi con AOL - alt: Accedi con un OpenID di AOL - logout: - title: Esci - heading: Esci da OpenStreetMap - logout_button: Esci - lost_password: - title: password persa - heading: Password dimenticata? - email address: 'Indirizzo email:' - new password button: Reimposta password - help_text: Inserire l'indirizzo email che si è utilizzato per l'iscrizione, - a cui verrà inviato un collegamento che permetterà la reimpostazione della - propria password. - notice email on way: Siamo spiacenti che tu l'abbia persa :-( ma una email ti - è stata spedita in modo che tu la possa presto reimpostare. - notice email cannot find: Spiacenti, ma non è possibile trovare l'indirizzo - email. - reset_password: - title: Reimposta password - heading: Reimposta password per %{user} - reset: Reimposta password - flash changed: La propria password è stata modificata. - flash token bad: Non è stato possibile trovare il codice. Controllare l'indirizzo - URL. new: title: Registrati no_auto_account_create: Sfortunatamente in questo momento non è possibile creare @@ -2628,34 +2646,6 @@ it: successo. Controllare la propria email per la conferma del nuovo indirizzo di posta elettronica. flash update success: Informazioni sull'utente aggiornate con successo. - confirm: - heading: Controlla la tua e-mail! - introduction_1: Ti abbiamo inviato una email di conferma. - introduction_2: Conferma il tuo account cliccando sul link presente nella mail - e sarai in grado di avviare la mappatura. - press confirm button: Premere sul pulsante di conferma sottostante per attivare - il proprio profilo utente. - button: Conferma - success: Il profilo utente è stato confermato, grazie per l'iscrizione! - already active: Questo profilo è stato già confermato. - unknown token: Questo codice di conferma è scaduto oppure non esiste. - reconfirm_html: Per richiedere nuovamente una email di conferma, Clicca - qui. - confirm_resend: - success_html: È stato spedito un nuovo messaggio di conferma all'indirizzo %{email} - e non appena verrà confermato il proprio profilo si sarà in grado di mappare.

    Se si utilizzano dei filtri antispam che spediscono richieste di conferma - assicurarsi di inserire l'indirizzo %{sender} nella whitelist, altrimenti - non siamo in grado di rispondere ad alcuna richiesta di conferma. - failure: Utente %{name} non trovato. - confirm_email: - heading: Conferma una variazione di indirizzo email - press confirm button: Premere sul pulsante di conferma sottostante per confermare - il nuovo indirizzo email. - button: Conferma - success: Confermata la modifica di indirizzo email! - failure: Un indirizzo email con questo codice è già stato confermato. - unknown_token: Questo codice di conferma è scaduto oppure non esiste. set_home: flash success: Posizione personale salvata con successo go_public: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 5257cc665..61dc4d957 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -34,6 +34,7 @@ # Author: Sudachi # Author: Sujiniku # Author: Surgical21 +# Author: Tamaki Wakita # Author: Tmv # Author: Tombi-aburage # Author: Vigorous action @@ -161,19 +162,24 @@ ja: body: 本文 recipient: 受信者 redaction: + title: タイトル description: 説明 report: category: 報告の理由を選択してください。 details: 問題についてもう少し詳しく記述してください (必須)。 user: + auth_provider: 認証提供者 + auth_uid: 認証 ID email: メール - new_email: '新しいメール アドレス:' + email_confirmation: メールアドレスの確認 + new_email: 新しいメール アドレス active: アクティブ display_name: 表示名 - description: 説明 - home_lat: '緯度:' - home_lon: '経度:' - languages: 言語 + description: プロフィールの説明 + home_lat: 緯度 + home_lon: 経度 + languages: 優先言語 + preferred_editor: 優先エディター pass_crypt: パスワード pass_crypt_confirmation: パスワードを確認 help: @@ -183,6 +189,8 @@ ja: reason: ユーザーがブロックされている理由です。メッセージは多くの人の目にふれることになるため、できるだけ冷静かつ理性的になり、できるだけ丁寧に状況を説明するようにしてください。すべての利用者がコミュニティ固有の用語を理解しているわけではないため、分かりやすい用語を使うように努めてください。 needs_view: このブロックを解消するには、先に利用者がログインする必要がありますか? user: + email_confirmation: あなたのアドレスは非公開です。詳細は弊財団のプライバシーポリシーをご参照ください。 new_email: (非公開) datetime: distance_in_words_ago: @@ -670,6 +678,7 @@ ja: watering_place: 集水地 water_point: 給水所 weighbridge: 台貫 + "yes": 便利な施設 boundary: aboriginal_lands: 先住民地域 administrative: 行政境界 @@ -972,6 +981,7 @@ ja: snow_cannon: 人工降雪機 snow_fence: 防雪フェンス storage_tank: 貯蔵タンク + street_cabinet: 屋外仕様キャビネット surveillance: 監視カメラ telescope: 望遠鏡 tower: 塔 @@ -995,12 +1005,14 @@ ja: mountain_pass: "yes": 山道 natural: + atoll: 環礁 bare_rock: 露頭 bay: 入り江 beach: 砂浜 cape: 岬 cave_entrance: 洞窟入口 cliff: 崖 + coastline: 海岸線 crater: クレーター dune: 砂丘 fell: 荒野 @@ -1018,6 +1030,7 @@ ja: moor: 沼地 mud: 泥 peak: 山頂 + peninsula: 半島 point: 点 reef: 砂州 ridge: 海嶺 @@ -1065,6 +1078,7 @@ ja: "yes": オフィス place: allotments: 家庭菜園 + archipelago: 諸島 city: 市 city_block: 街区 country: 国 @@ -1542,11 +1556,34 @@ ja: details_html: 変更セットについての詳細は %{url} を参照。 unsubscribe: この変更セットの購読を中止するには%{url}を開いて"購読を中止 Unsubscribe"をクリック。 unsubscribe_html: この変更セットの購読を中止するには%{url}を開いて「購読を中止」をクリック。 + confirmations: + confirm: + heading: メールを確認してください + introduction_1: 確認メールをお送りしました。 + introduction_2: メール内のリンクをクリックしてアカウントの確認をすれば、マッピングを始められます。 + press confirm button: アカウントを有効にして良ければ、以下の確認ボタンを押してください。 + button: 確認 + success: アカウントを確認しました。登録ありがとうございます! + already active: このアカウントは確認済みです。 + unknown token: この確認コードは期限切れ、または存在しません。 + reconfirm_html: 確認メールを再送する必要がある場合は、ここをクリックしてください。 + confirm_resend: + success_html: '%{email}に確認メッセージを再送信しました。メールを確認してアカウントを有効にし次第、編集を開始できます。

    あなたの指定したアドレスに確認メールが届くまであなたはログインできません。メールボックスでスパムフィルターを使用している場合は %{sender} + からの確認メールを受信できるようホワイトリストを設定してください。' + failure: '%{name}というアカウントは登録されていません。' + confirm_email: + heading: メール アドレスの変更を確認 + press confirm button: 新しいメール アドレスを確認するために確認ボタンを押してください。 + button: 確認 + success: メール アドレスが変更されたことを確認しました。 + failure: このトークンは、メール アドレスの確認に使用済みです。 + unknown_token: その確認コードは期限切れ、または存在しません。 messages: inbox: title: 受信箱 my_inbox: 自分の受信箱 - outbox: 送信箱 + my_outbox: 自分の送信ボックス messages: '%{new_messages}、%{old_messages}があります' new_messages: other: '%{count} 件の新着メッセージ' @@ -1577,9 +1614,8 @@ ja: body: 申し訳ありませんが、この ID のメッセージはありません。 outbox: title: 送信箱 - my_inbox_html: 自分の%{inbox_link} - inbox: 受信箱 - outbox: 送信箱 + my_inbox: 自分の受信箱 + my_outbox: 自分の送信ボックス messages: other: '%{count} 件の送信済みメッセージがあります' to: 宛先 @@ -1607,6 +1643,76 @@ ja: as_unread: 未読メッセージ destroy: destroyed: メッセージを削除しました + passwords: + lost_password: + title: パスワードを忘れた + heading: パスワードを忘れた場合はこちら + email address: 'メール アドレス:' + new password button: パスワードを再設定 + help_text: ユーザー登録に使用したメール アドレスを入力してください。そのアドレス宛に、パスワードを再設定するためのリンクをお送りします。 + notice email on way: すみません。紛失してしまいました :-( しかし、メールをお送りしたので、すぐにリセットできるでしょう。 + notice email cannot find: 申し訳ありませんが、このメール アドレスは見つかりません。 + reset_password: + title: パスワードの再設定 + heading: '%{user} のパスワードのリセット' + reset: パスワードを初期化 + flash changed: あなたのパスワードは変更されました。 + flash token bad: キーワードが見つかりません。URL を確認してください。 + sessions: + new: + title: ログイン + heading: ログイン + email or username: 'メール アドレスまたは利用者名:' + password: 'パスワード:' + openid_html: '%{logo} OpenID:' + remember: ログイン状態を保持 + lost password link: パスワードを忘れた場合はこちら + login_button: ログイン + register now: 今すぐ登録 + with username: 'OpenStreetMap アカウントを既にお持ちですか? 自分の利用者名とパスワードでログインしてください:' + with external: 'サードパーティのアカウントでもログインできます:' + new to osm: OpenStreetMap は初めてですか? + to make changes: OpenStreetMap データを変更するには、アカウントが必要です。 + create account minute: アカウントを作成します。1分でできます。 + no account: アカウントを持っていませんか? + account not active: 申し訳ありませんが、あなたのアカウントはまだ有効ではありません。
    アカウント確認メール内のリンクをクリックするか、新しい確認メールを要求をしてください。 + account is suspended: 申し訳ありませんが、不審な活動のため、あなたのアカウントは一時停止されております。
    本件についてご相談がある場合は + ウェブマスターにご連絡ください。 + auth failure: 申し訳ありませんが、入力した情報でログインできませんでした。 + openid_logo_alt: OpenID でログイン + auth_providers: + openid: + title: OpenID を使用してログイン + alt: OpenID URL を使用してログイン + google: + title: Google を使用してログイン + alt: Google OpenID を使用してログイン + facebook: + title: Facebook を使用してログイン + alt: Facebook アカウントを使用してログイン + windowslive: + title: Windows Live を使用してログイン + alt: Windows Live アカウントを使用してログイン + github: + title: GitHubでログイン + alt: GitHubのアカウントでログイン + wikipedia: + title: ウィキペディアでログイン + alt: ウィキペディアのアカウントでログイン + yahoo: + title: Yahoo を使用してログイン + alt: Yahoo OpenID を使用してログイン + wordpress: + title: Wordpress を使用してログイン + alt: Wordpress OpenID を使用してログイン + aol: + title: AOL を使用してログイン + alt: AOL OpenID を使用してログイン + destroy: + title: ログアウト + heading: OpenStreetMap からログアウト + logout_button: ログアウト shared: markdown_help: title_html: kramdownで構文解析します @@ -1935,23 +2041,6 @@ ja: bicycle_shop: 自転車販売店 bicycle_parking: 駐輪場 toilets: トイレ - richtext_area: - edit: 編集 - preview: プレビュー - markdown_help: - title_html: で構文解析します - headings: 見出し - heading: 見出し - subheading: 小見出し - unordered: 番号なしリスト - ordered: 番号付きリスト - first: 項目 1 - second: 項目 2 - link: リンク - text: テキスト - image: 画像 - alt: 代替テキスト - url: URL welcome: title: ようこそ! introduction_html: フリーで編集可能な世界地図、OpenStreetMapへようこそ。サインアップしたので、マッピングの準備はすべて整いました。知っておかなければならない重要事項を簡単に説明します。 @@ -2046,7 +2135,6 @@ ja: more: 詳細 trace_details: トレースの詳細表示 view_map: 地図で表示 - edit: 編集 edit_map: 地図を編集 public: 公開 identifiable: 識別可能 @@ -2054,7 +2142,6 @@ ja: trackable: 追跡可能 by: '投稿者:' in: 'タグ:' - map: 地図 index: public_traces: 公開GPSトレース my_traces: 保存したGPS位置情報 @@ -2156,74 +2243,6 @@ ja: destroy: flash: 破棄されたクライアント アプリケーションの登録 users: - login: - title: ログイン - heading: ログイン - email or username: 'メール アドレスまたは利用者名:' - password: 'パスワード:' - openid_html: '%{logo} OpenID:' - remember: ログイン状態を保持 - lost password link: パスワードを忘れた場合はこちら - login_button: ログイン - register now: 今すぐ登録 - with username: 'OpenStreetMap アカウントを既にお持ちですか? 自分の利用者名とパスワードでログインしてください:' - with external: 'サードパーティのアカウントでもログインできます:' - new to osm: OpenStreetMap は初めてですか? - to make changes: OpenStreetMap データを変更するには、アカウントが必要です。 - create account minute: アカウントを作成します。1分でできます。 - no account: アカウントを持っていませんか? - account not active: 申し訳ありませんが、あなたのアカウントはまだ有効ではありません。
    アカウント確認メール内のリンクをクリックするか、新しい確認メールを要求をしてください。 - account is suspended: 申し訳ありませんが、不審な活動のため、あなたのアカウントは一時停止されております。
    本件についてご相談がある場合は - ウェブマスターにご連絡ください。 - auth failure: 申し訳ありませんが、入力した情報でログインできませんでした。 - openid_logo_alt: OpenID でログイン - auth_providers: - openid: - title: OpenID を使用してログイン - alt: OpenID URL を使用してログイン - google: - title: Google を使用してログイン - alt: Google OpenID を使用してログイン - facebook: - title: Facebook を使用してログイン - alt: Facebook アカウントを使用してログイン - windowslive: - title: Windows Live を使用してログイン - alt: Windows Live アカウントを使用してログイン - github: - title: GitHubでログイン - alt: GitHubのアカウントでログイン - wikipedia: - title: ウィキペディアでログイン - alt: ウィキペディアのアカウントでログイン - yahoo: - title: Yahoo を使用してログイン - alt: Yahoo OpenID を使用してログイン - wordpress: - title: Wordpress を使用してログイン - alt: Wordpress OpenID を使用してログイン - aol: - title: AOL を使用してログイン - alt: AOL OpenID を使用してログイン - logout: - title: ログアウト - heading: OpenStreetMap からログアウト - logout_button: ログアウト - lost_password: - title: パスワードを忘れた - heading: パスワードを忘れた場合はこちら - email address: 'メール アドレス:' - new password button: パスワードを再設定 - help_text: ユーザー登録に使用したメール アドレスを入力してください。そのアドレス宛に、パスワードを再設定するためのリンクをお送りします。 - notice email on way: すみません。紛失してしまいました :-( しかし、メールをお送りしたので、すぐにリセットできるでしょう。 - notice email cannot find: 申し訳ありませんが、このメール アドレスは見つかりません。 - reset_password: - title: パスワードの再設定 - heading: '%{user} のパスワードのリセット' - reset: パスワードを初期化 - flash changed: あなたのパスワードは変更されました。 - flash token bad: キーワードが見つかりません。URL を確認してください。 new: title: ユーザー登録 no_auto_account_create: 残念ながら、現在、自動ではアカウントを作成できません。 @@ -2344,13 +2363,13 @@ ja: account: title: アカウントの編集 my settings: 設定 - current email address: '現在のメール アドレス:' - external auth: '外部認証:' + current email address: 現在のメール アドレス + external auth: 外部認証 openid: link: https://wiki.openstreetmap.org/wiki/JA:OpenID?uselang=ja link text: これは何ですか? public editing: - heading: '公開編集:' + heading: 公開編集 enabled: 有効。匿名ではなく、データを編集できます。 enabled link: http://wiki.openstreetmap.org/wiki/JA:Anonymous_edits?uselang=ja enabled link text: これは何ですか? @@ -2362,17 +2381,18 @@ ja: API 更新より地図データの編集は公開利用者以外、できなくなりました。 (その理由はこちらで)。
    • 公開扱いに変更しても、あなたのメール アドレスが暴露されることはありません。
    • この変更は取り消せません。なお新しい利用者は、既定で公開扱いとなります。
    contributor terms: - heading: '協力者規約:' + heading: 協力者規約 agreed: あなたは、新しい協力者規約を承諾しています。 not yet agreed: あなたはまだ新しい投稿規約を承諾していません。 review link text: ご都合の良い時にこのリンクをクリックして新しい協力者規約を確認の上、承諾してしてください。 agreed_with_pd: また、あなたは、自分の編集結果がパブリックドメインにあるべきだと考えているということも宣言しています。 link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: これは何ですか? - image: '画像:' + image: 画像 gravatar: gravatar: Gravatar を使用 link: http://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Gravatarってなに? disabled: Gravatarは無効です。 enabled: Gravatarの表示が有効になりました。 new image: 画像を追加 @@ -2380,7 +2400,7 @@ ja: delete image: 現在の画像を削除 replace image: 現在の画像を置換 image size hint: (100x100 以下の正方形の画像が最適) - home location: 'ホーム地点:' + home location: ホーム地点 no home location: あなたはまだホーム地点を登録していません。 update home location on click: ホーム地点を、地図上のクリックした地点に変更 save changes button: 変更を保存 @@ -2388,28 +2408,6 @@ ja: return to profile: プロフィールに戻る flash update success confirm needed: 利用者情報を更新しました。新着メールを確認して新しいメール アドレスを検証してください。 flash update success: ユーザー情報を更新しました。 - confirm: - heading: メールを確認してください - introduction_1: 確認メールをお送りしました。 - introduction_2: メール内のリンクをクリックしてアカウントの確認をすれば、マッピングを始められます。 - press confirm button: アカウントを有効にして良ければ、以下の確認ボタンを押してください。 - button: 確認 - success: アカウントを確認しました。登録ありがとうございます! - already active: このアカウントは確認済みです。 - unknown token: この確認コードは期限切れ、または存在しません。 - reconfirm_html: 確認メールを再送する必要がある場合は、ここをクリックしてください。 - confirm_resend: - success_html: '%{email}に確認メッセージを再送信しました。メールを確認してアカウントを有効にし次第、編集を開始できます。

    あなたの指定したアドレスに確認メールが届くまであなたはログインできません。メールボックスでスパムフィルターを使用している場合は %{sender} - からの確認メールを受信できるようホワイトリストを設定してください。' - failure: '%{name}というアカウントは登録されていません。' - confirm_email: - heading: メール アドレスの変更を確認 - press confirm button: 新しいメール アドレスを確認するために確認ボタンを押してください。 - button: 確認 - success: メール アドレスが変更されたことを確認しました。 - failure: このトークンは、メール アドレスの確認に使用済みです。 - unknown_token: その確認コードは期限切れ、または存在しません。 set_home: flash success: ホーム地点を保存しました。 go_public: @@ -2584,6 +2582,7 @@ ja: custom_dimensions: 独自の寸法を設定 format: '形式:' scale: '縮尺:' + image_dimensions: 画像の表示は標準レイヤで %{width} x %{height} となります download: ダウンロード short_url: 短縮 URL include_marker: マーカーを含める diff --git a/config/locales/ka.yml b/config/locales/ka.yml index d5fb370a9..0605e39cf 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -5,6 +5,7 @@ # Author: MIKHEIL # Author: Temuri rajavi # Author: Გიო ოქრო +# Author: Იო ოქრო --- ka: time: @@ -559,6 +560,7 @@ ka: cape: კონცხი cave_entrance: გამოქვაბულში შესასვლელი cliff: ხრამი + coastline: სანაპირო ზოლი crater: კრატერი dune: დიუნა fell: ბორცვი @@ -787,11 +789,19 @@ ka: note_comment_notification: anonymous: ანონიმური მომხმარებელი greeting: გამარჯობა, + confirmations: + confirm: + heading: შეამოწმეთ თქვენი ელ.ფოსტა! + button: დადასტურება + confirm_resend: + failure: მომხმარებელი %{name} ვერ მოიძებნა. + confirm_email: + heading: ელ. ფოსტის მისამართის ცვლილების დადასტურება + button: დადასტურება messages: inbox: title: მიღებული my_inbox: ჩემი მიღებული - outbox: გაგზავნილი messages: თქვენ გაქვთ %{new_messages} და %{old_messages} new_messages: one: '%{count} ახალი შეტყობინება' @@ -826,9 +836,6 @@ ka: body: ბოდიშით, მაგრამ შეტყობინება ამ ID-ით არ არსებობს. outbox: title: გაგზავნილი - my_inbox_html: ჩემი %{inbox_link} - inbox: მიღებული - outbox: გაგზავნილი messages: one: თქვენ გაქვთ %{count} გაგზავნილი შეტყობინება other: თქვენ გაქვთ %{count} გაგზავნილი შეტყობინება @@ -860,6 +867,32 @@ ka: as_unread: შეტყობინება მონიშნულია როგორც წაუკითხავი destroy: destroyed: შეტყობინება წაშლილია + passwords: + lost_password: + title: პაროლის აღდგენა + heading: დაგავიწყდათ პაროლი? + email address: 'ელ. ფოსტის მისამართი:' + reset_password: + flash changed: თქვენი პაროლი შეიცვალა. + sessions: + new: + title: შესვლა + heading: შესვლა + email or username: 'ელ. ფოსტის მისამართი, ან მომხმარებლის სახელი:' + password: 'პაროლი:' + openid_html: '%{logo} OpenID:' + remember: 'დამიმახსოვრე:' + lost password link: დაგავიწყდათ პაროლი? + login_button: შესვლა + register now: დარეგისტრირდით ახლავე + new to osm: ახალი ხართ OpenStreetMap-ზე? + create account minute: შექმნეით ანგარიში. ამისათვის მხოლოდ ერთი წუთია საჭირო. + no account: არ გაქვთ ანგარიში? + openid_logo_alt: შესვლა OpenID-ის საშუალებით + destroy: + title: გასვლა + heading: OpenStreetMap-დან გასვლა + logout_button: გასვლა site: copyright: foreign: @@ -949,17 +982,6 @@ ka: summit: - მწვერვალი - პიკი - richtext_area: - edit: რედაქტირება - preview: წინასწარი გადახედვა - markdown_help: - first: პირველი ელემენტი - second: მეორე ელემენტი - link: ბმული - text: ტექსტი - image: სურათი - alt: ალტერნატიული ტექსტი - url: URL traces: new: visibility_help: ეს რას ნიშნავს? @@ -986,14 +1008,12 @@ ka: count_points: '%{count} წერტილი' more: მეტი view_map: რუკის ნახვა - edit: რედაქტირება edit_map: რუკის რედაქტირება public: საჯარო identifiable: იდენტიფიცირებადი private: პირადი trackable: კონტროლირებადი by: 'ავტორი:' - map: რუკა oauth: authorize: allow_write_api: რუკის შეცვლა. @@ -1005,30 +1025,6 @@ ka: application: აპლიკაციის სახელი revoke: განბლოკვა! users: - login: - title: შესვლა - heading: შესვლა - email or username: 'ელ. ფოსტის მისამართი, ან მომხმარებლის სახელი:' - password: 'პაროლი:' - openid_html: '%{logo} OpenID:' - remember: 'დამიმახსოვრე:' - lost password link: დაგავიწყდათ პაროლი? - login_button: შესვლა - register now: დარეგისტრირდით ახლავე - new to osm: ახალი ხართ OpenStreetMap-ზე? - create account minute: შექმნეით ანგარიში. ამისათვის მხოლოდ ერთი წუთია საჭირო. - no account: არ გაქვთ ანგარიში? - openid_logo_alt: შესვლა OpenID-ის საშუალებით - logout: - title: გასვლა - heading: OpenStreetMap-დან გასვლა - logout_button: გასვლა - lost_password: - title: პაროლის აღდგენა - heading: დაგავიწყდათ პაროლი? - email address: 'ელ. ფოსტის მისამართი:' - reset_password: - flash changed: თქვენი პაროლი შეიცვალა. new: title: რეგისტრაცია email address: 'ელ. ფოსტის მისამართი:' @@ -1097,14 +1093,6 @@ ka: home location: 'ჩემი ადგილსამყოფელი:' save changes button: ცვლილებების შენახვა return to profile: პროფილში დაბრუნება - confirm: - heading: შეამოწმეთ თქვენი ელ.ფოსტა! - button: დადასტურება - confirm_resend: - failure: მომხმარებელი %{name} ვერ მოიძებნა. - confirm_email: - heading: ელ. ფოსტის მისამართის ცვლილების დადასტურება - button: დადასტურება index: title: მომხმარებლები heading: მომხმარებლები diff --git a/config/locales/kab.yml b/config/locales/kab.yml index 519a53260..32dcaa392 100644 --- a/config/locales/kab.yml +++ b/config/locales/kab.yml @@ -865,11 +865,26 @@ kab: yettwarnan di %{time}' partial_changeset_with_comment: s uwennit '%{changeset_comment}' partial_changeset_without_comment: S war awennit + confirmations: + confirm: + heading: Senqed tansa-ik imayl! + introduction_1: Nuzen-ak-d imayl n usentem. + press confirm button: Senned ɣef tqeffalt Sentem ddaw-a akken ad tremdeḍ amiḍan-ik. + button: Sentem + success: Amiḍan yettwasentem, tanemmirt ɣef ujerred! + already active: Amiḍan-agi yettwasentem yakan. + unknown token: Tangalt n usentem tezri neɣ ulac-itt. + confirm_resend: + failure: Aseqdac %{name} ulac-it. + confirm_email: + heading: Sentem abeddel n tensa-ik imayl + button: Sentem + success: Sentem abeddel n tensa-ik imayl! + unknown_token: Tangalt n usentem tenfer neɣ ulac-itt. messages: inbox: title: Tanaka n urmas my_inbox: Tanaka-iw n urmas - outbox: tanaka n tuzna messages: Ɣur-k %{new_messages} akked %{old_messages} from: Seg subject: Asentel @@ -891,9 +906,6 @@ kab: body: Suref-aɣ, ulac izen s usulay-agi. outbox: title: Tanaka n tuzna - my_inbox_html: '%{inbox_link}-iw' - inbox: tanaka n urmas - outbox: tanaka n tuzna to: I subject: Asentel date: Azemz @@ -914,6 +926,64 @@ kab: as_unread: Izen yettwacred ur yettwaɣra ara destroy: destroyed: Izen yettwakkes + passwords: + lost_password: + title: Awal uffir iṛuḥ + heading: Tettuḍ awal uffir? + email address: 'Tansa imayl:' + new password button: Ales awennez n wawal uffir + reset_password: + title: Ales awennez n wawal uffir + heading: Ales awennez n wawal uffir i %{user} + reset: Ales awennez n wawal uffir + flash changed: Awal-ik uffir ibeddel. + flash token bad: Ajiṭun-agi ulac-it, ahat tuccḍa di tansa URL? + sessions: + new: + title: Qqen + heading: Qqen + email or username: 'Tansa imayl neɣ isem n useqdac:' + password: 'Awal uffir:' + openid_html: '%{logo} OpenID:' + remember: Cfu fell-i + lost password link: Tweddreḍ awal-ik uffir? + login_button: Qqen + register now: Jerred tura + new to osm: D amaynut ar OpenStreetMap? + no account: Ur tesɛiḍ ara amiḍan? + openid_logo_alt: Qqen s OpenID + auth_providers: + openid: + title: Qqen s OpenID + alt: Qqen s tensa URL OpenID + google: + title: Qqen s Google + alt: Qqen s Google OpenID + facebook: + title: Qqen s Facebook + alt: Qqen s umidan Facebook + windowslive: + title: Qqen s Windows Live + alt: Qqen s umiḍan Windows Live + github: + title: Qqen s GitHub + alt: Qqen s umiḍan GitHub + wikipedia: + title: Qqen s Wikipedia + alt: qqes s umiḍan Wikipedia + yahoo: + title: Qqen s Yahoo + alt: Qqen s Yahoo OpenID + wordpress: + title: Qqen s Wordpress + alt: Qqen s OpenID + aol: + title: Qqen s AOL + alt: Qqen s AOL OpenID + destroy: + title: Tuffɣa + heading: Tuffɣa si OpenStreetMap + logout_button: Tuffɣa site: about: next: Ar zdat @@ -1058,20 +1128,6 @@ kab: school: - Aɣerbaz - Tasdawit - richtext_area: - edit: Ẓreg - markdown_help: - title_html: Yettwasleḍ s Markdown - headings: Izwal - heading: Azwel - subheading: Azwel asnawan - first: Aferids amezwaru - second: Aferdis wis sin - link: Aseɣwen - text: Aḍris - image: Tugna - alt: Aḍris-nniḍen - url: Tansa URL welcome: title: Anṣuf! whats_on_the_map: @@ -1114,13 +1170,11 @@ kab: more: ugar trace_details: Sken talqayt n lǧerra view_map: Sken takarḍa - edit: ẓreg edit_map: Ẓreg takarḍa public: AZAYEZ private: USLIG by: sɣuṛ in: di - map: takarḍa index: public_traces: Lǧerrat GPS tizuyaz public_traces_from: Lǧerrat tizuyaz tizuyza n %{user} @@ -1205,62 +1259,6 @@ kab: my_apps: Isnasen-iw imsaɣen register_new: Sekles asnas-il users: - login: - title: Qqen - heading: Qqen - email or username: 'Tansa imayl neɣ isem n useqdac:' - password: 'Awal uffir:' - openid_html: '%{logo} OpenID:' - remember: Cfu fell-i - lost password link: Tweddreḍ awal-ik uffir? - login_button: Qqen - register now: Jerred tura - new to osm: D amaynut ar OpenStreetMap? - no account: Ur tesɛiḍ ara amiḍan? - openid_logo_alt: Qqen s OpenID - auth_providers: - openid: - title: Qqen s OpenID - alt: Qqen s tensa URL OpenID - google: - title: Qqen s Google - alt: Qqen s Google OpenID - facebook: - title: Qqen s Facebook - alt: Qqen s umidan Facebook - windowslive: - title: Qqen s Windows Live - alt: Qqen s umiḍan Windows Live - github: - title: Qqen s GitHub - alt: Qqen s umiḍan GitHub - wikipedia: - title: Qqen s Wikipedia - alt: qqes s umiḍan Wikipedia - yahoo: - title: Qqen s Yahoo - alt: Qqen s Yahoo OpenID - wordpress: - title: Qqen s Wordpress - alt: Qqen s OpenID - aol: - title: Qqen s AOL - alt: Qqen s AOL OpenID - logout: - title: Tuffɣa - heading: Tuffɣa si OpenStreetMap - logout_button: Tuffɣa - lost_password: - title: Awal uffir iṛuḥ - heading: Tettuḍ awal uffir? - email address: 'Tansa imayl:' - new password button: Ales awennez n wawal uffir - reset_password: - title: Ales awennez n wawal uffir - heading: Ales awennez n wawal uffir i %{user} - reset: Ales awennez n wawal uffir - flash changed: Awal-ik uffir ibeddel. - flash token bad: Ajiṭun-agi ulac-it, ahat tuccḍa di tansa URL? new: title: Jerred email address: 'Tansa imayl:' @@ -1365,21 +1363,6 @@ kab: make edits public button: Err akk tiẓrigin-iw s tizuyaz return to profile: Uɣal ar umaɣnu flash update success: Talɣut n useqdac tettwasnifel akken iwata - confirm: - heading: Senqed tansa-ik imayl! - introduction_1: Nuzen-ak-d imayl n usentem. - press confirm button: Senned ɣef tqeffalt Sentem ddaw-a akken ad tremdeḍ amiḍan-ik. - button: Sentem - success: Amiḍan yettwasentem, tanemmirt ɣef ujerred! - already active: Amiḍan-agi yettwasentem yakan. - unknown token: Tangalt n usentem tezri neɣ ulac-itt. - confirm_resend: - failure: Aseqdac %{name} ulac-it. - confirm_email: - heading: Sentem abeddel n tensa-ik imayl - button: Sentem - success: Sentem abeddel n tensa-ik imayl! - unknown_token: Tangalt n usentem tenfer neɣ ulac-itt. set_home: flash success: Adig n uxxam yettwasekles akken iwata index: diff --git a/config/locales/km.yml b/config/locales/km.yml index 8be5f4a98..0b8124252 100644 --- a/config/locales/km.yml +++ b/config/locales/km.yml @@ -634,6 +634,15 @@ km: greeting: សួស្ដី, lost_password: greeting: សួស្ដី​, + confirmations: + confirm: + heading: សូមឆែកអ៉ីម៉ែលរបស់អ្នក! + button: បញ្ជាក់​ + confirm_email: + heading: បញ្ជាក់ការផ្លាស់ប្ដូរ​អាសយដ្ឋានអ៊ីមែល + press confirm button: ចុចលើប៉ូតុងខាងក្រោមដើម្បីបញ្ជាក់អាសយដ្ឋានអ៊ីមែលថ្មីរបស់អ្នក​។ + button: បញ្ជាក់​ + success: បានបញ្ជាក់អាសយដ្ឋានអ៊ីមែលរបស់អ្នករូចរាល់ហើយ! messages: inbox: from: ពី​ @@ -651,6 +660,34 @@ km: subject: ប្រធានបទ​ date: កាលបរិច្ឆេទ​ to: ទៅ​ + sessions: + new: + title: កត់ឈ្មោះចូល + heading: កត់ឈ្មោះចូល + email or username: អាសយដ្ឋានអ៊ីមែល ឬឈ្មោះអ្នកប្រើប្រាស់​៖ + login_button: កត់ឈ្មោះចូល + auth_providers: + openid: + title: កត់ឈ្មោះចូលដោយប្រើ OpenID + google: + title: កត់ឈ្មោះចូលដោយប្រើ Google + facebook: + title: កត់ឈ្មោះចូលដោយប្រើ Facebook + windowslive: + title: កត់ឈ្មោះចូលដោយប្រើ Windows Live + github: + title: កត់ឈ្មោះចូលដោយប្រើ GitHub + wikipedia: + title: កត់ឈ្មោះចូលដោយប្រើវិគីភីឌា + yahoo: + title: កត់ឈ្មោះចូលដោយប្រើ Yahoo + wordpress: + title: កត់ឈ្មោះចូលដោយប្រើ Wordpress + aol: + title: កត់ឈ្មោះចូលដោយប្រើ AOL + destroy: + title: កត់ឈ្មោះចេញ + logout_button: កត់ឈ្មោះចេញ site: copyright: foreign: @@ -722,13 +759,11 @@ km: none: គ្មាន​ trace: view_map: មើលផែនទី​ - edit: កែប្រែ​ edit_map: កែប្រែផែនទី​ public: សាធារណៈ​ private: ឯកជន​ by: ដោយ​ in: ក្នុង​ - map: ផែនទី​ index: tagged_with: ' បានដាកស្លាកជា %{tags}' oauth_clients: @@ -737,33 +772,6 @@ km: show: edit: កែប្រែ​ព័ត៌មានលម្អិត​ users: - login: - title: កត់ឈ្មោះចូល - heading: កត់ឈ្មោះចូល - email or username: អាសយដ្ឋានអ៊ីមែល ឬឈ្មោះអ្នកប្រើប្រាស់​៖ - login_button: កត់ឈ្មោះចូល - auth_providers: - openid: - title: កត់ឈ្មោះចូលដោយប្រើ OpenID - google: - title: កត់ឈ្មោះចូលដោយប្រើ Google - facebook: - title: កត់ឈ្មោះចូលដោយប្រើ Facebook - windowslive: - title: កត់ឈ្មោះចូលដោយប្រើ Windows Live - github: - title: កត់ឈ្មោះចូលដោយប្រើ GitHub - wikipedia: - title: កត់ឈ្មោះចូលដោយប្រើវិគីភីឌា - yahoo: - title: កត់ឈ្មោះចូលដោយប្រើ Yahoo - wordpress: - title: កត់ឈ្មោះចូលដោយប្រើ Wordpress - aol: - title: កត់ឈ្មោះចូលដោយប្រើ AOL - logout: - title: កត់ឈ្មោះចេញ - logout_button: កត់ឈ្មោះចេញ new: title: ចុះឈ្មោះ​ចូល use external auth: ប្រើភ្នាក់ងារទី៣ដើម្បីកត់ឈ្មោះចូល @@ -791,14 +799,6 @@ km: flash update success confirm needed: ព័ត៌មានអ្នកប្រើប្រាស់​ បានបន្ទាន់សម័យដោយជោគជ័យ​។ សូមពិនិត្យមើលអ៊ីមែលរបស់អ្នក ដើម្បីបញ្ជាក់អាសយដ្ឋានអ៊ីមែលថ្មីរបស់អ្នក។ flash update success: ព័ត៌មានអ្នកប្រើប្រាស់​ បានបន្ទាន់សម័យដោយជោគជ័យ​។ - confirm: - heading: សូមឆែកអ៉ីម៉ែលរបស់អ្នក! - button: បញ្ជាក់​ - confirm_email: - heading: បញ្ជាក់ការផ្លាស់ប្ដូរ​អាសយដ្ឋានអ៊ីមែល - press confirm button: ចុចលើប៉ូតុងខាងក្រោមដើម្បីបញ្ជាក់អាសយដ្ឋានអ៊ីមែលថ្មីរបស់អ្នក​។ - button: បញ្ជាក់​ - success: បានបញ្ជាក់អាសយដ្ឋានអ៊ីមែលរបស់អ្នករូចរាល់ហើយ! javascripts: embed: report_problem: រាយការណ៍​បញ្ហា diff --git a/config/locales/kn.yml b/config/locales/kn.yml index 7db67d1ec..9fc70f50c 100644 --- a/config/locales/kn.yml +++ b/config/locales/kn.yml @@ -10,6 +10,7 @@ # Author: VASANTH S.N. # Author: Xor # Author: Yogesh +# Author: ಮಲ್ನಾಡಾಚ್ ಕೊಂಕ್ಣೊ --- kn: time: @@ -27,7 +28,7 @@ kn: create: ಕಳುಹಿಸಿ client_application: create: ನೊಂದಾಯಿಸಿರಿ - update: ತಿದ್ದಿ + update: ಪರಿಷ್ಕರಿಸು trace: create: ಅಪ್ಲೋಡ್ activerecord: @@ -78,7 +79,7 @@ kn: trace: user: ಬಳಕೆದಾರ visible: ಗೋಚರ - name: ಹೆಸರು + name: ಕಡತದ ಹೆಸರು size: ಗಾತ್ರ latitude: ಅಕ್ಷಾಂಶ longitude: ರೇಖಾಂಶ @@ -93,8 +94,8 @@ kn: email: ಇ-ಅಂಚೆ active: ಸಕ್ರಿಯ display_name: ಹೆಸರನ್ನು ಪ್ರದರ್ಶಿಸು - description: ವಿವರ - languages: ಭಾಷೆಗಳು + description: ಪ್ರೊಫೈಲ್ ವಿವರ + languages: ಅದ್ಯತೆಯ ಭಾಷೆಗಳು pass_crypt: ಪ್ರವೇಶಪದ datetime: distance_in_words_ago: @@ -253,7 +254,7 @@ kn: previous: ‍‍ « ಹಿಂದಿನ changeset: anonymous: ಅನಾಮಧೇಯ - no_edits: ತಿದ್ದುಪಡಿ ಇಲ್ಲ + no_edits: (ಸಂಪಾದನೆಗಳಿಲ್ಲ) view_changeset_details: ಬದಲಾವಣೆಯ ವಿವರಗಳನ್ನು ತೋರಿಸಿ changesets: id: ಗುರುತಿನ ಸಂಖ್ಯೆ @@ -286,7 +287,7 @@ kn: new: title: ದಿನಚರಿಯಲ್ಲಿ ಹೊಸದಾದ ದಾಖಲೆ form: - location: 'ಸ್ಥಳ:' + location: ಸ್ಥಳ use_map_link: ನಕ್ಷೆ ಬಳಸು index: title: ಬಳಕೆದಾರರ ದಿನಚರಿ @@ -308,7 +309,7 @@ kn: user_title: '%{user}ಅವರ ದಿನಚರಿ' leave_a_comment: ಟಿಪ್ಪಣಿ ನೀಡಿರಿ login_to_leave_a_comment_html: '%{login_link} ಅಭಿಪ್ರಾಯ ತಿಳಿಸಲು' - login: ಪ್ರವೇಶಿಸು + login: ಲಾಗಿನ್ no_such_entry: title: ಅಂತಹ ಯಾವುದೇ ದಿನಚರಿ ದಾಖಲಾತಿ ಇಲ್ಲ heading: 'ಈ ಸಂಖ್ಯೆಯ ದಾಖಲಾತಿ ಇಲ್ಲ: %{id}' @@ -322,7 +323,7 @@ kn: confirm: ಧೃಡಪಡಿಸಿ diary_comment: comment_from_html: '%{link_user}ಅವರಿಂದ %{comment_created_at}ರಂದು ಅಭಿಪ್ರಾಯ' - hide_link: ಈ ಅಭಿಪ್ರಾಯವನ್ನು ಬಚ್ಚಿಡಿ + hide_link: ಈ ಟಿಪ್ಪಣಿಯನ್ನು ಅಡಗಿಸಿ confirm: ಧೃಡಪಡಿಸಿ location: location: 'ಸ್ಥಳ:' @@ -594,6 +595,16 @@ kn: as_unread: ಸಂದೇಶ ಓದಾಲಾಗಿಲ್ಲ ಎಂದು ಗುರುತು ಮಾಡಿ destroy: destroyed: ಸಂದೇಶವನ್ನು ಅಳಿಸಿ ಹಾಕಲಾಗಿದೆ + passwords: + reset_password: + flash changed: ನಿಮ್ಮ ಪ್ರವೇಶಪದವನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ. + sessions: + new: + title: ಲಾಗ್ ಇನ್ + password: 'ಪ್ರವೇಶಪದ:' + destroy: + title: ಲಾಗ್ ಔಟ್ + logout_button: ಲಾಗ್ ಔಟ್ site: about: next: ಮುಂದಿನ @@ -628,7 +639,7 @@ kn: title: ಸಹಾಯವನ್ನು ಪಡೆವುದು welcome: url: /welcome - title: ಒಎಸ್ಎಂಗೆ ಸುಸ್ವಾಗತ + title: ಒಪನ್ ಸ್ಟ್ರೀಟ್ ಮ್ಯಾಪ್ ಗೆ ಸುಸ್ವಾಗತ help: url: https://help.openstreetmap.org/ title: help.openstreetmap.org @@ -644,7 +655,7 @@ kn: get_directions: ದಾರಿಯನ್ನು ಹುಡುಕಿ from: ಇಂದ to: ಗೆ - where_am_i: ನಾನು ಎಲ್ಲಿದ್ದೇನೆ? + where_am_i: ಇದು ಎಲ್ಲಿದೆ? submit_text: ಹೋಗು key: table: @@ -661,14 +672,6 @@ kn: - ಪಾಠಶಾಲೆ - ವಿಶ್ವವಿದ್ಯಾಲಯ station: ರೈಲು ನಿಲ್ದಾಣ - richtext_area: - edit: ಸಂಪಾದಿಸಿ - preview: ಮುನ್ನೋಟ - markdown_help: - headings: ತಲೆಬರಹಗಳು - heading: ತಲೆಬರಹ - subheading: ಉಪ ಶಿರೋನಾಮೆ - image: ಚಿತ್ರ welcome: title: ಸುಸ್ವಾಗತ! whats_on_the_map: @@ -682,14 +685,6 @@ kn: new: help: ಸಹಾಯ users: - login: - title: ಲಾಗ್ ಇನ್ - password: 'ಪ್ರವೇಶಪದ:' - logout: - title: ಲಾಗ್ ಔಟ್ - logout_button: ಲಾಗ್ ಔಟ್ - reset_password: - flash changed: ನಿಮ್ಮ ಪ್ರವೇಶಪದವನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ. terms: legale_names: france: ಫ಼್ರಾನ್ಸ್ diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 4af2c0da4..b1fc1eddd 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -8,6 +8,7 @@ # Author: B891202 # Author: CYAN # Author: Codenstory +# Author: Cubbe # Author: D6283 # Author: Drhyme # Author: Freebiekr @@ -703,7 +704,9 @@ ko: painter: 화가 photographer: 사진 작가 plumber: 배관공 + sawmill: 제재소 shoemaker: 구두공 + stonemason: 석공 tailor: 재단사 winery: 포도주 양조장 "yes": 공예품점 @@ -796,6 +799,7 @@ ko: "yes": 교차로 landuse: allotments: 텃밭 + aquaculture: 수경 재배 basin: 유역 brownfield: 재개발지역 cemetery: 묘지 @@ -914,11 +918,13 @@ ko: mountain_pass: "yes": 산길 natural: + atoll: 환초 bay: 만 beach: 해변 cape: 곶 cave_entrance: 동굴 입구 cliff: 절벽 + coastline: 해안선 crater: 크레이터 dune: 모래 언덕 fell: 언덕 @@ -936,6 +942,7 @@ ko: moor: 습지 mud: 진흙 peak: 봉우리 + peninsula: 반도 point: 점 reef: 암초 ridge: 산등성이 @@ -976,6 +983,7 @@ ko: "yes": 사옥 place: allotments: 텃밭 + archipelago: 군도 city: 시 city_block: 도시 구획 country: 국가 @@ -1181,7 +1189,7 @@ ko: stream: 하천 wadi: 와디 waterfall: 폭포 - weir: 어량 + weir: 보 "yes": 수로 admin_levels: level2: 국가 경계 @@ -1431,11 +1439,34 @@ ko: partial_changeset_without_comment: 의견 없이 details: 바뀜집합에 대한 자세한 사항은 %{url}에서 찾을 수 있습니다. unsubscribe: 이 바뀜집합의 업데이트를 받지 않으려면 %{url} 에 방문하여 "구독 해지"를 클릭하십시오. + confirmations: + confirm: + heading: 이메일을 확인하세요! + introduction_1: 확인 이메일을 보냈습니다. + introduction_2: 이메일에 있는 링크를 클릭하여 계정을 확인하면 매핑을 시작할 수 있습니다. + press confirm button: 계정을 활성화하려면 아래 확인 버튼을 누르세요. + button: 확인 + success: 계정을 확인했습니다, 가입해주셔서 감사합니다! + already active: 이 계정은 이미 확인했습니다. + unknown token: 확인 코드가 만료되었거나 존재하지 않습니다. + reconfirm_html: 확인 이메일을 다시 보낼 필요가 있다면, 여기를 클릭하세요. + confirm_resend: + success_html: '%{email}(으)로 새 확인 쪽지를 보냈는데 즉시 계정을 확인하는 대로 매핑을 할 수 있습니다.

    확인 요청을 보낼 때 스팸 방지 시스템을 사용한다면 어떤 확인 요청에 답변할 수 없으므로 화이트리스트에 %{sender}이(가) + 있는지 확인하세요.' + failure: '%{name} 사용자를 찾을 수 없습니다.' + confirm_email: + heading: 이메일 주소 바꾸기 확인 + press confirm button: 새 이메일 주소를 확인하여면 아래에 확인 버튼을 누르세요. + button: 확인 + success: 이메일 주소 변경을 확인했습니다! + failure: 이미 이 토큰으로 이메일 주소를 확인했습니다. + unknown_token: 확인 코드가 만료되었거나 존재하지 않습니다. messages: inbox: title: 받은 쪽지함 my_inbox: 내 받은 쪽지함 - outbox: 보낸 쪽지함 + my_outbox: 내 보낸 쪽지함 messages: '%{new_messages}와 %{old_messages}가 있습니다' new_messages: one: 새 메시지 %{count}개 @@ -1469,9 +1500,8 @@ ko: body: 죄송합니다 해당 id로 된 메시지가 없습니다. outbox: title: 보낸 쪽지함 - my_inbox_html: 내 %{inbox_link} - inbox: 받은 쪽지함 - outbox: 보낸 쪽지함 + my_inbox: 내 받은 쪽지함 + my_outbox: 내 보낸 쪽지함 messages: one: 메시지 %{count}개를 보냈습니다 other: 메시지 %{count}개를 보냈습니다 @@ -1503,6 +1533,76 @@ ko: as_unread: 메시지를 읽지 않은 것으로 표시 destroy: destroyed: 메시지가 삭제됨 + passwords: + lost_password: + title: 잊어버린 비밀번호 + heading: 비밀번호를 잊으셨나요? + email address: '이메일 주소:' + new password button: 비밀번호 재설정 + help_text: 가입할 때 사용한 이메일 주소를 입력하세요, 비밀번호를 재설정하여 사용할 수 있는 링크를 보내드립니다. + notice email on way: 비밀번호를 잊었다니, 안타깝습니다 :-( 비밀번호 재설정을 할 수 있도록 이메일이 발송되었습니다. + notice email cannot find: 이메일 주소를 찾지 못해 죄송합니다. + reset_password: + title: 비밀번호 재설정 + heading: '%{user}의 비밀번호 재설정' + reset: 비밀번호 재설정 + flash changed: 비밀번호가 바뀌었습니다. + flash token bad: 토큰을 찾지 못했습니다. URL을 확인했습니까? + sessions: + new: + title: 로그인 + heading: 로그인 + email or username: '이메일 주소 또는 사용자 이름:' + password: '비밀번호:' + openid_html: '%{logo} OpenID:' + remember: 로그인 상태를 기억하기 + lost password link: 비밀번호를 잊으셨나요? + login_button: 로그인 + register now: 지금 등록하세요 + with username: '이미 OpenStreetMap 계정을 가지고 있나요? 계정 이름과 비밀번호로 로그인하세요:' + with external: 다른 제3자 로그인 방식 사용하기 + new to osm: OpenStreetMap이 처음이세요? + to make changes: OpenStreetMap 데이터를 바꾸려면 계정이 있어야 합니다. + create account minute: 계정을 만듭니다. 1분도 걸리지 않습니다. + no account: 계정이 없나요? + account not active: 죄송합니다, 계정을 아직 활성화하지 않았습니다.
    계정을 활성화하려면 계정 확인 이메일에 있는 + 링크를 사용하거나 새 확인 이메일을 요청하세요. + account is suspended: 죄송합니다, 의심스러운 활동으로 인해 계정이 일시 중지되었습니다.
    이 문제를 토론하려면 + 웹마스터에게 문의하세요. + auth failure: 죄송합니다, 입력한 정보로 로그인할 수 없습니다. + openid_logo_alt: OpenID로 로그인 + auth_providers: + openid: + title: OpenID로 로그인하기 + alt: OpenID URL로 로그인 + google: + title: 구글로 로그인하기 + alt: Google OpenID로 로그인하기 + facebook: + title: 페이스북으로 로그인 + alt: 페이스북 계정으로 로그인하기 + windowslive: + title: 윈도 라이브로 로그인하기 + alt: 윈도 라이브 계정으로 로그인하기 + github: + title: GitHub로 로그인 + alt: GitHub 계정으로 로그인 + wikipedia: + title: 위키백과로 로그인하기 + alt: 위키백과 계정으로 로그인 + yahoo: + title: 야후로 로그인 + alt: Yahoo OpenID로 로그인하기 + wordpress: + title: 워드프레스로 로그인하기 + alt: Wordpress OpenID로 로그인하기 + aol: + title: AOL로 로그인하기 + alt: AOL OpenID로 로그인하기 + destroy: + title: 로그아웃 + heading: OpenStreetMap에서 로그아웃 + logout_button: 로그아웃 shared: markdown_help: title_html: kramdown으로 @@ -1872,24 +1972,6 @@ ko: bicycle_shop: 자전거 가게 bicycle_parking: 자전거 주차장 toilets: 화장실 - richtext_area: - edit: 편집 - preview: 미리 보기 - markdown_help: - title_html: kramdown으로 - 구문 분석 - headings: 문단 제목 - heading: 문단 제목 - subheading: 하위 문단 제목 - unordered: 순서 없는 목록 - ordered: 순서 있는 목록 - first: 첫째 항목 - second: 둘째 항목 - link: 링크 - text: 텍스트 - image: 그림 - alt: 대체 텍스트 - url: URL welcome: title: 환영합니다! introduction_html: |- @@ -2000,7 +2082,6 @@ ko: more: 더 보기 trace_details: 궤적 상세보기 view_map: 지도 보기 - edit: 편집 edit_map: 지도 편집 public: 공개 identifiable: 식별 가능 @@ -2008,7 +2089,6 @@ ko: trackable: 추적 가능 by: 사용자 in: 위치 - map: 지도 index: public_traces: 공개 GPS 궤적 my_traces: 내 GPS 궤적 @@ -2116,74 +2196,6 @@ ko: destroy: flash: 클라이언트 애플리케이션 등록을 파기했습니다 users: - login: - title: 로그인 - heading: 로그인 - email or username: '이메일 주소 또는 사용자 이름:' - password: '비밀번호:' - openid_html: '%{logo} OpenID:' - remember: 로그인 상태를 기억하기 - lost password link: 비밀번호를 잊으셨나요? - login_button: 로그인 - register now: 지금 등록하세요 - with username: '이미 OpenStreetMap 계정을 가지고 있나요? 계정 이름과 비밀번호로 로그인하세요:' - with external: 다른 제3자 로그인 방식 사용하기 - new to osm: OpenStreetMap이 처음이세요? - to make changes: OpenStreetMap 데이터를 바꾸려면 계정이 있어야 합니다. - create account minute: 계정을 만듭니다. 1분도 걸리지 않습니다. - no account: 계정이 없나요? - account not active: 죄송합니다, 계정을 아직 활성화하지 않았습니다.
    계정을 활성화하려면 계정 확인 이메일에 있는 - 링크를 사용하거나 새 확인 이메일을 요청하세요. - account is suspended: 죄송합니다, 의심스러운 활동으로 인해 계정이 일시 중지되었습니다.
    이 문제를 토론하려면 - 웹마스터에게 문의하세요. - auth failure: 죄송합니다, 입력한 정보로 로그인할 수 없습니다. - openid_logo_alt: OpenID로 로그인 - auth_providers: - openid: - title: OpenID로 로그인하기 - alt: OpenID URL로 로그인 - google: - title: 구글로 로그인하기 - alt: Google OpenID로 로그인하기 - facebook: - title: 페이스북으로 로그인 - alt: 페이스북 계정으로 로그인하기 - windowslive: - title: 윈도 라이브로 로그인하기 - alt: 윈도 라이브 계정으로 로그인하기 - github: - title: GitHub로 로그인 - alt: GitHub 계정으로 로그인 - wikipedia: - title: 위키백과로 로그인하기 - alt: 위키백과 계정으로 로그인 - yahoo: - title: 야후로 로그인 - alt: Yahoo OpenID로 로그인하기 - wordpress: - title: 워드프레스로 로그인하기 - alt: Wordpress OpenID로 로그인하기 - aol: - title: AOL로 로그인하기 - alt: AOL OpenID로 로그인하기 - logout: - title: 로그아웃 - heading: OpenStreetMap에서 로그아웃 - logout_button: 로그아웃 - lost_password: - title: 잊어버린 비밀번호 - heading: 비밀번호를 잊으셨나요? - email address: '이메일 주소:' - new password button: 비밀번호 재설정 - help_text: 가입할 때 사용한 이메일 주소를 입력하세요, 비밀번호를 재설정하여 사용할 수 있는 링크를 보내드립니다. - notice email on way: 비밀번호를 잊었다니, 안타깝습니다 :-( 비밀번호 재설정을 할 수 있도록 이메일이 발송되었습니다. - notice email cannot find: 이메일 주소를 찾지 못해 죄송합니다. - reset_password: - title: 비밀번호 재설정 - heading: '%{user}의 비밀번호 재설정' - reset: 비밀번호 재설정 - flash changed: 비밀번호가 바뀌었습니다. - flash token bad: 토큰을 찾지 못했습니다. URL을 확인했습니까? new: title: 가입하기 no_auto_account_create: 불행하게도 현재로서는 자동으로 계정을 만들 수 없습니다. @@ -2353,28 +2365,6 @@ ko: flash update success confirm needed: 사용자 정보를 성공적으로 업데이트했습니다. 새 이메일 주소를 확인하기 위해 이메일을 확인하세요. flash update success: 사용자 정보를 성공적으로 업데이트했습니다. - confirm: - heading: 이메일을 확인하세요! - introduction_1: 확인 이메일을 보냈습니다. - introduction_2: 이메일에 있는 링크를 클릭하여 계정을 확인하면 매핑을 시작할 수 있습니다. - press confirm button: 계정을 활성화하려면 아래 확인 버튼을 누르세요. - button: 확인 - success: 계정을 확인했습니다, 가입해주셔서 감사합니다! - already active: 이 계정은 이미 확인했습니다. - unknown token: 확인 코드가 만료되었거나 존재하지 않습니다. - reconfirm_html: 확인 이메일을 다시 보낼 필요가 있다면, 여기를 클릭하세요. - confirm_resend: - success_html: '%{email}(으)로 새 확인 쪽지를 보냈는데 즉시 계정을 확인하는 대로 매핑을 할 수 있습니다.

    확인 요청을 보낼 때 스팸 방지 시스템을 사용한다면 어떤 확인 요청에 답변할 수 없으므로 화이트리스트에 %{sender}이(가) - 있는지 확인하세요.' - failure: '%{name} 사용자를 찾을 수 없습니다.' - confirm_email: - heading: 이메일 주소 바꾸기 확인 - press confirm button: 새 이메일 주소를 확인하여면 아래에 확인 버튼을 누르세요. - button: 확인 - success: 이메일 주소 변경을 확인했습니다! - failure: 이미 이 토큰으로 이메일 주소를 확인했습니다. - unknown_token: 확인 코드가 만료되었거나 존재하지 않습니다. set_home: flash success: 집 위치를 성공적으로 저장했습니다 go_public: diff --git a/config/locales/ksh.yml b/config/locales/ksh.yml index f289a229d..f824a33de 100644 --- a/config/locales/ksh.yml +++ b/config/locales/ksh.yml @@ -179,6 +179,11 @@ ksh: subject: '[OpenStreetMap] Donn Ding Addräß för de e-mail beshtääteje' lost_password: subject: '[OpenStreetMap] Aanfrooch: Paßwoot neu säze' + confirmations: + confirm_resend: + failure: Dä Metmaacher „%{name} “ ham_mer nit jefonge. + confirm_email: + heading: Donn en neue Adräß för de e-mail beschtäätejje messages: inbox: from: Vum @@ -196,6 +201,56 @@ ksh: to: Aan sent_message_summary: destroy_button: Fottschmiiße + passwords: + lost_password: + title: Verloore Paßwoot + heading: Paßwoot verjäße? + email address: 'De Adräß för de e-mail:' + new password button: Paßwoot neu säze + reset_password: + title: Paßwoot neu säze + reset: Paßwoot neu säze + flash changed: Ding Paßwoot es jeändert. + sessions: + new: + title: Enlogge + heading: Enlogge + email or username: 'De Adräß för de e-mail udder der Metmaacher_Nahme:' + password: 'Paßwoot:' + lost password link: Paßwoot verschött jejange? + login_button: Enlogge + auth_providers: + google: + title: Övver Google ennlogge + alt: Ennlogge medd ener OpenID + vun Google. + facebook: + title: Donn övver ene Zohjang op Facebook + ennlogge + alt: Donn övver ene Zohjang op Facebook + ennlogge + windowslive: + title: Donn medd enem Zohjang op Windows + Live ennlogge + alt: Donn medd enem Zohjang op Windows + Live ennlogge + github: + title: Övver GitHub ennlogge + alt: Donn övver ene Zohjang bei GitHub + ennlogge + wordpress: + title: Övver Wordpress ennlogge + aol: + title: Övver AOL + enlogge. site: about: legal_title: Rääschlesch @@ -294,9 +349,6 @@ ksh: private: Der Zohjang es prėvaat destination: Bloß för Aanliejer construction: Schtrohß em Bou - richtext_area: - edit: Ändere - preview: Vörschou welcome: rules: title: Rääjelle! @@ -319,14 +371,12 @@ ksh: more: mih trace_details: Einzelheite vun dä Opnahm belooere view_map: Kaat belohre - edit: ändere edit_map: Kaat ändere public: öffentlesch private: prėvaat trackable: nohträckbaa by: vum in: en - map: Landkaat index: public_traces: Öffentlesche GPS-Opnahme public_traces_from: Öffentlesche GPS-Opnahme vum %{user} @@ -361,54 +411,6 @@ ksh: index: revoke: Zeröckroofe! users: - login: - title: Enlogge - heading: Enlogge - email or username: 'De Adräß för de e-mail udder der Metmaacher_Nahme:' - password: 'Paßwoot:' - lost password link: Paßwoot verschött jejange? - login_button: Enlogge - auth_providers: - google: - title: Övver Google ennlogge - alt: Ennlogge medd ener OpenID - vun Google. - facebook: - title: Donn övver ene Zohjang op Facebook - ennlogge - alt: Donn övver ene Zohjang op Facebook - ennlogge - windowslive: - title: Donn medd enem Zohjang op Windows - Live ennlogge - alt: Donn medd enem Zohjang op Windows - Live ennlogge - github: - title: Övver GitHub ennlogge - alt: Donn övver ene Zohjang bei GitHub - ennlogge - wordpress: - title: Övver Wordpress ennlogge - aol: - title: Övver AOL - enlogge. - lost_password: - title: Verloore Paßwoot - heading: Paßwoot verjäße? - email address: 'De Adräß för de e-mail:' - new password button: Paßwoot neu säze - reset_password: - title: Paßwoot neu säze - reset: Paßwoot neu säze - flash changed: Ding Paßwoot es jeändert. new: email address: 'De Adräß för de e-mail:' confirm email address: 'Donn de Adräß för de e-mail beschtäätejje:' @@ -435,10 +437,6 @@ ksh: account: external auth: 'Donn övver en anndere Schtäll de Dahte för et Enlogge pröhve lasse:' - confirm_resend: - failure: Dä Metmaacher „%{name} “ ham_mer nit jefonge. - confirm_email: - heading: Donn en neue Adräß för de e-mail beschtäätejje user_blocks: show: created: Aanjelaat diff --git a/config/locales/ku-Latn.yml b/config/locales/ku-Latn.yml index 4af340602..87e735def 100644 --- a/config/locales/ku-Latn.yml +++ b/config/locales/ku-Latn.yml @@ -46,11 +46,11 @@ ku-Latn: errors: messages: invalid_email_address: wekî navnîşaneke e-peyamê ya derbasdar nayê xuyan - email_address_not_routable: ne alîkirinbar e + email_address_not_routable: nikare were alîkirin models: - acl: Lîsteya Kontrolê Têketinan - changeset: Qeyda Guhertinan - changeset_tag: Nîşana Qeyda Guhertinan + acl: Lîsteya kontrola têketinan + changeset: Qeyda guhertinan + changeset_tag: Nîşana qeyda guhertinan country: Welat diary_comment: Şîroveya rojane diary_entry: Nivîsa Rojane @@ -125,20 +125,25 @@ ku-Latn: body: Nivîs recipient: Wergir redaction: + title: Sernav description: Danasîn report: category: Ji bo rapora xwe sedemekî bibijêre details: Ji kerema xwe di derbarê pirsgirêkê de zêdetir zanyarî bide (hewce ye). user: + auth_provider: Pêşkêşkera teyîdkirina nasnameyê + auth_uid: UIDa teyîdkirina nasnameyê email: E-name - new_email: 'Navnîşana e-nameyê yê nû:' + email_confirmation: Piştrastkirina e-nameyê + new_email: Navnîşana e-nameyê yê nû active: Çalak display_name: Nav nîşan bide - description: Danasîn - home_lat: 'Hêlîpan:' - home_lon: 'Hêlîlar:' - languages: Ziman + description: Danasîna Profîlê + home_lat: Hêlîpan + home_lon: Hêlîlar + languages: Zimanên tercîhkirî + preferred_editor: Edîtora tercîhkirî pass_crypt: Şîfre pass_crypt_confirmation: Şîfreyê Bipejirîne help: @@ -152,6 +157,10 @@ ku-Latn: fam bikin bi kar bîne. needs_view: Gelo hewce dike bikarhêner berî ku ev astengî rabe têkeve? user: + email_confirmation: Adrêsa te ji her kesê re nayê nîşandan, ji bo zêdetir + agahiyan binêre siyaseta + me ya veşarîtiyê. new_email: (ti carî nayê nîşandan) datetime: distance_in_words_ago: @@ -202,7 +211,7 @@ ku-Latn: description: Ji dûr ve kontrol (JOSM, Potlatch, Merkaartor) auth: providers: - none: Tune + none: Ne yek openid: OpenID google: Google facebook: Facebook @@ -311,8 +320,8 @@ ku-Latn: entry_html: Eleqe %{relation_name} entry_role_html: Eleqe %{relation_name} (wekî %{relation_role}) not_found: - title: Peyda Nebû - sorry: Bibore %{type} a bi nimreya %{id} nehate dîtin. + title: Nehate dîtin + sorry: 'Bibore %{type} #%{id} nikarîbû were dîtin.' type: node: nuqte way: rê @@ -471,7 +480,7 @@ ku-Latn: zero: Bêşîrove one: '%{count} şîrove' other: '%{count} şîrove' - edit_link: Vê nivîsê biguhêre + edit_link: Vê nivîsê biguherîne hide_link: Vê nivîsê biveşêre unhide_link: Veşartina vê nivîsê rake confirm: Tesdîq bike @@ -485,7 +494,7 @@ ku-Latn: location: location: 'Cih:' view: Bibîne - edit: Biguhêre + edit: Biguherîne feed: user: title: Nivîsên rojane yên %{user} a OpenStreetMapê @@ -994,6 +1003,7 @@ ku-Latn: cape: Nîvgirav cave_entrance: Deriyê şikeftê cliff: Kendal + coastline: Xeta beravê crater: Zung dune: Girikê ji qûmê fell: Serê çiyayan @@ -1011,6 +1021,7 @@ ku-Latn: moor: Erda Bejî mud: Herrî peak: Lûtke / gir + peninsula: Nîvgirav point: Nuqte reef: Resîf ridge: Pişta çiyayê - berpal @@ -1294,10 +1305,10 @@ ku-Latn: issues: index: title: Pirsgirêk - select_status: Rewşê Hilbijêre - select_type: Tîp Hilbijêre - select_last_updated_by: Rojanekirina Dawî Hilbijêre - reported_user: Bikarhênerê/a Hatiye Raporkirî + select_status: Rewşê Bibijêre + select_type: Tîp Bibijêre + select_last_updated_by: Rojanekirina Dawî Bibijêre + reported_user: Bikarhênerê/a Raporkirî not_updated: Rojanekirin Nebû search: Lê bigere search_guidance: Pirsgirêkên Lêgerînê @@ -1312,7 +1323,7 @@ ku-Latn: reports_count: one: 1 Rapor other: '%{count} Raporan' - reported_item: Gotarê Hatiye Raporkirî + reported_item: Hêmanê Raporkirî states: ignored: Guh nedê open: Veke @@ -1327,7 +1338,7 @@ ku-Latn: zero: Rapor tune ye one: 1 rapor other: '%{count} raporan' - report_created_at: Berê di %{datetime} de hat raporkirin + report_created_at: Pêşî di %{datetime} de hatiye raporkirin last_resolved_at: Herî dawî di %{datetime} de hat çareserkirin last_updated_at: Ji aliyê %{displayname} ve herî dawî di %{datetime} de hat rojanekirin @@ -1364,7 +1375,7 @@ ku-Latn: title_html: Rapor %{link} missing_params: Raporeke nû nehat çêkirin disclaimer: - intro: 'Berî şandina rapora xwe ji moderatorên malperê, ji keram xwe vê piştrast + intro: 'Berî şandina rapora xwe ji moderatorên malperê, ji kerama xwe vê piştrast bike:' not_just_mistake: Em dizanin ku ev pirsgirêk ne tenê çewtî ye unable_to_fix: Pirsgirêkê tu bi xwe an jî bi alîkariya endamên civata xwe @@ -1394,7 +1405,7 @@ ku-Latn: other_label: Yên din create: successful_report: Rapora we bi serkeftî hat tomarkirin - provide_details: Ji kerema xwe zanyariyên pêwist bi dest bixin + provide_details: Ji kerema xwe zanyariyên pêwîst bi dest bixin layouts: logo: alt_text: Logoya OpenStreetMapê @@ -1453,8 +1464,8 @@ ku-Latn: şirove kir:' header_html: '%{from_user} nivîsa rojane yê OpenStreetMapê a bi mijara %{subject} şirove kir:' - footer: Herwiha ji ser rûpela %{readurl} jî dikarî şiroveyê bixwînî û ji ser - %{commenturl} dikarî şirove bikî an jî ji ser %{replyurl} peyamekî bişîne + footer: Herwiha ji ser rûpela %{readurl} jî dikarî şîroveyê bixwînî û ji ser + %{commenturl} dikarî şîrove bikî an jî ji ser %{replyurl} peyamekî bişîne nivîserê. footer_html: Herwiha ji ser rûpela %{readurl} jî dikarî şiroveyê bixwînî û ji ser %{commenturl} dikarî şirove bikî an jî ji ser %{replyurl} peyamekî bişîne @@ -1469,7 +1480,7 @@ ku-Latn: footer: Tu dikarî peyamê li ser %{readurl} jî bixwînî û li ser %{replyurl} jî dikarî bersiv bidî ê go ji te re şand. footer_html: Tu dikarî peyamê li ser %{readurl} jî bixwînî û li ser %{replyurl} - jî dikarî bersiv bidî ê go ji te re şand. + jî dikarî cewab bidî ê ku ji te re şand. friendship_notification: hi: Merheba %{to_user}, subject: '[OpenStreetMap] %{user} te wek heval lê zêde kir' @@ -1595,11 +1606,40 @@ ku-Latn: here %{url} û bitikîne ser "Abonetiyê betal bike". unsubscribe_html: Ji bo ku ji abonetiya rojanekirinên vê desteya guherandinê derbikevî, here %{url} û bitikîne ser "Abonetiyê betal bike". + confirmations: + confirm: + heading: E-nameya xwe kontrol bikeǃ + introduction_1: Me ji te re e-nameyek pejirandinê şand. + introduction_2: Bitikîne ser lînkê e-nameya xwe û hesabê xwe bipejirîne. Dû + re tu yê bikaribî dest bi nexşekirinê bikî. + press confirm button: Ji bo aktîvkirina hesabê xwe pêl li bişkoka pejirandinê + bike. + button: Bipejirîne + success: Hesabê te hate tesdîqkirin, spas ji bo qeyda teǃ + already active: Ev hesab jixwe pejirandî ye. + unknown token: Koda pejirandinê ne muteber e an jî tine. + reconfirm_html: Heke ji bo ku em koda pejirandinê ji te re dîsa bişînin îhtiyaciya + te bi me hebe bitikîne ser vir. + confirm_resend: + success_html: Me ji hesabê te yê %{email} re notekî teyîdê şand û gava ku te + hesabê xwe pejirand tu yê bikaribî dest bi çêkirina nexşeyê bikî.

    Eger tu sîstemekî antî-spam bi kar bînî, ji ber ku em nikarin ji daxwazên + pejirandinê re cewab bidin, xêra xwe jê piştrast be ku di navbera adrêsên + ku têne qebûlkirin (whitelist) de %{sender} jî heye. + failure: Bikarhêner %{name} nehate dîtin. + confirm_email: + heading: Guherandina navnîşana e-nameyê bipejirîne + press confirm button: Ji bo pesendkirina navnîşana e-nameya xwe ya nû pêl li + bişkoka li jêr bike. + button: Bipejirîne + success: Guherandina navnîşana te ya e-nameyê hate pejirandin. + failure: Bi vê hesabê navnîşanekî e-nameyê yê pejirandî jixwe heye. + unknown_token: Koda pejirandinê ne muteber e an jî tine. messages: inbox: title: Qutiya hatiyan my_inbox: Qutiya min a hatiyan - outbox: qutiya min a çûyiyan + my_outbox: Çûdanka min messages: '%{new_messages} û %{old_messages} hene.' new_messages: one: '%{count} peyama nû' @@ -1631,12 +1671,11 @@ ku-Latn: no_such_message: title: Mesajek wek vê tine ye heading: Mesajek wek vê tine ye - body: Li me bibore, bi vê id'yê ti peyam tine ye. + body: Li me bibore, bi vê id-yê ti peyam tine ye. outbox: title: Qutiya min a çûyiyan - my_inbox_html: '%{inbox_link}' - inbox: Qutiya min a hatiyan - outbox: qutiya min a çûyiyan + my_inbox: Hatdanka min + my_outbox: Çûdanka min messages: one: Te %{count} peyam şand other: Te %{count} peyaman şand @@ -1670,6 +1709,83 @@ ku-Latn: as_unread: Peyam wek nexwendî hate nîşankirin destroy: destroyed: Payam hate jêbirin + passwords: + lost_password: + title: Şîfreya wenda + heading: Te şîfreya xwe ji bîr kir? + email address: 'Navnîşana E-peyamê:' + new password button: Şîfreyê nû bike + help_text: E-peyama ku te pê xwe qeydkiribû binivîse, em ê ji te re lînkek bişînin + tu yê bi wê lînkê bikaribî şîfreya xwe nû bikî. + notice email on way: Bibore, te wê wenda kir :-( lê belê e-peyamekî nû di rê + de ye. Lewma tu dikarî di nêz de wê nû bikî. + notice email cannot find: Bibore, ev adrêsa e-peyamê nehate dîtin. + reset_password: + title: Şîfreyê nû bike + heading: Şîfreyê nû bike ji bo %{user} + reset: Şîfreyê nû bike + flash changed: Şîfreya te hate guhertin. + flash token bad: Eger te vê sembolê nedîtibe, belkî jî divê tu URLyê kontrol + bikî? + sessions: + new: + title: Têkeve + heading: Têkeve + email or username: Adrêsa E-peyamê an jî Navê Bikarhêneriyêː + password: 'Şîfre:' + openid_html: '%{logo} OpenID:' + remember: Min bi bîr bîne + lost password link: Te şîfreya xwe winda kir? + login_button: Têkeve + register now: Vê gavê xwe qeyd bike + with username: Gelo jixwe hesabekî te heye? Eger hebe, xêra xwe navê xwe yê + bikarhêneriyê û şîfreya xwe binivîse û têkeveː + with external: Wek alternatîv, ji bo têketinê yek ji van sepanan bi kar bîneː + new to osm: Tu di OpenStreetMapê de nû yî? + to make changes: Ji bo ku tu daneyên OpenStreetMapê biguherînî, divê hesabekî + te hebe. + create account minute: Hesabek çêbike. Wê ev tenê deqeyek bigire. + no account: Hesabekî te tine? + account not active: Bibore, hesabê te hêj neaktîv e.
    Xêra xwe ji bo aktîvkirina + hesabê bitikîne ser lînka ku di e-peyama pejirandina hesabê de ji te re hatibû, + an jî e-peyamek pejirandinê yê nû bixwaze. + account is suspended: Bibore, hesabê te ji ber çalakiyên gumanbar hatiye rawestandin.
    Eger bixwazibî vê mijare mijûl bibî, xêra xwe bi webmasterê + re têkiliyê deyne. + auth failure: Bibore, bi van dêtayan re tu têneketî. + openid_logo_alt: Têketina bi OpenID'yê + auth_providers: + openid: + title: Bi OpenID'yê têkeve + alt: Têketina bi URL'yek OpenID'yê + google: + title: Bi Google têkeve + alt: Têketina bi OpenID ya Googlê + facebook: + title: Bi Facebookê têkeve + alt: Bi hesabekî Facebookê têkeve + windowslive: + title: Bi Windows Live'ê têkeve + alt: Bi hesabê xwe yê Windows Liveê têkeve + github: + title: Bi GitHub'ê têkeve + alt: Bi hesabekî GitHubê têbikeve + wikipedia: + title: Bi Wîkîpediyayê têkeve + alt: Bi hesabekî Wîkîpediyayê têkeve + yahoo: + title: Bi Yahooyê têkeve + alt: Bi OpenID ya Yahooyê têbikeve + wordpress: + title: Bi Wordpressê têkeve + alt: Bi OpenID ya Wordpressê têbikeve + aol: + title: Bi AOL'ê têkeve + alt: Bi OpenID ya AOLê têkeve + destroy: + title: Derkeve + heading: Ji OpenStreetMapê derkeve + logout_button: Derkeve shared: markdown_help: title_html: |- @@ -1732,7 +1848,7 @@ ku-Latn: title: Derbarê vê wergerê de html: Eger di navbera vê rûpela tercumekirî û %{english_original_link} de îxtilafek hebe wê rûpela bi zimanê îngilîzî li ber çavan were girtin - english_link: eslê we ya bi îngilîzî + english_link: eslê wê ya bi îngilîzî native: title: Der barê vê rûpelê html: Hûn vêga dinêrin versiyona bi zimanê îngilîzî ya rûpela mafê daneriyê. @@ -2080,25 +2196,6 @@ ku-Latn: bicycle_shop: Bisiklêtfiroş bicycle_parking: Parka bisiklêtê toilets: Tiwalet - richtext_area: - edit: Biguherîne - preview: Pêşdîtin - markdown_help: - title_html: |- - Bi kramdown - hate analîzkirin - headings: Sernivîs - heading: Sernivîs - subheading: Sernivîsa binî - unordered: Lîsta nerêzkirî - ordered: Lîsta rêzkirî - first: Hêmana yekem - second: Hêmana duyem - link: Girêdan - text: Nivîs - image: Wêne - alt: Nivîsa alternatîv - url: URL welcome: title: Tu bi xêr hatî! introduction_html: Tu bi xêr hatî OpenStreetMapê, nexşeya dinyayê yê azad û @@ -2223,7 +2320,6 @@ ku-Latn: more: dêtay trace_details: Dêtayên Şopê Bibîne view_map: Nexşeyê bibîne - edit: biguherîne edit_map: Nexşeyê biguherîne public: GIŞTÎ identifiable: DIKARE WERE NASKIRIN @@ -2231,7 +2327,6 @@ ku-Latn: trackable: DIKARE WERE ŞOPANDIN by: ji in: di - map: nexşe index: public_traces: Şopên GPSê yên giştî (ji her kesê re vekirî) my_traces: Şopên min ên GPSê @@ -2344,81 +2439,6 @@ ku-Latn: destroy: flash: Sepana telebkar qeyda xwe ji holê rakir users: - login: - title: Têkeve - heading: Têkeve - email or username: Adrêsa E-peyamê an jî Navê Bikarhêneriyêː - password: 'Şîfre:' - openid_html: '%{logo} OpenID:' - remember: Min bi bîr bîne - lost password link: Te şîfreya xwe winda kir? - login_button: Têkeve - register now: Vê gavê xwe qeyd bike - with username: Gelo jixwe hesabekî te heye? Eger hebe, xêra xwe navê xwe yê - bikarhêneriyê û şîfreya xwe binivîse û têkeveː - with external: Wek alternatîv, ji bo têketinê yek ji van sepanan bi kar bîneː - new to osm: Tu di OpenStreetMapê de nû yî? - to make changes: Ji bo ku tu daneyên OpenStreetMapê biguherînî, divê hesabekî - te hebe. - create account minute: Hesabek çêbike. Wê ev tenê deqeyek bigire. - no account: Hesabekî te tine? - account not active: Bibore, hesabê te hêj neaktîv e.
    Xêra xwe ji bo aktîvkirina - hesabê bitikîne ser lînka ku di e-peyama pejirandina hesabê de ji te re hatibû, - an jî e-peyamek pejirandinê yê nû bixwaze. - account is suspended: Bibore, hesabê te ji ber çalakiyên gumanbar hatiye rawestandin.
    Eger bixwazibî vê mijare mijûl bibî, xêra xwe bi webmasterê - re têkiliyê deyne. - auth failure: Bibore, bi van dêtayan re tu têneketî. - openid_logo_alt: Têketina bi OpenID'yê - auth_providers: - openid: - title: Bi OpenID'yê têkeve - alt: Têketina bi URL'yek OpenID'yê - google: - title: Bi Google têkeve - alt: Têketina bi OpenID ya Googlê - facebook: - title: Bi Facebookê têkeve - alt: Bi hesabekî Facebookê têkeve - windowslive: - title: Bi Windows Live'ê têkeve - alt: Bi hesabê xwe yê Windows Liveê têkeve - github: - title: Bi GitHub'ê têkeve - alt: Bi hesabekî GitHubê têbikeve - wikipedia: - title: Bi Wîkîpediyayê têkeve - alt: Bi hesabekî Wîkîpediyayê têkeve - yahoo: - title: Bi Yahooyê têkeve - alt: Bi OpenID ya Yahooyê têbikeve - wordpress: - title: Bi Wordpressê têkeve - alt: Bi OpenID ya Wordpressê têbikeve - aol: - title: Bi AOL'ê têkeve - alt: Bi OpenID ya AOLê têkeve - logout: - title: Derkeve - heading: Ji OpenStreetMapê derkeve - logout_button: Derkeve - lost_password: - title: Şîfreya wenda - heading: Te şîfreya xwe ji bîr kir? - email address: 'Navnîşana E-peyamê:' - new password button: Şîfreyê nû bike - help_text: E-peyama ku te pê xwe qeydkiribû binivîse, em ê ji te re lînkek bişînin - tu yê bi wê lînkê bikaribî şîfreya xwe nû bikî. - notice email on way: Bibore, te wê wenda kir :-( lê belê e-peyamekî nû di rê - de ye. Lewma tu dikarî di nêz de wê nû bikî. - notice email cannot find: Bibore, ev adrêsa e-peyamê nehate dîtin. - reset_password: - title: Şîfreyê nû bike - heading: Şîfreyê nû bike ji bo %{user} - reset: Şîfreyê nû bike - flash changed: Şîfreya te hate guhertin. - flash token bad: Eger te vê sembolê nedîtibe, belkî jî divê tu URLyê kontrol - bikî? new: title: Xwe Qeyd Bike no_auto_account_create: Mixabin, em vêga nikarin bi otomatîkî ji bo we hesabekî @@ -2557,13 +2577,13 @@ ku-Latn: account: title: Hesabê biguherîne my settings: Hevyazên min - current email address: 'Navnîşana e-nameyê yê niha:' - external auth: Teyîdkirina xaricîː + current email address: Navnîşana e-nameyê yê niha + external auth: Teyîdkirina xaricî openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: Ev çi ye? public editing: - heading: Guherandina ji her kesê re vekirîː + heading: Guherandina ji her kesê re vekirî enabled: Çalak e. Ne anonîm e û dikare daneyan biguherîne. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: Ev çiye? @@ -2582,7 +2602,7 @@ ku-Latn: re vekirî nê kirin
  • Hûn nikarin ji vê kiryarê bizivirin û bikarhênerên nû bi otomatîkî ji her kesê re vekirî têne xuyan.
  • contributor terms: - heading: Şertên beşdariyêː + heading: Şertên beşdariyê agreed: Te Şertên Beşdariyê ya nû qebûl kir not yet agreed: Te hêj Şertên Beşdariyê ya nû qebûl nekiriye. review link text: Gava ku tu misaîd bî, ji bo ku Şertên Beşdariyê ya nû kontrol @@ -2591,10 +2611,11 @@ ku-Latn: Giştî were qebûlkirin. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: Ev çi ye? - image: 'Wêne:' + image: Wêne gravatar: gravatar: Gravatarê bi kar bîne link: https://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Gravatar çi ye? disabled: Gravatar hate neçalakkirin. enabled: Gravatarê te niha dikare were xuyan. new image: Wêneyek lê zêde bike @@ -2603,7 +2624,7 @@ ku-Latn: replace image: Rismê ku lê ye biguherîne image size hint: (wêneyên ku herî kêm ji 100x100 kareyan pêk werin, çêtir têne xuyan) - home location: Cihê malê teː + home location: Cihê malê te no home location: Te cihê malê xwe diyar nekir. update home location on click: Gava ku tu bitikînî ser nexşeyê bila cihê malê te were rojanekirin? @@ -2614,34 +2635,6 @@ ku-Latn: hate nûkirin. Ji bo pejirandina navnîşana e-nameya xwe ya nû e-nameya xwe kontrol bike. flash update success: Agahiya bikarhêner bi serkeftinî hate nûkirin. - confirm: - heading: E-nameya xwe kontrol bikeǃ - introduction_1: Me ji te re e-nameyek pejirandinê şand. - introduction_2: Bitikîne ser lînkê e-nameya xwe û hesabê xwe bipejirîne. Dû - re tu yê bikaribî dest bi nexşekirinê bikî. - press confirm button: Ji bo aktîvkirina hesabê xwe pêl li bişkoka pejirandinê - bike. - button: Bipejirîne - success: Hesabê te hate tesdîqkirin, spas ji bo qeyda teǃ - already active: Ev hesab jixwe pejirandî ye. - unknown token: Koda pejirandinê ne muteber e an jî tine. - reconfirm_html: Heke ji bo ku em koda pejirandinê ji te re dîsa bişînin îhtiyaciya - te bi me hebe bitikîne ser vir. - confirm_resend: - success_html: Me ji hesabê te yê %{email} re notekî teyîdê şand û gava ku te - hesabê xwe pejirand tu yê bikaribî dest bi çêkirina nexşeyê bikî.

    Eger tu sîstemekî antî-spam bi kar bînî, ji ber ku em nikarin ji daxwazên - pejirandinê re cewab bidin, xêra xwe jê piştrast be ku di navbera adrêsên - ku têne qebûlkirin (whitelist) de %{sender} jî heye. - failure: Bikarhêner %{name} nehate dîtin. - confirm_email: - heading: Guherandina navnîşana e-nameyê bipejirîne - press confirm button: Ji bo pesendkirina navnîşana e-nameya xwe ya nû pêl li - bişkoka li jêr bike. - button: Bipejirîne - success: Guherandina navnîşana te ya e-nameyê hate pejirandin. - failure: Bi vê hesabê navnîşanekî e-nameyê yê pejirandî jixwe heye. - unknown_token: Koda pejirandinê ne muteber e an jî tine. set_home: flash success: Cihê malê bi awayekî serkeftî hate rojanekirin. go_public: @@ -2831,6 +2824,7 @@ ku-Latn: custom_dimensions: Mezinahiyên taybet eyar bike format: 'Format:' scale: 'Pîvan (miqyas):' + image_dimensions: Wêne wê tebeqeya standard li %{width} x %{height} nîşan bide download: Daxîne short_url: URLya kurt include_marker: Nîşanek deyne diff --git a/config/locales/lb.yml b/config/locales/lb.yml index 42e91f5f1..d31d5618c 100644 --- a/config/locales/lb.yml +++ b/config/locales/lb.yml @@ -37,7 +37,7 @@ lb: changeset: Set vun Ännerungen country: Land friend: Frënd - issue: Problem + issue: Probleem language: Sprooch message: Message node: Knuet @@ -591,6 +591,7 @@ lb: mountain_pass: "yes": Pass an de Bierger natural: + atoll: Atoll bay: Bucht beach: Plage cape: Kap @@ -605,6 +606,7 @@ lb: land: Land marsh: Mouer moor: Mouer + peninsula: Hallefinsel point: Punkt rock: Steng sand: Sand @@ -757,7 +759,7 @@ lb: show: resolve: Léisen ignore: Ignoréieren - reports_of_this_issue: Meldunge vun dësem Problem + reports_of_this_issue: Meldunge vun dësem Probleem read_reports: Rapporte liesem new_reports: Nei Rapporten reports: @@ -848,6 +850,21 @@ lb: greeting: Salut, commented: partial_changeset_without_comment: ouni Kommentar + confirmations: + confirm: + heading: Iwwerpréift Är E-Mail! + introduction_1: Mir hunn Iech eng Confirmatiouns-E-Mail geschéckt. + press confirm button: Klickt wgl. op de Knäppchen confirméieren fir Äre Benotzerkont + z'aktivéieren. + button: Confirméieren + already active: Dëse Kont gouf scho confirméiert. + unknown token: Dee Confirmatiouns-Code ass ofgelaf oder et gëtt en net. + confirm_resend: + failure: Benotzer %{name} gouf net fonnt. + confirm_email: + heading: Eng Ännerung vun enger E-Mailadress confirméieren + button: Confirméieren + unknown_token: Dee Confirmatiouns-Code ass ofgelaf oder et gëtt en net. messages: inbox: messages: Dir hutt %{new_messages} a(n) %{old_messages} @@ -891,6 +908,65 @@ lb: as_unread: Message als net geliest markéiert destroy: destroyed: Message geläscht + passwords: + lost_password: + title: Passwuert vergiess + heading: Passwuert vergiess? + email address: 'E-Mail-Adress:' + new password button: Passwuert zrécksetzen + notice email cannot find: Déi E-Mail-Adress konnt net fonnt ginn, pardon. + reset_password: + title: Passwuert zrécksetzen + heading: Passwuert fir %{user} zrécksetzen + reset: Passwuert zrécksetzen + flash changed: Äert Passwuert gouf geännert. + sessions: + new: + title: Umellen + heading: Umellen + email or username: 'E-Mail-Adress oder Benotzernumm:' + password: 'Passwuert:' + openid_html: '%{logo} OpenID:' + remember: Sech u mech erënneren + lost password link: Hutt Dir Äert Passwuert vergiess? + login_button: Umellen + register now: Elo aschreiwen + new to osm: Nei bei OpenStreetMap? + create account minute: Maacht e Benotzerkont. Et dauert nëmmen eng Minutt. + no account: Hutt Dir kee Benotzerkont? + openid_logo_alt: Alogge mat enger OpenID + auth_providers: + openid: + title: Alogge mat OpenID + alt: Alogge mat enger OpenID URL + google: + title: Alogge mat Google + alt: Alogge mat enger Google OpenID + facebook: + title: Mat Facebook aloggen + alt: Mat engem Facebook Benotzerkont aloggen + windowslive: + title: Mat Windows Live aloggen + alt: Mat engem Windows-Live Benotzerkont aloggen + github: + title: Mat GitHub aloggen + alt: Mat engem GitHub-Konto aloggen + wikipedia: + title: Mat Wikipedia aloggen + alt: Mat engem Wikipedia-Benotzerkont aloggen + yahoo: + title: Alogge mat Yahoo + alt: Alogge mat enger Yahoo OpenID + wordpress: + title: Alogge mat Wordpress + alt: Alogge mat enger Wordpress OpenID + aol: + title: Alogge mat AOL + alt: Alogge mat enger AOL OpenID + destroy: + title: Ofmellen + heading: Vun OpenStreetMap ofmellen + logout_button: Ofmellen shared: markdown_help: headings: Iwwerschrëften @@ -960,7 +1036,7 @@ lb: output: Resultat export_button: Exportéieren fixthemap: - title: E Problem mellen / D'Kaart verbesseren + title: E Probleem mellen / D'Kaart verbesseren how_to_help: title: Wéi Hëllefen join_the_community: @@ -1039,22 +1115,6 @@ lb: bicycle_shop: Vëlosgeschäft bicycle_parking: Vëlosparking toilets: Toiletten - richtext_area: - edit: Änneren - preview: Kucken ouni ofzespäicheren - markdown_help: - headings: Iwwerschrëften - heading: Iwwerschrëft - subheading: Ënneriwwerschrëft - unordered: Net-nummeréiert Lëscht - ordered: Nummeréiert Lëscht - first: Éischt Element - second: Zweet Element - link: Link - text: Text - image: Bild - alt: Alternativen Text - url: URL welcome: title: Wëllkomm! whats_on_the_map: @@ -1094,13 +1154,11 @@ lb: other: '%{count} Punkten' more: méi view_map: Kaart weisen - edit: änneren edit_map: Kaart änneren public: ËFFENTLECH private: PRIVAT by: vum in: an - map: Kaart index: my_traces: Meng GPS Spueren description: @@ -1122,63 +1180,6 @@ lb: revoke: Ophiewen! oauth: OAuth users: - login: - title: Umellen - heading: Umellen - email or username: 'E-Mail-Adress oder Benotzernumm:' - password: 'Passwuert:' - openid_html: '%{logo} OpenID:' - remember: Sech u mech erënneren - lost password link: Hutt Dir Äert Passwuert vergiess? - login_button: Umellen - register now: Elo aschreiwen - new to osm: Nei bei OpenStreetMap? - create account minute: Maacht e Benotzerkont. Et dauert nëmmen eng Minutt. - no account: Hutt Dir kee Benotzerkont? - openid_logo_alt: Alogge mat enger OpenID - auth_providers: - openid: - title: Alogge mat OpenID - alt: Alogge mat enger OpenID URL - google: - title: Alogge mat Google - alt: Alogge mat enger Google OpenID - facebook: - title: Mat Facebook aloggen - alt: Mat engem Facebook Benotzerkont aloggen - windowslive: - title: Mat Windows Live aloggen - alt: Mat engem Windows-Live Benotzerkont aloggen - github: - title: Mat GitHub aloggen - alt: Mat engem GitHub-Konto aloggen - wikipedia: - title: Mat Wikipedia aloggen - alt: Mat engem Wikipedia-Benotzerkont aloggen - yahoo: - title: Alogge mat Yahoo - alt: Alogge mat enger Yahoo OpenID - wordpress: - title: Alogge mat Wordpress - alt: Alogge mat enger Wordpress OpenID - aol: - title: Alogge mat AOL - alt: Alogge mat enger AOL OpenID - logout: - title: Ofmellen - heading: Vun OpenStreetMap ofmellen - logout_button: Ofmellen - lost_password: - title: Passwuert vergiess - heading: Passwuert vergiess? - email address: 'E-Mail-Adress:' - new password button: Passwuert zrécksetzen - notice email cannot find: Déi E-Mail-Adress konnt net fonnt ginn, pardon. - reset_password: - title: Passwuert zrécksetzen - heading: Passwuert fir %{user} zrécksetzen - reset: Passwuert zrécksetzen - flash changed: Äert Passwuert gouf geännert. new: title: Mellt Iech un no_auto_account_create: Leider kënne mir den Ament kee Benotzerkont automatesch @@ -1273,20 +1274,6 @@ lb: make edits public button: All meng Ännerunge ëffentlech maachen return to profile: 'Zréck op de Profil:' flash update success: Benotzerinformatioun ass elo aktualiséiert. - confirm: - heading: Iwwerpréift Är E-Mail! - introduction_1: Mir hunn Iech eng Confirmatiouns-E-Mail geschéckt. - press confirm button: Klickt wgl. op de Knäppchen confirméieren fir Äre Benotzerkont - z'aktivéieren. - button: Confirméieren - already active: Dëse Kont gouf scho confirméiert. - unknown token: Dee Confirmatiouns-Code ass ofgelaf oder et gëtt en net. - confirm_resend: - failure: Benotzer %{name} gouf net fonnt. - confirm_email: - heading: Eng Ännerung vun enger E-Mailadress confirméieren - button: Confirméieren - unknown_token: Dee Confirmatiouns-Code ass ofgelaf oder et gëtt en net. go_public: flash success: All Är Ännerunge sinn elo ëffentlech, an Dir däerft elo änneren. index: @@ -1395,7 +1382,7 @@ lb: short_url: Kuerz URL view_larger_map: Méi grouss Kaart weisen embed: - report_problem: E Problem mellen + report_problem: E Probleem mellen map: locate: title: Weise wou ech sinn diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 7c32f342a..b5e58dadd 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -828,6 +828,7 @@ lt: cape: Kyšulys cave_entrance: Įėjimas į urvą cliff: Uola + coastline: Pakrantė crater: Krateris dune: Kopa fell: Kalnuota vieta @@ -1298,11 +1299,40 @@ lt: details: Daugiau informacijos apie pakeitimą rasite čia %{url}. unsubscribe: Jei norite atsisakyti šio pakeitimo atnaujinimų, eikite į %{url} ir spauskite „Atsisakyti“. + confirmations: + confirm: + heading: Patikrinkite savo pašto dėžutę! + introduction_1: Mes išsiuntėme jums patvirtinimo laišką. + introduction_2: Patvirtinkite paskyrą spausdami ant nuorodos e-laiške ir tada + galėsite pradėti žymėti. + press confirm button: Norėdami aktyvuoti savo paskyrą paspauskite žemiau esantį + patvirtinimo mygtuką. + button: Patvirtinti + success: Jūsų paskyra patvirtinta. Ačiū už registraciją! + already active: Ši paskyra jau yra patvirtinta. + unknown token: Šis patvirtinimo kodas nebegalioja arba neegzistuoja. + reconfirm_html: Jei norite iš naujo siųsti patvirtinimo laišką, spauskite + čia. + confirm_resend: + success_html: Mes nusiuntėme jums naują patvirtinimo pranešimą į %{email} ir + ten patvirtinsite savo paskyrą, kad galėtumėte pradėti žymėti.

    Jei + jūs naudojate įvairias programas prieš spam'ą, įtraukite į patikimų adresų + sąrašą (Whitelist) %{sender}, nes kitaip negalėsime jums nusiųsti jokių patvirtinimo + užklausų. + failure: Naudotojas %{name} nerastas. + confirm_email: + heading: Patvirtinkite e-pašto adreso pakeitimą + press confirm button: Spauskite žemiau esantį patvirtinimo mygtuką, kad patvirtintume + savo naują e-pašto adresą. + button: Patvirtinti + success: Patvirtintas jūsų e-pašto adreso pakeitimas! + failure: Elektroninio pašto adresas jau patvirtintas naudojant šį atpažinimo + ženklą. + unknown_token: Šitas patvirtinimo kodas paseno arba neegzistuoja. messages: inbox: title: Gautieji my_inbox: Mano gauti - outbox: išsiųstieji messages: Jūs turite %{new_messages} ir %{old_messages} new_messages: one: '%{count} naujas pranešimas' @@ -1337,9 +1367,6 @@ lt: body: Gaila, bet žinutės su tokiu id nėra. outbox: title: Išsiųstieji - my_inbox_html: Mano %{inbox_link} - inbox: gautieji - outbox: išsiųstieji messages: one: Jūs %{count} nusiųstą pranešimą other: Jūs %{count} nusiųstus(-ų) pranešimus(-ų) @@ -1373,6 +1400,83 @@ lt: as_unread: Pranešimas pažymėtas kaip neskaitytas destroy: destroyed: Pranešimas ištrintas + passwords: + lost_password: + title: Pamiršau slaptažodį + heading: Pamiršote slaptažodį? + email address: 'E-pašto adresas:' + new password button: Atstatyti slaptažodį + help_text: Įveskite elektroninio pašto adresą, kurį naudojote užsiregistruodami. + Mes atsiųsime nuorodą į elektroninį paštą, kurią galėsite naudoti norėdami + iš naujo nustatyti slaptažodį. + notice email on way: Apgailestaujame, kad praradote slaptažodį :-( bet elektroninis + laiškas jau išsiųstas, tad greitai slaptažodį atstatysite. + notice email cannot find: Gaila, bet toks e-pašto adresas nerastas. + reset_password: + title: Iš naujo nustatyti slaptažodį + heading: Iš naujo nustatyti naudotojo %{user} slaptažodį + reset: Iš naujo nustatyti slaptažodį + flash changed: Jūsų slaptažodis sėkmingai pakeistas. + flash token bad: Ženklas nerastas, galbūt bloga nuoroda? + sessions: + new: + title: Prisijungti + heading: Prisijungti + email or username: 'E-pašto adresas arba naudotojo vardas:' + password: 'Slaptažodis:' + openid_html: '%{logo} OpenID:' + remember: 'Prisiminti prisijungimą:' + lost password link: Pamiršote slaptažodį? + login_button: Prisijungti + register now: Užsiregistruoti + with username: 'Jau turite OpenStreetMap paskyrą? Prisijunkite savo naudotojo + vardu ir slaptažodžiu:' + with external: 'Alternatyviai, naudokite trečią šalį prisijungimui:' + new to osm: Nesusipažinę su OpenStreetMap? + to make changes: Norėdami keisti OpenStreetMap duomenis, turite turėti savo + paskyrą. + create account minute: Sukurkite paskyra. Tai užtruks tik minutę. + no account: Neturite savo paskyros? + account not active: Atsiprašome, jūsų paskyra dar neaktyvuota.
    Pasinaudokite + nuoroda, kurią mes nusiuntėme į jūsų el. paštą arba prašykite + naujo patvirtinimo laiško. + account is suspended: Atsiprašome, jūsų paskyra buvo sustabdyta dėl įtartinos + veiklos.
    Kreipkitės į administratorių, jei + norite tai aptarti. + auth failure: Atsiprašome, negalite prisijungti su tokiais duomenimis. + openid_logo_alt: Prisijunkite su OpenID + auth_providers: + openid: + title: Prisijunkite su OpenID + alt: Prisijunkite su OpenID URL + google: + title: Prisijunkite su Google + alt: Prisijunkite su Google OpenID + facebook: + title: Prisijungti su Facebook + alt: Prisijungti su Facebook paskyra + windowslive: + title: Prisijungti su Windows Live + alt: Prisijungti su Windows Live paskyra + github: + title: Prisijungti su GitHub + alt: Prisijungti su GitHub Paskyra + wikipedia: + title: Prisijungti su Vikipedija + alt: Prisijungti su Vikipedija Paskyra + yahoo: + title: Prisijunkite su Yahoo + alt: Prisijunkite su Yahoo OpenID + wordpress: + title: Prisijunkite su Wordpress + alt: Prisijunkite su Wordpress OpenID + aol: + title: Prisijunkite su AOL + alt: Prisijunkite su AOL OpenID + destroy: + title: Atsijungti + heading: Atsijungti nuo OpenStreetMap + logout_button: Atsijungti shared: markdown_help: link: Nuoroda @@ -1746,23 +1850,6 @@ lt: bicycle_shop: Dviračių parduotuvė bicycle_parking: Dviračių stovėjimo aikštelė toilets: Tualetai - richtext_area: - edit: Redaguoti - preview: Peržiūra - markdown_help: - title_html: Išanalizuota su kramdown - headings: Antraštės - heading: Antraštė - subheading: Paantraštė - unordered: Nesurikiuotas sąrašas - ordered: Surikiuotas sąrašas - first: Pirmasis punktas - second: Antras punktas - link: Nuoroda - text: Tekstas - image: Paveikslėlis - alt: Alternatyvusis tekstas - url: URL welcome: title: Sveiki atvykę! introduction_html: Sveikiname prisijungus prie OpenStreetMap - laisvo ir redaguojamo @@ -1877,7 +1964,6 @@ lt: more: daugiau trace_details: Žiūrėti pėdsako detales view_map: Žemėlapis - edit: keisti edit_map: Keisti žemėlapį public: VIEŠAS identifiable: IDENTIFIKUOJAMAS @@ -1885,7 +1971,6 @@ lt: trackable: ATSEKAMAS by: (emptypage) in: į - map: žemėlapis index: public_traces: Vieši GPS pėdsakai my_traces: Mano GPS pėdsakai @@ -1995,81 +2080,6 @@ lt: destroy: flash: Panaikinta kliento programos registracija users: - login: - title: Prisijungti - heading: Prisijungti - email or username: 'E-pašto adresas arba naudotojo vardas:' - password: 'Slaptažodis:' - openid_html: '%{logo} OpenID:' - remember: 'Prisiminti prisijungimą:' - lost password link: Pamiršote slaptažodį? - login_button: Prisijungti - register now: Užsiregistruoti - with username: 'Jau turite OpenStreetMap paskyrą? Prisijunkite savo naudotojo - vardu ir slaptažodžiu:' - with external: 'Alternatyviai, naudokite trečią šalį prisijungimui:' - new to osm: Nesusipažinę su OpenStreetMap? - to make changes: Norėdami keisti OpenStreetMap duomenis, turite turėti savo - paskyrą. - create account minute: Sukurkite paskyra. Tai užtruks tik minutę. - no account: Neturite savo paskyros? - account not active: Atsiprašome, jūsų paskyra dar neaktyvuota.
    Pasinaudokite - nuoroda, kurią mes nusiuntėme į jūsų el. paštą arba prašykite - naujo patvirtinimo laiško. - account is suspended: Atsiprašome, jūsų paskyra buvo sustabdyta dėl įtartinos - veiklos.
    Kreipkitės į administratorių, jei - norite tai aptarti. - auth failure: Atsiprašome, negalite prisijungti su tokiais duomenimis. - openid_logo_alt: Prisijunkite su OpenID - auth_providers: - openid: - title: Prisijunkite su OpenID - alt: Prisijunkite su OpenID URL - google: - title: Prisijunkite su Google - alt: Prisijunkite su Google OpenID - facebook: - title: Prisijungti su Facebook - alt: Prisijungti su Facebook paskyra - windowslive: - title: Prisijungti su Windows Live - alt: Prisijungti su Windows Live paskyra - github: - title: Prisijungti su GitHub - alt: Prisijungti su GitHub Paskyra - wikipedia: - title: Prisijungti su Vikipedija - alt: Prisijungti su Vikipedija Paskyra - yahoo: - title: Prisijunkite su Yahoo - alt: Prisijunkite su Yahoo OpenID - wordpress: - title: Prisijunkite su Wordpress - alt: Prisijunkite su Wordpress OpenID - aol: - title: Prisijunkite su AOL - alt: Prisijunkite su AOL OpenID - logout: - title: Atsijungti - heading: Atsijungti nuo OpenStreetMap - logout_button: Atsijungti - lost_password: - title: Pamiršau slaptažodį - heading: Pamiršote slaptažodį? - email address: 'E-pašto adresas:' - new password button: Atstatyti slaptažodį - help_text: Įveskite elektroninio pašto adresą, kurį naudojote užsiregistruodami. - Mes atsiųsime nuorodą į elektroninį paštą, kurią galėsite naudoti norėdami - iš naujo nustatyti slaptažodį. - notice email on way: Apgailestaujame, kad praradote slaptažodį :-( bet elektroninis - laiškas jau išsiųstas, tad greitai slaptažodį atstatysite. - notice email cannot find: Gaila, bet toks e-pašto adresas nerastas. - reset_password: - title: Iš naujo nustatyti slaptažodį - heading: Iš naujo nustatyti naudotojo %{user} slaptažodį - reset: Iš naujo nustatyti slaptažodį - flash changed: Jūsų slaptažodis sėkmingai pakeistas. - flash token bad: Ženklas nerastas, galbūt bloga nuoroda? new: title: Sukurti paskyrą no_auto_account_create: Deja šiuo metu negalime jums automatiškai sukurti paskyros. @@ -2252,35 +2262,6 @@ lt: Patikrinkite savo el. pašto dėžutę, kurioje turėtų būti pranešimas jūsų naujo el. pašto adreso patvirtinimui. flash update success: Naudotojo informacija sėkmingai atnaujinta. - confirm: - heading: Patikrinkite savo pašto dėžutę! - introduction_1: Mes išsiuntėme jums patvirtinimo laišką. - introduction_2: Patvirtinkite paskyrą spausdami ant nuorodos e-laiške ir tada - galėsite pradėti žymėti. - press confirm button: Norėdami aktyvuoti savo paskyrą paspauskite žemiau esantį - patvirtinimo mygtuką. - button: Patvirtinti - success: Jūsų paskyra patvirtinta. Ačiū už registraciją! - already active: Ši paskyra jau yra patvirtinta. - unknown token: Šis patvirtinimo kodas nebegalioja arba neegzistuoja. - reconfirm_html: Jei norite iš naujo siųsti patvirtinimo laišką, spauskite - čia. - confirm_resend: - success_html: Mes nusiuntėme jums naują patvirtinimo pranešimą į %{email} ir - ten patvirtinsite savo paskyrą, kad galėtumėte pradėti žymėti.

    Jei - jūs naudojate įvairias programas prieš spam'ą, įtraukite į patikimų adresų - sąrašą (Whitelist) %{sender}, nes kitaip negalėsime jums nusiųsti jokių patvirtinimo - užklausų. - failure: Naudotojas %{name} nerastas. - confirm_email: - heading: Patvirtinkite e-pašto adreso pakeitimą - press confirm button: Spauskite žemiau esantį patvirtinimo mygtuką, kad patvirtintume - savo naują e-pašto adresą. - button: Patvirtinti - success: Patvirtintas jūsų e-pašto adreso pakeitimas! - failure: Elektroninio pašto adresas jau patvirtintas naudojant šį atpažinimo - ženklą. - unknown_token: Šitas patvirtinimo kodas paseno arba neegzistuoja. set_home: flash success: Namų pozicija sėkmingai įrašyta go_public: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 47d96cd43..5755ac858 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -752,6 +752,7 @@ lv: cape: Zemesrags cave_entrance: Ieeja alā cliff: Klints + coastline: Piekrastes līnija crater: Krāteris dune: Kāpa fell: Skandināvisks Kalns @@ -1134,11 +1135,38 @@ lv: details: Vairāk informācijas par izmaiņām varat atrast %{url}. unsubscribe: Lai atrakstītos no labojumu atjauninājumiem, apmeklē %{url} un spied "Atrakstīties". + confirmations: + confirm: + heading: Pārbaudiet savu e-pastu! + introduction_1: Mēs nosūtījām jums apstiprinājuma e-pastu. + introduction_2: Apstiprini savu lietotāju nospiežot uz saites e-pastā un tu + varēsi sākt kartēt. + press confirm button: Spied pieņemšanas pogu zemāk, lai aktivizētu savu lietotāju. + button: Apstiprināt + success: Jūsu e-pasta adrese ir apstiprināta, paldies par reģistrēšanos! + already active: Šis lietotājs jau ir apstiprināts. + unknown token: Apstiprinājuma kods ir novecojis, nav derīģs vai neeksistē. + reconfirm_html: Ja nepieciešams, lai izsūtam apstiprinājuma e-pastu vēlreiz, + spied te. + confirm_resend: + success_html: Mēs nosūtījām jaunu pārbaudes e-pastu uz %{email} un tiklīdz tu + apstiprināsi savu lietotāju, tu varēti kartēt.

    Ja tu lieto pretmēstuļu + sistēmu, kura nosūta pārbaudes pieprasījumus, tad pārliecinies, ka esi ielicis + %{sender} baltajā sarakstā, jo mēs nevaram atbildēt uz pārbaudes pieprasījumiem. + failure: Lietotājs %{name} nav atrasts. + confirm_email: + heading: Apstiprināt e-pasta adreses maiņu + press confirm button: Spied uz apstiprināšanas pogu zemāk, lai apstiprinātu + savu jauno e-pasta adresi. + button: Apstiprināt + success: Apstiprinājām jūsu epasta adreses maiņu! + failure: E-pasta adrese jau ir apstiprināta ar šo pilnvaru. + unknown_token: Šim apstiprinājuma kodam ir izbeidzies derīguma termiņš vai arī + tas neeksistē. messages: inbox: title: iesūtne my_inbox: Mana iesūtne - outbox: izsūtne messages: Jums ir %{new_messages} un %{old_messages} new_messages: one: '%{count} jauna ziņa' @@ -1173,9 +1201,6 @@ lv: body: Atvainojiet, ziņa ar norādīto identifikatoru nav atrodama. outbox: title: izsūtne - my_inbox_html: Mana %{inbox_link} - inbox: iesūtne - outbox: izsūtne messages: one: Tev ir %{count} nosūtīta ziņa other: Tev ir %{count} nosūtītas ziņas @@ -1209,6 +1234,81 @@ lv: as_unread: Ziņa atzīmēta kā nelasīta destroy: destroyed: Ziņa izdzēsta + passwords: + lost_password: + title: Aizmirsāt paroli + heading: Aizmirsi paroli? + email address: 'E-pasta adrese:' + new password button: Atiestatīt paroli + help_text: Ievadiet e-pasta adresi, kuru izmantojāt, lai reģistrētos, mēs Jums + nosūtīsim saiti uz to, lai Jūs varētu atjaunot savu paroli. + notice email on way: Atvaino, tu to pazaudēji :-( , bet e-pasts jau ir ceļā, + lai tu viņu drīz varētu atjaunot. + notice email cannot find: Atvaino, nevaru atrast šo epasta adresi. + reset_password: + title: Atiestatīt paroli + heading: Atcelt %{user} paroli + reset: Atcelt paroli + flash changed: Jūsu parole ir nomainīta. + flash token bad: Neatradu to pilnvaru, varbūt pārbaudi URL? + sessions: + new: + title: Pieslēgties + heading: Pieslēgties + email or username: 'E-pasta adrese vai lietotājvārds:' + password: 'Parole:' + openid_html: '%{logo} OpenID:' + remember: 'Atcerēties mani:' + lost password link: Aizmirsi paroli? + login_button: Pieslēgties + register now: Reģistrēties + with username: 'Jau ir OpenStreetMap lietotājs? Lūdzu autorizējies ar savu lietotājvārdu + un paroli:' + with external: Alternatīvi, varat izmantot trešās puses 'ielogošanās' opciju + new to osm: Jauns iekš OpenStreetMap? + to make changes: Lai veiktu izmaiņas OpenStreetMap datos, jums jābūt savam kontam. + create account minute: Izveidojiet kontu. Tas aizņem mazāk par minūti. + no account: Nav lietotāja? + account not active: Atvainojiet, tavs lietotājs vēl nav aktīvs.
    Lūdzu izmanto + saiti lietotāja pārbaudes e-pastā, lai aktivizētu savu lietotāju, vai pieprasi + jaunu pārbaudes e-pastu. + account is suspended: Atvainojiet, tavs lietotājs ir bloķētā stāvoklī apšaubāmas + aktivitātes dēļ.
    Lūdzu kontaktējies ar tīmekļa + pārzini, ja tu vēlies šo diskutēt. + auth failure: Diemžēl nevarēja ieiet ar šiem datiem + openid_logo_alt: Pieteikties ar OpenID + auth_providers: + openid: + title: Pieslēgties ar OpenID + alt: Pieslēgties ar OpenID saiti + google: + title: Pieslēgties ar Google + alt: Pieslēgties ar Google OpenID + facebook: + title: Pieslēgties ar Facebook + alt: Pieslēgties ar Facebook kontu + windowslive: + title: Pieslēgties ar Windows Live + alt: Pieslēgties ar Windows Live kontu + github: + title: Pieslēgties ar GitHub + alt: Pieslēgties ar GitHub kontu + wikipedia: + title: Ieiet ar Vikipēdiju + alt: Ieiet ar Vikipēdijas kontu + yahoo: + title: Pieslēgties ar Yahoo + alt: Pieslēgties ar Yahoo OpenID + wordpress: + title: Pieslēgties ar WordPress + alt: Pieslēgties ar WordPress OpenID + aol: + title: Pieslēgties ar AOL + alt: Pieslēgties ar AOL OpenID + destroy: + title: Iziet + heading: Iziet no OpenStreetMap + logout_button: Iziet site: about: next: Tālāk @@ -1567,23 +1667,6 @@ lv: bicycle_shop: Velosipēdu veikals bicycle_parking: Velosipēdu novietne toilets: Tualetes - richtext_area: - edit: Labot - preview: Priekšskatījums - markdown_help: - title_html: Parsēts ar Markdown - headings: Virsraksti - heading: Virsraksts - subheading: Apakšvirsraksts - unordered: Nesakārtots saraksts - ordered: Sakārtots saraksts - first: Pirmais vienums - second: Otrais vienums - link: Saite - text: Teksts - image: Attēls - alt: Alt teksts - url: URL welcome: title: Laipni lūdzam! introduction_html: Sveicināts OpenStreetMap, bezmaksas un rediģējamā pasaules @@ -1689,7 +1772,6 @@ lv: more: vairāk trace_details: Skatīt sīkāku informāciju par šo trasi view_map: Skatīt karti - edit: labot edit_map: Rediģēt karti public: PUBLISKS identifiable: IDENTIFICĒJAMS @@ -1697,7 +1779,6 @@ lv: trackable: ATSEKOJAMS by: "no" in: iekš - map: karte index: public_traces: Publiskās GPS trases public_traces_from: Publiskas GPS trases no %{user} @@ -1804,79 +1885,6 @@ lv: destroy: flash: Iznīcināja klienta aplikācijas reģistrāciju users: - login: - title: Pieslēgties - heading: Pieslēgties - email or username: 'E-pasta adrese vai lietotājvārds:' - password: 'Parole:' - openid_html: '%{logo} OpenID:' - remember: 'Atcerēties mani:' - lost password link: Aizmirsi paroli? - login_button: Pieslēgties - register now: Reģistrēties - with username: 'Jau ir OpenStreetMap lietotājs? Lūdzu autorizējies ar savu lietotājvārdu - un paroli:' - with external: Alternatīvi, varat izmantot trešās puses 'ielogošanās' opciju - new to osm: Jauns iekš OpenStreetMap? - to make changes: Lai veiktu izmaiņas OpenStreetMap datos, jums jābūt savam kontam. - create account minute: Izveidojiet kontu. Tas aizņem mazāk par minūti. - no account: Nav lietotāja? - account not active: Atvainojiet, tavs lietotājs vēl nav aktīvs.
    Lūdzu izmanto - saiti lietotāja pārbaudes e-pastā, lai aktivizētu savu lietotāju, vai pieprasi - jaunu pārbaudes e-pastu. - account is suspended: Atvainojiet, tavs lietotājs ir bloķētā stāvoklī apšaubāmas - aktivitātes dēļ.
    Lūdzu kontaktējies ar tīmekļa - pārzini, ja tu vēlies šo diskutēt. - auth failure: Diemžēl nevarēja ieiet ar šiem datiem - openid_logo_alt: Pieteikties ar OpenID - auth_providers: - openid: - title: Pieslēgties ar OpenID - alt: Pieslēgties ar OpenID saiti - google: - title: Pieslēgties ar Google - alt: Pieslēgties ar Google OpenID - facebook: - title: Pieslēgties ar Facebook - alt: Pieslēgties ar Facebook kontu - windowslive: - title: Pieslēgties ar Windows Live - alt: Pieslēgties ar Windows Live kontu - github: - title: Pieslēgties ar GitHub - alt: Pieslēgties ar GitHub kontu - wikipedia: - title: Ieiet ar Vikipēdiju - alt: Ieiet ar Vikipēdijas kontu - yahoo: - title: Pieslēgties ar Yahoo - alt: Pieslēgties ar Yahoo OpenID - wordpress: - title: Pieslēgties ar WordPress - alt: Pieslēgties ar WordPress OpenID - aol: - title: Pieslēgties ar AOL - alt: Pieslēgties ar AOL OpenID - logout: - title: Iziet - heading: Iziet no OpenStreetMap - logout_button: Iziet - lost_password: - title: Aizmirsāt paroli - heading: Aizmirsi paroli? - email address: 'E-pasta adrese:' - new password button: Atiestatīt paroli - help_text: Ievadiet e-pasta adresi, kuru izmantojāt, lai reģistrētos, mēs Jums - nosūtīsim saiti uz to, lai Jūs varētu atjaunot savu paroli. - notice email on way: Atvaino, tu to pazaudēji :-( , bet e-pasts jau ir ceļā, - lai tu viņu drīz varētu atjaunot. - notice email cannot find: Atvaino, nevaru atrast šo epasta adresi. - reset_password: - title: Atiestatīt paroli - heading: Atcelt %{user} paroli - reset: Atcelt paroli - flash changed: Jūsu parole ir nomainīta. - flash token bad: Neatradu to pilnvaru, varbūt pārbaudi URL? new: title: Reģistrēties no_auto_account_create: Diemžēl mēs šobrīd nevaram izveidot kontu automātiski. @@ -2044,33 +2052,6 @@ lv: flash update success confirm needed: Lietotāja informācija veiksmīgi atjaunota. Pārbaudi e-pastu, lai apstiprinātu savu jauno e-pasta adresi. flash update success: Lietotāja informācija veiksmīgi atjaunināta. - confirm: - heading: Pārbaudiet savu e-pastu! - introduction_1: Mēs nosūtījām jums apstiprinājuma e-pastu. - introduction_2: Apstiprini savu lietotāju nospiežot uz saites e-pastā un tu - varēsi sākt kartēt. - press confirm button: Spied pieņemšanas pogu zemāk, lai aktivizētu savu lietotāju. - button: Apstiprināt - success: Jūsu e-pasta adrese ir apstiprināta, paldies par reģistrēšanos! - already active: Šis lietotājs jau ir apstiprināts. - unknown token: Apstiprinājuma kods ir novecojis, nav derīģs vai neeksistē. - reconfirm_html: Ja nepieciešams, lai izsūtam apstiprinājuma e-pastu vēlreiz, - spied te. - confirm_resend: - success_html: Mēs nosūtījām jaunu pārbaudes e-pastu uz %{email} un tiklīdz tu - apstiprināsi savu lietotāju, tu varēti kartēt.

    Ja tu lieto pretmēstuļu - sistēmu, kura nosūta pārbaudes pieprasījumus, tad pārliecinies, ka esi ielicis - %{sender} baltajā sarakstā, jo mēs nevaram atbildēt uz pārbaudes pieprasījumiem. - failure: Lietotājs %{name} nav atrasts. - confirm_email: - heading: Apstiprināt e-pasta adreses maiņu - press confirm button: Spied uz apstiprināšanas pogu zemāk, lai apstiprinātu - savu jauno e-pasta adresi. - button: Apstiprināt - success: Apstiprinājām jūsu epasta adreses maiņu! - failure: E-pasta adrese jau ir apstiprināta ar šo pilnvaru. - unknown_token: Šim apstiprinājuma kodam ir izbeidzies derīguma termiņš vai arī - tas neeksistē. set_home: flash success: Mājas atrašanās vieta veiksmīgi saglabāta go_public: diff --git a/config/locales/mk.yml b/config/locales/mk.yml index 32d16d39c..cf6ff7f0e 100644 --- a/config/locales/mk.yml +++ b/config/locales/mk.yml @@ -983,12 +983,14 @@ mk: mountain_pass: "yes": Планински превој natural: + atoll: Атол bare_rock: Гола карпа bay: Залив beach: Плажа cape: ‘Рт cave_entrance: Влез во пештера cliff: Гребен + coastline: Крајбрежје crater: Кратер dune: Дина fell: Фел @@ -1006,6 +1008,7 @@ mk: moor: Пустара mud: Кал peak: Врв + peninsula: Полуостров point: Точка reef: Гребен ridge: Срт @@ -1053,6 +1056,7 @@ mk: "yes": Канцеларија place: allotments: Парцели + archipelago: Архипелаг city: Град city_block: Градски блок country: Земја @@ -1569,11 +1573,39 @@ mk: %{url} и стиснете на „Отпиши се“. unsubscribe_html: За да се отпишете од подновите на овие промени, посетете ја страницата %{url} и стиснете на „Отпиши се“. + confirmations: + confirm: + heading: Проверете си ја е-поштата + introduction_1: Ви испративме потврдна порака. + introduction_2: Потврдете ја сметката на долунаведената врска, па потоа ќе можете + да почнете со работа на картите. + press confirm button: Притиснете го копчето за потврда подолу за да ја активирате + сметката. + button: Потврди + success: Вашата сметка е потврдена. Ви благодариме што се зачленивте! + already active: Оваа сметка е веќе потврдена. + unknown token: Потврдниот код е истечен или не постои. + reconfirm_html: Ако сакате повторно да ви ја испратиме потврдната порака, стиснете тука. + confirm_resend: + success_html: Испративме поврдна порака на %{email}, и штом ќе ја потврдите + сметката, ќе можете да почнете со картографска работа.

    Ако користите + систем против спам кој испраќа барања за потврда, тогаш ќе морате да ја дозволите + адресата %{sender} бидејќи ние немаме начин да одговараме на такви потврди. + failure: Корисникот %{name} не е пронајден. + confirm_email: + heading: Потврди промена на е-пошта + press confirm button: Притиснете го копчето за потврдување за да ја потврдите + новата е-поштенска адреса. + button: Потврди + success: Измената на вашата е-пошта е потврдена! + failure: Со оваа шифра е потврдена веќе една е-поштенска адреса + unknown_token: Потврдниот код е истечен или не постои. messages: inbox: title: Примени my_inbox: Моето сандаче - outbox: за праќање + my_outbox: Моја излезна пошта messages: Имате %{new_messages} и %{old_messages} new_messages: one: '%{count} нова порака' @@ -1608,9 +1640,8 @@ mk: body: За жал, нема порака со таа назнака. outbox: title: За праќање - my_inbox_html: Моите %{inbox_link} - inbox: примени пораки - outbox: за праќање + my_inbox: Мое сандаче + my_outbox: Моја излезна пошта messages: one: Имате %{count} испратена порака other: Имате %{count} испратени пораки @@ -1644,6 +1675,82 @@ mk: as_unread: Пораката е означена како непрочитана destroy: destroyed: Пораката е избришана + passwords: + lost_password: + title: Загубена лозинка + heading: Ја заборавивте лозинката? + email address: 'Е-пошта:' + new password button: Смени лозинка + help_text: Внесете ја е-поштенската адреса со која се зачленивте, и ќе ви пратиме + врска каде ќе наведете нова лозинка. + notice email on way: Жалиме, ова истече :-( но ви пративме нова порака на е-пошта, + па наскоро повторно ќе можете да ја смените. + notice email cannot find: Жалам, не можев да ја пронајдам таа адреса + reset_password: + title: Смени лозинка + heading: Смени лозинка за %{user} + reset: Смени лозинка + flash changed: Лозинката ви е сменета. + flash token bad: Не ја пронајдов таа шифра. Проверете ја URL-адресата. + sessions: + new: + title: Најава + heading: Најава + email or username: Е-пошта или корисничко име + password: 'Лозинка:' + openid_html: '%{logo} OpenID:' + remember: Запомни ме + lost password link: Ја заборавивте лозинката? + login_button: Најава + register now: Зачленете се сега + with username: 'Веќе имате сметка на OpenStreetMap? Најавете се со корисничкото + име и лозинката:' + with external: 'Во спротивно, најавете преку надворешно место:' + new to osm: Нови сте на OpenStreetMap? + to make changes: Мора да имате сметка за да можете да правите измени на податоците + на OpenStreetMap. + create account minute: Направете сметка. Ова трае само една минута. + no account: Немате сметка? + account not active: Жалиме, но сметката сè уште не е активна.
    Стиснете + на врската наведена во пораката со која ви ја потврдуваме сметката за да ја + активирате, или пак побарајте нова потврдна порака. + account is suspended: За жал, вашата сметка е закочена поради сомнителна активност.
    Обратете се кај раководителот ако сакате да порасправате + по проблемот. + auth failure: Жалиме, не можевме да ве најавиме со тие податоци. + openid_logo_alt: Најава со OpenID + auth_providers: + openid: + title: Најава со OpenID + alt: Најава со URL за OpenID + google: + title: Најава со Google + alt: Најава со OpenID од Google + facebook: + title: Најава со Facebook + alt: Најава со профил на Facebook + windowslive: + title: Најава со Windows Live + alt: Најава со сметка на Windows Live + github: + title: Најава со GitHub + alt: Најава со сметка на GitHub + wikipedia: + title: Најава со Википедија + alt: Најава со сметка на Википедија + yahoo: + title: Најава со Yahoo + alt: Најава со OpenID од Yahoo + wordpress: + title: Најава со Wordpress + alt: Најава со OpenID од Wordpress + aol: + title: Најава со AOL + alt: Најава со OpenID од AOL + destroy: + title: Одјава + heading: Одјава од OpenStreetMap + logout_button: Одјава shared: markdown_help: title_html: Расчленето со kramdown @@ -2060,23 +2167,6 @@ mk: bicycle_shop: Точкар bicycle_parking: Паркирање велосипеди toilets: Тоалет - richtext_area: - edit: Уреди - preview: Преглед - markdown_help: - title_html: Расчленето со kramdown - headings: Наслови - heading: Наслов - subheading: Поднаслов - unordered: Неподреден список - ordered: Подреден список - first: Прва ставка - second: Втора ставка - link: Врска - text: Текст - image: Слика - alt: Алтернативен текст - url: URL welcome: title: Добре дојдовте! introduction_html: Добре дојдовте на OpenStreetMap — слободна и уредлива карта @@ -2194,7 +2284,6 @@ mk: more: повеќе trace_details: Погледајте ги деталите за трагата view_map: Погледај ја картата - edit: уреди edit_map: Уредување public: ЈАВНО identifiable: ПРЕПОЗНАТЛИВО @@ -2202,7 +2291,6 @@ mk: trackable: ПРОСЛЕДЛИВ by: од in: во - map: карта index: public_traces: Јавни ГПС-траги my_traces: Мои ГПС-траги @@ -2315,80 +2403,6 @@ mk: destroy: flash: Уништено е пријавното пријавување за клиентскиот програм. users: - login: - title: Најава - heading: Најава - email or username: Е-пошта или корисничко име - password: 'Лозинка:' - openid_html: '%{logo} OpenID:' - remember: 'Запомни ме:' - lost password link: Ја заборавивте лозинката? - login_button: Најава - register now: Зачленете се сега - with username: 'Веќе имате сметка на OpenStreetMap? Најавете се со корисничкото - име и лозинката:' - with external: 'Во спротивно, најавете преку надворешно место:' - new to osm: За новодојденци на OpenStreetMap - to make changes: Мора да имате сметка за да можете да правите измени на податоците - на OpenStreetMap. - create account minute: Направете сметка. Ова трае само една минута. - no account: Немате сметка? - account not active: Жалиме, но сметката сè уште не е активна.
    Стиснете - на врската наведена во пораката со која ви ја потврдуваме сметката за да ја - активирате, или пак побарајте нова потврдна порака. - account is suspended: За жал, вашата сметка е закочена поради сомнителна активност.
    Обратете се кај раководителот ако сакате да порасправате - по проблемот. - auth failure: Жалиме, не можевме да ве најавиме со тие податоци. - openid_logo_alt: Најава со OpenID - auth_providers: - openid: - title: Најава со OpenID - alt: Најава со URL за OpenID - google: - title: Најава со Google - alt: Најава со OpenID од Google - facebook: - title: Најава со Facebook - alt: Најава со профил на Facebook - windowslive: - title: Најава со Windows Live - alt: Најава со сметка на Windows Live - github: - title: Најава со GitHub - alt: Најава со сметка на GitHub - wikipedia: - title: Најава со Википедија - alt: Најава со смета на Википедија - yahoo: - title: Најава со Yahoo - alt: Најава со OpenID од Yahoo - wordpress: - title: Најава со Wordpress - alt: Најава со OpenID од Wordpress - aol: - title: Најава со AOL - alt: Најава со OpenID од AOL - logout: - title: Одјава - heading: Одјава од OpenStreetMap - logout_button: Одјава - lost_password: - title: Загубена лозинка - heading: Ја заборавивте лозинката? - email address: 'Е-пошта:' - new password button: Смени лозинка - help_text: Внесете ја е-поштенската адреса со која се зачленивте, и ќе ви пратиме - врска каде ќе наведете нова лозинка. - notice email on way: Жалиме, ова истече :-( но ви пративме нова порака на е-пошта, - па наскоро повторно ќе можете да ја смените. - notice email cannot find: Жалам, не можев да ја пронајдам таа адреса - reset_password: - title: Смени лозинка - heading: Смени лозинка за %{user} - reset: Смени лозинка - flash changed: Лозинката ви е сменета. - flash token bad: Не ја пронајдов таа шифра. Проверете ја URL-адресата. new: title: Зачленување no_auto_account_create: За жал, моментално не можеме автоматски да ви создадеме @@ -2578,33 +2592,6 @@ mk: flash update success confirm needed: Корисничките информации се успешно подновени. Проверете ја вашата е-пошта за да ја потврдите на адресата. flash update success: Корисничките информации се успешно подновени. - confirm: - heading: Проверете си ја е-поштата - introduction_1: Ви испративме потврдна порака. - introduction_2: Потврдете ја сметката на долунаведената врска, па потоа ќе можете - да почнете со работа на картите. - press confirm button: Притиснете го копчето за потврда подолу за да ја активирате - сметката. - button: Потврди - success: Вашата сметка е потврдена. Ви благодариме што се зачленивте! - already active: Оваа сметка е веќе потврдена. - unknown token: Потврдниот код е истечен или не постои. - reconfirm_html: Ако сакате повторно да ви ја испратиме потврдната порака, стиснете тука. - confirm_resend: - success_html: Испративме поврдна порака на %{email}, и штом ќе ја потврдите - сметката, ќе можете да почнете со картографска работа.

    Ако користите - систем против спам кој испраќа барања за потврда, тогаш ќе морате да ја дозволите - адресата %{sender} бидејќи ние немаме начин да одговараме на такви потврди. - failure: Корисникот %{name} не е пронајден. - confirm_email: - heading: Потврди промена на е-пошта - press confirm button: Притиснете го копчето за потврдување за да ја потврдите - новата е-поштенска адреса. - button: Потврди - success: Измената на вашата е-пошта е потврдена! - failure: Со оваа шифра е потврдена веќе една е-поштенска адреса - unknown_token: Потврдниот код е истечен или не постои. set_home: flash success: Матичната местоположба е успешно зачувана go_public: diff --git a/config/locales/mo.yml b/config/locales/mo.yml index dcd52f52e..e23a5c90b 100644 --- a/config/locales/mo.yml +++ b/config/locales/mo.yml @@ -569,11 +569,14 @@ mo: text: Фачець о донацие learn_more: Афлаць май мулте more: Май мулте - site: - export: - title: Експортаре - users: - login: + passwords: + lost_password: + title: Рестабилиря паролей + heading: Аць уйтат парола? + email address: 'Адреса де поштэ електроникэ:' + new password button: Рестабилиря паролей + sessions: + new: title: Презентаци-вэ heading: Презентаци-вэ email or username: 'Пошта електроникэ сау нумеле де утилизатор:' @@ -614,15 +617,14 @@ mo: aol: title: Ынтраря ку ажуторул AOL alt: Ынтраря ку ажуторул AOL OpenID - logout: + destroy: title: Ынкееря сесиуний heading: Ешире дин OpenStreetMap logout_button: Ынкееря сесиуний - lost_password: - title: Рестабилиря паролей - heading: Аць уйтат парола? - email address: 'Адреса де поштэ електроникэ:' - new password button: Рестабилиря паролей + site: + export: + title: Експортаре + users: new: display name: 'Нумеле афишат:' show: diff --git a/config/locales/mr.yml b/config/locales/mr.yml index 0adc158d0..6318a9036 100644 --- a/config/locales/mr.yml +++ b/config/locales/mr.yml @@ -828,11 +828,23 @@ mr: anonymous: एक अनामिक सदस्य greeting: नमस्कार, details: '%{url} येथे टीपेबद्दल अधिक तपशील मिळू शकेल.' + confirmations: + confirm: + heading: आपले विपत्र तपासा! + introduction_1: आम्ही आपणास निश्चितीकरणास विपत्र पाठविले आहे. + introduction_2: विपत्रातील दुव्यावर टिचकी मारुन आपली खातेनिश्चिती करा व आपण + नकाशा काढणे सुरु करु शकता. + button: खात्री करा + already active: या खात्याची आधीच निश्चिती झाली आहे. + unknown token: तो निश्चिती संकेत कालबाह्य झाला आहे किंवा अस्तित्वात नाही. + reconfirm_html: जर आपणास आम्ही पुन्हा विपत्र पाठविणे आवश्यक वाटते, तरयेथे + टिचकी मारा. + confirm_resend: + failure: सदस्य %{name} सापडला नाही. messages: inbox: title: अंतर्पेटी my_inbox: माझी अंतर्पेटी - outbox: बाह्यपेटी messages: आपल्यासाठी %{new_messages} आणि %{old_messages} आहेत new_messages: one: '%{count} नवा संदेश' @@ -866,8 +878,6 @@ mr: body: त्या ओळखणीचा कोणताही संदेश नाही outbox: title: बाह्यपेटी - inbox: अंतर्पेटी - outbox: बाह्यपेटी messages: one: आपण पाठविलेला %{count} संदेश other: आपण पाठविलेले %{count} संदेश @@ -900,6 +910,29 @@ mr: as_unread: संदेश वाचला नाही अशी खूण केली destroy: destroyed: संदेश वगळला + passwords: + lost_password: + heading: परवलीचा शब्द विसरला? + email address: 'विपत्र पत्ता:' + new password button: परवलीचा शब्द पुनर्स्थापित करा + reset_password: + title: परवलीचा शब्द पुनर्स्थापित करा + heading: '%{user}साठी परवलीचा शब्द पुनर्स्थापित करा' + reset: परवलीचा शब्द पुनर्स्थापित करा + flash changed: आपला परवलीचा शब्द बदलण्यात आला आहे. + sessions: + new: + title: सनोंद प्रवेश करा + heading: सनोंद प्रवेश करा + email or username: 'विपत्रपत्ता किंवा सदस्यनाव:' + password: 'परवलीचा शब्द:' + remember: माझी आठवण ठेवा + lost password link: परवलीचा शब्द विसरलात? + login_button: सनोंद प्रवेश करा + register now: आत्ता नोंदणी करा + new to osm: ओपनस्ट्रीटमॅपवर नवीन? + create account minute: खाते उघडा. केवळ एका मिनिटाचे काम आहे. + no account: आपले खाते नाही? site: about: next: पुढील @@ -1080,21 +1113,6 @@ mr: construction: निर्माणाधीन रस्ते bicycle_shop: सायकल दुकान toilets: स्वच्छतागृह - richtext_area: - edit: संपादन करा - preview: झलक - markdown_help: - headings: मथळे - heading: मथळा - subheading: उपमथळा - unordered: अक्रमित यादी - ordered: क्रमित यादी - first: पहिली बाब - second: दुसरी बाब - link: दुवा - text: मजकूर - image: चित्र - url: URL welcome: title: सुस्वागतम्‌! whats_on_the_map: @@ -1156,7 +1174,6 @@ mr: more: अधिक trace_details: अनुरेखाचा तपशील पहा view_map: नकाशा पहा - edit: संपादन edit_map: नकाशा संपादा public: सार्वजनिक identifiable: ओळखण्याजोगी @@ -1164,7 +1181,6 @@ mr: trackable: मागोव्याजोगा by: तर्फे in: आत - map: नकाशा index: upload_trace: अनुरेख चढवा see_all_traces: सर्व अनुरेख पहा @@ -1187,27 +1203,6 @@ mr: form: requests: 'सदस्याकडून खालील परवानग्यांची मागणी करा:' users: - login: - title: सनोंद प्रवेश करा - heading: सनोंद प्रवेश करा - email or username: 'विपत्रपत्ता किंवा सदस्यनाव:' - password: 'परवलीचा शब्द:' - remember: माझी आठवण ठेवा - lost password link: परवलीचा शब्द विसरलात? - login_button: सनोंद प्रवेश करा - register now: आत्ता नोंदणी करा - new to osm: ओपनस्ट्रीटमॅपवर नवीन? - create account minute: खाते उघडा. केवळ एका मिनिटाचे काम आहे. - no account: आपले खाते नाही? - lost_password: - heading: परवलीचा शब्द विसरला? - email address: 'विपत्र पत्ता:' - new password button: परवलीचा शब्द पुनर्स्थापित करा - reset_password: - title: परवलीचा शब्द पुनर्स्थापित करा - heading: '%{user}साठी परवलीचा शब्द पुनर्स्थापित करा' - reset: परवलीचा शब्द पुनर्स्थापित करा - flash changed: आपला परवलीचा शब्द बदलण्यात आला आहे. new: title: नोंदणी करा about: @@ -1289,18 +1284,6 @@ mr: replace image: वर्तमान चित्र बदला image size hint: (किमान १००x१०० आकाराची चौरस चित्रे उत्तम) save changes button: बदल जतन करा - confirm: - heading: आपले विपत्र तपासा! - introduction_1: आम्ही आपणास निश्चितीकरणास विपत्र पाठविले आहे. - introduction_2: विपत्रातील दुव्यावर टिचकी मारुन आपली खातेनिश्चिती करा व आपण - नकाशा काढणे सुरु करु शकता. - button: खात्री करा - already active: या खात्याची आधीच निश्चिती झाली आहे. - unknown token: तो निश्चिती संकेत कालबाह्य झाला आहे किंवा अस्तित्वात नाही. - reconfirm_html: जर आपणास आम्ही पुन्हा विपत्र पाठविणे आवश्यक वाटते, तरयेथे - टिचकी मारा. - confirm_resend: - failure: सदस्य %{name} सापडला नाही. index: title: सदस्य heading: सदस्य diff --git a/config/locales/ms.yml b/config/locales/ms.yml index 10fe1d757..4a20a2b04 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -115,13 +115,17 @@ ms: body: Isi recipient: Penerima redaction: + title: Tajuk description: Keterangan + report: + category: Pilih sebab untuk laporan anda user: email: E-mel - new_email: 'Alamat E-mel Baru:' + email_confirmation: Pengesahan E-mel + new_email: Alamat E-mel Baru active: Aktif display_name: Nama Paparan - description: Keterangan + description: Keterangan Profil home_lat: 'Garis Lintang:' home_lon: 'Garis Bujur:' languages: Bahasa @@ -467,6 +471,7 @@ ms: bicycle_parking: Letak Basikal bicycle_rental: Sewa Basikal biergarten: Taman Bir + blood_bank: Tabung Darah boat_rental: Bot Sewa brothel: Rumah Pelacuran bureau_de_change: Pengurup Wang @@ -557,12 +562,14 @@ ms: building: apartment: Pangsapuri apartments: Pangsapuri + bungalow: Banglo chapel: Gereja Kecil church: Bangunan Gereja commercial: Bangunan Perdagangan dormitory: Asrama farm: Rumah Ladang garage: Garaj + garages: Garaj hospital: Bangunan Hospital hotel: Bangunan Hotel house: Rumah @@ -760,6 +767,7 @@ ms: cape: Tanjung cave_entrance: Liang Gua cliff: Cenuram + coastline: Garis Pinggir Laut crater: Kawah dune: Gumuk fell: Fell @@ -1176,11 +1184,39 @@ ms: commented: partial_changeset_with_comment: dengan komen '%{changeset_comment}' partial_changeset_without_comment: tanpa komen + confirmations: + confirm: + heading: Semak e-mel anda + introduction_1: Kami telah mengirim e-mel pengesahan kepada anda. + introduction_2: Sahkan akaun anda dengan mengklik pada pautan pada e-mel itu, + kemudian anda boleh mula menyunting peta. + press confirm button: Tekan butang pengesahan di bawah untuk mengaktifkan akaun + anda. + button: Sahkan + success: Akaun anda telah disahkan. Terima kasih kerana mendaftar! + already active: Akaun ini sudah pun disahkan. + unknown token: Kod pengesahan itu telah tamat tempoh atau tidak wujud. + reconfirm_html: Jika anda perlukan kami untuk mengirim semula e-mel penghantaran, + klik di sini. + confirm_resend: + success_html: Kami telah menghantar pesanan pengesahan kepada %{email}. Sebaik + sahaja anda mengesahkan akaun anda, anda akan boleh menyunting peta.

    Jika anda menggunakan sistem anti-spam yang menghantar permohonan untuk + pengesahan, sila pastikan anda membenarkan %{sender} kerana kami tidak dapat + membalas sebarang permohonan untuk pengesahan. + failure: Pengguna %{name} tidak dijumpai. + confirm_email: + heading: Sahkan penukaran alamat e-mel + press confirm button: Tekan butang sahkan di bawah untuk mengesahkan alamat + e-mel baru anda. + button: Sahkan + success: Sahkan penukaran alamat e-mel + failure: Sudah ada alamat e-mel yang disahkan dengan token ini. + unknown_token: Kod pengesahan itu telah tamat tempoh atau tidak wujud. messages: inbox: title: Peti Masuk my_inbox: Peti masuk saya - outbox: peti keluar messages: Anda ada %{new_messages} dan %{old_messages} new_messages: '%{count} pesanan baru' old_messages: '%{count} pesanan lama' @@ -1211,9 +1247,6 @@ ms: body: Maaf, tiada pesanan dengan ID ini. outbox: title: Peti Keluar - my_inbox_html: '%{inbox_link} saya' - inbox: Peti masuk - outbox: peti keluar messages: Anda ada %{count} pesanan terhantar to: Kepada subject: Subjek @@ -1245,6 +1278,83 @@ ms: as_unread: Pesanan ditandai sebagai belum dibaca destroy: destroyed: Pesanan dihapuskan + passwords: + lost_password: + title: Terlupa kata laluan + heading: Lupa Kata Laluan? + email address: 'Alamat E-mel:' + new password button: Set semula kata laluan + help_text: Isikan alamat e-mel yang anda gunakan untuk mendaftar. Kami akan + menge-melkan pautan untuk anda mengeset semula kata laluan anda. + notice email on way: Kesiannya anda sudah terlupa kata laluan :-( tetapi kami + akan menghantar satu pesanan e-mel untuk anda mengesetnya semula tidak lama + lagi. + notice email cannot find: Maaf, alamat e-mel itu tidak dapat dijumpai. + reset_password: + title: Set semula kata laluan + heading: Set Semula Kata Laluan untuk %{user} + reset: Set Semula Kata Laluan + flash changed: Kata laluan anda telah ditukar. + flash token bad: Token itu tidak dijumpai; sila semak URL-nya. + sessions: + new: + title: Log masuk + heading: Log masuk + email or username: 'Alamat E-mel atau Nama Pengguna:' + password: 'Kata laluan:' + openid_html: 'OpenID %{logo}:' + remember: Ingati saya + lost password link: Lupa kata laluan anda? + login_button: Log masuk + register now: Daftar sekarang + with username: 'Sudah ada akaun OpenStreetMap? Sila log masuk dengan nama pengguna + dan kata laluan anda:' + new to osm: Baru kenal OpenStreetMap? + to make changes: Untuk membuat perubahan pada data OpenStreetMap, anda mesti + mempunyai akaun. + create account minute: Bukalah satu akaun. Seminit sahaja masa untuk membuatnya. + no account: Belum buka akaun? + account not active: Maaf, akaun anda belum aktif.
    Sila ikuti pautan dalam + pesanan e-mel pengesahan akaun untuk menghidupkan akaun anda, atau pohon + pesanan e-mel pengesahan yang baru. + account is suspended: Maaf, akaun anda digantung disebabkan perbuatan yang mencurigakan.
    Sila hubungi pentadbir web jika anda ingin membincangkan + perkara ini. + auth failure: Maaf, log masuk tidak dapat dibenarkan dengan butiran-butiran + itu. + openid_logo_alt: Log masuk dengan OpenID + auth_providers: + openid: + title: Log masuk dengan OpenID + alt: Log masuk dengan OpenID URL + google: + title: Log masuk dengan Google + alt: Log masuk dengan Google OpenID + facebook: + title: Log masuk dengan Facebook + alt: Log masuk dengan Akuan Facebook + windowslive: + title: Log masuk dengan Window Live + alt: Log masuk dengan Akaun Windows Live + github: + title: Log masuk dengan GitHub + alt: Log masuk dengan Akaun GitHub. + wikipedia: + title: Log masuk dengan Wikipedia + alt: Log masuk dengan akaun Wikipedia + yahoo: + title: Log masuk dengan Yahoo + alt: Log masuk dengan OpenID Yahoo + wordpress: + title: Log masuk dengan Wordpress + alt: Log masuk dengan OpenID Wordpress + aol: + title: Log masuk dengan AOL + alt: Log masuk dengan OpenID Yahoo + destroy: + title: Log keluar + heading: Log keluar dari OpenStreetMap + logout_button: Log keluar shared: markdown_help: headings: Judul @@ -1582,23 +1692,6 @@ ms: bicycle_shop: Kedai Basikal bicycle_parking: Tempat letak basikal toilets: Tandas - richtext_area: - edit: Sunting - preview: Pralihat - markdown_help: - title_html: Dihuraikan dengan Markdown - headings: Judul - heading: Judul - subheading: Judul kecil - unordered: Senarai tak tertib - ordered: Senarai tertib - first: Perkara pertama - second: Perkara kedua - link: Pautan - text: Teks - image: Gambar - alt: Teks alt - url: URL welcome: title: Selamat datang! introduction_html: Selamat datang ke OpenStreetMap, peta dunia yang bebas disunting @@ -1700,7 +1793,6 @@ ms: more: lagi trace_details: Lihat Butiran Jejak view_map: Lihat Peta - edit: sunting edit_map: Sunting Peta public: UMUM identifiable: BOLEH DIKENAL PASTI @@ -1708,7 +1800,6 @@ ms: trackable: BOLEH DIJEJAKI by: oleh in: dalam - map: peta index: public_traces: Jejak GPS umum public_traces_from: Jejak GPS umum oleh %{user} @@ -1813,81 +1904,6 @@ ms: destroy: flash: Permohonan aplikasi klien dihapuskan users: - login: - title: Log masuk - heading: Log masuk - email or username: 'Alamat E-mel atau Nama Pengguna:' - password: 'Kata laluan:' - openid_html: 'OpenID %{logo}:' - remember: Ingati saya - lost password link: Lupa kata laluan anda? - login_button: Log masuk - register now: Daftar sekarang - with username: 'Sudah ada akaun OpenStreetMap? Sila log masuk dengan nama pengguna - dan kata laluan anda:' - new to osm: Baru kenal OpenStreetMap? - to make changes: Untuk membuat perubahan pada data OpenStreetMap, anda mesti - mempunyai akaun. - create account minute: Bukalah satu akaun. Seminit sahaja masa untuk membuatnya. - no account: Belum buka akaun? - account not active: Maaf, akaun anda belum aktif.
    Sila ikuti pautan dalam - pesanan e-mel pengesahan akaun untuk menghidupkan akaun anda, atau pohon - pesanan e-mel pengesahan yang baru. - account is suspended: Maaf, akaun anda digantung disebabkan perbuatan yang mencurigakan.
    Sila hubungi pentadbir web jika anda ingin membincangkan - perkara ini. - auth failure: Maaf, log masuk tidak dapat dibenarkan dengan butiran-butiran - itu. - openid_logo_alt: Log masuk dengan OpenID - auth_providers: - openid: - title: Log masuk dengan OpenID - alt: Log masuk dengan OpenID URL - google: - title: Log masuk dengan Google - alt: Log masuk dengan Google OpenID - facebook: - title: Log masuk dengan Facebook - alt: Log masuk dengan Akuan Facebook - windowslive: - title: Log masuk dengan Window Live - alt: Log masuk dengan Akaun Windows Live - github: - title: Log masuk dengan GitHub - alt: Log masuk dengan Akaun GitHub. - wikipedia: - title: Log masuk dengan Wikipedia - alt: Log masuk dengan akaun Wikipedia - yahoo: - title: Log masuk dengan Yahoo - alt: Log masuk dengan OpenID Yahoo - wordpress: - title: Log masuk dengan Wordpress - alt: Log masuk dengan OpenID Wordpress - aol: - title: Log masuk dengan AOL - alt: Log masuk dengan OpenID Yahoo - logout: - title: Log keluar - heading: Log keluar dari OpenStreetMap - logout_button: Log keluar - lost_password: - title: Terlupa kata laluan - heading: Lupa Kata Laluan? - email address: 'Alamat E-mel:' - new password button: Set semula kata laluan - help_text: Isikan alamat e-mel yang anda gunakan untuk mendaftar. Kami akan - menge-melkan pautan untuk anda mengeset semula kata laluan anda. - notice email on way: Kesiannya anda sudah terlupa kata laluan :-( tetapi kami - akan menghantar satu pesanan e-mel untuk anda mengesetnya semula tidak lama - lagi. - notice email cannot find: Maaf, alamat e-mel itu tidak dapat dijumpai. - reset_password: - title: Set semula kata laluan - heading: Set Semula Kata Laluan untuk %{user} - reset: Set Semula Kata Laluan - flash changed: Kata laluan anda telah ditukar. - flash token bad: Token itu tidak dijumpai; sila semak URL-nya. new: title: Daftar no_auto_account_create: Sayang sekali, kami tidak dapat membuka akaun secara @@ -2058,34 +2074,6 @@ ms: flash update success confirm needed: Maklumat pengguna berjaya dikemaskinikan. Semak e-mel anda untuk pesanan untuk mengesahkan alamat e-mel baru anda. flash update success: Maklumat pengguna berjaya dikemaskinikan. - confirm: - heading: Semak e-mel anda - introduction_1: Kami telah mengirim e-mel pengesahan kepada anda. - introduction_2: Sahkan akaun anda dengan mengklik pada pautan pada e-mel itu, - kemudian anda boleh mula menyunting peta. - press confirm button: Tekan butang pengesahan di bawah untuk mengaktifkan akaun - anda. - button: Sahkan - success: Akaun anda telah disahkan. Terima kasih kerana mendaftar! - already active: Akaun ini sudah pun disahkan. - unknown token: Kod pengesahan itu telah tamat tempoh atau tidak wujud. - reconfirm_html: Jika anda perlukan kami untuk mengirim semula e-mel penghantaran, - klik di sini. - confirm_resend: - success_html: Kami telah menghantar pesanan pengesahan kepada %{email}. Sebaik - sahaja anda mengesahkan akaun anda, anda akan boleh menyunting peta.

    Jika anda menggunakan sistem anti-spam yang menghantar permohonan untuk - pengesahan, sila pastikan anda membenarkan %{sender} kerana kami tidak dapat - membalas sebarang permohonan untuk pengesahan. - failure: Pengguna %{name} tidak dijumpai. - confirm_email: - heading: Sahkan penukaran alamat e-mel - press confirm button: Tekan butang sahkan di bawah untuk mengesahkan alamat - e-mel baru anda. - button: Sahkan - success: Sahkan penukaran alamat e-mel - failure: Sudah ada alamat e-mel yang disahkan dengan token ini. - unknown_token: Kod pengesahan itu telah tamat tempoh atau tidak wujud. set_home: flash success: Lokasi rumah berjaya disimpan go_public: diff --git a/config/locales/my.yml b/config/locales/my.yml index 42fcb560f..4549a0824 100644 --- a/config/locales/my.yml +++ b/config/locales/my.yml @@ -544,10 +544,17 @@ my: changeset_comment_notification: hi: ဟိုင်း %{to_user}၊ greeting: ဟိုင်း၊ + confirmations: + confirm: + heading: သင်၏အီးမေးလ်ကို စစ်ဆေးရန် + button: အတည်ပြု + confirm_resend: + failure: အသုံးပြုသူ %{name} မတွေ့ရှိပါ။ + confirm_email: + button: အတည်ပြု messages: inbox: title: အဝင်စာ - outbox: အထွက်စာ from: မှ subject: အကြောင်းအရာ date: နေ့စွဲ @@ -566,8 +573,6 @@ my: heading: ယင်းကဲ့သို့မက်ဆေ့မရှိပါ outbox: title: အထွက်စာ - inbox: အဝင်စာ - outbox: အထွက်စာ to: သို့ subject: အကြောင်းအရာ date: နေ့စွဲ @@ -582,6 +587,43 @@ my: to: သို့ sent_message_summary: destroy_button: ဖျက်​ပါ​ + passwords: + lost_password: + title: စကားဝှက် ပျောက်ဆုံးသွား + heading: စကားဝှက် မေ့နေပါသလား + email address: 'အီးမေး လိပ်စာ :' + new password button: စကားဝှက်ကို ပြန်ချိန်ရန် + reset_password: + title: စကားဝှက်ကို ပြန်ချိန်ရန် + heading: '%{user} အတွက် စကားဝှက်ကို ပြန်ချိန်ရန်' + reset: စကားဝှက်ကို ပြန်ချိန်ရန် + flash changed: သင့်စကားဝှက်ကို ပြောင်းလဲပြီးပါပြီ + sessions: + new: + title: အကောင့်ထဲဝင်ရန် + heading: အကောင့်ထဲဝင်ရန် + email or username: အီးမေးလ်လိပ်စာ သို့မဟုတ် အသုံးပြုသူအမည် + password: စကားဝှက် + openid_html: '%{logo} OpenID:' + remember: မိမိကို မှတ်မိပါ + lost password link: စကားဝှက် မေ့နေသလား။ + login_button: အကောင့်ထဲဝင်ရန် + register now: အခုပဲ မှတ်ပုံတင်ရန် + no account: အကောင့် မရှိဘူးလား။ + auth_providers: + google: + title: ဂူဂဲလ်ဖြင့် အကောင့်ထဲဝင်ရန် + facebook: + title: ဖေ့ဘုတ်ဖြင့် အကောင့်ထဲဝင်ရန် + alt: ဖေ့ဘုတ်အကောင့်ဖြင့် အကောင့်ထဲဝင်ရန် + wikipedia: + title: ဝီကီပီးဒီးယားဖြင့် အကောင့်ထဲဝင်ရန် + alt: ဝီကီပီးဒီးယားအကောင့်ဖြင့် အကောင့်ထဲဝင်ရန် + yahoo: + title: ယာဟူးဖြင့် အကောင့်ထဲဝင်ရန် + destroy: + title: အကောင့်မှပြန်ထွက် + logout_button: အကောင့်မှပြန်ထွက် shared: markdown_help: text: စာသား @@ -667,13 +709,6 @@ my: station: ရထားဘူတာ construction: ဖောက်နေဆဲ လမ်းများ toilets: အိမ်သာများ - richtext_area: - edit: ပြင်ဆင်ရန် - preview: ကြိုတင်အစမ်းကြည့်ရှုရန် - markdown_help: - link: လင့် - text: စာသား - image: ရုပ်ပုံ welcome: title: ကြိုဆိုပါသည်! rules: @@ -699,48 +734,11 @@ my: trace: more: ပို၍ view_map: မြေပုံကို ကြည့်ရန် - edit: ပြင်ဆင်ရန် edit_map: မြေပုံကို တည်းဖြတ်ရန် - map: မြေပုံ oauth_clients: show: confirm: သေချာပါသလား users: - login: - title: အကောင့်ထဲဝင်ရန် - heading: အကောင့်ထဲဝင်ရန် - email or username: အီးမေးလ်လိပ်စာ သို့မဟုတ် အသုံးပြုသူအမည် - password: စကားဝှက် - openid_html: '%{logo} OpenID:' - remember: မိမိကို မှတ်မိပါ - lost password link: စကားဝှက် မေ့နေသလား။ - login_button: အကောင့်ထဲဝင်ရန် - register now: အခုပဲ မှတ်ပုံတင်ရန် - no account: အကောင့် မရှိဘူးလား။ - auth_providers: - google: - title: ဂူဂဲလ်ဖြင့် အကောင့်ထဲဝင်ရန် - facebook: - title: ဖေ့ဘုတ်ဖြင့် အကောင့်ထဲဝင်ရန် - alt: ဖေ့ဘုတ်အကောင့်ဖြင့် အကောင့်ထဲဝင်ရန် - wikipedia: - title: ဝီကီပီးဒီးယားဖြင့် အကောင့်ထဲဝင်ရန် - alt: ဝီကီပီးဒီးယားအကောင့်ဖြင့် အကောင့်ထဲဝင်ရန် - yahoo: - title: ယာဟူးဖြင့် အကောင့်ထဲဝင်ရန် - logout: - title: အကောင့်မှပြန်ထွက် - logout_button: အကောင့်မှပြန်ထွက် - lost_password: - title: စကားဝှက် ပျောက်ဆုံးသွား - heading: စကားဝှက် မေ့နေပါသလား - email address: 'အီးမေး လိပ်စာ :' - new password button: စကားဝှက်ကို ပြန်ချိန်ရန် - reset_password: - title: စကားဝှက်ကို ပြန်ချိန်ရန် - heading: '%{user} အတွက် စကားဝှက်ကို ပြန်ချိန်ရန်' - reset: စကားဝှက်ကို ပြန်ချိန်ရန် - flash changed: သင့်စကားဝှက်ကို ပြောင်းလဲပြီးပါပြီ new: title: မှတ်ပုံတင်ရန် email address: 'အီးမေး လိပ်စာ :' @@ -778,13 +776,6 @@ my: current email address: 'လက်ရှိ အီးမေးလ်လိပ်စာ:' save changes button: ပြောင်းလဲမှုများကို သိမ်းရန် return to profile: ပရိုဖိုင်သို့ ပြန်သွားရန် - confirm: - heading: သင်၏အီးမေးလ်ကို စစ်ဆေးရန် - button: အတည်ပြု - confirm_resend: - failure: အသုံးပြုသူ %{name} မတွေ့ရှိပါ။ - confirm_email: - button: အတည်ပြု index: title: အသုံးပြုသူများ heading: အသုံးပြုသူများ diff --git a/config/locales/nb.yml b/config/locales/nb.yml index 26d4c3b18..322c47f68 100644 --- a/config/locales/nb.yml +++ b/config/locales/nb.yml @@ -925,6 +925,7 @@ nb: cape: Nes cave_entrance: Huleinngang cliff: Klippe + coastline: Kystlinje crater: Krater dune: Sanddyne fell: Snaufjell @@ -1410,11 +1411,36 @@ nb: details: Flere detaljer om endringen finnes på %{url}. unsubscribe: For å fjerne abonnementet på oppdateringer til dette endringssettet, besøk %{url} og klikk «Avslutt abonnement». + confirmations: + confirm: + heading: Sjekk e-posten din! + introduction_1: Vi har sendt deg en bekreftelsesepost. + introduction_2: Bekreft kontoen din ved å klikke på lenken i e-posten så kan + du begynne å kartlegge. + press confirm button: Klikk "Bekreft" nedenfor for å aktivere kontoen din. + button: Bekreft + success: Kontoen din er bekreftet - takk for at du registrerte deg. + already active: Denne kontoen har allerede blitt bekreftet. + unknown token: Denne bekreftelseskoden finnes ikke eller har utløpt. + reconfirm_html: Hvis du trenger at vi sender bekreftelseseposten på nytt, klikk her + confirm_resend: + success_html: Vi har sendt en ny bekreftelsesmelding til %{email} og så snart + du bekrefter kontoen din kan du begynne å lage kart.

    Om du bruker + et antispamsystem som sender bekreftelsesforspørsler, kontroller at du har + hvitelistet %{sender} siden vi ikke kan svar på bekreftelsesforespørsler. + failure: Fant ikke brukeren %{name}. + confirm_email: + heading: Bekreft endring av e-postadresse + press confirm button: Klikk "Bekreft" nedenfor for å bekrefte din nye e-postadresse. + button: Bekreft + success: Bytte av e-postadresse bekreftet! + failure: En e-postadresse er allerede bekreftet med denne nøkkelen. + unknown_token: Denne bekreftelseskoden finnes ikke eller har utløpt. messages: inbox: title: Innboks my_inbox: Min innboks - outbox: utboks messages: Du har %{new_messages} og %{old_messages} new_messages: one: '%{count} ny melding' @@ -1449,9 +1475,6 @@ nb: body: Det er ingen melding med den ID-en. outbox: title: Utboks - my_inbox_html: Min %{inbox_link} - inbox: innboks - outbox: utboks messages: one: Du har %{count} sendt melding other: Du har %{count} sendte meldinger @@ -1483,6 +1506,81 @@ nb: as_unread: Melding markert som ulest destroy: destroyed: Melding slettet + passwords: + lost_password: + title: Glemt passord + heading: Glemt passord? + email address: 'E-postadresse:' + new password button: Nullstill passord + help_text: Skriv inn e-postadressen du brukte for å registrere deg, og vi vil + sende deg ei lenke som du kan bruke til å nullstille passordet ditt. + notice email on way: Synd at du mistet det, men en e-post er på vei slik at + du kan tilbakestille det snart. + notice email cannot find: Klarte ikke finne den e-postadressen. Beklager. + reset_password: + title: Nullstill passord + heading: Nullstill passord for %{user} + reset: Nullstill passord + flash changed: Ditt passord er endret. + flash token bad: Kunne ikke finne den nøkkelen. Sjekke URLen kanskje? + sessions: + new: + title: Logg inn + heading: Logg inn + email or username: 'E-postadresse eller brukernavn:' + password: 'Passord:' + openid_html: '%{logo} OpenID:' + remember: Husk meg + lost password link: Mistet passordet ditt? + login_button: Logg inn + register now: Registrer deg nå + with username: 'Har du allerede en OpenStreetMap-konto? Logg inn med brukernavnet + og passordet ditt:' + with external: 'Alternativt kan du bruke en tredjepart til å logge inn:' + new to osm: Ny på OpenStreetMap? + to make changes: For å gjøre endringer på OpenStreetMap-data, må du ha en konto. + create account minute: Opprett en konto. Det tar bare ett minutt. + no account: Har du ikke en konto? + account not active: Beklager, kontoen din er ikke aktivert ennå.
    Bruk lenka + i kontobekreftelseseposten for å aktivere kontoen din, eller be + om en ny bekreftelsesepost. + account is suspended: Beklager, kontoen din er deaktivert på grunn av mistenkelig + aktivitet.
    Vennligst kontakt webmaster hvis + du ønsker å diskutere dette. + auth failure: Beklager, kunne ikke logge inn med den informasjonen + openid_logo_alt: Logg inn med en OpenID + auth_providers: + openid: + title: Logg inn med OpenID + alt: Logg inn med en OpenID-URL + google: + title: Logg inn med Google + alt: Logg inn med en Google OpenID + facebook: + title: Logg inn med Facebook + alt: Logg inn med en Facebook-konto + windowslive: + title: Logg inn med Windows Live + alt: Logg inn med en Windows Live-konto + github: + title: Logg inn med GitHub + alt: Logg inn med en GitHub-konto + wikipedia: + title: Logg inn med Wikipedia + alt: Logg inn med en Wikipedia-konto + yahoo: + title: Logg inn med Yahoo + alt: Logg inn med en Yahoo OpenID + wordpress: + title: Logg inn med Wordpress + alt: Logg inn med en Wordpress OpenID + aol: + title: Logg inn med AOL + alt: Logg inn med en AOL OpenID + destroy: + title: Logg ut + heading: Logg ut fra OpenStreetMap + logout_button: Logg ut site: about: next: Neste @@ -1857,23 +1955,6 @@ nb: bicycle_shop: Sykkelbutikk bicycle_parking: Sykkelparkering toilets: Toaletter - richtext_area: - edit: Rediger - preview: Forhåndsvisning - markdown_help: - title_html: Fortolket med kramdown - headings: Overskrifter - heading: Overskrift - subheading: Underoverskrift - unordered: Usortert liste - ordered: Sortert liste - first: Første punkt - second: Andre punkt - link: Lenke - text: Tekst - image: Bilde - alt: Alternativ tekst - url: URL welcome: title: Velkommen! introduction_html: Velkommen til OpenStreetMap, det fri brukerredigerte verdenskartet. @@ -1991,7 +2072,6 @@ nb: more: mer trace_details: Vis detaljer for spor view_map: Vis kart - edit: rediger edit_map: Rediger kart public: OFFENTLIG identifiable: IDENTIFISERBAR @@ -1999,7 +2079,6 @@ nb: trackable: SPORBAR by: av in: i - map: kart index: public_traces: Offentlig GPS-spor my_traces: Mine GPS-spor @@ -2112,79 +2191,6 @@ nb: destroy: flash: Ødelagt klientapplikasjonsregistreringen users: - login: - title: Logg inn - heading: Logg inn - email or username: 'E-postadresse eller brukernavn:' - password: 'Passord:' - openid_html: '%{logo} OpenID:' - remember: Husk meg - lost password link: Mistet passordet ditt? - login_button: Logg inn - register now: Registrer deg nå - with username: 'Har du allerede en OpenStreetMap-konto? Logg inn med brukernavnet - og passordet ditt:' - with external: 'Alternativt kan du bruke en tredjepart til å logge inn:' - new to osm: Ny på OpenStreetMap? - to make changes: For å gjøre endringer på OpenStreetMap-data, må du ha en konto. - create account minute: Opprett en konto. Det tar bare ett minutt. - no account: Har du ikke en konto? - account not active: Beklager, kontoen din er ikke aktivert ennå.
    Bruk lenka - i kontobekreftelseseposten for å aktivere kontoen din, eller be - om en ny bekreftelsesepost. - account is suspended: Beklager, kontoen din er deaktivert på grunn av mistenkelig - aktivitet.
    Vennligst kontakt webmaster hvis - du ønsker å diskutere dette. - auth failure: Beklager, kunne ikke logge inn med den informasjonen - openid_logo_alt: Logg inn med en OpenID - auth_providers: - openid: - title: Logg inn med OpenID - alt: Logg inn med en OpenID-URL - google: - title: Logg inn med Google - alt: Logg inn med en Google OpenID - facebook: - title: Logg inn med Facebook - alt: Logg inn med en Facebook-konto - windowslive: - title: Logg inn med Windows Live - alt: Logg inn med en Windows Live-konto - github: - title: Logg inn med GitHub - alt: Logg inn med en GitHub-konto - wikipedia: - title: Logg inn med Wikipedia - alt: Logg inn med en Wikipedia-konto - yahoo: - title: Logg inn med Yahoo - alt: Logg inn med en Yahoo OpenID - wordpress: - title: Logg inn med Wordpress - alt: Logg inn med en Wordpress OpenID - aol: - title: Logg inn med AOL - alt: Logg inn med en AOL OpenID - logout: - title: Logg ut - heading: Logg ut fra OpenStreetMap - logout_button: Logg ut - lost_password: - title: Glemt passord - heading: Glemt passord? - email address: 'E-postadresse:' - new password button: Nullstill passord - help_text: Skriv inn e-postadressen du brukte for å registrere deg, og vi vil - sende deg ei lenke som du kan bruke til å nullstille passordet ditt. - notice email on way: Synd at du mistet det, men en e-post er på vei slik at - du kan tilbakestille det snart. - notice email cannot find: Klarte ikke finne den e-postadressen. Beklager. - reset_password: - title: Nullstill passord - heading: Nullstill passord for %{user} - reset: Nullstill passord - flash changed: Ditt passord er endret. - flash token bad: Kunne ikke finne den nøkkelen. Sjekke URLen kanskje? new: title: Registrer deg no_auto_account_create: Beklageligvis kan vi for øyeblikket ikke opprette en @@ -2370,31 +2376,6 @@ nb: flash update success confirm needed: Brukerinformasjon oppdatert. Sjekk eposten din for å bekrefte din epostadresse. flash update success: Brukerinformasjon oppdatert. - confirm: - heading: Sjekk e-posten din! - introduction_1: Vi har sendt deg en bekreftelsesepost. - introduction_2: Bekreft kontoen din ved å klikke på lenken i e-posten så kan - du begynne å kartlegge. - press confirm button: Klikk "Bekreft" nedenfor for å aktivere kontoen din. - button: Bekreft - success: Kontoen din er bekreftet - takk for at du registrerte deg. - already active: Denne kontoen har allerede blitt bekreftet. - unknown token: Denne bekreftelseskoden finnes ikke eller har utløpt. - reconfirm_html: Hvis du trenger at vi sender bekreftelseseposten på nytt, klikk her - confirm_resend: - success_html: Vi har sendt en ny bekreftelsesmelding til %{email} og så snart - du bekrefter kontoen din kan du begynne å lage kart.

    Om du bruker - et antispamsystem som sender bekreftelsesforspørsler, kontroller at du har - hvitelistet %{sender} siden vi ikke kan svar på bekreftelsesforespørsler. - failure: Fant ikke brukeren %{name}. - confirm_email: - heading: Bekreft endring av e-postadresse - press confirm button: Klikk "Bekreft" nedenfor for å bekrefte din nye e-postadresse. - button: Bekreft - success: Bytte av e-postadresse bekreftet! - failure: En e-postadresse er allerede bekreftet med denne nøkkelen. - unknown_token: Denne bekreftelseskoden finnes ikke eller har utløpt. set_home: flash success: Hjemmeposisjon lagret go_public: diff --git a/config/locales/nds.yml b/config/locales/nds.yml index e9e374b75..46b31f834 100644 --- a/config/locales/nds.yml +++ b/config/locales/nds.yml @@ -269,6 +269,7 @@ nds: beach: Strand cape: Kap cave_entrance: Höhleningang + coastline: Küstenlien crater: Krater fell: Fjell fjord: Fjord @@ -401,7 +402,6 @@ nds: inbox: title: Postfack Ingang my_inbox: Mien Postfack Ingang - outbox: Postfack Utgang from: Von date: Datum people_mapping_nearby: Koortenmakers in de Neegd @@ -417,9 +417,6 @@ nds: message_sent: Naricht afsennt outbox: title: Postfack Utgang - my_inbox_html: Mien %{inbox_link} - inbox: Postfack Ingang - outbox: Postfack Utgang to: An subject: Thema date: Datum @@ -433,6 +430,25 @@ nds: destroy_button: Wegdoon destroy: destroyed: Naricht wegdaan + passwords: + lost_password: + title: Passwoord vergeten + heading: Passwoord vergeten? + email address: 'E-Mail-Adress:' + new password button: Passwoord trüchsetten + reset_password: + title: Passwoord trüchsetten + heading: Passwoord för %{user} trüchsetten + reset: Passwoord trüchsetten + flash changed: Dien Passwoord is nu ännert. + sessions: + new: + title: Anmellen + heading: Anmellen + email or username: 'E-Mail-Adress oder Brukernaam:' + password: 'Passwoord:' + lost password link: Passwoord vergeten? + login_button: Anmellen site: copyright: native: @@ -539,34 +555,15 @@ nds: trace: more: mehr view_map: Koort ankieken - edit: ännern edit_map: Koort ännern public: APEN private: PRIVAAT by: von in: in - map: Koort oauth_clients: show: edit: Details ännern users: - login: - title: Anmellen - heading: Anmellen - email or username: 'E-Mail-Adress oder Brukernaam:' - password: 'Passwoord:' - lost password link: Passwoord vergeten? - login_button: Anmellen - lost_password: - title: Passwoord vergeten - heading: Passwoord vergeten? - email address: 'E-Mail-Adress:' - new password button: Passwoord trüchsetten - reset_password: - title: Passwoord trüchsetten - heading: Passwoord för %{user} trüchsetten - reset: Passwoord trüchsetten - flash changed: Dien Passwoord is nu ännert. new: title: Brukerkonto opstellen email address: 'E-Mail-Adress:' diff --git a/config/locales/ne.yml b/config/locales/ne.yml index a451c24c7..86c80d2b6 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -833,11 +833,19 @@ ne: changeset_comment_notification: hi: नमस्ते %{to_user}, greeting: नमस्ते, + confirmations: + confirm: + button: निश्चित गर्ने + confirm_email: + heading: इमेल परिवर्तन भएको निश्चित गर्नुहोस् + press confirm button: इमेल निश्चित गर्नको लागि निश्चितमा क्लिक गर्नुहोस् । + button: निश्चित + success: तपाईंको इमेल निश्चित गर्नुहोस्, ग्राह्याताको लागि धन्यवाद! + failure: यो टोकन को साथम एक इमेल पहिले नै निश्चित गरिसकिएको छ। messages: inbox: title: इनबक्स my_inbox: मेरो इनबक्स - outbox: आउटबक्स from: बाट subject: विषय date: मिति @@ -859,8 +867,6 @@ ne: heading: त्यस्तो कुनै पनि सन्देश छैन outbox: title: आउटबक्स - inbox: इनबक्स - outbox: आउटबक्स to: लाई subject: विषय date: मिति @@ -878,6 +884,31 @@ ne: destroy_button: हटाउनुहोस् destroy: destroyed: सन्देश मेटियो + passwords: + lost_password: + title: पासवर्ड बिर्सियो + heading: पासवर्ड बिर्सिनुभयो ? + email address: 'इमेल ठेगाना:' + new password button: प्रवेस शब्द परिवर्तन गर्ने + reset_password: + title: प्रवेस शब्द परिवर्तन गर्ने + heading: '%{user}को लागि प्रवेस शब्द परिवर्तन गर्ने' + reset: नयाँ प्रवेशशव्द + flash changed: तपाईंको प्रवेश शब्द परिवर्तन गरिएको छ। + sessions: + new: + title: प्रवेश + heading: प्रवेश + password: 'पासवर्ड:' + login_button: प्रवेश + no account: खाता छैन? + auth_providers: + wikipedia: + title: विकिपिडियाकाे प्रयाेग गरि प्रवेश गर्नुहाेस् + alt: विकिपिडिया खाताद्वारा प्रवेश गर्नुहोस् + destroy: + title: लगआउट + logout_button: निर्गमन site: about: next: अर्को @@ -1015,17 +1046,6 @@ ne: bicycle_shop: साइकल पसल bicycle_parking: साकल पार्किङ toilets: शौचालय - richtext_area: - edit: सम्पादन - preview: पूर्वावलोकन - markdown_help: - headings: शीर्षकहरू - heading: शीर्षक - first: पहिलो वस्तु - link: लिङ्क - text: पाठ - image: छवि - url: युआरएल welcome: title: स्वागतम्! whats_on_the_map: @@ -1071,13 +1091,11 @@ ne: more: थप trace_details: ट्रेसको विस्तृत जानकारी हेर्ने view_map: नक्सा हेर्ने - edit: सम्पादन edit_map: नक्सा सम्पादन गर्ने public: सार्वजनिक private: निजी by: द्वारा in: मा - map: नक्सा index: public_traces: सारवजनिक GPS ट्रेसहरु public_traces_from: '%{user}बाट सार्वकनिक GPS ट्रेसहरु' @@ -1091,29 +1109,6 @@ ne: show: confirm: निश्चित हुनुहुन्छ ? users: - login: - title: प्रवेश - heading: प्रवेश - password: 'पासवर्ड:' - login_button: प्रवेश - no account: खाता छैन? - auth_providers: - wikipedia: - title: विकिपिडियाकाे प्रयाेग गरि प्रवेश गर्नुहाेस् - alt: विकिपिडिया खाताद्वारा प्रवेश गर्नुहोस् - logout: - title: लगआउट - logout_button: निर्गमन - lost_password: - title: पासवर्ड बिर्सियो - heading: पासवर्ड बिर्सिनुभयो ? - email address: 'इमेल ठेगाना:' - new password button: प्रवेस शब्द परिवर्तन गर्ने - reset_password: - title: प्रवेस शब्द परिवर्तन गर्ने - heading: '%{user}को लागि प्रवेस शब्द परिवर्तन गर्ने' - reset: नयाँ प्रवेशशव्द - flash changed: तपाईंको प्रवेश शब्द परिवर्तन गरिएको छ। new: title: खाता खाेल्नुहाेस् about: @@ -1177,14 +1172,6 @@ ne: flash update success confirm needed: प्रयोगकर्ताको जानकारीहरू सफलतापूर्वक अध्यावधिक गरियो। Check your email for a note to confirm your new email address. flash update success: प्रयोगकर्ताको जानकारीहरू सफलतापूर्वक अध्यावधिक गरियो। - confirm: - button: निश्चित गर्ने - confirm_email: - heading: इमेल परिवर्तन भएको निश्चित गर्नुहोस् - press confirm button: इमेल निश्चित गर्नको लागि निश्चितमा क्लिक गर्नुहोस् । - button: निश्चित - success: तपाईंको इमेल निश्चित गर्नुहोस्, ग्राह्याताको लागि धन्यवाद! - failure: यो टोकन को साथम एक इमेल पहिले नै निश्चित गरिसकिएको छ। go_public: flash success: तपाईंका सबै सम्पादनहरू सार्वाजनिक छन् , तपाईं अब सम्पादन लायक हुनु भयो । diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 093bfc268..096d20313 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -39,6 +39,7 @@ # Author: MrLeopold # Author: Mvexel # Author: Optilete +# Author: Peb-kac # Author: Pje335 # Author: Robin van der Linde # Author: Robin van der Vliet @@ -169,19 +170,24 @@ nl: body: Tekst recipient: Ontvanger redaction: + title: Titel description: Beschrijving report: category: Selecteer een reden voor je melding details: Verschaf a.u.b. nog wat meer details over het probleem (vereist). user: + auth_provider: Authenticatiedienst + auth_uid: Authenticatie UID email: E-mail - new_email: 'Nieuw e-mailadres:' + email_confirmation: Emailbevestiging + new_email: Nieuw e-mailadres active: Actief display_name: Weergavenaam - description: Beschrijving - home_lat: 'Breedtegraad:' - home_lon: 'Lengtegraad:' - languages: Talen + description: Profielbeschrijving + home_lat: Breedtegraad + home_lon: Lengtegraad + languages: Voorkeurstalen + preferred_editor: Voorkeursprogramma voor kaartbewerking pass_crypt: Wachtwoord pass_crypt_confirmation: Wachtwoord bevestigen help: @@ -616,6 +622,7 @@ nl: clock: Klok college: Hogeschool community_centre: Buurtcentrum + conference_centre: Conferentiecentrum courthouse: Rechtbank crematorium: Crematorium dentist: Tandarts @@ -640,6 +647,7 @@ nl: kindergarten: Kleuterschool language_school: Taalschool library: Bibliotheek + loading_dock: Laadperron love_hotel: Discrete kamers marketplace: Marktplein monastery: Klooster @@ -662,6 +670,7 @@ nl: public_bath: Openbaar bad public_bookcase: Ruilboekenkast public_building: Openbaar gebouw + ranger_station: Boswachtershut recycling: Recyclingpunt restaurant: Restaurant school: School @@ -676,6 +685,7 @@ nl: theatre: Theater toilets: Toiletten townhall: Gemeentehuis + training: Trainingsfaciliteit university: Universiteit vehicle_inspection: Voertuiginspectie vending_machine: Automaat @@ -683,6 +693,7 @@ nl: village_hall: Gemeentehuis waste_basket: Prullenbak waste_disposal: Afval + waste_dump_site: Afvalstortplaats water_point: Tappunt weighbridge: Weegbrug "yes": Infrastructuur @@ -710,6 +721,7 @@ nl: chapel: Kapel church: Kerk civic: Openbaar gebouw + college: Schoolgebouw commercial: Commercieel gebouw construction: Gebouw in aanbouw detached: Alleenstaande woning @@ -727,6 +739,7 @@ nl: houseboat: Woonboot hut: Hut industrial: Industrieel gebouw + kindergarten: Kleuterschool gebouw manufacture: Productiegebouw office: Kantoorgebouw public: Openbaar gebouw @@ -764,6 +777,7 @@ nl: glaziery: Glazenzetter handicraft: Handwerk hvac: Verwarming/ventilatie/airco + metal_construction: Metaalbewerker painter: Schilder photographer: Fotograaf plumber: Loodgieter @@ -772,6 +786,7 @@ nl: shoemaker: Schoenmaker stonemason: Steenhouwer tailor: Kleermaker + window_construction: Raamconstructie winery: Wijnboer "yes": Ambachtswinkel emergency: @@ -909,6 +924,7 @@ nl: vineyard: Wijngaard "yes": Landgebruik leisure: + adult_gaming_centre: Gamingcentrum voor volwassenen amusement_arcade: Arcadehal bandstand: Muziekpaviljoen beach_resort: Badplaats @@ -1006,12 +1022,14 @@ nl: mountain_pass: "yes": Bergpas natural: + atoll: Atol bare_rock: Kale rotsen bay: Baai beach: Strand cape: Kaap cave_entrance: Grotingang cliff: Klif + coastline: Kustlijn crater: Krater dune: Duin fell: Fjell @@ -1029,6 +1047,7 @@ nl: moor: Veen mud: Modder peak: Top + peninsula: Schiereiland point: Punt reef: Rif ridge: Bergkam @@ -1065,6 +1084,7 @@ nl: it: ICT-kantoor lawyer: Advocaat logistics: Logistiek kantoor + newspaper: Krantenkantoor ngo: NGO-kantoor notary: Notariaat religion: Religieus kantoor @@ -1592,11 +1612,38 @@ nl: en klik op "Afmelden". unsubscribe_html: Om geen meldingen meer te krijgen over deze wijzigingset, gaat u naar %{url} en klikt u op "Afmelden". + confirmations: + confirm: + heading: Controleer uw e-mail + introduction_1: We hebben u een bevestiging per e-mail gestuurd. + introduction_2: Bevestig uw gebruiker door op de koppeling in de e-mail te klikken + en dan kunt u kaarten gaan maken. + press confirm button: Klik op de knop "Bevestigen" hieronder om uw gebruiker + te activeren. + button: Bevestigen + success: De account is geactiveerd. Dank u wel voor het registreren! + already active: Deze account is al bevestigd. + unknown token: De opgegeven bevestigingscode is verlopen of bestaat niet. + reconfirm_html: Als nodig, kunt u de bevestigingscode + opnieuw laten verzenden. + confirm_resend: + success_html: Er is ter bevestiging een e-mail verstuurd naar %{email} en als + u uw account hebt bevestigd, kunt u gaan mappen.

    Als u een spamfilter + gebruikt die per e-mail een bevestiging stuurt, zorg er dan voor dat u %{sender} + toestaat. Dit systeem stuurt geen antwoord op bevestigingsverzoeken. + failure: De gebruiker %{name} is niet gevonden. + confirm_email: + heading: Gewijzigd e-mailadres bevestigen + press confirm button: Klik op de knop "Bevestigen" hieronder om uw e-mailadres + te bevestigen. + button: Bevestigen + success: Uw e-mailadreswijziging is bevestigd. + failure: Er is al een e-mailadres bevestigd met dit token. + unknown_token: De opgegeven bevestigingscode is verlopen of bestaat niet. messages: inbox: title: Postvak IN my_inbox: Mijn Postvak IN - outbox: Postvak UIT messages: U hebt %{new_messages} en %{old_messages} new_messages: one: '%{count} nieuw bericht' @@ -1631,9 +1678,6 @@ nl: body: Er is geen bericht met dat ID. outbox: title: Postvak UIT - my_inbox_html: Mijn %{inbox_link} - inbox: Postvak IN - outbox: Postvak UIT messages: one: U hebt één verzonden bericht other: U hebt %{count} verzonden berichten @@ -1667,6 +1711,83 @@ nl: as_unread: Gemarkeerd als ongelezen destroy: destroyed: Het bericht is verwijderd + passwords: + lost_password: + title: Wachtwoord vergeten + heading: Wachtwoord vergeten? + email address: 'E-mailadres:' + new password button: Nieuw wachtwoord verzenden + help_text: Voer het e-mailadres in dat u hebt opgegeven bij uw registratie. + We sturen u dan een webkoppeling die u kunt gebruiken om uw wachtwoord opnieuw + in te stellen. + notice email on way: Spijtig om te horen dat u het vergeten bent, maar er is + een e-mail onderweg zodat u uw wachtwoord opnieuw kunt instellen. + notice email cannot find: Dat e-mailadres kon helaas niet gevonden worden. + reset_password: + title: Wachtwoord opnieuw instellen + heading: Wachtwoord voor %{user} opnieuw instellen + reset: Wachtwoord opnieuw instellen + flash changed: Uw wachtwoord is gewijzigd. + flash token bad: Het token kon niet gevonden worden. Controleer de URL. + sessions: + new: + title: Aanmelden + heading: Aanmelden + email or username: 'E-mailadres of gebruikersnaam:' + password: 'Wachtwoord:' + openid_html: '%{logo} OpenID:' + remember: 'Aanmeldgegevens onthouden:' + lost password link: Wachtwoord vergeten? + login_button: Aanmelden + register now: Nu inschrijven + with username: 'Hebt u al een account bij OpenStreetMap? Meld aan met uw gebruikersnaam + en wachtwoord:' + with external: 'U kunt ook gebruik maken van een derde partij om aan te melden:' + new to osm: Is OpenStreetMap nieuw voor u? + to make changes: Om wijzigingen in OpenStreetMap te maken, moet u een gebruiker + hebben. + create account minute: Maak een gebruiker aan. Dat is snel gebeurd. + no account: Hebt u geen account? + account not active: Uw gebruiker is helaas nog niet actief.
    Klik op de + koppeling in de bevestiging om deze te activeren of vraag + een nieuwe bevestiging per e-mail aan. + account is suspended: Uw gebruiker is automatisch opgeschort vanwege verdachte + activiteit.
    Neem contact op met de webmaster + als u deze handeling wilt bespreken. + auth failure: Met deze gegevens kunt u helaas niet aanmelden. + openid_logo_alt: Aanmelden met een OpenID + auth_providers: + openid: + title: Aanmelden met OpenID + alt: Aanmelden met een OpenID URL + google: + title: Aanmelden met Google + alt: Aanmelden met een Google OpenID + facebook: + title: Aanmelden met Facebook + alt: Aanmelden met een Facebookaccount + windowslive: + title: Aanmelden met Windows Live + alt: Aanmelden met een Windows Live-account + github: + title: Aanmelden met GitHub + alt: Aanmelden met een GitHub-account + wikipedia: + title: Aanmelden met Wikipedia + alt: Aanmelden met een Wikipedia account + yahoo: + title: Aanmelden met Yahoo + alt: Aanmelden met een Yahoo OpenID + wordpress: + title: Aanmelden met Wordpress + alt: Aanmelden met een Wordpress OpenID + aol: + title: Aanmelden met AOL + alt: Aanmelden met een AOL OpenID + destroy: + title: Afmelden + heading: Afmelden van OpenStreetMap + logout_button: Afmelden shared: markdown_help: title_html: Verwerkt met kramdown @@ -2085,23 +2206,6 @@ nl: bicycle_shop: Fietsenwinkel bicycle_parking: Fietsenstalling toilets: Toiletten - richtext_area: - edit: Bewerken - preview: Voorvertoning - markdown_help: - title_html: Verwerkt met Markdown - headings: Kopjes - heading: Kopje - subheading: Onderkop - unordered: Ongeordende lijst - ordered: Geordende lijst - first: Eerste item - second: Tweede item - link: Koppeling - text: Tekst - image: Afbeelding - alt: Alternatieve tekst - url: URL welcome: title: Welkom! introduction_html: Welkom bij OpenStreetMap, de open en te bewerken kaart van @@ -2219,7 +2323,6 @@ nl: more: meer trace_details: Trajectdetails weergeven view_map: Kaart bekijken - edit: bewerken edit_map: Kaart bewerken public: OPENBAAR identifiable: IDENTIFICEERBAAR @@ -2227,7 +2330,6 @@ nl: trackable: TRACEERBAAR by: door in: in - map: kaart index: public_traces: Openbare gps-trajecten my_traces: Mijn gps-trajecten @@ -2341,81 +2443,6 @@ nl: destroy: flash: De clientapplicatieregistratie is verwijderd users: - login: - title: Aanmelden - heading: Aanmelden - email or username: 'E-mailadres of gebruikersnaam:' - password: 'Wachtwoord:' - openid_html: '%{logo} OpenID:' - remember: 'Aanmeldgegevens onthouden:' - lost password link: Wachtwoord vergeten? - login_button: Aanmelden - register now: Nu inschrijven - with username: 'Hebt u al een account bij OpenStreetMap? Meld aan met uw gebruikersnaam - en wachtwoord:' - with external: 'U kunt ook gebruik maken van een derde partij om aan te melden:' - new to osm: Is OpenStreetMap nieuw voor u? - to make changes: Om wijzigingen in OpenStreetMap te maken, moet u een gebruiker - hebben. - create account minute: Maak een gebruiker aan. Dat is snel gebeurd. - no account: Hebt u geen account? - account not active: Uw gebruiker is helaas nog niet actief.
    Klik op de - koppeling in de bevestiging om deze te activeren of vraag - een nieuwe bevestiging per e-mail aan. - account is suspended: Uw gebruiker is automatisch opgeschort vanwege verdachte - activiteit.
    Neem contact op met de webmaster - als u deze handeling wilt bespreken. - auth failure: Met deze gegevens kunt u helaas niet aanmelden. - openid_logo_alt: Aanmelden met een OpenID - auth_providers: - openid: - title: Aanmelden met OpenID - alt: Aanmelden met een OpenID URL - google: - title: Aanmelden met Google - alt: Aanmelden met een Google OpenID - facebook: - title: Aanmelden met Facebook - alt: Aanmelden met een Facebookaccount - windowslive: - title: Aanmelden met Windows Live - alt: Aanmelden met een Windows Live-account - github: - title: Aanmelden met GitHub - alt: Aanmelden met een GitHub-account - wikipedia: - title: Aanmelden met Wikipedia - alt: Aanmelden met een Wikipedia account - yahoo: - title: Aanmelden met Yahoo - alt: Aanmelden met een Yahoo OpenID - wordpress: - title: Aanmelden met Wordpress - alt: Aanmelden met een Wordpress OpenID - aol: - title: Aanmelden met AOL - alt: Aanmelden met een AOL OpenID - logout: - title: Afmelden - heading: Afmelden van OpenStreetMap - logout_button: Afmelden - lost_password: - title: Wachtwoord vergeten - heading: Wachtwoord vergeten? - email address: 'E-mailadres:' - new password button: Nieuw wachtwoord verzenden - help_text: Voer het e-mailadres in dat u hebt opgegeven bij uw registratie. - We sturen u dan een webkoppeling die u kunt gebruiken om uw wachtwoord opnieuw - in te stellen. - notice email on way: Spijtig om te horen dat u het vergeten bent, maar er is - een e-mail onderweg zodat u uw wachtwoord opnieuw kunt instellen. - notice email cannot find: Dat e-mailadres kon helaas niet gevonden worden. - reset_password: - title: Wachtwoord opnieuw instellen - heading: Wachtwoord voor %{user} opnieuw instellen - reset: Wachtwoord opnieuw instellen - flash changed: Uw wachtwoord is gewijzigd. - flash token bad: Het token kon niet gevonden worden. Controleer de URL. new: title: Registreren no_auto_account_create: Helaas is het niet mogelijk om automatisch een gebruiker @@ -2607,33 +2634,6 @@ nl: flash update success confirm needed: De gebruikersinformatie is bijgewerkt. Controleer uw e-mail om uw nieuwe e-mailadres te bevestigen. flash update success: De gebruikersinformatie is bijgewerkt. - confirm: - heading: Controleer uw e-mail - introduction_1: We hebben u een bevestiging per e-mail gestuurd. - introduction_2: Bevestig uw gebruiker door op de koppeling in de e-mail te klikken - en dan kunt u kaarten gaan maken. - press confirm button: Klik op de knop "Bevestigen" hieronder om uw gebruiker - te activeren. - button: Bevestigen - success: De account is geactiveerd. Dank u wel voor het registreren! - already active: Deze account is al bevestigd. - unknown token: De opgegeven bevestigingscode is verlopen of bestaat niet. - reconfirm_html: Als nodig, kunt u de bevestigingscode - opnieuw laten verzenden. - confirm_resend: - success_html: Er is ter bevestiging een e-mail verstuurd naar %{email} en als - u uw account hebt bevestigd, kunt u gaan mappen.

    Als u een spamfilter - gebruikt die per e-mail een bevestiging stuurt, zorg er dan voor dat u %{sender} - toestaat. Dit systeem stuurt geen antwoord op bevestigingsverzoeken. - failure: De gebruiker %{name} is niet gevonden. - confirm_email: - heading: Gewijzigd e-mailadres bevestigen - press confirm button: Klik op de knop "Bevestigen" hieronder om uw e-mailadres - te bevestigen. - button: Bevestigen - success: Uw e-mailadreswijziging is bevestigd. - failure: Er is al een e-mailadres bevestigd met dit token. - unknown_token: De opgegeven bevestigingscode is verlopen of bestaat niet. set_home: flash success: De thuislocatie is opgeslagen go_public: diff --git a/config/locales/nn.yml b/config/locales/nn.yml index 30ca2b9d1..370c2d47c 100644 --- a/config/locales/nn.yml +++ b/config/locales/nn.yml @@ -739,6 +739,7 @@ nn: cape: Nes cave_entrance: Holeinngang cliff: Klippe + coastline: Kystlinje crater: Krater dune: Sanddyne fell: Fjellskrent @@ -1070,11 +1071,32 @@ nn: commented: partial_changeset_with_comment: med kommentaren '%{changeset_comment}' partial_changeset_without_comment: utan kommentar + confirmations: + confirm: + heading: Sjekk e-posten din! + introduction_1: Vi har sendt deg ei e-poststadfesting. + press confirm button: Klikk bekreftknappen nedanfor for å aktivare kontoen din. + button: Stadfest + success: Kontoen din er stadfesta - takk for at du registrerte deg. + already active: Denne kontoen har allereie stadfesta. + unknown token: Den koda ser ikkje ut til å eksistere. + confirm_resend: + success_html: Me har sendt ein ny bekreftelsesmelding til %{email} og så snart + du stadfestar kontoen din kan du byrje å lage kart.

    Om du brukar + eit antispamsystem som sender bekreftelsesforspørsler, kontrollar at du har + kvitelista %{sender} sidan me ikkje kan svar på bekreftelsesforespørsler. + failure: Fann ikkje brukaren %{name}. + confirm_email: + heading: Stadfest endring av e-postadresse + press confirm button: Klikk bekreftknappen nedanfor for å stadfeste den nye + e-postadressa. + button: Stadfest + success: E-postadressen din er stadfesta - takk for at du registrerte deg. + failure: Ei e-postadresse er allereie stadfesta med denne nøkkelen. messages: inbox: title: Innboks my_inbox: Min innboks - outbox: utboks messages: Du har %{new_messages} og %{old_messages} new_messages: one: '%{count} ny melding' @@ -1109,9 +1131,6 @@ nn: body: Det er inga melding med den ID-en. outbox: title: Utboks - my_inbox_html: Min %{inbox_link} - inbox: innboks - outbox: utboks messages: one: Du har %{count} send melding other: Du har %{count} sende meldingar @@ -1143,6 +1162,81 @@ nn: as_unread: Melding markert som ulese destroy: destroyed: Melding sletta + passwords: + lost_password: + title: Gløymt passord + heading: Gløymt passord? + email address: 'E-postadresse:' + new password button: Nullstill passord + help_text: Skriv inn e-postadressa du brukte for å registrere deg, og me vil + sende deg ei lenkje som du kan bruke til å nullstille passordet ditt. + notice email on way: Synd at du mista det, men ein e-post er på veg slik at + du kan tilbakestille det snart. + notice email cannot find: Klarte ikkje finne den e-postadressa. Beklagar. + reset_password: + title: Nullstill passord + heading: Nullstill passord for %{user} + reset: Nullstill passord + flash changed: Passordet ditt er endra. + flash token bad: Kunne ikkje finne den nøkkelen. Sjekke URLen kanskje? + sessions: + new: + title: Logg inn + heading: Logg inn + email or username: 'E-postadresse eller brukarnamn:' + password: 'Passord:' + openid_html: '%{logo} OpenID:' + remember: 'Hugs meg:' + lost password link: Mista passordet ditt? + login_button: Logg inn + register now: Registrer deg no + with username: 'Har du allereie ein OpenStreetMap-konto? Logg inn med brukernavnet + og passordet ditt:' + with external: 'Alternativt kan du bruke ein tredjepart til å logge inn:' + new to osm: Ny på OpenStreetMap? + to make changes: For å gjere endringar på OpenStreetMap-data, må du ha ein konto. + create account minute: Opprett ein konto. Det tek berre eitt minutt. + no account: Har du ingen brukarkonto? + account not active: Beklagar, kontoen din er ikkje aktivert enno.
    Bruk + lenkja i kontobekreftelseseposten for å aktivare kontoen din, eller be + om ein ny bekreftelsesepost. + account is suspended: Beklagar, kontoen din er deaktivert på grunn av mistenkjeleg + aktivitet.
    Vennligst kontakt webmaster viss + du ynskjer å diskutere dette. + auth failure: Beklagar, kunne ikkje logge inn med den informasjonen + openid_logo_alt: Logg inn med ein OpenID + auth_providers: + openid: + title: Logg inn med OpenID + alt: Logg inn med ein OpenID-URL + google: + title: Logg inn med Google + alt: Logg inn med ein Google OpenID + facebook: + title: Logg inn med Facebook + alt: Logg inn med ein Facebook-konto + windowslive: + title: Logg inn med Windows Live + alt: Logg inn med ein Windows Live-konto + github: + title: Logg inn med GitHub + alt: Logg inn med ein GitHub-konto + wikipedia: + title: Logg inn med Wikipedia + alt: Logg inn med ein Wikipedia-konto + yahoo: + title: Logg inn med Yahoo + alt: Logg inn med ein Yahoo OpenID + wordpress: + title: Logg inn med Wordpress + alt: Logg inn med ein Wordpress OpenID + aol: + title: Logg inn med AOL + alt: Logg inn med ein AOL OpenID + destroy: + title: Logg ut + heading: Logg ut frå OpenStreetMap + logout_button: Logg ut site: about: next: Neste @@ -1424,23 +1518,6 @@ nn: bicycle_shop: Sykkelbutikk bicycle_parking: Sykkelparkering toilets: Toalett - richtext_area: - edit: Endre - preview: Førehandsvising - markdown_help: - title_html: Tolka med Markdown - headings: Overskrifter - heading: Overskrifter - subheading: Underoverskrifter - unordered: Usortert liste - ordered: Sortert liste - first: Første punkt - second: Andre punkt - link: Lenkje - text: Tekst - image: Bilete - alt: Alternativ tekst - url: URL welcome: title: Velkomen! whats_on_the_map: @@ -1510,7 +1587,6 @@ nn: more: meir trace_details: Vis detaljar for spor view_map: Vis kart - edit: rediger edit_map: Rediger kart public: OFFENTLEG identifiable: IDENTIFISERBAR @@ -1518,7 +1594,6 @@ nn: trackable: SPORBAR by: av in: i - map: kart index: public_traces: Offentlege GPS-spor public_traces_from: Offentlege GPS-spor frå %{user} @@ -1619,79 +1694,6 @@ nn: destroy: flash: Øydelagt klientapplikasjonsregistreringen users: - login: - title: Logg inn - heading: Logg inn - email or username: 'E-postadresse eller brukarnamn:' - password: 'Passord:' - openid_html: '%{logo} OpenID:' - remember: 'Hugs meg:' - lost password link: Mista passordet ditt? - login_button: Logg inn - register now: Registrer deg no - with username: 'Har du allereie ein OpenStreetMap-konto? Logg inn med brukernavnet - og passordet ditt:' - with external: 'Alternativt kan du bruke ein tredjepart til å logge inn:' - new to osm: Ny på OpenStreetMap? - to make changes: For å gjere endringar på OpenStreetMap-data, må du ha ein konto. - create account minute: Opprett ein konto. Det tek berre eitt minutt. - no account: Har du ingen brukarkonto? - account not active: Beklagar, kontoen din er ikkje aktivert enno.
    Bruk - lenkja i kontobekreftelseseposten for å aktivare kontoen din, eller be - om ein ny bekreftelsesepost. - account is suspended: Beklagar, kontoen din er deaktivert på grunn av mistenkjeleg - aktivitet.
    Vennligst kontakt webmaster viss - du ynskjer å diskutere dette. - auth failure: Beklagar, kunne ikkje logge inn med den informasjonen - openid_logo_alt: Logg inn med ein OpenID - auth_providers: - openid: - title: Logg inn med OpenID - alt: Logg inn med ein OpenID-URL - google: - title: Logg inn med Google - alt: Logg inn med ein Google OpenID - facebook: - title: Logg inn med Facebook - alt: Logg inn med ein Facebook-konto - windowslive: - title: Logg inn med Windows Live - alt: Logg inn med ein Windows Live-konto - github: - title: Logg inn med GitHub - alt: Logg inn med ein GitHub-konto - wikipedia: - title: Logg inn med Wikipedia - alt: Logg inn med ein Wikipedia-konto - yahoo: - title: Logg inn med Yahoo - alt: Logg inn med ein Yahoo OpenID - wordpress: - title: Logg inn med Wordpress - alt: Logg inn med ein Wordpress OpenID - aol: - title: Logg inn med AOL - alt: Logg inn med ein AOL OpenID - logout: - title: Logg ut - heading: Logg ut frå OpenStreetMap - logout_button: Logg ut - lost_password: - title: Gløymt passord - heading: Gløymt passord? - email address: 'E-postadresse:' - new password button: Nullstill passord - help_text: Skriv inn e-postadressa du brukte for å registrere deg, og me vil - sende deg ei lenkje som du kan bruke til å nullstille passordet ditt. - notice email on way: Synd at du mista det, men ein e-post er på veg slik at - du kan tilbakestille det snart. - notice email cannot find: Klarte ikkje finne den e-postadressa. Beklagar. - reset_password: - title: Nullstill passord - heading: Nullstill passord for %{user} - reset: Nullstill passord - flash changed: Passordet ditt er endra. - flash token bad: Kunne ikkje finne den nøkkelen. Sjekke URLen kanskje? new: title: Registrer deg no_auto_account_create: Beklagelegvis kan me for augneblunken ikkje opprette @@ -1860,27 +1862,6 @@ nn: flash update success confirm needed: Brukerinformasjon oppdatert. Sjekk eposten din for å stadfeste din epostadresse. flash update success: Brukerinformasjon oppdatert. - confirm: - heading: Sjekk e-posten din! - introduction_1: Vi har sendt deg ei e-poststadfesting. - press confirm button: Klikk bekreftknappen nedanfor for å aktivare kontoen din. - button: Stadfest - success: Kontoen din er stadfesta - takk for at du registrerte deg. - already active: Denne kontoen har allereie stadfesta. - unknown token: Den koda ser ikkje ut til å eksistere. - confirm_resend: - success_html: Me har sendt ein ny bekreftelsesmelding til %{email} og så snart - du stadfestar kontoen din kan du byrje å lage kart.

    Om du brukar - eit antispamsystem som sender bekreftelsesforspørsler, kontrollar at du har - kvitelista %{sender} sidan me ikkje kan svar på bekreftelsesforespørsler. - failure: Fann ikkje brukaren %{name}. - confirm_email: - heading: Stadfest endring av e-postadresse - press confirm button: Klikk bekreftknappen nedanfor for å stadfeste den nye - e-postadressa. - button: Stadfest - success: E-postadressen din er stadfesta - takk for at du registrerte deg. - failure: Ei e-postadresse er allereie stadfesta med denne nøkkelen. set_home: flash success: Heimelokasjon lagra go_public: diff --git a/config/locales/nqo.yml b/config/locales/nqo.yml index fbf58b528..b1bd0324b 100644 --- a/config/locales/nqo.yml +++ b/config/locales/nqo.yml @@ -116,16 +116,24 @@ nqo: title: ߝߐߡߊ body: ߝߊ߬ߘߌ recipient: ߟߊ߬ߛߐ߬ߘߐ߲߬ߕߊ + redaction: + title: ߞߎ߲߬ߕߐ߮ + description: ߕߐ߯ߛߓߍߟߌ report: category: ߞߎ߲߭ ߘߏ߫ ߝߴߌ ߟߊ߫ ߘߊ߲߬ߕߍ߰ߟߌ ߟߊ߫ details: ߝߊߙߊ߲ߝߊ߯ߛߟߌ߫ ߜߘߍ߫ ߟߎ߫ ߡߊߛߐ߫ ߞߊ߬ ߓߍ߲߬ ߝߙߋߞߋ ߡߊ߬ (ߡߊߢߌ߬ߣߌ߲߬ߞߊ߬ߣߍ߲߫) user: email: ߢ:ߞߏ߲ߘߏ + email_confirmation: ߢ:ߞߏ߲ߘߏ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ + new_email: ߢߎߡߍߙߋ߲߫ ߞߏ߲ߘߏ߫ ߞߎߘߊ display_name: ߕߐ߮ ߟߊߓߊ߯ߙߊ߫ description: ߕߐ߯ߛߓߍߟߌ - languages: ߞߊ߲ ߠߎ߬ + languages: ߞߊ߲߫ ߝߌ߬ߛߊ߬ߡߊ߲߬ߕߋ ߟߎ߬ pass_crypt: ߕߊ߬ߡߌ߲߬ߞߊ߲ pass_crypt_confirmation: ߕߊ߬ߡߌ߲߬ߞߊ߲ ߠߊߛߙߋߦߊ߫ + help: + user: + new_email: (ߊ߬ ߞߊ߫ ߟߊߓߊ߯ߙߊ߫ ߖߊ߬ߡߊ ߢߊߞߘߐ߫ ߡߎ߰ߡߍ߫) datetime: distance_in_words_ago: half_a_minute: ߡߌ߬ߛߍ߲߬ ߕߟߊ߫ ߞߘߐ߫ @@ -456,7 +464,10 @@ nqo: pharmacy: ߓߊߛߌߓߏ߲ place_of_worship: ߟߐ߲ߠߌ߲ߦߊ ߘߌ߲߬ߞߌߙߊ police: ߕߐ߲ߓߟߏߡߊ + post_box: ߗߋߓߏ߲ ߞߏ߲߬ߘߏ + post_office: ߗߋߓߏ߲ ߛߓߍߘߊ prison: ߥߛߎߓߏ߲ + pub: ߟߊߥߊ߲߬ߞߊ߫ public_bath: ߝߘߏ߬ߓߊ߬ ߞߏ߬ߦߙߐ public_bookcase: ߝߘߏ߬ߓߊ߬ ߛߓߍߘߊ public_building: ߝߘߏ߬ߓߊ߬ ߓߏ߲ @@ -679,6 +690,7 @@ nqo: level6: ߖߡߊ߬ߣߊ ߓߐߕߏ߲ level8: ߛߏ ߓߐߕߏ߲ level9: ߕߏߘߊ ߓߐߕߏ߲ + level11: ߛߌ߰ߢߐ߲߰ߦߊ߬ ߦߙߐ ߓߐߕߏ߲ types: towns: ߛߏ places: ߘߌ߲߬ߞߌߙߊ @@ -693,6 +705,8 @@ nqo: search_guidance: ߓߐ߲ߘߊ ߘߏ߫ ߢߌߣߌ߲߫ user_not_found: ߟߊ߬ߓߊ߰ߙߊ߬ߟߊ ߏ߬ ߕߴߦߋ߲߬ issues_not_found: ߒ߬ߒ߫ ߓߐ߲ߘߊ߫ ߛߎ߮ ߏ߬ ߡߊ߫ ߛߐ߬ߘߐ߲߫ + last_updated: ߟߏ߲ߘߐߦߊߟߌ ߞߐ߯ߟߕߊ + last_updated_time_html: %{time} reported_item: ߝߛߌ߬ ߟߊߞߏߝߐߣߍ߲ states: ignored: ߊ߬ ߡߊߓߌ߬ߟߊ߬ߣߍ߲߫ @@ -878,11 +892,39 @@ nqo: commented: partial_changeset_with_comment: ߡߙߌߣߊ߲ ߘߌ߫ %{changeset_comment}ߴ partial_changeset_without_comment: ߞߵߊ߬ ߕߘߍ߬ ߡߙߌߣߊ߲߫ ߕߍ߫ + confirmations: + confirm: + heading: ߌ ߟߊ߫ ߢ:ߞߏ߲ߘߏ ߡߊߝߟߍ߫߹ + introduction_1: ߊ߲ ߓߘߊ߫ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߗߋߛߓߍ ߗߋ߫ ߌ ߡߊ߬. + introduction_2: ߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ ߟߊߛߙߋߦߊ߫ ߛߘߌ߬ߜߋ߲ ߛߐ߲߬ߞߌ߲ ߠߊ߫ ߢߎߡߍߙߋ߲ߞߏ߲ߘߏ ߞߣߐ߫߸ + ߏ߬ ߓߊ߯ ߞߍ߫ ߌ ߘߌ߫ ߛߋ߫ ߔߊ߬ߔߘߊ߬ߦߊ (ߡߊߔߌ߲) ߘߊߡߌ߬ߣߊ߫ ߟߊ߫. + press confirm button: ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߞߘߎ ߛߐ߲߬ߞߌ߲߫ ߘߎ߰ߟߊ߫ ߞߵߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ ߟߊߞߎߣߎ߲߫. + button: ߊ߬ ߟߊߛߙߋߦߊ߫ + success: ߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ ߓߘߊ߫ ߟߊߛߙߋߦߊ߫߸ ߌ ߣߌ߫ ߗߋ߫ ߌ ߜߊ߲߬ߞߎ߲ ߠߊ߫߹ + already active: ߖߊ߬ߕߋ߬ߘߊ ߣߌ߲߬ ߠߊߛߙߋߦߊߣߍ߲߫ ߞߘߐ ߟߋ߬ ߦߋ߫. + unknown token: ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߘߏߞߊ߲ ߏ߬ ߛߕߊ ߓߘߊ߫ ߝߊ߫ ߥߟߴߊ߬ ߕߴߦߋ߲߬. + reconfirm_html: ߣߴߌ ߞߍ߫ ߘߴߊ߬ ߝߍ߬ ߊ߲ ߧߋ߫ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߗߋߛߓߍ ߗߋ߫ ߕߎ߲߯ߣߌ߲߫߸ ߦߊ߲߬ ߛߐ߲߬ߞߌ߲߫ + confirm_resend: + success_html: ߊ߲ ߓߘߊ߫ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߦߟߌߣߐ ߗߋ߫ %{email} ߡߊ߬ ߣߴߌ ߞߵߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ + ߟߊߛߙߋߦߊ߫ ߌߞߘߐ߫ ߣߌ߲߬߸ ߌ ߘߌ߫ ߛߋ߫ ߡߊߔߌ߲ (ߔߊ߬ߔߘߊ߬ ߟߊߘߊ߲) ߘߊߡߌ߬ߣߊ߫ ߟߊ߫.
    ߣߴߌ + ߞߊ߬ ߊ߲ߕߌߛߑߔߊߡ ߞߊ߲ߞߋ ߟߊߓߊ߯ߙߊ߫ ߏ߬ ߡߍ߲ ߦߋ߫ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ ߡߊߢߌߣߌ߲ߠߌ߲ ߗߋ߫ ߟߊ߫߸ ߌ + ߦߋ߫ ߘߍ߲߬ߞߣߍ߬ߦߊ߫ ߡߎߣߎ߲߬ ߖߊ߰ߣߌ߲߫ ߛߙߍߘߍ߫ ߘߐߞߏߟߏ߲ %{sender} ߞߏ ߘߐ߫ ߓߊߏ߬ ߊ߲ ߠߎ߬ + ߕߍߣߊ߬ ߛߋ߫ ߟߊ߫ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߡߊߢߌߣߌ߲ߠߌ߲߫ ߛߌ߫ ߖߋ߬ߓߌ߬ ߟߊ߫. + failure: ߟߊ߬ߓߊ߰ߙߊ߬ߟߊ %{name} ߡߊ߫ ߛߐ߬ߘߐ߲߫. + confirm_email: + heading: ߢߎߡߍߙߋ߲ߞߏ߲ߘߏ ߛߊ߲߬ߓߊ߬ߕߐ߮ ߡߊߝߊ߬ߟߋ߲߬ߠߌ߲ ߠߊߛߙߋߦߊ߫ + press confirm button: ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߞߘߎ ߘߌ߯ ߘߎ߰ߟߊ ߘߐ߫ ߞߵߌ ߟߊ߫ ߢߎߡߍߙߋ߲ߞߏ߲ߘߏ߫ + ߞߎߘߊ ߟߊߛߙߋߦߊ߫. + button: ߊ߬ ߟߊߛߙߋߦߊ߫ + success: ߌ ߟߊ߫ ߢߎߡߍߙߋ߲ߞߏ߲ߘߏ߫ ߞߎߘߊ ߡߊߝߊ߬ߟߋ߲߬ߠߌ߲ ߓߘߊ߫ ߟߊߛߙߋߦߊ߫߹ + failure: ߢ:ߞߏ߲ߘߏ ߘߏ߫ ߓߘߊ߫ ߟߊߛߙߋߦߊ߫ ߖߐߟߐ߲ߞߐ (ߥߏߘߌߜߊߠߊ߲) ߣߌ߲߬ ߠߊ߫ ߞߘߐ߬ߡߊ߲߫. + unknown_token: ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߘߏߞߊ߲ ߣߌ߲߬ ߛߕߊ ߓߘߊ߫ ߝߊ߫ ߥߟߴߊ߬ ߕߴߦߋ߲߬. messages: inbox: title: ߗߋߛߓߍ߫ ߟߊߣߊ߬ߣߍ߲ my_inbox: ߒ ߠߊ߫ ߞߏ߲߬ߘߏ ߞߣߐߟߊ - outbox: ߞߐߞߊ߲߫ ߞߏ߲ߘߏ + my_outbox: ߒ ߠߊ߫ ߗߋߛߓߍ߫ ߗߋߣߍ߲ messages: '%{new_messages} ߟߎ߬ ߣߌ߫ %{old_messages} ߠߎ߬ ߦߴߌ ߓߟߏ߫' from: ߞߊ߬ ߝߘߊ߫ subject: ߝߐߡߊ @@ -911,8 +953,8 @@ nqo: body: ߤߊߞߍ߬ߕߏ߫߸ ߗߋߛߓߍ߫ ߛߌ߫ ߕߍ߫ ߛߊ߲߬ߓߊ߬ߕߐ߮ ߏ߬ ߟߊ߫. outbox: title: ߗߋߟߌ߫ ߞߏ߲ߘߏ - my_inbox_html: ߒ ߠߊ߫ %{inbox_link} - outbox: ߗߋߟߌ߫ ߞߏ߲ߘߏ + my_inbox: ߒ ߠߊ߫ ߗߋߛߓߍ߫ ߛߐ߬ߡߐ߲߲߬ߣߍ߲ + my_outbox: ߒ ߠߊ߫ ߗߋߛߓߍ߫ ߗߋߣߍ߲ to: ߞߊ߬ ߕߊ߯ subject: ߝߐߡߊ date: ߕߎ߬ߡߊ߬ߘߊ @@ -943,8 +985,66 @@ nqo: as_unread: ߗߋߛߓߍ ߓߘߊ߫ ߣߐ߬ߣߐ߬ ߞߊ߬ߙߊ߲߬ߓߊߟߌ ߘߌ߫ destroy: destroyed: ߗߋߛߓߍ ߓߘߊ߫ ߖߏ߬ߛߌ߫ + sessions: + new: + title: ߌ ߜߊ߲߬ߞߎ߲߫ + heading: ߌ ߜߊ߲߬ߞߎ߲߫ + email or username: 'ߢ:ߞߏ߲ߘߏ ߛߊ߲߬ߓߊ߬ߕߐ߮ ߥߟߊ߫ ߟߊ߬ߓߊ߰ߙߊ߬ߟߌ߬ ߕߐ߮:' + password: 'ߕߊ߬ߡߌ߲߬ߞߊ߲:' + openid_html: '%{logo} ߘߊߦߟߍߟߌ߫ ID:' + remember: ߒ ߖߊ߲߭ߓߌ߬ߟߊ߬ + lost password link: ߌ ߓߘߊ߫ ߢߌ߬ߣߊ߬ ߌ ߟߊ߫ ߕߊ߬ߡߌ߲߬ߞߊ߲ ߠߊ߫؟ + login_button: ߌ ߜߊ߲߬ߞߎ߲߫ + register now: ߌ ߕߐ߮ ߛߓߍ߫ ߡߎ߬ߕߎ߲߫ + with username: 'ߓߊ߬ ߏߔߌ߲ߛߑߕߙߌߕߑߡߊߔ ߖߊ߬ߕߋ߬ߘߊ ߘߏ߫ ߦߴߌ ߓߟߏ߫ ߟߋ߬؟ ߒ߬ߓߊ߬ ߌ ߜߊ߲߬ߞߎ߲߬ + ߌ ߟߊ߫ ߟߊ߬ߓߊ߰ߙߊ߬ߟߌ߬ ߕߐ߮ ߟߴߊ߬ ߣߴߌ ߟߊ߫ ߕߊ߬ߡߌ߲߬ߞߊ߲:' + new to osm: ߌ ߞߎߘߊ ߟߋ߬ ߦߋ߫ ߏߔߌ߲ߛߑߕߙߌߕߑߡߊߔ ߞߊ߲߬؟ + to make changes: ߖߐ߲߬ߛߊ߫ ߞߊ߬ ߏߔߌ߲ߛߑߕߙߌߕߑߡߊߔ ߟߐ߲ߕߊ ߟߎ߫ ߡߝߊ߬ߟߋ߲߬ߠߌ߲߸ ߝߏ߫ ߖߊ߬ߕߋ߬ߘߊ + ߘߏ߫ ߦߋ߫ ߞߴߌ ߓߟߏ߫. + create account minute: ߖߊ߬ߕߋ߬ߘߊ ߘߏ߫ ߛߌ߲ߘߌ߫. ߊ߬ ߦߋ߫ ߓߍ߲߬ ߠߊ߫ ߡߌ߬ߛߍ߲߬ ߞߋߟߋ߲߫ ߠߋ߬ + ߡߊ߬. + no account: ߖߊ߬ߕߋ߬ߘߊ߬ ߕߴߌ ߓߟߏ߫ ߓߊ߬؟ + account not active: ߤߊߞߍ߬ߕߏ߫߸ ߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ ߡߊ߫ ߓߌ߬ߟߵߊ߬ ߟߊ߫ ߡߎߣߎ߲߬. ߛߘߌ߬ߜߋ߲ + ߡߍ߲ ߦߋ߫ ߖߊ߬ߕߋ߬ߘߊ ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߢ:ߞߏ߲ߘߏ ߞߣߐ߫߸ ߏ߬ ߟߊߓߊ߯ߙߊ߫ ߖߊ߰ߣߌ߲߫ ߞߵߌ ߟߊ߫ ߖߊ߬ߕߋ߬ߘߊ + ߟߊߞߎߣߎ߲߫߸ ߥߟߊ߫ %{reconfirm}ߟߊ߬ߛߙߋ߬ߦߊ߬ߟߌ߬ ߗߋߛߓߍ ߡߊߢߌ߬ߣߌ߲߬ߞߊ߫ + auth failure: ߤߊߞߍ߬ߕߏ߫߸ ߌ ߕߴߛߋ߫ ߌ ߜߊ߲߬ߞߎ߲߬ ߠߊ߫ ߝߊߙߊ߲ߝߊ߯ߛߌ ߏ߬ ߟߐ߬ߟߊ߫. + openid_logo_alt: ߌ ߜߊ߲߬ߞߎ߲߬ ߏߔߌ߲ ID ߟߊ߫ + auth_providers: + openid: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߏߔߌ߲ ID ߘߌ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߏߔߌ߲ ID URL ߟߊ߫ + google: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߜ߭ߎߜ߭ߏߟ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߜ߭ߎߜ߭ߏߟ ߏߔߌ߲ ID ߟߊ߫ + facebook: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߝߋߛߑߓߎߞ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߝߋߛߑߓߎߞ ߖߊ߬ߕߋ߬ߘߊ ߘߏ߫ ߟߊ߫ + windowslive: + title: ߌ ߜ߭ߊ߲߬ߞߎ߲߫ ߥߌ߲ߘߏߥߛ ߟߊߌߝ߭ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߥߌ߲ߘߏߥߛ ߟߊߌߝ߭ ߖߊ߬ߕߋ߬ߘߊ ߟߊ߫ + github: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߜ߭ߌߕߑߤߐߓ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߜ߭ߌߕߑߤߐߓ ߖߊ߬ߕߋ߬ߘߊ ߟߊ߫ + wikipedia: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߥߞߌߔߋߘߌߦߊ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߥߞߌߔߋߘߌߦߊ ߖߊ߬ߕߋ߬ߘߊ ߟߊ߫ + yahoo: + title: ߌ ߜ߭ߊ߲߬ߞߎ߲߫ ߦߊ߬ߤߎ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߦߊ߬ߤߎ ߏߔߌ߲ ID ߟߊ߫ + wordpress: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߥߐߘߑߔߙߍߛ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߥߐߘߑߔߙߍߛ ߏߔߌ߲ ID ߟߊ߫ + aol: + title: ߌ ߜߊ߲߬ߞߎ߲߫ ߊߏߍߟ ߟߊ߫ + alt: ߌ ߜߊ߲߬ߞߎ߲߫ ߊߏߍߟ ߏߔߌ߲ ID ߟߊ߫ + destroy: + title: ߌ ߜߊ߲߬ߞߎ߲߬ߣߍ߲ ߓߐ߫ + heading: ߌ ߜߊ߲߬ߞߎ߲߬ߣߍ߲ ߓߐ߫ ߏߔߌ߲ߛߑߕߙߌߕߑߡߊߔ ߟߊ߫ + logout_button: ߌ ߜߊ߲߬ߞߎ߲߬ߣߍ߲ ߓߐ߫ shared: markdown_help: + title_html: ߊ߬ ߞߛߍ߬ߞߛߍ߫ ߞߙߊߡߑߘߐߥ + ߟߊ߫ headings: ߞߎ߲߬ߕߐ߮ heading: ߞߎ߲߬ߕߐ߮ subheading: ߞߎ߲߬ߕߐ߰ߘߎ߯ߟߊ @@ -1085,38 +1185,54 @@ nqo: bicycle_shop: ߣߍ߰ߛߏ߬ ߝߎ߲ߞߎ߲ bicycle_parking: ߣߍ߰ߛߏ߬ ߟߐ߬ߘߊ߮ toilets: ߢߍ߲߮ - richtext_area: - edit: ߊ߬ ߡߊߦߟߍ߬ߡߊ߲߫ - preview: ߊ߬ ߘߐߜߍ߫ ߡߎߣߎ߲߬ - markdown_help: - title_html: ߊ߬ ߟߊߦߟߍ߬ߣߍ߲߬ ߦߋ߫ kramdown - ߟߋ߬ ߟߊ߫ - headings: ߞߎ߲߬ߕߐ߮ - heading: ߞߎ߲߬ߕߐ߮ - subheading: ߞߎ߲߬ߕߐ߰ߘߎ߯ߟߊ - unordered: ߛߙߍߘߍ߫ ߡߊߞߟߌߓߊߟߌ - ordered: ߛߙߍߘߍ߫ ߡߊߞߟߌߣߍ߲ - first: ߝߛߌ߬ ߝߟߐ - second: ߝߛߌ߬ ߝߌߟߊߣߊ߲ - link: ߛߘߌ߬ߜߋ߲ - text: ߞߟߏߘߋ߲ - image: ߖߌ߬ߦߊ߬ߓߍ - url: URL welcome: title: ߊߟߎ߫ ߣߌ߫ ߛߣߍ߫߹ whats_on_the_map: title: ߡߎ߲߬ ߠߋ߬ ߦߋ߫ ߡߊߔ ߞߊ߲߬ + questions: + title: ߢߌ߬ߣߌ߲߬ߞߊ߬ߟߌ߬ ߛߌ߫؟ start_mapping: ߔߊ߬ߔߘߊ߬ߦߊ߬ߟߌ ߘߊߡߌ߬ߣߊ߫ add_a_note: title: ߡߊ߬ߦߟߍ߬ߡߊ߲߬ߠߌ߲ ߕߎ߬ߡߊ߬ ߕߴߦߋ߲߬؟ ߦߟߌߣߐ ߘߏ߫ ߝߙߊ߬߹ traces: new: + upload_trace: GPS ߜߋ߬ߙߋ ߟߊߞߎߘߦߊ߫ + visibility_help: ߣߌ߲߬ ߞߘߐ ߦߋ߫ ߡߎ߲߬ ߘߌ߫؟ + visibility_help_url: https://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces help: ߘߍ߬ߡߍ߲߬ߠߌ߲ help_url: https://wiki.openstreetmap.org/ߥߞߌ/ߟߊ߬ߦߟߍ߬ߟߌ + create: + upload_trace: GPS ߜߋ߬ߙߋ ߟߊߞߎߘߦߊ߫ + edit: + cancel: ߊ߬ ߘߐߛߊ߬ + title: ߜߋ߬ߙߋ ߡߊߦߟߍ߬ߡߊ߲߬ߠߌ߲ %{name} + heading: ߜߋ߬ߙߋ ߡߊߦߟߍ߬ߡߊ߲߬ߠߌ߲ %{name} + visibility_help: ߣߌ߲߬ ߞߘߐ ߦߋ߫ ߡߎ߲߬ ߘߌ߫؟ + update: + updated: ߜߋ߬ߙߋ ߓߘߊ߫ ߟߊߞߎߘߦߊ߫ + trace_optionals: + tags: ߘߎ߲ߛߓߍ ߟߎ߬ show: + title: ߜߋ߬ߙߋ ߦߋߟߌ %{name} + heading: ߜߋ߬ߙߋ ߦߋߟߌ %{name} + filename: ߞߐߕߐ߮ ߕߐ߮ + download: ߟߊ߬ߖߌ߰ߒ߬ߞߎ߲߬ߠߌ߲ + uploaded: 'ߛߊ߬ߦߌ߬ߣߍ߲߫:' + start_coordinates: ߘߏ߲߬ߖߟߎ߬ߡߊ߬ߟߌ ߘߊߡߌ߬ߣߊ߫ + coordinates_html: '%{latitude}; %{longitude}' map: ߡߊߔ edit: ߊ߬ ߡߊߦߟߍ߬ߡߊ߲߬ owner: 'ߊ߬ ߕߌ߱:' description: 'ߞߊ߲߬ߛߓߍߟߌ:' tags: 'ߘߎ߲ߛߓߍ ߟߎ߬:' + none: ߒ߬ߒ߫ + edit_trace: ߜߋ߬ߙߋ ߣߌ߲߬ ߡߊߦߟߍ߬ߡߊ߲߬ + delete_trace: ߜߋ߬ߙߋ ߣߌ߲߬ ߖߏ߰ߛߌ߫ + trace_not_found: ߜߋ߬ߙߋ ߡߊ߫ ߛߐ߬ߘߐ߲߫߹ + visibility: 'ߦߋߟߌ:' + confirm_delete: ߞߊ߬ ߜߋ߬ߙߋ ߣߌ߲߬ ߖߏ߰ߛߌ߫؟ + trace_paging_nav: + showing_page: ߞߐߜߍ %{page} + older: ߜߋ߬ߙߋ ߞߘߐ߬ߡߊ߲ ߠߎ߬ + newer: ߜߋ߬ߙߋ ߞߎߘߡߊ ߟߎ߬ ... diff --git a/config/locales/oc.yml b/config/locales/oc.yml index d868865ca..48f000c67 100644 --- a/config/locales/oc.yml +++ b/config/locales/oc.yml @@ -1293,11 +1293,25 @@ oc: details: Mai de detalhs sus l’ensemble de modificacions a %{url}. unsubscribe: Per vos desabonar de las mesas a jorn d'aqueste ensemble de modificacions, visitatz %{url} e clicatz sus « Desabonar ». + confirmations: + confirm: + heading: Verificatz vòstre corrièr electronic ! + introduction_1: Vos avèm mandat un corrièl de confirmacion. + press confirm button: Quichar lo boton confirmar çaijós per activar vòstre compte. + button: Confirmar + success: Compte confirmat, mercé de vos èsser enregistrat ! + already active: Aqueste compte es ja estat confirmat. + unknown token: Lo còdi de confirmacion a expirat o existís pas. + confirm_resend: + failure: L’utilizaire %{name} es introbable. + confirm_email: + heading: Confirmar lo cambiament de vòstra adreça e-mail + button: Confirmar + success: Modificacion de vòstra adreça de corrièr electronic confirmada ! messages: inbox: title: Bóstia de recepcion my_inbox: Ma bóstia de recepcion - outbox: bóstia de mandadís messages: Avètz %{new_messages} e %{old_messages} new_messages: one: '%{count} messatge novèl' @@ -1332,9 +1346,6 @@ oc: body: O planhèm, i a pas cap de messatge amb aqueste identificant. outbox: title: Bóstia de mandadís - my_inbox_html: Ma %{inbox_link} - inbox: bóstia de recepcion - outbox: bóstia de mandadís messages: one: Avètz %{count} messatge mandat other: Avètz %{count} messatges mandats @@ -1368,6 +1379,73 @@ oc: as_unread: Messatge marcat coma pas legit destroy: destroyed: Messatge suprimit + passwords: + lost_password: + title: Senhal perdut + heading: Avètz perdut vòstre senhal ? + email address: 'Adreça de corrièr electronic :' + new password button: Mandar un senhal novèl + notice email on way: Un e-mail vos es estat mandat per reïnicializar vòstre + senhal. + notice email cannot find: Adreça email introbabla, o planhèm. + reset_password: + title: Reïnicializar lo senhal + heading: Reïnicializar lo senhal de %{user} + reset: Reïnicializar lo senhal + flash changed: Vòstre senhal es estat modificat. + flash token bad: Avètz pas trobat aqueste geton, avètz verificat l'URL ? + sessions: + new: + title: Se connectar + heading: Connexion + email or username: 'Adreça e-mail o nom d''utilizaire :' + password: 'Senhal :' + openid_html: '%{logo} OpenID :' + remember: Se remembrar de ieu + lost password link: Avètz perdut vòstre senhal ? + login_button: Se connectar + register now: S'inscriure ara + with external: 'A la plaça, utilizatz un tèrç per vos connectar :' + new to osm: Novèl sus OpenStreetMap ? + to make changes: Per aportar de modificacions a las donadas OpenStreetMap, vos + cal possedir un compte. + create account minute: Se crear un compte. Aquò pren pas qu'una minuta. + no account: Avètz pas de compte ? + auth failure: O planhèm, mas las informacions provesidas an pas permés de vos + identificar. + openid_logo_alt: Se connectar amb un OpenID + auth_providers: + openid: + title: Se connectar amb OpenID + alt: Se connectar amb una URL OpenID + google: + title: Se connectar amb Google + alt: Se connectar amb l'OpenID de Google + facebook: + title: Se connectar amb Facebook + alt: Se connectar amb un commpte Facebook + windowslive: + title: Se connectar amb Windows Live + alt: Se connectar amb un compte Windows Live + github: + title: Connexion amb GitHub + alt: Connexion amb un Compte GitHub + wikipedia: + title: Se connectar amb Wikipèdia + alt: Se connectar amb un compte de Wikipèdia + yahoo: + title: Se connectar amb Yahoo + alt: Se connectar amb l'OpenID de Yahoo + wordpress: + title: Se connectar amb Wordpress + alt: Se connectar amb l'OpenID de Wordpress + aol: + title: Se connectar amb AOL + alt: Se connectar amb l'OpenID d'AOL + destroy: + title: Desconnexion + heading: Desconnexion d'OpenStreetMap + logout_button: Desconnexion site: about: next: Seguent @@ -1688,23 +1766,6 @@ oc: bicycle_shop: Magazin de bicicletas bicycle_parking: Parcatge de bicicleta toilets: Comuns - richtext_area: - edit: Modificar - preview: Apercebut - markdown_help: - title_html: Analisat amb Markdown - headings: Títols - heading: Títol - subheading: Sostítol - unordered: Lista pas ordenada - ordered: Lista ordenada - first: Primièr element - second: Segond element - link: Ligam - text: Tèxte - image: Imatge - alt: Tèxte Alternatiu - url: URL welcome: title: Benvenguda ! introduction_html: Vos donam la benvenguda a OpenStreetMap, la mapa liura e @@ -1802,7 +1863,6 @@ oc: more: mai trace_details: Veire los detalhs de la traça view_map: Veire la mapa - edit: modificar edit_map: Modificar la mapa public: PUBLIC identifiable: IDENTIFICABLE @@ -1810,7 +1870,6 @@ oc: trackable: PISTABLE by: per in: dins - map: mapa index: public_traces: Traças GPS publicas my_traces: las mias traças GPS @@ -1913,71 +1972,6 @@ oc: destroy: flash: Enregistrament de l'aplicacion clienta suprimit users: - login: - title: Se connectar - heading: Connexion - email or username: 'Adreça e-mail o nom d''utilizaire :' - password: 'Senhal :' - openid_html: '%{logo} OpenID :' - remember: Se remembrar de ieu - lost password link: Avètz perdut vòstre senhal ? - login_button: Se connectar - register now: S'inscriure ara - with external: 'A la plaça, utilizatz un tèrç per vos connectar :' - new to osm: Novèl sus OpenStreetMap ? - to make changes: Per aportar de modificacions a las donadas OpenStreetMap, vos - cal possedir un compte. - create account minute: Se crear un compte. Aquò pren pas qu'una minuta. - no account: Avètz pas de compte ? - auth failure: O planhèm, mas las informacions provesidas an pas permés de vos - identificar. - openid_logo_alt: Se connectar amb un OpenID - auth_providers: - openid: - title: Se connectar amb OpenID - alt: Se connectar amb una URL OpenID - google: - title: Se connectar amb Google - alt: Se connectar amb l'OpenID de Google - facebook: - title: Se connectar amb Facebook - alt: Se connectar amb un commpte Facebook - windowslive: - title: Se connectar amb Windows Live - alt: Se connectar amb un compte Windows Live - github: - title: Connexion amb GitHub - alt: Connexion amb un Compte GitHub - wikipedia: - title: Se connectar amb Wikipèdia - alt: Se connectar amb un compte de Wikipèdia - yahoo: - title: Se connectar amb Yahoo - alt: Se connectar amb l'OpenID de Yahoo - wordpress: - title: Se connectar amb Wordpress - alt: Se connectar amb l'OpenID de Wordpress - aol: - title: Se connectar amb AOL - alt: Se connectar amb l'OpenID d'AOL - logout: - title: Desconnexion - heading: Desconnexion d'OpenStreetMap - logout_button: Desconnexion - lost_password: - title: Senhal perdut - heading: Avètz perdut vòstre senhal ? - email address: 'Adreça de corrièr electronic :' - new password button: Mandar un senhal novèl - notice email on way: Un e-mail vos es estat mandat per reïnicializar vòstre - senhal. - notice email cannot find: Adreça email introbabla, o planhèm. - reset_password: - title: Reïnicializar lo senhal - heading: Reïnicializar lo senhal de %{user} - reset: Reïnicializar lo senhal - flash changed: Vòstre senhal es estat modificat. - flash token bad: Avètz pas trobat aqueste geton, avètz verificat l'URL ? new: title: S’inscriure contact_webmaster_html: Contactatz lo webmaster per @@ -2128,20 +2122,6 @@ oc: amb succès. Verificatz vòstra bóstia mail per tal de validar la verificacion de vòstre novèla adreça e-mail. flash update success: Informacions sus l'utilizaire mesas a jorn amb succès. - confirm: - heading: Verificatz vòstre corrièr electronic ! - introduction_1: Vos avèm mandat un corrièl de confirmacion. - press confirm button: Quichar lo boton confirmar çaijós per activar vòstre compte. - button: Confirmar - success: Compte confirmat, mercé de vos èsser enregistrat ! - already active: Aqueste compte es ja estat confirmat. - unknown token: Lo còdi de confirmacion a expirat o existís pas. - confirm_resend: - failure: L’utilizaire %{name} es introbable. - confirm_email: - heading: Confirmar lo cambiament de vòstra adreça e-mail - button: Confirmar - success: Modificacion de vòstra adreça de corrièr electronic confirmada ! set_home: flash success: Emplaçament de mon domicili salvat amb succès index: diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 69301b4ef..67a123141 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -740,11 +740,22 @@ pa: greeting: ਸਤਿ ਸ੍ਰੀ ਅਕਾਲ, commented: partial_changeset_without_comment: ਬਿਨਾ ਟਿੱਪਣੀ + confirmations: + confirm: + heading: ਆਪਣੀ ਈਮੇਲ ਪਰਖੋ! + introduction_1: ਅਸੀਂ ਤੁਹਾਨੂੰ ਇੱਕ ਤਸਦੀਕੀ ਈਮੇਲ ਭੇਜੀ ਹੈ। + button: ਤਸਦੀਕ ਕਰੋ + already active: ਇਹ ਖਾਤਾ ਪਹਿਲੋਂ ਹੀ ਤਸਦੀਕ ਹੋ ਚੁੱਕਾ ਹੈ। + unknown token: ਉਸ ਤਸਦੀਕੀ ਕੋਡ ਦੀ ਮਿਆਦ ਜਾਂ ਹੋਂਦ ਖ਼ਤਮ ਹੋ ਚੁੱਕੀ ਹੈ। + confirm_resend: + failure: ਵਰਤੋਂਕਾਰ %{name} ਨਹੀਂ ਲੱਭਿਆ। + confirm_email: + heading: ਈਮੇਲ ਪਤੇ ਦੀ ਤਬਦੀਲੀ ਤਸਦੀਕ ਕਰਾਉ + button: ਤਸਦੀਕ ਕਰੋ messages: inbox: title: ਇਨਬਾਕਸ my_inbox: ਮੇਰਾ ਇਨਬਾਕਸ - outbox: ਆਊਟਬਾਕਸ from: ਵੱਲੋਂ subject: ਵਿਸ਼ਾ date: ਮਿਤੀ @@ -762,9 +773,6 @@ pa: heading: ਅਜਿਹਾ ਕੋਈ ਸੁਨੇਹਾ ਨਹੀਂ outbox: title: ਆਊਟਬਾਕਸ - my_inbox_html: ਮੇਰਾ %{inbox_link} - inbox: ਇਨਬਾਕਸ - outbox: ਆਊਟਬਾਕਸ to: ਵੱਲ subject: ਵਿਸ਼ਾ date: ਮਿਤੀ @@ -781,6 +789,33 @@ pa: destroy_button: ਮਿਟਾਉ destroy: destroyed: ਸੁਨੇਹਾ ਮਿਟਾਇਆ ਗਿਆ + passwords: + lost_password: + title: ਪਛਾਣ ਸ਼ਬਦ ਗੁੰਮ ਗਿਆ + heading: ਪਛਾਣ ਸ਼ਬਦ ਭੁੱਲ ਗਿਆ? + email address: 'ਈਮੇਲ ਪਤਾ:' + new password button: ਪਛਾਣ ਸ਼ਬਦ ਮੁੜ-ਸੈੱਟ ਕਰੋ + reset_password: + title: ਪਛਾਣ ਸ਼ਬਦ ਮੁੜ-ਸੈੱਟ ਕਰੋ + reset: ਪਛਾਣ ਸ਼ਬਦ ਮੁੜ-ਸੈੱਟ ਕਰੋ + flash changed: ਤੁਹਾਡਾ ਪਛਾਣ ਸ਼ਬਦ ਬਦਲਿਆ ਜਾ ਚੁੱਕਾ ਹੈ। + sessions: + new: + title: ਦਾਖ਼ਲਾ + heading: ਦਾਖ਼ਲਾ + email or username: 'ਈਮੇਲ ਪਤਾ ਜਾਂ ਵਰਤੋਂਕਾਰ-ਨਾਂ:' + password: 'ਪਛਾਣ-ਸ਼ਬਦ:' + remember: ਮੈਨੂੰ ਯਾਦ ਰੱਖੋ + lost password link: ਆਪਣਾ ਪਛਾਣ-ਸ਼ਬਦ ਗੁਆ ਦਿੱਤਾ? + login_button: ਦਾਖ਼ਲ ਹੋਵੋ + register now: ਹੁਣੇ ਰਜਿਸਟਰ ਕਰੋ + new to osm: ਓਪਨ-ਸਟਰੀਟ-ਮੈਪ 'ਤੇ ਨਵੇਂ ਹੋ? + create account minute: ਖਾਤਾ ਬਣਾਉ। ਸਿਰ਼ਫ ਇੱਕ ਮਿੰਟ ਲੱਗਦਾ ਹੈ। + no account: ਖਾਤਾ ਨਹੀਂ ਹੈ? + destroy: + title: ਲਾਗ ਆਊਟ + heading: OpenStreetMap ਤੋਂ ਬਾਹਰ ਜਾਓ + logout_button: ਵਿਦਾਈ site: about: next: ਅੱਗੇ @@ -918,21 +953,6 @@ pa: - ਸਿਖਰ - ਚੋਟੀ construction: ਉਸਾਰੀ ਹੇਠ ਸੜਕਾਂ - richtext_area: - edit: ਸੋਧੋ - preview: ਪਹਿਲ ਝਾਤ - markdown_help: - headings: ਸਿਰਨਾਵੇਂ - heading: ਸਿਰਨਾਵਾਂ - subheading: ਉਪਸਿਰਨਾਵਾਂ - ordered: ਕ੍ਰਮਬੱਧ ਸੂਚੀ - first: ਪਹਿਲੀ ਚੀਜ਼ - second: ਦੂਜੀ ਚੀਜ਼ - link: ਕੜੀ - text: ਲਿਖਤ - image: ਤਸਵੀਰ - alt: ਵਿਕਲਪਿਕ ਲਿਖਤ - url: ਯੂ.ਆਰ.ਐੱਲ. welcome: title: ਜੀ ਆਇਆਂ ਨੂੰ! whats_on_the_map: @@ -980,7 +1000,6 @@ pa: more: ਹੋਰ trace_details: ਖੁਰਾ-ਖੋਜ ਦਾ ਵੇਰਵਾ ਵੇਖੋ view_map: ਨਕਸ਼ਾ ਵੇਖੋ - edit: ਸੋਧੋ edit_map: ਨਕਸ਼ਾ ਸੋਧੋ public: ਜਨਤਕ identifiable: ਪਛਾਣਯੋਗ @@ -988,7 +1007,6 @@ pa: trackable: ਪੈੜ ਕੱਢਣਯੋਗ by: ਵੱਲੋਂ in: ਵਿੱਚ - map: ਨਕਸ਼ਾ index: tagged_with: '%{tags} ਨਾਲ਼ ਨਿਸ਼ਾਨਦੇਹ' upload_trace: ਕੋਈ ਖੁਰਾ-ਖੋਜ ਚੜ੍ਹਾਉ @@ -1008,31 +1026,6 @@ pa: revoke: ਪਰਤਾਉ! register_new: ਆਪਣੀ ਅਰਜ਼ੀ ਦਾ ਇੰਦਰਾਜ ਕਰਾਓ users: - login: - title: ਦਾਖ਼ਲਾ - heading: ਦਾਖ਼ਲਾ - email or username: 'ਈਮੇਲ ਪਤਾ ਜਾਂ ਵਰਤੋਂਕਾਰ-ਨਾਂ:' - password: 'ਪਛਾਣ-ਸ਼ਬਦ:' - remember: ਮੈਨੂੰ ਯਾਦ ਰੱਖੋ - lost password link: ਆਪਣਾ ਪਛਾਣ-ਸ਼ਬਦ ਗੁਆ ਦਿੱਤਾ? - login_button: ਦਾਖ਼ਲ ਹੋਵੋ - register now: ਹੁਣੇ ਰਜਿਸਟਰ ਕਰੋ - new to osm: ਓਪਨ-ਸਟਰੀਟ-ਮੈਪ 'ਤੇ ਨਵੇਂ ਹੋ? - create account minute: ਖਾਤਾ ਬਣਾਉ। ਸਿਰ਼ਫ ਇੱਕ ਮਿੰਟ ਲੱਗਦਾ ਹੈ। - no account: ਖਾਤਾ ਨਹੀਂ ਹੈ? - logout: - title: ਲਾਗ ਆਊਟ - heading: OpenStreetMap ਤੋਂ ਬਾਹਰ ਜਾਓ - logout_button: ਵਿਦਾਈ - lost_password: - title: ਪਛਾਣ ਸ਼ਬਦ ਗੁੰਮ ਗਿਆ - heading: ਪਛਾਣ ਸ਼ਬਦ ਭੁੱਲ ਗਿਆ? - email address: 'ਈਮੇਲ ਪਤਾ:' - new password button: ਪਛਾਣ ਸ਼ਬਦ ਮੁੜ-ਸੈੱਟ ਕਰੋ - reset_password: - title: ਪਛਾਣ ਸ਼ਬਦ ਮੁੜ-ਸੈੱਟ ਕਰੋ - reset: ਪਛਾਣ ਸ਼ਬਦ ਮੁੜ-ਸੈੱਟ ਕਰੋ - flash changed: ਤੁਹਾਡਾ ਪਛਾਣ ਸ਼ਬਦ ਬਦਲਿਆ ਜਾ ਚੁੱਕਾ ਹੈ। new: title: ਭਰਤੀ ਹੋਵੋ about: @@ -1134,17 +1127,6 @@ pa: save changes button: ਤਬਦੀਲੀਆਂ ਸਾਂਭੋ make edits public button: ਮੇਰੀਆਂ ਸਾਰੀਆਂ ਸੋਧਾਂ ਜਨਤਕ ਕਰੋ return to profile: ਪ੍ਰੋਫ਼ਾਈਲ ਵੱਲ ਮੁੜੋ - confirm: - heading: ਆਪਣੀ ਈਮੇਲ ਪਰਖੋ! - introduction_1: ਅਸੀਂ ਤੁਹਾਨੂੰ ਇੱਕ ਤਸਦੀਕੀ ਈਮੇਲ ਭੇਜੀ ਹੈ। - button: ਤਸਦੀਕ ਕਰੋ - already active: ਇਹ ਖਾਤਾ ਪਹਿਲੋਂ ਹੀ ਤਸਦੀਕ ਹੋ ਚੁੱਕਾ ਹੈ। - unknown token: ਉਸ ਤਸਦੀਕੀ ਕੋਡ ਦੀ ਮਿਆਦ ਜਾਂ ਹੋਂਦ ਖ਼ਤਮ ਹੋ ਚੁੱਕੀ ਹੈ। - confirm_resend: - failure: ਵਰਤੋਂਕਾਰ %{name} ਨਹੀਂ ਲੱਭਿਆ। - confirm_email: - heading: ਈਮੇਲ ਪਤੇ ਦੀ ਤਬਦੀਲੀ ਤਸਦੀਕ ਕਰਾਉ - button: ਤਸਦੀਕ ਕਰੋ index: title: ਵਰਤੋਂਕਾਰ heading: ਵਰਤੋਂਕਾਰ diff --git a/config/locales/pl.yml b/config/locales/pl.yml index f8be6f954..f4bdfe68b 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -46,6 +46,7 @@ # Author: Ruila # Author: SemanticPioneer # Author: Soeb +# Author: Sofalse # Author: Sp5uhe # Author: Stojex # Author: Strebski @@ -915,11 +916,11 @@ pl: hollow_way: Zapadnięta droga house: Dom manor: Dwór - memorial: Pomnik/miejsce pamięci (mały) + memorial: Pomnik / miejsce pamięci milestone: Historyczny słupek pikietażowy mine: Kopalnia mine_shaft: Szyb górniczy - monument: Pomnik/miejsce pamięci (duży) + monument: Monument railway: Historyczny obiekt kolejowy roman_road: Droga rzymska ruins: Ruiny @@ -943,7 +944,7 @@ pl: conservation: Rezerwat construction: Teren budowy farm: Farma - farmland: Grunty rolne + farmland: Grunty orne farmyard: Podwórze gospodarskie forest: Las garages: Garaże @@ -962,7 +963,7 @@ pl: religious: Teren do celów religijnych reservoir: Sztuczny zbiornik wodny reservoir_watershed: Zbiornik wodny - residential: Zabudowa mieszkalna + residential: Zabudowa mieszkaniowa retail: Teren handlu detalicznego village_green: Nawsie vineyard: Winnica @@ -1067,12 +1068,14 @@ pl: mountain_pass: "yes": Przełęcz natural: + atoll: Atol bare_rock: Skała macierzysta bay: Zatoka beach: Plaża cape: Przylądek cave_entrance: Wejście do jaskini cliff: Urwisko + coastline: Linia brzegowa crater: Krater dune: Wydma fell: Hale górskie @@ -1090,6 +1093,7 @@ pl: moor: Wrzosowisko mud: Błoto peak: Szczyt + peninsula: Półwysep point: Punkt reef: Rafa ridge: Grzbiet @@ -1137,6 +1141,7 @@ pl: "yes": Biuro place: allotments: Ogródki działkowe + archipelago: Archipelag city: Miasto city_block: Kwartał country: Kraj @@ -1663,11 +1668,38 @@ pl: %{url} i kliknij „Nie obserwuj”. unsubscribe_html: Aby wypisać się z subskrypcji dotyczącej tego zestawu zmian, odwiedź %{url} i kliknij „Nie obserwuj”. + confirmations: + confirm: + heading: Sprawdź swoją skrzynkę e-mail! + introduction_1: Wysłaliśmy ci e-mail z potwierdzeniem. + introduction_2: Potwierdź swoje konto, klikając na link w wiadomości i zacznij + mapować. + press confirm button: Proszę kliknąć poniższy przycisk, aby aktywować konto. + button: Potwierdzam + success: Twoje konto zostało zatwierdzone, cieszymy się, że do nas dołączyłeś! + already active: To konto zostało potwierdzone. + unknown token: Ten kod potwierdzający wygasł lub nie istnieje. + reconfirm_html: Możesz ponownie przesłać wiadomość z potwierdzeniem klikając + tutaj. + confirm_resend: + success_html: Wysłaliśmy nową wiadomość z potwierdzeniem na %{email} i jak tylko + aktywujesz swoje konto, będziesz mógł zacząć edytować mapę.

    Jeśli + używasz systemu antyspamowego, upewnij się, że do swojej białej listy dodałeś + adres %{sender}. Dzięki temu będziemy mogli skontaktować się z tobą bez problemów. + failure: Nie odnaleziono użytkownika %{name}. + confirm_email: + heading: Porwierdzenie zmiany adresu mailowego + press confirm button: Proszę kliknąć poniższy przycisk, aby potwierdzić nowy + adres e-mail. + button: Potwierdzam + success: Twój nowy adres e-mail został potwierdzony! + failure: Adres e-mail o tym kodzie był już potwierdzony. + unknown_token: Ten kod potwierdzający wygasł lub nie istnieje. messages: inbox: title: Wiadomości odebrane my_inbox: skrzynka odbiorcza - outbox: skrzynka nadawcza + my_outbox: skrzynka nadawcza messages: Masz %{new_messages} i %{old_messages} new_messages: few: '%{count} nowe wiadomości' @@ -1706,9 +1738,8 @@ pl: body: Niestety nie ma wiadomości o tym identyfikatorze. outbox: title: Wysłane - my_inbox_html: Wiadomości %{inbox_link} - inbox: odebrane - outbox: wysłane + my_inbox: Wiadomości odebrane + my_outbox: Wiadomości wysłane messages: one: '%{count} wysłana wiadomość' few: '%{count} wysłane wiadomości' @@ -1743,6 +1774,81 @@ pl: as_unread: Wiadomość została oznaczona jako nieprzeczytana destroy: destroyed: Wiadomość usunięta + passwords: + lost_password: + title: zgubione hasło + heading: Zapomniałeś hasła? + email address: 'Adres e-mail:' + new password button: Wyczyść hasło + help_text: Proszę wprowadzić adres e-mail używany do logowania. Zostanie wysłany + na niego odnośnik służący do wyczyszczenia hasła. + notice email on way: Przykro nam z powodu utraty hasła. Wiadomość, która umożliwi + jego wyczyszczenie, jest już w drodze. + notice email cannot find: Niestety, nie odnaleziono tego adresu e-mail. + reset_password: + title: Wyczyść hasło + heading: Czyszczenie hasła użytkownika %{user} + reset: Wyczyść hasło + flash changed: Hasło zostało zmienione. + flash token bad: Nie znaleziono tokenu, sprawdź URL + sessions: + new: + title: Logowanie + heading: Logowanie + email or username: 'Adres e-mail lub nazwa użytkownika:' + password: 'Hasło:' + openid_html: '%{logo} OpenID:' + remember: Zapamiętaj dane uwierzytelniające + lost password link: Zapomniałeś hasła? + login_button: Zaloguj się + register now: Zarejestruj się + with username: 'Masz już konto w OpenStreetMap? Zaloguj się, podając nazwę użytkownika + i hasło:' + with external: 'Alternatywnie, zaloguj się przez:' + new to osm: Nowy na OpenStreetMap? + to make changes: Aby wprowadzać zmiany w OpenStreetMap, musisz mieć konto. + create account minute: Utwórz konto. To zajmuje tylko minutę. + no account: Nie masz konta? + account not active: Niestety twoje konto nie jest jeszcze aktywne.
    Otwórz + link zawarty w mailu potwierdzenia założenia konta, aby je aktywować lub poproś o ponowne przesłanie maila. + account is suspended: Twoje konto zostało zawieszone ze względu na podejrzaną + działalność.
    Skontaktuj się z webmasterem, + jeśli chcesz to przedyskutować. + auth failure: Niestety, podane dane nie pozwoliły na zalogowanie. + openid_logo_alt: Zaloguj się przez OpenID + auth_providers: + openid: + title: Zaloguj się przez OpenID + alt: Zaloguj się za pomocą adresu URL OpenID + google: + title: Zaloguj się przez Google + alt: Zaloguj się przez Google OpenID + facebook: + title: Zaloguj się przez Facebooka + alt: Zaloguj się przez konto Facebook + windowslive: + title: Zaloguj się przez Windows Live + alt: Zaloguj się przez konto Windows Live + github: + title: Zaloguj się przez GitHub + alt: Zaloguj się przez konto GitHub + wikipedia: + title: Zaloguj się przez Wikipedię + alt: Zaloguj się przez konto Wikipedii + yahoo: + title: Zaloguj się przez Yahoo + alt: Zaloguj się przez Yahoo OpenID + wordpress: + title: Zaloguj się przez Wordpress + alt: Zaloguj się przez OpenID Wordpress + aol: + title: Zaloguj się przez AOL + alt: Zaloguj się przez AOL OpenID + destroy: + title: Wyloguj się + heading: Wyloguj się z OpenStreetMap + logout_button: Wyloguj się shared: markdown_help: title_html: Składnia kramdown @@ -2138,23 +2244,6 @@ pl: bicycle_shop: Sklep rowerowy bicycle_parking: Parking dla rowerów toilets: Toalety - richtext_area: - edit: Edytuj - preview: Podgląd - markdown_help: - title_html: Składnia kramdown - headings: Nagłówki - heading: Nagłówek - subheading: Podtytuł - unordered: Lista nieuporządkowana - ordered: Lista numerowana - first: Pierwszy element - second: Drugi element - link: Odnośnik - text: Tekst - image: Obraz - alt: Tekst alternatywny - url: Adres URL welcome: title: Witamy! introduction_html: Witamy w OpenStreetMap, wolnej mapie świata. Teraz, gdy masz @@ -2277,7 +2366,6 @@ pl: more: więcej trace_details: Wyświetl szczegóły śladu view_map: Wyświetl mapę - edit: edycja edit_map: Edytuj mapę public: PUBLICZNY identifiable: IDENTYFIKOWALNY @@ -2285,7 +2373,6 @@ pl: trackable: MOŻLIWY DO ŚLEDZENIA by: utworzony przez użytkownika in: w - map: mapa index: public_traces: Publiczne ślady GPS my_traces: Moje ślady GPS @@ -2363,7 +2450,7 @@ pl: edit: title: Edycja aplikacji show: - title: Szczegóły OAuth dla %{app_name} + title: Szczegóły OAuth do %{app_name} key: 'Klucz odbiorcy:' secret: 'Sekret odbiorcy:' url: 'URL znacznika zapytania:' @@ -2399,79 +2486,6 @@ pl: destroy: flash: Usunięto rejestrację aplikacji users: - login: - title: Logowanie - heading: Logowanie - email or username: 'Adres e-mail lub nazwa użytkownika:' - password: 'Hasło:' - openid_html: '%{logo} OpenID:' - remember: Zapamiętaj dane uwierzytelniające - lost password link: Zapomniałeś hasła? - login_button: Zaloguj się - register now: Zarejestruj się - with username: 'Masz już konto w OpenStreetMap? Zaloguj się, podając nazwę użytkownika - i hasło:' - with external: 'Alternatywnie, zaloguj się przez:' - new to osm: Nowy na OpenStreetMap? - to make changes: Aby wprowadzać zmiany w OpenStreetMap, musisz mieć konto. - create account minute: Utwórz konto. To zajmuje tylko minutę. - no account: Nie masz konta? - account not active: Niestety twoje konto nie jest jeszcze aktywne.
    Otwórz - link zawarty w mailu potwierdzenia założenia konta, aby je aktywować lub poproś o ponowne przesłanie maila. - account is suspended: Twoje konto zostało zawieszone ze względu na podejrzaną - działalność.
    Skontaktuj się z webmasterem, - jeśli chcesz to przedyskutować. - auth failure: Niestety, podane dane nie pozwoliły na zalogowanie. - openid_logo_alt: Zaloguj się za pomocą OpenID - auth_providers: - openid: - title: Zaloguj się za pomocą OpenID - alt: Zaloguj się za pomocą adresu URL OpenID - google: - title: Zaloguj się za pomocą Google - alt: Zaloguj się za pomocą Google OpenID - facebook: - title: Zaloguj się za pomocą Facebooka - alt: Zaloguj się za pomocą konta Facebook - windowslive: - title: Zaloguj się za pomocą Windows Live - alt: Zaloguj się za pomocą konta Windows Live - github: - title: Zaloguj się za pomocą GitHub - alt: Zaloguj się za pomocą konta GitHub - wikipedia: - title: Zaloguj się za pomocą Wikipedii - alt: Zaloguj się za pomocą konta Wikipedia - yahoo: - title: Zaloguj się za pomocą Yahoo - alt: Zaloguj się za pomocą Yahoo OpenID - wordpress: - title: Zaloguj się za pomocą Wordpress - alt: Zaloguj się za pomocą OpenID Wordpress - aol: - title: Zaloguj się za pomocą AOL - alt: Zaloguj się za pomocą AOL OpenID - logout: - title: Wyloguj się - heading: Wyloguj się z OpenStreetMap - logout_button: Wyloguj się - lost_password: - title: zgubione hasło - heading: Zapomniałeś hasła? - email address: 'Adres e-mail:' - new password button: Wyczyść hasło - help_text: Proszę wprowadzić adres e-mail używany do logowania. Zostanie wysłany - na niego odnośnik służący do wyczyszczenia hasła. - notice email on way: Przykro nam z powodu utraty hasła. Wiadomość, która umożliwi - jego wyczyszczenie, jest już w drodze. - notice email cannot find: Niestety, nie odnaleziono tego adresu e-mail. - reset_password: - title: Wyczyść hasło - heading: Czyszczenie hasła użytkownika %{user} - reset: Wyczyść hasło - flash changed: Hasło zostało zmienione. - flash token bad: Nie znaleziono tokenu, sprawdź URL new: title: Zarejestruj się no_auto_account_create: Niestety nie możemy aktualnie stworzyć ci konta automatycznie. @@ -2480,16 +2494,16 @@ pl: będzie możliwe. about: header: Darmowa i edytowalna - html:

    W przeciwieństwie do innych map, OpenStreetMap jest całkowicie tworzone - przez ludzi takich jak ty. Wszyscy mogą tu wprowadzać poprawki i aktualizacje - oraz pobierać i używać map za darmo.

    + html: |- +

    W przeciwieństwie do innych map OpenStreetMap jest całkowicie tworzone przez ludzi takich jak ty. Każdy może wprowadzać poprawki oraz pobierać mapy i używać ich za darmo.

    +

    Zarejestruj się, aby zacząć współtworzyć. Wyślemy ci e-mail z potwierdzeniem założenia konta.

    email address: 'Adres e-mail:' confirm email address: 'Potwierdzenie adresu e-mail:' display name: 'Przyjazna nazwa:' display name description: Twoja publiczna nazwa użytkownika. Można ją później zmienić w ustawieniach. external auth: 'Logowanie przez:' - use external auth: 'Zaloguj się przez:' + use external auth: Alternatywnie, zaloguj się przez... auth no password: Jeśli korzystasz z logowania pośredniego, hasło nie jest wymagane, jednak niektóre dodatkowe narzędzia lub serwer mogą go potrzebować. continue: Zarejestruj się @@ -2661,32 +2675,6 @@ pl: flash update success confirm needed: Zaktualizowano profil użytkownika. Sprawdź, czy przyszedł już mail potwierdzający nowy adres mailowy. flash update success: Zaktualizowano profil użytkownika. - confirm: - heading: Sprawdź swoją skrzynkę e-mail! - introduction_1: Wysłaliśmy ci e-mail z potwierdzeniem. - introduction_2: Potwierdź swoje konto, klikając na link w wiadomości i zacznij - mapować. - press confirm button: Proszę kliknąć poniższy przycisk, aby aktywować konto. - button: Potwierdzam - success: Twoje konto zostało zatwierdzone, cieszymy się, że do nas dołączyłeś! - already active: To konto zostało potwierdzone. - unknown token: Ten kod potwierdzający wygasł lub nie istnieje. - reconfirm_html: Możesz ponownie przesłać wiadomość z potwierdzeniem klikając - tutaj. - confirm_resend: - success_html: Wysłaliśmy nową wiadomość z potwierdzeniem na %{email} i jak tylko - aktywujesz swoje konto, będziesz mógł zacząć edytować mapę.

    Jeśli - używasz systemu antyspamowego, upewnij się, że do swojej białej listy dodałeś - adres %{sender}. Dzięki temu będziemy mogli skontaktować się z tobą bez problemów. - failure: Nie odnaleziono użytkownika %{name}. - confirm_email: - heading: Porwierdzenie zmiany adresu mailowego - press confirm button: Proszę kliknąć poniższy przycisk, aby potwierdzić nowy - adres e-mail. - button: Potwierdzam - success: Twój nowy adres e-mail został potwierdzony! - failure: Adres e-mail o tym kodzie był już potwierdzony. - unknown_token: Ten kod potwierdzający wygasł lub nie istnieje. set_home: flash success: Zapisano nowe położenie domu go_public: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index 89486c790..82ca9bd50 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -278,6 +278,11 @@ ps: greeting: سلامونه، lost_password: greeting: سلامونه، + confirmations: + confirm: + button: تاييد + confirm_email: + button: تاييد messages: inbox: date: نېټه @@ -288,8 +293,6 @@ ps: title: پيغام لېږل body: جوسه outbox: - my_inbox_html: زما %{inbox_link} - inbox: ليکبکس date: نېټه show: title: پيغام لوستل @@ -297,6 +300,23 @@ ps: reply_button: ځواب sent_message_summary: destroy_button: ړنگول + passwords: + lost_password: + heading: آيا پټنوم مو هېر شوی؟ + email address: 'برېښليک پته:' + sessions: + new: + title: ننوتل + heading: ننوتل + password: 'پټنوم:' + login_button: ننوتل + auth_providers: + github: + title: د گېټ هب له لارې ننوتل + alt: د يو گېټ هب گڼون له لارې ننوتل + destroy: + title: وتل + logout_button: وتل site: about: copyright_html: ©Ø¯ اوفن سټریټ ميپ
    مرسته کوونکی @@ -338,12 +358,6 @@ ps: school: - ښوونځی - پوهنتون - richtext_area: - edit: سمول - preview: مخليدنه - markdown_help: - text: متن - image: انځور traces: new: visibility_help: دا څه مانا لري؟ @@ -360,30 +374,13 @@ ps: edit_trace: دا څارنه سمول trace: view_map: نخشه کتل - edit: سمول edit_map: نخشه سمول - map: نخشه oauth_clients: show: confirm: آيا تاسې ډاډه ياست؟ index: application: کاريال نوم users: - login: - title: ننوتل - heading: ننوتل - password: 'پټنوم:' - login_button: ننوتل - auth_providers: - github: - title: د گېټ هب له لارې ننوتل - alt: د يو گېټ هب گڼون له لارې ننوتل - logout: - title: وتل - logout_button: وتل - lost_password: - heading: آيا پټنوم مو هېر شوی؟ - email address: 'برېښليک پته:' new: title: نومليکنه email address: 'برېښليک پته:' @@ -426,10 +423,6 @@ ps: image: 'انځور:' new image: يو انځور ورگډول save changes button: بدلونونه خوندي کول - confirm: - button: تاييد - confirm_email: - button: تاييد index: title: کارنان heading: کارنان diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 6baa2b898..4d2315e3f 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -29,6 +29,7 @@ # Author: Luckas Blade # Author: Luk3 # Author: Macofe +# Author: Mariagarbin # Author: Matheus Sousa L.T # Author: McDutchie # Author: NMaia @@ -1027,12 +1028,14 @@ pt-BR: mountain_pass: "yes": Passo de Montanha natural: + atoll: Atol bare_rock: Rocha nua bay: Baía beach: Praia cape: Cabo cave_entrance: Entrada de Caverna cliff: Penhasco + coastline: Litoral crater: Cratera dune: Duna fell: Encosta @@ -1050,6 +1053,7 @@ pt-BR: moor: Brejo mud: Lamaçal peak: Cume + peninsula: Península point: Ponto reef: Recife ridge: Cordilheira @@ -1097,6 +1101,7 @@ pt-BR: "yes": Escritório place: allotments: Horta Urbana + archipelago: Arquipélago city: Cidade city_block: Quarteirão country: País @@ -1621,11 +1626,40 @@ pt-BR: visite %{url} e clique em "Anular subscrição". unsubscribe_html: Para cancelar a subscrição das atualizações deste conjunto de alterações, visite %{url} e clique em "Anular subscrição". + confirmations: + confirm: + heading: Confira o seu e-mail! + introduction_1: Enviamos um e-mail de confirmação para você. + introduction_2: Confirme a sua conta clicando no link no e-mail e você poderá + de iniciar o mapeamento. + press confirm button: Pressione o botão de confirmação abaixo para ativar sua + conta. + button: Confirmar + success: Conta ativada, obrigado! + already active: Esse conta já foi confirmada. + unknown token: Esse código de confirmação expirou ou não existe. + reconfirm_html: Caso precise que enviemos de novo o e-mail de confirmação, clique aqui. + confirm_resend: + success_html: Enviamos uma nova mensagem de confirmação para %{email} e, assim + que você confirmar o seu cadastro, poderá começar a mapear.

    Se + você usa um sistema antispam que exige uma mensagem de confirmação então certifique-se + de que o endereço %{sender} esteja na sua lista de e-mails confiáveis, já + que não conseguimos responder a nenhum pedido de confirmação. + failure: Usuário %{name} não encontrado. + confirm_email: + heading: Confirmar uma mudança do endereço de e-mail + press confirm button: Pressione o botão de confirmação abaixo para confirmar + seu novo endereço de e-mail. + button: Confirmar + success: Confirmamos a alteração do seu endereço de e-mail! + failure: Um endereço de e-mail já foi confirmado com esse código. + unknown_token: Este código de confirmação expirou ou não existe. messages: inbox: title: Caixa de Entrada my_inbox: Minha Caixa de Entrada - outbox: caixa de saída + my_outbox: Minha caixa de saída messages: Você tem %{new_messages} e %{old_messages} new_messages: one: '%{count} nova mensagem' @@ -1660,9 +1694,8 @@ pt-BR: body: Não existe uma mensagem com este id. outbox: title: Caixa de Saída - my_inbox_html: Minha %{inbox_link} - inbox: caixa de entrada - outbox: caixa de saída + my_inbox: Minha caixa de entrada + my_outbox: Minha caixa de saída messages: one: Você tem %{count} mensagem enviada other: Você tem %{count} mensagens enviadas @@ -1696,6 +1729,82 @@ pt-BR: as_unread: Mensagem marcada como não lida destroy: destroyed: Mensagem apagada + passwords: + lost_password: + title: Senha esquecida + heading: Esqueceu sua senha? + email address: 'Endereço de E-mail:' + new password button: Redefinir senha + help_text: Digite o endereço de e-mail que você usou para se conectar e enviaremos + um link que você poderá usar para redefinir a sua senha. + notice email on way: Um e-mail foi enviado para que você possa escolher outra + senha. + notice email cannot find: Não foi possível encontrar esse endereço de e-mail. + reset_password: + title: Redefinir senha + heading: Redefinir Senha de %{user} + reset: Redefinir Senha + flash changed: Sua senha foi alterada. + flash token bad: O código não confere, verifique a URL. + sessions: + new: + title: Entrar + heading: Entrar + email or username: 'E-mail ou nome de usuário:' + password: 'Senha:' + openid_html: '%{logo} OpenID:' + remember: Lembrar neste computador + lost password link: Esqueceu sua senha? + login_button: Entrar + register now: Registre agora + with username: 'Já tem uma conta no OpenStreetMap? Então entre com seu nome + de usuário e senha:' + with external: 'Ou identifique-se através de terceiros:' + new to osm: Novo no OpenStreetMap? + to make changes: Para fazer alterações nos dados do OpenStreetMap, você precisa + criar uma conta. + create account minute: Crie uma conta. Leva só um minuto. + no account: Não possui uma conta? + account not active: Sua conta não está ativa ainda.
    Use o link do e-mail + de confirmação para ativar sua conta ou solicite uma + nova confirmação por e-mail. + account is suspended: Desculpe, mas sua conta foi suspensa por causa de atividades + suspeitas.
    Por favor contate o webmaster se + você deseja discutir isto. + auth failure: Impossível entrar com estas informações. + openid_logo_alt: Entrar com um OpenID + auth_providers: + openid: + title: Entrar com o OpenID + alt: Entrar com uma URL do OpenID + google: + title: Entrar com o Google + alt: Entrar com um OpenID da Google + facebook: + title: Entrar com o Facebook + alt: Entrar com uma conta do Facebook + windowslive: + title: Entrar com o Windows Live + alt: Entrar com uma conta do Windows Live + github: + title: Entrar com o GitHub + alt: Entrar com conta do GitHub + wikipedia: + title: Entrar com Wikipédia + alt: Entrar com uma conta da Wikipédia + yahoo: + title: Entrar com o Yahoo + alt: Entrar com um OpenID da Yahoo + wordpress: + title: Entrar com o Wordpress + alt: Entrar com um OpenID da Wordpress + aol: + title: Entrar com a AOL + alt: Entrar com um OpenID da AOL + destroy: + title: Sair + heading: Sair do OpenStreetMap + logout_button: Sair shared: markdown_help: title_html: 'Linguagem de formatação: kramdown' @@ -2109,23 +2218,6 @@ pt-BR: bicycle_shop: Loja de bicicletas bicycle_parking: Bicicletário toilets: Banheiros - richtext_area: - edit: Editar - preview: Pré-visualizar - markdown_help: - title_html: 'Linguagem de formatação: kramdown' - headings: Títulos - heading: Título - subheading: Subtítulo - unordered: Lista não ordenada - ordered: Lista ordenada - first: Primeiro item - second: Segundo item - link: Link - text: Texto - image: Imagem - alt: Texto alternativo - url: URL welcome: title: Bem-vindo(a)! introduction_html: Bem-vindo(a) ao OpenStreetMap, o mapa livre e editável do @@ -2245,7 +2337,6 @@ pt-BR: more: mais trace_details: Ver detalhes da trilha view_map: Ver Mapa - edit: editar edit_map: Editar Mapa public: PÚBLICO identifiable: IDENTIFICÁVEL @@ -2253,7 +2344,6 @@ pt-BR: trackable: RASTREÁVEL by: por in: em - map: mapa index: public_traces: Trilhas públicas de GPS my_traces: Minhas trilhas GPS @@ -2367,80 +2457,6 @@ pt-BR: destroy: flash: O registro da aplicação cliente foi apagado users: - login: - title: Entrar - heading: Entrar - email or username: 'E-mail ou nome de usuário:' - password: 'Senha:' - openid_html: '%{logo} OpenID:' - remember: Lembrar neste computador - lost password link: Esqueceu sua senha? - login_button: Entrar - register now: Registre agora - with username: 'Já tem uma conta no OpenStreetMap? Então entre com seu nome - de usuário e senha:' - with external: 'Ou identifique-se através de terceiros:' - new to osm: Novo no OpenStreetMap? - to make changes: Para fazer alterações nos dados do OpenStreetMap, você precisa - criar uma conta. - create account minute: Crie uma conta. Leva só um minuto. - no account: Não possui uma conta? - account not active: Sua conta não está ativa ainda.
    Use o link do e-mail - de confirmação para ativar sua conta ou solicite uma - nova confirmação por e-mail. - account is suspended: Desculpe, mas sua conta foi suspensa por causa de atividades - suspeitas.
    Por favor contate o webmaster se - você deseja discutir isto. - auth failure: Impossível entrar com estas informações. - openid_logo_alt: Entrar com um OpenID - auth_providers: - openid: - title: Entrar com o OpenID - alt: Entrar com uma URL do OpenID - google: - title: Entrar com o Google - alt: Entrar com um OpenID da Google - facebook: - title: Entrar com o Facebook - alt: Entrar com uma conta do Facebook - windowslive: - title: Entrar com o Windows Live - alt: Entrar com uma conta do Windows Live - github: - title: Entrar com o GitHub - alt: Entrar com conta do GitHub - wikipedia: - title: Entrar com Wikipédia - alt: Entrar com uma conta da Wikipédia - yahoo: - title: Entrar com o Yahoo - alt: Entrar com um OpenID da Yahoo - wordpress: - title: Entrar com o Wordpress - alt: Entrar com um OpenID da Wordpress - aol: - title: Entrar com a AOL - alt: Entrar com um OpenID da AOL - logout: - title: Sair - heading: Sair do OpenStreetMap - logout_button: Sair - lost_password: - title: Senha esquecida - heading: Esqueceu sua senha? - email address: 'Endereço de E-mail:' - new password button: Redefinir senha - help_text: Digite o endereço de e-mail que você usou para se conectar e enviaremos - um link que você poderá usar para redefinir a sua senha. - notice email on way: Um e-mail foi enviado para que você possa escolher outra - senha. - notice email cannot find: Não foi possível encontrar esse endereço de e-mail. - reset_password: - title: Redefinir senha - heading: Redefinir Senha de %{user} - reset: Redefinir Senha - flash changed: Sua senha foi alterada. - flash token bad: O código não confere, verifique a URL. new: title: Registrar-se no_auto_account_create: Infelizmente no momento não podemos criar uma conta @@ -2629,34 +2645,6 @@ pt-BR: flash update success confirm needed: Informação de usuário atualizada com sucesso. Confira o seu e-mail para confirmar seu novo endereço. flash update success: Sucesso ao atualizar informação de usuário. - confirm: - heading: Confira o seu e-mail! - introduction_1: Enviamos um e-mail de confirmação para você. - introduction_2: Confirme a sua conta clicando no link no e-mail e você poderá - de iniciar o mapeamento. - press confirm button: Pressione o botão de confirmação abaixo para ativar sua - conta. - button: Confirmar - success: Conta ativada, obrigado! - already active: Esse conta já foi confirmada. - unknown token: Esse código de confirmação expirou ou não existe. - reconfirm_html: Caso precise que enviemos de novo o e-mail de confirmação, clique aqui. - confirm_resend: - success_html: Enviamos uma nova mensagem de confirmação para %{email} e, assim - que você confirmar o seu cadastro, poderá começar a mapear.

    Se - você usa um sistema antispam que exige uma mensagem de confirmação então certifique-se - de que o endereço %{sender} esteja na sua lista de e-mails confiáveis, já - que não conseguimos responder a nenhum pedido de confirmação. - failure: Usuário %{name} não encontrado. - confirm_email: - heading: Confirmar uma mudança do endereço de e-mail - press confirm button: Pressione o botão de confirmação abaixo para confirmar - seu novo endereço de e-mail. - button: Confirmar - success: Confirmamos a alteração do seu endereço de e-mail! - failure: Um endereço de e-mail já foi confirmado com esse código. - unknown_token: Este código de confirmação expirou ou não existe. set_home: flash success: Local principal salvo com sucesso go_public: diff --git a/config/locales/pt-PT.yml b/config/locales/pt-PT.yml index 8ae379758..51d5c22fd 100644 --- a/config/locales/pt-PT.yml +++ b/config/locales/pt-PT.yml @@ -275,7 +275,7 @@ pt-PT: closed_html: Fechado %{time} created_by_html: Criado a %{time} por %{user} deleted_by_html: Eliminado a %{time} por %{user} - edited_by_html: Editado a %{time} por %{user} + edited_by_html: Editado %{time} por %{user} closed_by_html: Fechado %{time} por %{user} version: Versão in_changeset: Conjunto de alterações @@ -288,7 +288,7 @@ pt-PT: part_of_ways: one: 1 via other: '%{count} vias' - download_xml: Receber XML + download_xml: Transferir XML view_history: Ver histórico view_details: Ver detalhes location: 'Localização:' @@ -314,7 +314,7 @@ pt-PT: join_discussion: Inicia sessão para te juntares à discussão discussion: Discussão still_open: O conjunto de alterações continua aberto. A discussão será iniciada - assim que for fechado o conjunto de alterações. + assim que o conjunto de alterações for fechado. node: title_html: 'Nó: %{name}' history_title_html: 'Histórico do Nó: %{name}' @@ -404,7 +404,7 @@ pt-PT: closed_by_anonymous_html: Resolvida por um anónimo %{when} reopened_by_html: Reaberto por %{user} %{when} reopened_by_anonymous_html: Reaberto por um anónimo %{when} - hidden_by_html: Ocultado por %{user} %{when} + hidden_by_html: Ocultada por %{user} %{when} report: Denunciar esta nota coordinates_html: '%{latitude}, %{longitude}' query: @@ -748,10 +748,10 @@ pt-PT: service: Edifício com máquinas shed: Barracão stable: Estábulo - static_caravan: Roulote + static_caravan: Caravana temple: Edíficio de templo terrace: Edifício terraçado - train_station: Edifício de Estação dos comboios + train_station: Edifício de estação dos comboios university: Edifício universitário warehouse: Armazém "yes": Edifício @@ -778,7 +778,7 @@ pt-PT: photographer: Fotógrafo plumber: Canalizador roofer: Técnico de telhados - sawmill: Serraria + sawmill: Serração shoemaker: Sapateiro stonemason: Pedreiro tailor: Alfaiate @@ -878,7 +878,7 @@ pt-PT: stone: Pedra tomb: Túmulo tower: Torre - wayside_chapel: Nicho religioso + wayside_chapel: Alminhas wayside_cross: Cruzeiro wayside_shrine: Alminhas wreck: Naufrágio @@ -911,7 +911,7 @@ pt-PT: quarry: Pedreira railway: Ferrovia recreation_ground: Área de recreação - religious: Terreno religioso + religious: Área religiosa reservoir: Água represada reservoir_watershed: Reservatório hidrográfico residential: Zona residencial @@ -1019,12 +1019,14 @@ pt-PT: mountain_pass: "yes": Desfiladeiro natural: + atoll: Atol bare_rock: Rocha visível bay: Baía beach: Praia cape: Cabo cave_entrance: Entrada de gruta cliff: Precipício + coastline: Litoral crater: Cratera dune: Duna fell: Encosta desflorestada @@ -1042,6 +1044,7 @@ pt-PT: moor: Paul mud: Lama peak: Pico + peninsula: Península point: Ponto reef: Recife ridge: Cumeeira @@ -1063,7 +1066,7 @@ pt-PT: office: accountant: Contabilista administrative: Escritório da administração local - advertising_agency: Agencia de publicidade + advertising_agency: Agência de publicidade architect: Arquiteto association: Associação company: Empresa @@ -1089,6 +1092,7 @@ pt-PT: "yes": Escritório place: allotments: Hortas urbanas + archipelago: Arquipélago city: Capital de distrito city_block: Quarteirão country: País @@ -1138,9 +1142,9 @@ pt-PT: switch: Agulha ferroviária tram: Linha de elétrico tram_stop: Paragem de elétrico - yard: Pátio de Manobras Ferroviário + yard: Pátio de manobras ferroviário shop: - agrarian: Loja Agrícola + agrarian: Loja agrícola alcohol: Loja de bebidas alcoólicas antiques: Loja de antiguidades appliance: Loja de eletrodomésticos @@ -1244,7 +1248,7 @@ pt-PT: storage_rental: Aluguer de armazéns supermarket: Supermercado tailor: Alfaiate - tattoo: Loja de tatuagem + tattoo: Loja de tatuagens tea: Loja de chás ticket: Loja de bilhetes tobacco: Loja de tabaco @@ -1310,14 +1314,14 @@ pt-PT: level4: Fronteira estadual level5: Fronteira distrital level6: Fronteira municipal - level7: Limite do município + level7: Limite de município level8: Limite de freguesia level9: Limite de localidade level10: Limite de subúrbio - level11: Limite de Bairro + level11: Limite de bairro types: - cities: Capitais de distrito - towns: Cidades / Vilas + cities: Cidades + towns: Vilas places: Lugares results: no_results: Não foram encontrados resultados @@ -1393,7 +1397,7 @@ pt-PT: title_html: Denunciar %{link} missing_params: Não foi possível criar nova denúncia disclaimer: - intro: 'Antes de enviares a denúncia aos moderadores, por favor, certifica-te + intro: 'Antes de enviares o relatório aos moderadores, por favor, certifica-te de que:' not_just_mistake: Tens a certeza que o problema não é um mero engano unable_to_fix: Não consegues corrigir o problema sozinho nem com a ajuda dos @@ -1484,7 +1488,7 @@ pt-PT: o assunto %{subject}:' footer: Também podes ler o comentário em %{readurl} e comentar em %{commenturl} ou enviar uma mensagem ao autor em %{replyurl} - footer_html: Também pode ler o comentário em %{readurl} e comentar em %{commenturl} + footer_html: Também podes ler o comentário em %{readurl} e comentar em %{commenturl} ou enviar uma mensagem ao autor em %{replyurl} message_notification: subject: '[OpenStreetMap] %{message_title}' @@ -1493,7 +1497,7 @@ pt-PT: assunto %{subject}:' header_html: '%{from_user} enviou-te uma mensagem através do OpenStreetMap com o assunto %{subject}:' - footer: Também podes ler a mensagem em %{readurl} e enviar mensagem ao autor + footer: Também podes ler a mensagem em %{readurl} e enviar uma mensagem ao autor em %{replyurl} footer_html: Também podes ler a mensagem em %{readurl} e enviar mensagem ao autor em %{replyurl} @@ -1502,7 +1506,7 @@ pt-PT: subject: '[OpenStreetMap] %{user} adicionou-te como amigo' had_added_you: '%{user} adicionou-te como amigo no OpenStreetMap.' see_their_profile: Podes ver o perfil dele em %{userurl}. - see_their_profile_html: Podes ver o seu perfil a %{userurl}. + see_their_profile_html: Podes ver o seu perfil em %{userurl}. befriend_them: Também podes adicioná-lo como amigo em %{befriendurl}. befriend_them_html: Também os podes adicionar como amigos em %{befriendurl}. gpx_description: @@ -1520,8 +1524,9 @@ pt-PT: gpx_success: hi: Olá, %{to_user}. loaded_successfully: - one: carregado com %{trace_points} de entre um 1 ponto possível. - other: carregado com %{trace_points} de entre %{possible_points} pontos possíveis. + one: carregado corretamente com %{trace_points} de entre 1 ponto possível. + other: carregado corretamente com %{trace_points} de entre %{possible_points} + pontos possíveis. subject: '[OpenStreetMap] Importação de GPX bem-sucedida' signup_confirm: subject: '[OpenStreetMap] Bem-vind@ ao OpenStreetMap' @@ -1610,11 +1615,40 @@ pt-PT: visita %{url} e clica em "Anular subscrição". unsubscribe_html: Para deixares de receber atualizações sobre este conjunto de alterações, visita %{url} e clica em "Anular subscrição". + confirmations: + confirm: + heading: Consulta o teu e-mail! + introduction_1: Enviámos-te um e-mail de confirmação. + introduction_2: Confirma a tua conta clicando no link que vem no e-mail e poderás + começar a mapear. + press confirm button: Pressiona o botão de confirmação em baixo para ativares + a tua conta. + button: Confirmar + success: Conta confirmada. Obrigado por te registares! + already active: Esta conta já foi confirmada. + unknown token: Esse código de confirmação expirou ou não existe. + reconfirm_html: Se for preciso reeenviar o e-mail de confirmação, clica + aqui. + confirm_resend: + success_html: Enviámos um e-mail de confirmação para %{email}. Assim que confirmares + a tua conta, poderás começar a mapear.

    Se usares um sistema antispam + que envie pedidos de confirmação, por favor, coloca o endereço %{sender} na + lista branca de remetentes seguros, uma vez que não temos possibilidade de + responder a pedidos de confirmação. + failure: O utilizador %{name} não foi encontrado. + confirm_email: + heading: Confirmar alteração de e-mail + press confirm button: Clica no botão de confirmação em baixo para confirmares + o teu novo endereço eletrónico. + button: Confirmar + success: A alteração do teu e-mail foi confirmada! + failure: Este código já foi usado para confirmar um e-mail. + unknown_token: Este código de confirmação expirou ou não existe. messages: inbox: title: Caixa de Entrada my_inbox: Caixa de entrada - outbox: Caixa de saída + my_outbox: Caixa de saída messages: Tens %{new_messages} e %{old_messages} new_messages: one: '%{count} mensagem nova' @@ -1649,9 +1683,8 @@ pt-PT: body: Lamentamos, não existe nenhuma mensagem com esse identificador (id). outbox: title: Caixa de saída - my_inbox_html: A minha %{inbox_link} - inbox: caixa de entrada - outbox: caixa de saída + my_inbox: Caixa de entrada + my_outbox: Caixa de saída messages: one: Tens %{count} mensagem enviada other: Tens %{count} mensagens enviadas @@ -1685,6 +1718,82 @@ pt-PT: as_unread: Mensagem marcada como não lida destroy: destroyed: Mensagem eliminada + passwords: + lost_password: + title: Palavra-passe esquecida + heading: Esqueceste a palavra-passe? + email address: 'Endereço eletrónico:' + new password button: Repor palavra-passe + help_text: Introduz o endereço de correio eletrónico que usaste para criar a + conta. Enviar-te-emos uma ligação que poderás usar para repor a palavra-passe. + notice email on way: Lamentamos que a tenhas perdido :-( mas já te enviámos + um e-mail para que possas repô-la em breve. + notice email cannot find: Lamentamos, mas não foi possível encontrar esse endereço + eletrónico. + reset_password: + title: Repor palavra-passe + heading: Repor palavra-passe para %{user} + reset: Repor palavra-passe + flash changed: A tua palavra-passe foi alterada. + flash token bad: Não encontrámos esse token. Confere o URL, por favor. + sessions: + new: + title: Entrar + heading: Iniciar Sessão + email or username: 'E-mail ou nome de utilizador:' + password: 'Palavra-passe:' + openid_html: '%{logo} OpenID:' + remember: Ficar autenticado entre sessões + lost password link: Perdeste a tua palavra-passe? + login_button: Iniciar sessão + register now: Regista-te agora + with username: 'Já tens uma conta no OpenStreetMap? Por favor, introduz o teu + nome de utilizador e palavra-passe:' + with external: 'Em alternativa, podes iniciar sessão com um serviço externo:' + new to osm: Primeira vez no OpenStreetMap? + to make changes: Para editares no OpenStreetMap, precisas de ter uma conta. + create account minute: Cria uma conta. Leva apenas um minuto. + no account: Não tens uma conta? + account not active: Lamentamos, mas a tua conta ainda não foi ativada.
    Por + favor, usa a ligação presente no e-mail que te foi enviado para a ativares + ou solicita um novo e-mail de confirmação. + account is suspended: Lamentamos, mas a tua conta foi suspensa devido a atividades + suspeitas.
    Por favor, contacta o administrador + do website para resolver o problema. + auth failure: Lamentamos, mas não foi possível iniciar sessão com os dados fornecidos. + openid_logo_alt: Iniciar sessão com um OpenID + auth_providers: + openid: + title: Iniciar sessão com OpenID + alt: Iniciar sessão com um URL do OpenID + google: + title: Iniciar sessão com Google + alt: Iniciar sessão com um OpenID do Google + facebook: + title: Iniciar sessão com o Facebook + alt: Iniciar sessão com uma conta do Facebook + windowslive: + title: Iniciar sessão com o Windows Live + alt: Iniciar sessão com uma conta do Windows Live + github: + title: Iniciar sessão com GitHub + alt: Iniciar sessão com uma conta GitHub + wikipedia: + title: Iniciar sessão através da Wikipédia + alt: Iniciar a sessão com uma conta da Wikipédia + yahoo: + title: Iniciar sessão com Yahoo + alt: Iniciar sessão com um OpenID do Yahoo + wordpress: + title: Iniciar sessão com Wordpress + alt: Iniciar sessão com um OpenID do Wordpress + aol: + title: Iniciar sessão com AOL + alt: Iniciar sessão com um OpenID da AOL + destroy: + title: Sair + heading: Encerrar sessão no OpenStreetMap + logout_button: Sair shared: markdown_help: title_html: Formatado com kramdown @@ -1765,23 +1874,22 @@ pt-PT: seus contribuidores. Se alterar ou adicionar conteúdo dos nossos dados, pode distribuir o resultado apenas com a mesma licença. O texto legal completo explica os seus direitos e responsabilidades. - intro_3_1_html: A nossa documentação é disponibilizada sob a licença Creative - Commons - Atribuição-CompartilhaIgual 2.0 (CC BY-SA 2.0). + intro_3_1_html: A nossa documentação está disponibilizada sob a licença Creative Commons + Atribuição-CompartilhaIgual 2.0 (CC BY-SA 2.0). credit_title_html: Como creditar o OpenStreetMap credit_1_html: Pedimos que use os créditos “© contribuidores do OpenStreetMap” ou, se for mais adequado, em inglês “© OpenStreetMap contributors”. credit_2_1_html: Também deve indicar claramente que os dados estão disponíveis - sob a Open Database License (ODbL) e, caso utilize as telas de mapas (imagens - dos mapas), que a cartografia é disponibilizada sob a licença CC-BY-SA. - Pode fazer isto colocando uma hiperligação para esta - página sobre licença e direitos de autor. Como alternativa, e obrigatório - caso distribua o OpenStreetMap em formato de dados, pode indicar as licenças - e colocar hiperligações a apontar para as páginas das licenças. Em suportes - onde não seja possível colocar hiperligações (por exemplo, obras impressas) - sugerimos que indique o endereço do sítio www.openstreetmap.org (talvez - substituindo ‘OpenStreetMap’ por este endereço web), para www.opendatacommons.org - e, caso se aplique, para www.creativecommons.org + sob a Licença de Base de Dados Aberta. Pode fazer isto colocando uma hiperligação + para esta página sobre + direitos de autor. Em alternativa, e obrigatório caso distribua o OpenStreetMap + em formato de dados, pode fazer referência e colocar hiperligações a apontar + para a(s) licença(s). Em suportes onde não seja possível colocar hiperligações + (por exemplo, obras impressas) sugerimos que direcione os leitores para + www.openstreetmap.org (talvez expandindo ‘OpenStreetMap’ para + o endereço completo) e para www.opendatacommons.org. credit_3_1_html: |- Os mosaicos de mapa no “estilo padrão” em www.openstreetmap.org são um trabalho produzido pela Fundação OpenStreetMap com recurso a @@ -1790,7 +1898,7 @@ pt-PT: a seguinte atribuição: “Mapa base e dados de OpenStreetMap e Fundação OpenStreetMap”. credit_4_html: |- - Num mapa eletrónico navegável, os créditos devem aparecer num canto do mapa. + Num mapa eletrónico navegável, os créditos devem aparecer no canto do mapa. Por exemplo: attribution_example: alt: Exemplo de como indicar os créditos do OpenStreetMap numa página eletrónica @@ -2091,23 +2199,6 @@ pt-PT: bicycle_shop: Loja de bicicletas bicycle_parking: Estacionamento de bicicletas toilets: Casas de banho - richtext_area: - edit: Editar - preview: Pré-visualizar - markdown_help: - title_html: Formatado com kramdown - headings: Títulos - heading: Título - subheading: Subtítulo - unordered: Lista não ordenada - ordered: Lista ordenada - first: Primeiro item - second: Segundo item - link: Hiperligação - text: Texto - image: Imagem - alt: Texto alternativo - url: URL welcome: title: Bem-vind@! introduction_html: Bem-vindo(a) ao OpenStreetMap, o mapa do mundo, grátis e @@ -2229,7 +2320,6 @@ pt-PT: more: mais trace_details: Ver detalhes da rota view_map: Ver mapa - edit: editar edit_map: Editar o mapa public: PÚBLICO identifiable: IDENTIFICÁVEL @@ -2237,7 +2327,6 @@ pt-PT: trackable: RASTREÁVEL by: por in: em - map: mapa index: public_traces: Rotas de GPS Públicas my_traces: As Minhas Rotas GPS @@ -2351,80 +2440,6 @@ pt-PT: destroy: flash: O registo da aplicação foi eliminado users: - login: - title: Entrar - heading: Iniciar Sessão - email or username: 'E-mail ou nome de utilizador:' - password: 'Palavra-passe:' - openid_html: '%{logo} OpenID:' - remember: Ficar autenticado entre sessões - lost password link: Perdeste a tua palavra-passe? - login_button: Iniciar sessão - register now: Regista-te agora - with username: 'Já tens uma conta no OpenStreetMap? Por favor, introduz o teu - nome de utilizador e palavra-passe:' - with external: 'Em alternativa, podes iniciar sessão com um serviço externo:' - new to osm: Primeira vez no OpenStreetMap? - to make changes: Para editares no OpenStreetMap, precisas de ter uma conta. - create account minute: Cria uma conta. Leva apenas um minuto. - no account: Não tens uma conta? - account not active: Lamentamos, mas a tua conta ainda não foi ativada.
    Por - favor, usa a ligação presente no e-mail que te foi enviado para a ativares - ou solicita um novo e-mail de confirmação. - account is suspended: Lamentamos, mas a tua conta foi suspensa devido a atividades - suspeitas.
    Por favor, contacta o administrador - do website para resolver o problema. - auth failure: Lamentamos, mas não foi possível iniciar sessão com os dados fornecidos. - openid_logo_alt: Iniciar sessão com um OpenID - auth_providers: - openid: - title: Iniciar sessão com OpenID - alt: Iniciar sessão com um URL do OpenID - google: - title: Iniciar sessão com Google - alt: Iniciar sessão com um OpenID do Google - facebook: - title: Iniciar sessão com o Facebook - alt: Iniciar sessão com uma conta do Facebook - windowslive: - title: Iniciar sessão com o Windows Live - alt: Iniciar sessão com uma conta do Windows Live - github: - title: Iniciar sessão com GitHub - alt: Iniciar sessão com uma conta GitHub - wikipedia: - title: Iniciar sessão através da Wikipédia - alt: Iniciar a sessão com uma conta da Wikipédia - yahoo: - title: Iniciar sessão com Yahoo - alt: Iniciar sessão com um OpenID do Yahoo - wordpress: - title: Iniciar sessão com Wordpress - alt: Iniciar sessão com um OpenID do Wordpress - aol: - title: Iniciar sessão com AOL - alt: Iniciar sessão com um OpenID da AOL - logout: - title: Sair - heading: Encerrar sessão no OpenStreetMap - logout_button: Sair - lost_password: - title: Palavra-passe esquecida - heading: Esqueceste a palavra-passe? - email address: 'Endereço eletrónico:' - new password button: Repor palavra-passe - help_text: Introduz o endereço de correio eletrónico que usaste para criar a - conta. Enviar-te-emos uma ligação que poderás usar para repor a palavra-passe. - notice email on way: Lamentamos que a tenhas perdido :-( mas já te enviámos - um e-mail para que possas repô-la em breve. - notice email cannot find: Lamentamos, mas não foi possível encontrar esse endereço - eletrónico. - reset_password: - title: Repor palavra-passe - heading: Repor palavra-passe para %{user} - reset: Repor palavra-passe - flash changed: A tua palavra-passe foi alterada. - flash token bad: Não encontrámos esse token. Confere o URL, por favor. new: title: Criar conta no_auto_account_create: Infelizmente, e de momento, não é possível criar uma @@ -2618,34 +2633,6 @@ pt-PT: flash update success confirm needed: As informações de utilizador foram atualizadas com sucesso. Verifica o teu e-mail para confirmares o teu novo endereço eletrónico. flash update success: Informações de utilizador atualizadas com sucesso. - confirm: - heading: Consulta o teu e-mail! - introduction_1: Enviámos-te um e-mail de confirmação. - introduction_2: Confirma a tua conta clicando no link que vem no e-mail e poderás - começar a mapear. - press confirm button: Pressiona o botão de confirmação em baixo para ativares - a tua conta. - button: Confirmar - success: Conta confirmada. Obrigado por te registares! - already active: Esta conta já foi confirmada. - unknown token: Esse código de confirmação expirou ou não existe. - reconfirm_html: Se for preciso reeenviar o e-mail de confirmação, clica - aqui. - confirm_resend: - success_html: Enviámos um e-mail de confirmação para %{email}. Assim que confirmares - a tua conta, poderás começar a mapear.

    Se usares um sistema antispam - que envie pedidos de confirmação, por favor, coloca o endereço %{sender} na - lista branca de remetentes seguros, uma vez que não temos possibilidade de - responder a pedidos de confirmação. - failure: O utilizador %{name} não foi encontrado. - confirm_email: - heading: Confirmar alteração de e-mail - press confirm button: Clica no botão de confirmação em baixo para confirmares - o teu novo endereço eletrónico. - button: Confirmar - success: A alteração do teu e-mail foi confirmada! - failure: Este código já foi usado para confirmar um e-mail. - unknown_token: Este código de confirmação expirou ou não existe. set_home: flash success: Localização gravada com êxito go_public: @@ -2871,7 +2858,7 @@ pt-PT: cycle_map: Mapa de Ciclismo transport_map: Transportes Públicos hot: Humanitário - opnvkarte: ÖPNVKarte (mapa de transporte público) + opnvkarte: ÖPNVKarte layers: header: Camadas do mapa notes: Notas no mapa diff --git a/config/locales/ro.yml b/config/locales/ro.yml index c518a9712..2432cb239 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -1,6 +1,7 @@ # Messages for Romanian (română) # Exported from translatewiki.net # Export driver: phpyaml +# Author: Andreyyshore # Author: C1pr1an # Author: EddyPetrisor # Author: GabiBil @@ -23,7 +24,7 @@ ro: blog: '%e %B %Y' helpers: file: - prompt: Selectează fişier + prompt: Selectează fișier submit: diary_comment: create: Salvează @@ -129,27 +130,41 @@ ro: body: Textul mesajului recipient: Destinatar redaction: + title: Titlu description: Descriere report: category: Selectați un motiv pentru raportul dvs details: Vă rugăm să furnizați mai multe detalii despre problemă (necesar). user: + auth_provider: Furnizor de autentificare + auth_uid: Autentificare UID email: E-mail - new_email: 'Adresa de e-mail nouă:' + email_confirmation: Confirmare Email + new_email: Adresa de e-mail nouă active: Activ display_name: Afișare nume - description: Descriere - home_lat: 'Latitudine:' - home_lon: 'Longitudine:' - languages: Limbi + description: Descriere Profil + home_lat: Latitudine + home_lon: Longitudine + languages: Limbi preferate + preferred_editor: Editor Preferat pass_crypt: Parolă + pass_crypt_confirmation: Confirmă Parola help: trace: tagstring: utilizează virgule user_block: + reason: Motivul pentru care utilizatorul este blocat. Vă rugăm să fiți cât + mai calm și cât mai rezonabil posibil, oferind cât mai multe detalii despre + situație, amintindu-vă că mesajul va fi vizibil public. Rețineți că nu toți + utilizatorii înțeleg jargonul comunității, așa că vă rugăm să încercați + să folosiți termenii obișnuiți. needs_view: Utilizatorul trebuie să se conecteze înainte ca această blocare să fie ștearsă? user: + email_confirmation: Adresa dumneavoastră nu este afișată public, vezi politica + de confidențialitate pentru mai multe informații. new_email: (nu a fost afișată în mod public) datetime: distance_in_words_ago: @@ -200,7 +215,7 @@ ro: description: iD (editor înglobat în navigator) remote: name: Control la distanță - description: Control de la distanță (JOSM sau Merkaartor) + description: Control de la distanță (JOSM, Potlatch, Merkaartor) auth: providers: none: Fără @@ -247,6 +262,14 @@ ro: anonymous: anonim no_comment: (niciun comentariu) part_of: Parte din + part_of_relations: + one: 1 relație + few: '%{count} relații' + other: "" + part_of_ways: + one: 1 relație + few: '%{count} relații' + other: "" download_xml: Descarcă XML view_history: Vezi istoric view_details: Vezi detalii @@ -281,6 +304,10 @@ ro: title_html: 'Cale: %{name}' history_title_html: 'Istoricul căii: %{name}' nodes: Noduri + nodes_count: + one: 1 nod + few: '%{count} noduri' + other: "" also_part_of_html: one: parte a liniei de %{related_ways} other: parte din liniile de %{related_ways} @@ -288,6 +315,10 @@ ro: title_html: 'Relație: %{name}' history_title_html: 'Istoricul relației: %{name}' members: Membri + members_count: + one: 1 membru + few: '%{count} membri' + other: "" relation_member: entry_html: '%{type} %{name}' entry_role_html: '%{type} %{name} ca %{role}' @@ -299,6 +330,7 @@ ro: entry_html: Relația %{relation_name} entry_role_html: Relația %{relation_name} (ca %{relation_role}) not_found: + title: Nu a fost găsit sorry: 'Scuze, dar %{type} #%{id} nu s-a putut găsi.' type: node: nod @@ -307,6 +339,7 @@ ro: changeset: set de modificări note: notă timeout: + title: Eroare de expirare sorry: Ne pare rău, dar durata recepționării datelor pentru %{type} cu identificatorul %{id} este prea mare. type: @@ -408,8 +441,8 @@ ro: new: title: O nouă înregistrare în jurnal form: - location: 'Localizare:' - use_map_link: utilizează harta + location: Localizare + use_map_link: Utilizează Harta index: title: Jurnalele utilizatorilor title_friends: Jurnalele prietenilor @@ -439,7 +472,8 @@ ro: cu identificatorul %{id}. Vă rugăm să verificați ortografia; sau poate ați făcut clic pe un link invalid. diary_entry: - posted_by_html: Postat de către %{link_user} pe %{created} în %{language_link} + posted_by_html: Postat de %{link_user} pe %{created} în %{language_link} + updated_at_html: Ultima actualizare pe %{updated}. comment_link: Comentează la această înregistrare reply_link: Trimite un mesaj autorului comment_count: @@ -595,13 +629,13 @@ ro: monastery: Mănăstire money_transfer: Transfer de bani motorcycle_parking: Parcare pentru motociclete - music_school: Şcoală de muzică + music_school: Școală de muzică nightclub: Club de noapte nursing_home: Azil de bătrâni parking: Parcare parking_entrance: Intrare în parcare parking_space: Spațiu de parcare - payment_terminal: Terminal de plăţi + payment_terminal: Terminal de plăți pharmacy: Farmacie place_of_worship: Lăcaș de cult police: Poliție @@ -648,7 +682,7 @@ ro: national_park: Parc național political: Granița electorală protected_area: Zonă protejată - "yes": Graniţa + "yes": Graniță bridge: aqueduct: Apeduct boardwalk: Promenadă @@ -680,19 +714,19 @@ ro: hospital: Clădire de spital hotel: Clădire de hotel house: Casă - houseboat: Casă ambarcaţiune + houseboat: Casă ambarcațiune hut: Colibă industrial: Clădire industrială kindergarten: Clădirea Grădiniței - manufacture: Clădire de Producţie + manufacture: Clădire de Producție office: Clădire de birouri public: Clădire publică residential: Clădire rezidențială retail: Clădire de vânzare cu amănuntul - roof: Acoperiş + roof: Acoperiș ruins: Clădire ruină school: Clădire școlară - semidetached_house: Casă semidetaşată + semidetached_house: Casă semidetașată service: Clădire de servicii shed: Șură stable: Grajd @@ -704,7 +738,7 @@ ro: warehouse: Depozit "yes": Clădire club: - scout: Sediu Grup de Cercetaşi + scout: Sediu Grup de Cercetași sport: Club Sportiv "yes": Club craft: @@ -725,7 +759,7 @@ ro: painter: Pictor photographer: Fotograf plumber: Instalator - roofer: Constructor de acoperişuri + roofer: Constructor de acoperișuri sawmill: Gater shoemaker: Cizmar stonemason: Pietrar @@ -741,10 +775,10 @@ ro: fire_xtinguisher: Extinctor fire_water_pond: Bazinul cu apă pentru foc landing_site: Sit pentru aterizarea de urgență - life_ring: Colac de salvare de urgenţă + life_ring: Colac de salvare de urgență phone: Telefon de urgență - siren: Sirenă de Urgenţă - suction_point: Punct de aspirare de urgenţă + siren: Sirenă de Urgență + suction_point: Punct de aspirare de urgență water_tank: Rezervor de apă de urgență "yes": Urgență highway: @@ -757,7 +791,7 @@ ro: cycleway: Pistă de biciclete elevator: Lift emergency_access_point: Punct de acces de urgență - emergency_bay: Loc oprire de urgenţă + emergency_bay: Loc oprire de urgență footway: Cale pietonală ford: Vad give_way: Semn de cedează trecerea @@ -812,7 +846,7 @@ ro: citywalls: Zidurile orașului fort: Fort heritage: Sit de patrimoniu - hollow_way: Drum tranşeu + hollow_way: Drum tranșeu house: Casă manor: Conac memorial: Memorial @@ -859,6 +893,7 @@ ro: quarry: Carieră railway: Cale ferată recreation_ground: Zonă de recreere + religious: Așezăminte Religioase reservoir: Rezervor reservoir_watershed: Cumpăna apelor residential: Zonă rezidențială @@ -867,9 +902,15 @@ ro: vineyard: Podgorie "yes": Utilizarea terenului leisure: + adult_gaming_centre: Centru de Jocuri Video Pentru Adulți + amusement_arcade: Sală de Jocuri + bandstand: Chioșc de muzică beach_resort: Stațiune pe plajă bird_hide: Observator de păsări + bleachers: Tribune + bowling_alley: Sală de Bowling common: teren comun + dance: Sală de dans dog_park: Parc de câini firepit: Groapă de foc fishing: Zonă de pescuit @@ -882,7 +923,9 @@ ro: marina: Marina miniature_golf: Minigolf nature_reserve: Rezervație naturală + outdoor_seating: Scaune în aer liber park: Parc + picnic_table: Masă de picnic pitch: Teren de sport playground: Loc de joacă recreation_ground: Zonă de recreere @@ -897,13 +940,19 @@ ro: "yes": Relaxare man_made: adit: Galerie de acces + advertising: Publicitate + antenna: Antenă + avalanche_protection: Protecție Avalanșă beacon: Far + beam: Rază beehive: Stup de albine breakwater: Dig bridge: Pod bunker_silo: Buncăr chimney: Șemineu + communications_tower: Turn de Comunicații crane: Macara + cross: Cruce dolphin: Post de ancorare dyke: Opritoare embankment: Terasament @@ -912,6 +961,7 @@ ro: groyne: Epiuri kiln: Pana lighthouse: Far + manhole: Capac de cămin de vizitare mast: Catarg mine: Mină mineshaft: Puțul minei @@ -919,12 +969,18 @@ ro: petroleum_well: Fântână de petrol pier: Dig pipeline: Conductă + pumping_station: Stație de Pompare + reservoir_covered: Rezervor Acoperit silo: Siloz + snow_fence: Gard zăpadă storage_tank: Rezervor de depozitare + street_cabinet: Cabinet stradal surveillance: Supraveghere + telescope: Telescop tower: Turn wastewater_plant: Stație de epurare a apei watermill: Fântână de apă + water_tap: Robinet de apă water_tower: Turn de apă water_well: Fântână water_works: Lucrări la apă @@ -935,6 +991,8 @@ ro: airfield: Aeroport militar barracks: Cazarme bunker: Buncăr + checkpoint: Punct intermediar + trench: Tranșeu "yes": Armată mountain_pass: "yes": Trecătoare prin munți @@ -944,6 +1002,7 @@ ro: cape: Cap cave_entrance: Intrare în peșteră cliff: Stâncă + coastline: Litoral crater: Crater dune: Dune fell: Pajiște @@ -954,6 +1013,7 @@ ro: grassland: Fâneață heath: Căldură hill: Deal + hot_spring: Izvor Termal island: Insulă land: Teren marsh: Mlaștină @@ -977,20 +1037,31 @@ ro: water: Apă wetland: Zonă umedă wood: Pădure + "yes": Caracteristică Naturală office: accountant: Contabil administrative: Administrație + advertising_agency: Agenție de publicitate architect: Arhitect association: Asociație company: Societate + diplomatic: Birou Diplomatic educational_institution: Instituție educațională employment_agency: Agenția forței de muncă + energy_supplier: Birou furnizor de energie electrică estate_agent: Agent imobiliar + financial: Birou Financiar government: Birou guvernamental insurance: Birou de Asigurări it: Birou de IT lawyer: Avocat + logistics: Birou de Logistică + newspaper: Birou de Ziare ngo: Birou ONG + notary: Notariat + religion: Birou Religios + research: Birou de Cercetare + tax_advisor: Consilier fiscal telecommunication: Birou de telecomunicații travel_agent: Agenție de turism "yes": Birou @@ -1046,11 +1117,17 @@ ro: tram_stop: Stație de tramvai yard: Depou shop: + agrarian: Magazin agricol alcohol: Fără licență antiques: Antichități + appliance: Magazin de electrocasnice art: Magazin de artă + baby_goods: Accesorii pentru bebeluși + bag: Magazin de genți bakery: Brutărie + bathroom_furnishing: Mobilier de baie beauty: Salon de frumusețe + bed: Produse pentru lenjerie de pat beverages: Magazin de băuturi bicycle: Magazin de biciclete bookmaker: Semn de carte @@ -1062,61 +1139,90 @@ ro: car_repair: Service auto carpet: Magazin de tâmplărie charity: Magazin de caritate + cheese: Magazin de brânzeturi chemist: Chimist + chocolate: Ciocolată clothes: Magazin de haine + coffee: Cafenea computer: Magazin de calculatoare confectionery: Cofetărie convenience: Magazin de cartier copyshop: Magazin de copiere cosmetics: Magazin de cosmetice + craft: Magazin pentru echipamente necesare meșteșugarilor + curtain: Magazin de perdele + dairy: Magazin de lactate deli: Deli department_store: Magazin specializat discount: Magazin cu itemuri la discount doityourself: Bricolaj dry_cleaning: Curățătorie chimică + e-cigarette: Magazin de țigări electronice electronics: Magazin de electronice + erotic: Magazin erotic estate_agent: Agent imobiliar + fabric: Magazin de țesături farm: Magazinul fermei fashion: Magazin de modă + fishing: Magazin de articole pentru pescuit florist: Florărie food: Alimentară + frame: Magazin de rame funeral_directors: Director de funeralii furniture: Mobilier garden_centre: Magazin de grădinărit + gas: Magazin de gaz general: Magazin general gift: Magazin de cadouri greengrocer: Piață de zarzavat grocery: Magazin alimentar hairdresser: Coafor hardware: Magazinul de scule + health_food: Magazin de produse naturiste + hearing_aids: Aparate Auditive + herbalist: Herbalist hifi: Hi-Fi houseware: Magazinul de electrocasnice + ice_cream: Magazin de înghețate interior_decoration: Decoeațiuni interioare jewelry: Bijuterie kiosk: Chioșc kitchen: Magazin de bucătărie laundry: Spălătorie + locksmith: Lăcătuș lottery: Loterie mall: Mall massage: Masaj + medical_supply: Magazin de echipamente muzicale mobile_phone: Magazin de telefoane + money_lender: Creditor de bani motorcycle: Magazin de motociclete + motorcycle_repair: Service de reparații motociclete music: Magazin de muzică + musical_instrument: Instrumente muzicale newsagent: Chioșc de ziare + nutrition_supplements: Suplimente nutritive optician: Optician organic: Magazin de alimente organice outdoor: Magazin de aer liber paint: Atelier de vopsitorie + pastry: Patiserie pawnbroker: Amanetar + perfumery: Parfumerie pet: Magazin de animale + pet_grooming: Îngrijirea animalelor photo: Magazin de fotografie seafood: Mâncare de mare second_hand: Magazin second hand + sewing: Croitorie shoes: Magazin de pantofi sports: Magazin de articole sportive stationery: Magazin de papetărie + storage_rental: Spații de depozitare de închiriat supermarket: Supermarket tailor: Croitor + tattoo: Magazin de tatuaje + tea: Magazin de Ceai ticket: Magazin de bilete tobacco: Magazin de tutun toys: Magazin de jucării @@ -1125,6 +1231,8 @@ ro: vacant: Magazin de închiriat variety_store: Magazin de varietăți video: Magazin video + video_games: Magazin de Jocuri Video + wholesale: Magazin Angro wine: Magazin de vinuri "yes": Magazin tourism: @@ -1134,6 +1242,7 @@ ro: attraction: Atracție bed_and_breakfast: Cazare și mic dejun cabin: Cabină + camp_pitch: Teren pentru camping camp_site: Loc de campare caravan_site: Parc de rulote chalet: Cabană @@ -1147,6 +1256,7 @@ ro: picnic_site: Loc de picnic theme_park: Parc tematic viewpoint: Punct de panoramă + wilderness_hut: Colibă în sălbăticie zoo: Gradină zoologică tunnel: building_passage: Pasaj între clădiri @@ -1173,12 +1283,15 @@ ro: "yes": Cale navigabilă admin_levels: level2: Frontieră de țară + level3: Limită Regiune level4: Frontieră de stat level5: Frontieră de regiune level6: Frontieră de județ + level7: Limită Municipalitate level8: Limită de oraș level9: Limita satului level10: Limită de suburbie + level11: Limită Cartier types: cities: Orașe towns: Orășele @@ -1242,7 +1355,7 @@ ro: reopened: Starea problemei a fost setată la 'Deschis' comments: comment_from_html: Comentariu de la %{user_link} pe %{comment_created_at} - reassign_param: Realocaţi problema? + reassign_param: Realocați problema? reports: reported_by_html: Raportat %{category} de %{user} pe %{updated_at} helper: @@ -1347,6 +1460,7 @@ ro: footer: De asemenea, puteți citi comentariul la %{readurl} și puteți să comentați la %{commenturl} sau să răspundeți la %{replyurl} message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: Salut, %{to_user}, header: '%{from_user} v-a trimis un mesaj prin OpenStreetMap cu subiectul %{subject}:' footer_html: De asemenea, puteți citi mesajul la %{readurl} și puteți răspunde @@ -1356,11 +1470,14 @@ ro: subject: '[OpenStreetMap] %{user} te-a adaugat ca prieten' had_added_you: '%{user} te-a adăugat ca prieten pe OpenStreetMap.' see_their_profile: Puteți vedea profilul lor la %{userurl}. + see_their_profile_html: Puteți vedea profilul respectiv la %{userurl}. befriend_them: De asemenea, îi puteți adăuga ca prieten la %{befriendurl} gpx_failure: + hi: Salut %{to_user}, failed_to_import: 'nu a reușit să importe. Iată eroarea:' subject: '[OpenStreetMap] eșec import fișier GPX' gpx_success: + hi: Salut %{to_user}, loaded_successfully: other: încărcat cu succes cu %{trace_points} din 1 punct posibil. subject: '[OpenStreetMap] succes import fișier GPX' @@ -1424,16 +1541,45 @@ ro: commented_changeset: '%{commenter} a lăsat un comentariu %{time} cu privire la un set de modificări pe care îl urmăriți creat de %{changeset_author}' partial_changeset_with_comment: cu comentariul '%{changeset_comment}' + partial_changeset_with_comment_html: cu comentariul '%{changeset_comment}' partial_changeset_without_comment: fără comentarii details: Mai multe detalii despre setul de modificări pot fi găsite la adresa %{url}. unsubscribe: Pentru a vă dezabona de la actualizările acestei setări de modificări, vizitați %{url} și dați clic pe "Dezabonați". + confirmations: + confirm: + heading: Verificați-vă e-mailul! + introduction_1: V-am trimis un e-mail de confirmare. + introduction_2: Confirmați-vă contul făcând click pe linkul din e-mail și veți + putea începe cartografierea. + press confirm button: Apăsați butonul de confirmare de mai jos pentru a vă activa + contul. + button: Confirmă + success: Confirmat contul dvs., vă mulțumim pentru înscrierea! + already active: Acest cont a fost deja confirmat. + unknown token: Codul de confirmare a expirat sau nu există. + reconfirm_html: Dacă aveți nevoie să retrimitem e-mailul de confirmare, faceți + clic aici. + confirm_resend: + success_html: Am trimis o nouă notă de confirmare către %{email} și de îndată + ce vă confirmați contul, veți putea obține cartografiere.

    Dacă + utilizați un sistem antispam care trimite cereri de confirmare, vă rugăm să + asigurați-vă că ați lăsat pe lista albă %{sender} ca fiind imposibil să răspundeți + la orice solicitări de confirmare. + failure: Utilizatorul %{name} nu a fost găsit. + confirm_email: + heading: Confirmați o schimbare a adresei de e-mail + press confirm button: Apăsați butonul de confirmare de mai jos pentru a confirma + noua adresă de e-mail. + button: Confirmă + success: Ați confirmat schimbarea adresei de e-mail! + failure: O adresă de e-mail a fost deja confirmată cu acest token. + unknown_token: Codul de confirmare a expirat sau nu există. messages: inbox: title: Mesaje primite my_inbox: Mesaje primite - outbox: Mesaje trimise messages: Aveți mesaje %{new_messages} și %{old_messages} new_messages: one: '%{count} mesaj nou' @@ -1451,7 +1597,7 @@ ro: unread_button: Marchează ca necitit read_button: Marchează ca citit reply_button: Răspunde - destroy_button: Şterge + destroy_button: Șterge new: title: Trimite mesajul send_message_to_html: Trimiteți un mesaj nou către %{name} @@ -1468,9 +1614,6 @@ ro: body: Ne pare rău că nu există niciun mesaj cu acel id. outbox: title: Mesaje trimise - my_inbox_html: Mesajele mele primite - inbox: mesaje primite - outbox: mesaje trimise messages: one: Aveți %{count} mesaj trimis other: Aveți %{count} (de) mesaje trimise @@ -1491,25 +1634,118 @@ ro: date: Dată reply_button: Răspunde unread_button: Marchează ca necitit - destroy_button: Ştergeți + destroy_button: Ștergeți back: Înapoi to: Către wrong_user: Sunteți conectat ca `%{user}', dar mesajul pe care ați solicitat să îl citiți nu a fost trimis de către sau către respectivul utilizator. Conectați-vă ca utilizatorul corect pentru a-l citi. sent_message_summary: - destroy_button: Şterge + destroy_button: Șterge mark: as_read: Mesaj marcat ca fiind citit as_unread: Mesaj marcat ca necitit destroy: destroyed: Mesaj șters + passwords: + lost_password: + title: Parola pierdută + heading: Ai uitat parola? + email address: 'Adresa de e-mail:' + new password button: Resetare parolă + help_text: Introduceți adresa de e-mail pe care ați utilizat-o pentru a vă înscrie, + vom trimite un link la aceasta pe care îl puteți utiliza pentru a reseta parola. + notice email on way: Ne pare rău că ați pierdut-o :-( dar un e-mail este pe + drum, astfel încât să puteți să-l resetați în curând. + notice email cannot find: Nu am putut găsi adresa de e-mail, îmi pare rău. + reset_password: + title: Resetare parolă + heading: Resetați parola pentru %{user} + reset: Resetează parola + flash changed: Parola dumneavoastră a fost schimbată. + flash token bad: Nu ați găsit acel simbol, verificați adresa URL? + sessions: + new: + title: Autentificare + heading: Autentificare + email or username: 'Adresa de e-mail sau numele de utilizator:' + password: 'Parolă:' + openid_html: '%{logo} OpenID:' + remember: Ține-mă minte + lost password link: Parolă pierdută/uitată? + login_button: Autentificare + register now: Formular de inregistrare + with username: 'Aveți deja un cont OpenStreetMap? Vă rugăm să vă conectați cu + numele dvs. de utilizator și parola:' + with external: 'Alternativ, utilizați o terță parte pentru a vă conecta:' + new to osm: Nou pentru OpenStreetMap? + to make changes: Pentru a face schimbări în datele OpenStreetMap, trebuie să + aveți un cont. + create account minute: Creează un cont. E nevoie doar de un minut. + no account: Nu aveți cont încă? + account not active: Ne pare rău, contul dvs. nu este încă activ.
    Utilizați + linkul din e-mailul de confirmare a contului pentru a vă activa contul sausolicitați un nou e-mail de confirmare . + account is suspended: Ne pare rău, contul dvs. a fost suspendat din cauza unei + activități suspecte.
    Vă rugăm să contactați webmasterul dacă + doriți să discutați acest lucru. + auth failure: Ne pare rău, nu v-am putut conecta la aceste detalii. + openid_logo_alt: Conectați-vă cu un OpenID + auth_providers: + openid: + title: Login with OpenID + alt: Conectați-vă cu o adresă URL OpenID + google: + title: Autentificare cu Google + alt: Conectați-vă cu un Google OpenID + facebook: + title: Autentificare cu Facebook + alt: Conectați-vă cu un cont Facebook + windowslive: + title: Conectați-vă cu Windows Live + alt: Conectați-vă cu un cont Windows Live + github: + title: Conectați-vă cu GitHub + alt: Conectați-vă cu un cont GitHub + wikipedia: + title: Autentificare la Wikipedia + alt: Conectați-vă cu un cont Wikipedia + yahoo: + title: Autentificare cu Yahoo + alt: Autentificați-vă cu un Yahoo OpenID + wordpress: + title: Conectați-vă cu Wordpress + alt: Conectați-vă cu un cont Wordpress OpenID + aol: + title: Conectați-vă cu AOL + alt: Conectați-vă cu un AOL OpenID + destroy: + title: Ieșire + heading: Deconectare din OpenStreetMap + logout_button: Ieșire + shared: + markdown_help: + headings: Titluri + heading: Titlu + subheading: Subtitlu + unordered: Lista neordonată + ordered: Listă ordonată + first: Primul element + second: Al doilea element + link: Legătură + text: Text + image: Imagine + alt: Text alternativ + url: URL + richtext_field: + edit: Editează + preview: Previzualizare site: about: next: Înainte copyright_html: ©Contributori
    OpenStreetMap - used_by_html: '%{name} împuternicește datele de pe hărți pe mii de site-uri - web, aplicații mobile și dispozitive hardware' + used_by_html: '%{name} oferă datele hărților pe mii de site-uri web, aplicații + mobile și dispozitive hardware' lede_text: |- OpenStreetMap este construit de o comunitate de cartografi care contribuie și întrețin datele despre drumuri, trasee, cafenele, stații de cale ferată și multe altele din întreaga lume. @@ -1569,8 +1805,7 @@ ro: doar sub aceeași licență. Aici codul legal sunt explicate drepturile și responsabilitățile. intro_3_1_html: |- - Cartografia din hărțile noastre și documentația noastră sunt - licențiat sub Creative + Documentația noastră este licențiată sub Creative Commons Attribution-ShareAlike 2.0 (CC BY-SA). credit_title_html: Cum se creditează OpenStreetMap credit_1_html: Noi cerem să utilizați creditul© contribuitori OpenStreetMap& @@ -1814,7 +2049,7 @@ ro: from: De la to: Către where_am_i: Unde mă aflu? - where_am_i_title: Descrie locaÅ£ia curentă folosind motorul de căutare + where_am_i_title: Descrie locația curentă folosind motorul de căutare submit_text: Mergi reverse_directions_text: Inversează direcția key: @@ -1887,23 +2122,6 @@ ro: bicycle_shop: Magazin de biciclete bicycle_parking: Parcare pentru biciclete toilets: Toalete - richtext_area: - edit: Modificare - preview: Previzualizare - markdown_help: - title_html: Parsat cu kramdown - headings: Titluri - heading: Titlu - subheading: Subtitlu - unordered: Lista neordonată - ordered: Lista neordonată - first: Primul element - second: Al doilea element - link: Legătură - text: Text - image: Imagine - alt: Alt text - url: URL welcome: title: Bun venit! introduction_html: |- @@ -1986,6 +2204,7 @@ ro: ca acestea să se finalizeze înainte de a mai încărca, pentru a nu bloca coada de așteptare pentru ceilalți utilizatori. edit: + cancel: Anulează title: Editarea traseului %{name} heading: Editarea traseului %{name} visibility_help: ce înseamnă asta? @@ -2002,6 +2221,7 @@ ro: uploaded: 'Încărcate:' points: 'Puncte:' start_coordinates: 'Start coordonate:' + coordinates_html: '%{latitude}; %{longitude}' map: hartă edit: modificare owner: 'Proprietar:' @@ -2021,11 +2241,11 @@ ro: pending: ÎN AȘTEPTARE count_points: one: 1 punct - other: '%{count} puncte' + few: '%{count} puncte' + other: "" more: mai multe trace_details: Vezi detaliile urmei view_map: Vezi hartă - edit: modificare edit_map: Modificare hartă public: PUBLIC identifiable: IDENTIFICABILĂ @@ -2033,7 +2253,6 @@ ro: trackable: URMĂRITĂ by: de in: în - map: hartă index: public_traces: Trasee GPS publice my_traces: Urmele mele GPS @@ -2148,80 +2367,6 @@ ro: destroy: flash: A distrus înregistrarea aplicației clientului users: - login: - title: Autentificare - heading: Autentificare - email or username: 'Adresa de e-mail sau numele de utilizator:' - password: 'Parolă:' - openid_html: '%{logo} OpenID:' - remember: Ține-mă minte - lost password link: Parolă pierdută/uitată? - login_button: Autentificare - register now: Formular de inregistrare - with username: 'Aveți deja un cont OpenStreetMap? Vă rugăm să vă conectați cu - numele dvs. de utilizator și parola:' - with external: 'Alternativ, utilizați o terță parte pentru a vă conecta:' - new to osm: Nou pentru OpenStreetMap? - to make changes: Pentru a face schimbări în datele OpenStreetMap, trebuie să - aveți un cont. - create account minute: Creează un cont. E nevoie doar de un minut. - no account: Nu aveți cont încă? - account not active: Ne pare rău, contul dvs. nu este încă activ.
    Utilizați - linkul din e-mailul de confirmare a contului pentru a vă activa contul sausolicitați un nou e-mail de confirmare . - account is suspended: Ne pare rău, contul dvs. a fost suspendat din cauza unei - activități suspecte.
    Vă rugăm să contactați webmasterul dacă - doriți să discutați acest lucru. - auth failure: Ne pare rău, nu v-am putut conecta la aceste detalii. - openid_logo_alt: Conectați-vă cu un OpenID - auth_providers: - openid: - title: Login with OpenID - alt: Conectați-vă cu o adresă URL OpenID - google: - title: Autentificare cu Google - alt: Conectați-vă cu un Google OpenID - facebook: - title: Autentificare cu Facebook - alt: Conectați-vă cu un cont Facebook - windowslive: - title: Conectați-vă cu Windows Live - alt: Conectați-vă cu un cont Windows Live - github: - title: Conectați-vă cu GitHub - alt: Conectați-vă cu un cont GitHub - wikipedia: - title: Autentificare la Wikipedia - alt: Conectați-vă cu un cont Wikipedia - yahoo: - title: Autentificare cu Yahoo - alt: Autentificați-vă cu un Yahoo OpenID - wordpress: - title: Conectați-vă cu Wordpress - alt: Conectați-vă cu un cont Wordpress OpenID - aol: - title: Conectați-vă cu AOL - alt: Conectați-vă cu un AOL OpenID - logout: - title: Ieșire - heading: Deconectare din OpenStreetMap - logout_button: Ieșire - lost_password: - title: Parola pierdută - heading: Ai uitat parola? - email address: 'Adresa de e-mail:' - new password button: Resetare parolă - help_text: Introduceți adresa de e-mail pe care ați utilizat-o pentru a vă înscrie, - vom trimite un link la aceasta pe care îl puteți utiliza pentru a reseta parola. - notice email on way: Ne pare rău că ați pierdut-o :-( dar un e-mail este pe - drum, astfel încât să puteți să-l resetați în curând. - notice email cannot find: Nu am putut găsi adresa de e-mail, îmi pare rău. - reset_password: - title: Resetare parolă - heading: Resetați parola pentru %{user} - reset: Resetează parola - flash changed: Parola dumneavoastră a fost schimbată. - flash token bad: Nu ați găsit acel simbol, verificați adresa URL? new: title: Înregistrare no_auto_account_create: Din păcate, în prezent nu putem crea automat un cont @@ -2359,13 +2504,13 @@ ro: account: title: Modificare cont my settings: Setările mele - current email address: 'Adresa de e-mail actuală:' - external auth: 'Autentificare externă:' + current email address: Adresa de e-mail actuală + external auth: Autentificare externă openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: Ce este aceasta? public editing: - heading: 'Editarea publică:' + heading: Editare publică enabled: Activat. Nu este anonim și poate edita date. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: Ce este aceasta? @@ -2383,7 +2528,7 @@ ro: că devine publică.
  • Această acțiune nu poate fi inversată și toți utilizatorii noi sunt acum publici în mod implicit.
  • contributor terms: - heading: 'Termenii colaboratorului:' + heading: Termenii contribuitorului agreed: Ați fost de acord cu noii Termeni ai Contributorului. not yet agreed: Încă nu ați fost de acord cu noii Termeni de Contributor. review link text: Vă rugăm să urmați acest link la comoditatea dvs. pentru @@ -2392,10 +2537,11 @@ ro: sunt în Domeniul Public. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: Ce este aceasta? - image: 'Imagine:' + image: Imagine gravatar: gravatar: Utilizați Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Ce este Gravatar? disabled: Gravatar a fost dezactivat. enabled: Afișarea Gravatarului dvs. a fost activată. new image: Adaugă imagine nouă @@ -2403,7 +2549,7 @@ ro: delete image: Eliminați imaginea curentă replace image: Înlocuiți imaginea curentă image size hint: (imagini pătrate cel puțin 100x100 merg cel mai bine) - home location: 'Locație Acasă:' + home location: Locație Acasă no home location: Nu ați introdus locația dvs. de domiciliu. update home location on click: Actualizați locația locuinței dvs. când faceți click pe hartă? @@ -2414,34 +2560,6 @@ ro: cu succes. Verificați e-mailul pentru o notă pentru a confirma noua adresă de e-mail. flash update success: Informațiile despre utilizator s-au actualizat cu succes. - confirm: - heading: Verificați-vă e-mailul! - introduction_1: V-am trimis un e-mail de confirmare. - introduction_2: Confirmați-vă contul făcând click pe linkul din e-mail și veți - putea începe cartografierea. - press confirm button: Apăsați butonul de confirmare de mai jos pentru a vă activa - contul. - button: Confirmă - success: Confirmat contul dvs., vă mulțumim pentru înscrierea! - already active: Acest cont a fost deja confirmat. - unknown token: Codul de confirmare a expirat sau nu există. - reconfirm_html: Dacă aveți nevoie să retrimitem e-mailul de confirmare, faceți - clic aici. - confirm_resend: - success_html: Am trimis o nouă notă de confirmare către %{email} și de îndată - ce vă confirmați contul, veți putea obține cartografiere.

    Dacă - utilizați un sistem antispam care trimite cereri de confirmare, vă rugăm să - asigurați-vă că ați lăsat pe lista albă %{sender} ca fiind imposibil să răspundeți - la orice solicitări de confirmare. - failure: Utilizatorul %{name} nu a fost găsit. - confirm_email: - heading: Confirmați o schimbare a adresei de e-mail - press confirm button: Apăsați butonul de confirmare de mai jos pentru a confirma - noua adresă de e-mail. - button: Confirmă - success: Ați confirmat schimbarea adresei de e-mail! - failure: O adresă de e-mail a fost deja confirmată cu acest token. - unknown_token: Codul de confirmare a expirat sau nu există. set_home: flash success: Locația locuinței a fost salvată cu succes go_public: @@ -2638,6 +2756,7 @@ ro: custom_dimensions: Setați dimensiuni personalizate format: 'Format:' scale: Scară + image_dimensions: Imaginea va afișa stratul standard la %{width} x %{height} download: Descărcare short_url: URL scurt include_marker: Includeți marcator @@ -2654,20 +2773,24 @@ ro: map: zoom: in: Mărește - out: Micşorează + out: Micșorează locate: title: Arată locația mea metersPopup: one: Sunteți la un metru de acest punct - other: Sunteți la %{count} metri de acest punct + few: Sunteți la %{count} metri de acest punct + other: "" feetPopup: one: Sunteți la un picior unitate de măsură de acest punct - other: Suntețî la %{count} picioare unitate de măsură de acest punct + few: Sunteți la %{count} picioare unitate de măsură de acest punct + other: "" base: standard: Standard + cyclosm: CyclOSM cycle_map: Hartă de ciclism transport_map: Hartă de transport hot: Umanitară + opnvkarte: ÖPNVKarte layers: header: Straturile hărții notes: Notație hartă @@ -2677,7 +2800,7 @@ ro: title: Straturi copyright: © contribuitori OpenStreetMap donate_link_text: - terms: Website şi API terms + terms: Termeni site și API thunderforest: Plăci amabilitatea Andy Allan hotosm: Stilul plăcilor de Humanitarian diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 1857f2902..f117f37c0 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -53,6 +53,7 @@ # Author: Meerrahtar # Author: Megakott # Author: Mike like0708 +# Author: Mike140 # Author: Mixaill # Author: Movses # Author: MuratTheTurkish @@ -238,6 +239,10 @@ ru: needs_view: Позволить ли пользователю входить в систему, прежде, чем блокировка будет снята? user: + email_confirmation: Ваш адрес не будет отображаться публично, смотрите нашу + политику конфиденциальности + для получения дополнительной информации. new_email: (не будет показан) datetime: distance_in_words_ago: @@ -341,6 +346,16 @@ ru: anonymous: аноним no_comment: (комментарий отсутствует) part_of: Участвует в + part_of_relations: + one: '%{count} отношение' + few: '%{count} отношения' + many: '%{count} отношений' + other: "" + part_of_ways: + one: '%{count} линии' + few: '%{count} линиях' + many: '%{count} линиях' + other: "" download_xml: Скачать XML view_history: Посмотреть историю view_details: Подробнее @@ -373,6 +388,11 @@ ru: title_html: 'Линия: %{name}' history_title_html: 'История линии: %{name}' nodes: Точки + nodes_count: + one: '%{count} точка' + few: '%{count} точки' + many: '%{count} точек' + other: "" also_part_of_html: one: содержится в линии %{related_ways} other: содержится в линиях %{related_ways} @@ -380,6 +400,11 @@ ru: title_html: 'Отношение: %{name}' history_title_html: 'История отношения: %{name}' members: Участники + members_count: + one: '%{count} член' + few: '%{count} члена' + many: '%{count} членов' + other: "" relation_member: entry_role_html: '%{type} %{name} в роли %{role}' type: @@ -530,6 +555,7 @@ ru: написания. Или, возможно, ссылка, по которой вы перешли, ошибочна. diary_entry: posted_by_html: Опубликован %{link_user} %{created} на языке %{language_link}. + updated_at_html: Последнее обновление %{updated}. comment_link: Оставить комментарий reply_link: Написать автору comment_count: @@ -604,6 +630,7 @@ ru: pylon: Опора линии электропередач station: Станция канатного подъёмника t-bar: Т-образные подъёмники-буксиры + "yes": Воздушная дорога aeroway: aerodrome: Аэродром airstrip: Взлётно-посадочная полоса @@ -614,10 +641,12 @@ ru: holding_position: Место ожидания parking_position: Позиция парковки runway: Взлётно-посадочная полоса + taxilane: Ряд для такси taxiway: Рулёжная дорожка terminal: Терминал windsock: Ветроуказатель amenity: + animal_boarding: Интернат для животных animal_shelter: Приют для животных arts_centre: Центр искусств atm: Банкомат @@ -654,6 +683,7 @@ ru: drinking_water: Питьевая вода driving_school: Автошкола embassy: Посольство + events_venue: Место проведения мероприятий fast_food: Фаст-фуд ferry_terminal: Паромная станция fire_station: Пожарная станция @@ -691,9 +721,12 @@ ru: prison: Тюрьма pub: Паб public_bath: Общественная баня + public_bookcase: Общественный книжный шкаф public_building: Общественное здание + ranger_station: Станция рейнджеров recycling: Место утилизации restaurant: Ресторан + sanitary_dump_station: Санитарная свалка school: Школа shelter: Укрытие shower: Душ @@ -706,18 +739,27 @@ ru: theatre: Театр toilets: Туалет townhall: Городская администрация + training: Учебный центр university: Университет + vehicle_inspection: Техосмотр vending_machine: Торговый автомат veterinary: Ветеринарная клиника village_hall: Общественный центр waste_basket: Урна waste_disposal: Мусорный бак + waste_dump_site: Свалка отходов + watering_place: Водопой water_point: Набор воды + weighbridge: Мостовые весы + "yes": Удобства boundary: + aboriginal_lands: Земли аборигенов administrative: Административная граница census: Граница переписного участка national_park: Национальный парк + political: Избирательная граница protected_area: Охраняемая территория + "yes": Граница bridge: aqueduct: Акведук boardwalk: Тротуар @@ -726,21 +768,31 @@ ru: viaduct: Виадук "yes": Мост building: + apartment: Квартира apartments: Квартиры + barn: Амбар bungalow: Бунгало cabin: Хижина chapel: Часовня church: Церковь + civic: Гражданское здание + college: Здание колледжа commercial: Офисное здание construction: Строящееся здание + detached: Особняк dormitory: Общежитие + duplex: Дуплекс farm: Ферма + farm_auxiliary: Вспомогательный фермерский дом garage: Гараж garages: Гаражи + greenhouse: Теплица hangar: Ангар hospital: Здание больницы hotel: Гостиница house: Дом + houseboat: Плавучий дом + hut: Хижина industrial: Промышленное здание kindergarten: Детский сад manufacture: Промышленное здание @@ -751,7 +803,11 @@ ru: roof: Крыша ruins: Разрушенное здание school: Здание школы + semidetached_house: Двухквартирный дом + service: Служебное здание shed: Сарай + stable: Конюшня + static_caravan: Передвижной дом temple: Здание храма terrace: Здание с террасой train_station: Железнодорожный вокзал @@ -759,13 +815,19 @@ ru: warehouse: Склад "yes": Здание club: + scout: База скаутов sport: Спортивный клуб "yes": Клуб craft: beekeper: Пчеловод + blacksmith: Кузнец brewery: Пивоварня carpenter: Плотник + caterer: Поставщик продуктов питания + confectionery: Кондитерская + dressmaker: Ателье electrician: Электрик + electronics_repair: Ремонт электроники gardener: Садовник painter: Художник photographer: Фотограф @@ -774,6 +836,7 @@ ru: sawmill: Лесопилка shoemaker: Сапожник tailor: Портной + winery: Винодельня "yes": Мастерская emergency: ambulance_station: Станция скорой медицинской помощи @@ -835,6 +898,7 @@ ru: boundary_stone: Пограничный камень building: Историческое здание bunker: Бункер + cannon: Историческая пушка castle: Крепость church: Церковь city_gate: Городские ворота @@ -847,6 +911,7 @@ ru: mine: Рудник mine_shaft: Шахтный ствол monument: Монумент + railway: Историческая железная дорога roman_road: Римская дорога ruins: Развалины stone: Камень @@ -879,6 +944,7 @@ ru: military: Военная территория mine: Шахта orchard: Фруктовый сад + plant_nursery: Питомник для растений quarry: Карьер railway: Железная дорога recreation_ground: Зона отдыха @@ -906,6 +972,7 @@ ru: miniature_golf: Минигольф nature_reserve: Заповедник park: Парк + picnic_table: Стол для пикника pitch: Спортивная площадка playground: Детская игровая площадка recreation_ground: Зона отдыха @@ -920,12 +987,16 @@ ru: "yes": Досуг man_made: adit: Штольня + advertising: Реклама + antenna: Антенна + avalanche_protection: Защита от лавин beacon: Маяк beehive: Улей breakwater: Волнорез bridge: Мост bunker_silo: Бункер chimney: Дымовая труба + communications_tower: Башня связи crane: Кран cross: Перекресток dolphin: Причальная тумба @@ -936,6 +1007,7 @@ ru: groyne: Буна kiln: Печь lighthouse: Маяк + manhole: Люк mast: Мачта mine: Рудник mineshaft: Шахтный ствол @@ -945,8 +1017,11 @@ ru: pipeline: Трубопровод pumping_station: Насосная станция silo: Силос + snow_cannon: Снежная пушка + snow_fence: Снегозащитное заграждение storage_tank: Крытый резервуар surveillance: Камера наблюдения + telescope: Телескоп tower: Башня wastewater_plant: Станция очистки сточных вод watermill: Водяная мельница @@ -964,11 +1039,13 @@ ru: mountain_pass: "yes": Перевал natural: + atoll: Атолл bay: Залив beach: Пляж cape: Мыс cave_entrance: Вход в пещеру cliff: Скальный обрыв + coastline: Береговая линия crater: Кратер dune: Дюна fell: Горная пустошь @@ -985,6 +1062,7 @@ ru: moor: Вересковая пустошь mud: Грязь peak: Вершина горы + peninsula: Полуостров point: Мыс reef: Риф ridge: Хребет @@ -1016,11 +1094,13 @@ ru: it: IT-офис lawyer: Юрист ngo: Офис некоммерческой организации + tax_advisor: Налоговый консультант telecommunication: Офис телекоммуникационной компании travel_agent: Туристическое агентство "yes": Офисы place: allotments: Садоводство + archipelago: Архипелаг city: Город city_block: Городской квартал country: Страна @@ -1073,11 +1153,14 @@ ru: shop: alcohol: Магазин алкоголя antiques: Антиквариат + appliance: Магазин бытовой техники art: Художественный салон baby_goods: Товары для детей bag: Магазин сумок bakery: Булочная + bathroom_furnishing: Мебель для ванной beauty: Салон красоты + bed: Постельные принадлежности beverages: Магазин напитков bicycle: Веломагазин bookmaker: Букмекер @@ -1099,6 +1182,8 @@ ru: convenience: Продовольственный магазин copyshop: Услуги копирования cosmetics: Косметика + curtain: Магазин штор + dairy: Молочный магазин deli: Магазин деликатесов department_store: Универсам discount: Магазин распродаж @@ -1131,6 +1216,7 @@ ru: kiosk: Киоск kitchen: Магазин кухонь laundry: Прачечная + locksmith: Слесарь lottery: Лотерея mall: Молл massage: Массаж @@ -1143,12 +1229,15 @@ ru: organic: Магазин органических продуктов outdoor: Магазин для активного отдыха paint: Лавка художника + pastry: Кондитерская pawnbroker: Ломбард perfumery: Парфюмерия pet: Зоомагазин + pet_grooming: Уход за домашними животными photo: Фотомагазин seafood: Морепродукты second_hand: Комиссионный магазин + sewing: Швейный цех shoes: Обувной магазин sports: Спортивный магазин stationery: Канцелярские товары @@ -1212,6 +1301,7 @@ ru: "yes": Водный маршрут admin_levels: level2: Граница страны + level3: Граница региона level4: Граница штата, субъекта level5: Граница региона level6: Граница района @@ -1382,12 +1472,18 @@ ru: subject: Пользователь [OpenStreetMap] %{user} оставил комментарий в дневнике hi: Здравствуйте, %{to_user}, header: '%{from_user} прокомментировал на OpenStreetMap с темой %{subject}:' + header_html: '%{from_user} прокомментировал на OpenStreetMap с темой %{subject}:' footer: Вы можете также прочитать комментарий — %{readurl}, оставить свой — %{commenturl} или ответить — %{replyurl} message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: Здравствуйте, %{to_user}, header: 'Пользователь OpenStreetMap %{from_user} отправил вам сообщение с темой %{subject}:' + header_html: 'Пользователь OpenStreetMap %{from_user} отправил вам сообщение + с темой %{subject}:' + footer: Вы можете также прочитать сообщение на странице %{readurl} и ответить + на него на %{replyurl} footer_html: Вы можете также прочитать сообщение на странице %{readurl} и ответить на него на %{replyurl} friendship_notification: @@ -1395,12 +1491,16 @@ ru: subject: Пользователь [OpenStreetMap] %{user} добавил вас в список своих друзей had_added_you: '%{user} добавил вас в друзья на OpenStreetMap.' see_their_profile: 'Вы можете просмотреть информацию о них по ссылке: %{userurl}.' + see_their_profile_html: 'Вы можете просмотреть информацию о них по ссылке: %{userurl}.' befriend_them: Вы также можете добавить их в качестве друзей в %{befriendurl}. + befriend_them_html: Вы также можете добавить их в качестве друзей в %{befriendurl}. gpx_failure: + hi: Здравствуйте, %{to_user}, failed_to_import: 'сбой импорта. Произошла ошибка:' import_failures_url: http://wiki.openstreetmap.org/wiki/GPX_Import_Failures subject: '[OpenStreetMap] Сбой импорта GPX' gpx_success: + hi: Здравствуйте, %{to_user}, loaded_successfully: one: успешно загружена %{trace_points} точка из %{possible_points} возможной. few: успешно загружены %{trace_points} точки из %{possible_points} возможных. @@ -1439,8 +1539,12 @@ ru: заметку' your_note: '%{commenter} оставил комментарий к одной из ваших заметок около %{place}.' + your_note_html: '%{commenter} оставил комментарий к одной из ваших заметок + около %{place}.' commented_note: '%{commenter} оставил комментарий к одной из заметок, которую вы тоже комментировали. Заметка находится около %{place}.' + commented_note_html: '%{commenter} оставил комментарий к одной из заметок, + которую вы тоже комментировали. Заметка находится около %{place}.' closed: subject_own: '[OpenStreetMap] %{commenter} обработал вашу заметку' subject_other: '[OpenStreetMap] %{commenter} обработал интересную вам заметку' @@ -1448,14 +1552,20 @@ ru: от %{place}.' commented_note: '%{commenter} обработал одну из вами прокомментированных заметок недалеко от %{place}.' + commented_note_html: '%{commenter} обработал одну из вами прокомментированных + заметок недалеко от %{place}.' reopened: subject_own: '[OpenStreetMap] %{commenter} открыл заново вашу заметку' subject_other: '[OpenStreetMap] %{commenter} открыл заново интересную вам заметку' your_note: '%{commenter} открыл заново одну из ваших заметок на карте недалеко от %{place}.' + your_note_html: '%{commenter} открыл заново одну из ваших заметок на карте + недалеко от %{place}.' commented_note: '%{commenter} открыл заново одну из вами прокомментированных заметок недалеко от %{place}.' + commented_note_html: '%{commenter} открыл заново одну из вами прокомментированных + заметок недалеко от %{place}.' details: Подробнее о заметке %{url}. changeset_comment_notification: hi: Здравствуйте, %{to_user}, @@ -1467,18 +1577,54 @@ ru: который вас интересует' your_changeset: '%{time} %{commenter} оставил комментарий к одному из ваших пакетов правок' + your_changeset_html: '%{time} %{commenter} оставил комментарий к одному из + ваших пакетов правок' commented_changeset: '%{time} участник %{commenter} оставил комментарий к отслеживаемому вами пакету правок, который был создан участником %{changeset_author}' + commented_changeset_html: '%{time} участник %{commenter} оставил комментарий + к отслеживаемому вами пакету правок, который был создан участником %{changeset_author}' partial_changeset_with_comment: с комментарием '%{changeset_comment}' + partial_changeset_with_comment_html: с комментарием '%{changeset_comment}' partial_changeset_without_comment: без комментария details: Дополнительные сведения о пакете правок можно найти на %{url}. + details_html: Дополнительные сведения о пакете правок можно найти на %{url}. unsubscribe: Чтобы отказаться от новых сообщений для этого пакета правок, перейдите по ссылке %{url} и нажмите кнопку "Отписаться". + unsubscribe_html: Чтобы отказаться от подписки на обновления этого набора изменений, + зайдите на %{url} и нажмите «Отписаться». + confirmations: + confirm: + heading: Проверьте свою электронную почту! + introduction_1: Мы отправили вам подтверждение по электронной почте. + introduction_2: Подтвердите аккаунт, нажав на ссылку в письме. Затем вы сможете + править карту. + press confirm button: Нажмите кнопку ниже, чтобы активировать вашу учетную запись. + button: Подтвердить + success: Ваша учётная запись подтверждена, спасибо за регистрацию! + already active: Эта учётная запись уже подтверждена. + unknown token: Такой код подтверждения истек или не существует. + reconfirm_html: Если хотите, чтобы мы выслали ещё одно подтверждение по электронной + почте, нажмите здесь. + confirm_resend: + success_html: Мы выслали новое письмо с подтверждением на адрес %{email}, и + как только вы подтвердите вашу учётную запись, вы можете начать работать с + картами.

    Если вы используете антиспам-систему, посылающую запросы + на подтверждение, пожалуйста, внесите адрес %{sender} в ваш белый список, + так как мы не можем отвечать на такие запросы. + failure: Участник %{name} не найден. + confirm_email: + heading: Подтвердите изменение адреса электронной почты + press confirm button: Нажмите кнопку подтверждения чтобы подтвердить ваш новый + адрес электронной почты. + button: Подтвердить + success: Ваш адрес электронной почты был успешно изменён! + failure: Адрес электронной почты уже был подтверждён этим токеном. + unknown_token: Такой код подтверждения истёк или не существует. messages: inbox: title: Входящие my_inbox: Мои входящие - outbox: исходящие + my_outbox: Мои исходящие messages: У вас %{new_messages} и %{old_messages} new_messages: few: '%{count} новых сообщения' @@ -1522,9 +1668,8 @@ ru: Извините, но сообщения с таким ID нет. outbox: title: Исходящие - my_inbox_html: Мои %{inbox_link} - inbox: входящие - outbox: исходящие + my_inbox: Мои входящие + my_outbox: Мои исходящие messages: few: У вас %{count} отправленных сообщения many: У вас %{count} отправленных сообщений @@ -1560,9 +1705,92 @@ ru: as_unread: Сообщение отмечено как непрочитанное destroy: destroyed: Сообщение удалено + passwords: + lost_password: + title: Восстановление пароля + heading: Забыли пароль? + email address: 'Адрес электронной почты:' + new password button: Вышлите мне новый пароль + help_text: Введите адрес вашей электронной почты, который вы использовали для + подписки, и мы вышлем инструкции, как можно обновить ваш пароль. + notice email on way: Жаль, что вы потеряли пароль :-( но ничего, скоро придёт + письмо и вы сможете поменять свой пароль. + notice email cannot find: Такой адрес не зарегистрирован. + reset_password: + title: Повторная установка пароля + heading: Повторная установка пароля для %{user} + reset: Установить пароль + flash changed: Ваш пароль был изменён. + flash token bad: Невозможно найти такой код подтверждения, проверьте ссылку. + sessions: + new: + title: Представьтесь + heading: Представьтесь + email or username: 'Эл. почта или имя пользователя:' + password: 'Пароль:' + openid_html: '%{logo} OpenID:' + remember: 'Запомнить меня:' + lost password link: Забыли пароль? + login_button: Представиться + register now: Зарегистрируйтесь + with username: 'У вас уже есть учётная запись OpenStreetMap? Пожалуйста, войдите + с вашим именем пользователя и паролем:' + with external: 'Кроме того, можете воспользоваться аккаунтом на другом сайте:' + new to osm: Впервые на OpenStreetMap? + to make changes: Чтобы вносить изменения в данные OpenStreetMap, вы должны иметь + учётную запись. + create account minute: Создайте учётную запись. Это займёт не больше минуты. + no account: У вас нет учётной записи? + account not active: Извините, ваша учётная запись ещё не активирована.
    Чтобы + активировать её, пожалуйста, нажмите на ссылку в отправленном вам письме, + или запросите отправку нового письма-подтверждения. + account is suspended: Извините, ваша учётная запись была приостановлена из-за + подозрительной активности.
    Пожалуйста, свяжитесь с веб-мастером, + если вы хотите выяснить подробности. + auth failure: Извините, вход с этими именем или паролем невозможен. + openid_logo_alt: Войти с помощью OpenID + auth_providers: + openid: + title: Войти с помощью OpenID + alt: Войти с помощью OpenID URL + google: + title: Войти с помощью Google + alt: Войти с помощью Google OpenID + facebook: + title: Войти с помощью Facebook + alt: Войти с помощью учётной записи в Facebook + windowslive: + title: Войти с помощью Windows Live + alt: Войти с помощью учётной записи Windows Live + github: + title: Войти с GitHub + alt: Войти с учётной записи на GitHub + wikipedia: + title: Войти с помощью Википедии + alt: Вход с использованием учётной записи в Википедии + yahoo: + title: Войти с помощью Yahoo + alt: Войти с помощью Yahoo OpenID + wordpress: + title: Войти с помощью Wordpress + alt: Войти с помощью Wordpress OpenID + aol: + title: Войти с помощью AOL + alt: Войти с помощью AOL OpenID + destroy: + title: Выйти + heading: Выйти из OpenStreetMap + logout_button: Выйти shared: markdown_help: + title_html: Разобрано с помощью kramdown + headings: Заголовки + heading: Заголовок subheading: Подзаголовок + unordered: Неупорядоченный список + ordered: Упорядоченный список + first: Первый элемент + second: Второй элемент link: Ссылка text: Текст image: Изображение @@ -1941,23 +2169,6 @@ ru: bicycle_shop: Магазин велосипедов bicycle_parking: Парковка для велосипедов toilets: Туалет - richtext_area: - edit: Изменить - preview: Предварительный просмотр - markdown_help: - title_html: Разобрано с помощью kramdown - headings: Заголовки - heading: Заголовок - subheading: Подзаголовок - unordered: Неупорядоченный список - ordered: Упорядоченный список - first: Первый элемент - second: Второй элемент - link: Ссылка - text: Текст - image: Изображение - alt: Альтернативный текст - url: URL welcome: title: Добро пожаловать! introduction_html: Добро пожаловать на OpenStreetMap, открытую и свободную карту @@ -2054,6 +2265,7 @@ ru: uploaded: 'Передан на сервер:' points: 'Точек:' start_coordinates: 'Координаты начала:' + coordinates_html: '%{latitude}; %{longitude}' map: на карте edit: править owner: 'Владелец:' @@ -2078,7 +2290,6 @@ ru: more: подробнее trace_details: Показать данные трека view_map: Просмотр карты - edit: править edit_map: Править карту public: ОБЩЕДОСТУПНЫЙ identifiable: ИДЕНТИФИЦИРУЕМЫЙ @@ -2086,7 +2297,6 @@ ru: trackable: ОТСЛЕЖИВАЕМЫЙ by: 'Автор:' in: 'с тегами:' - map: карта index: public_traces: Общедоступные GPS-треки my_traces: Мои GPS-треки @@ -2200,80 +2410,6 @@ ru: destroy: flash: Уничтожена регистрация клиентского приложения users: - login: - title: Представьтесь - heading: Представьтесь - email or username: 'Эл. почта или имя пользователя:' - password: 'Пароль:' - openid_html: '%{logo} OpenID:' - remember: 'Запомнить меня:' - lost password link: Забыли пароль? - login_button: Представиться - register now: Зарегистрируйтесь - with username: 'У вас уже есть учётная запись OpenStreetMap? Пожалуйста, войдите - с вашим именем пользователя и паролем:' - with external: 'Кроме того, можете воспользоваться аккаунтом на другом сайте:' - new to osm: Впервые на OpenStreetMap? - to make changes: Чтобы вносить изменения в данные OpenStreetMap, вы должны иметь - учётную запись. - create account minute: Создайте учётную запись. Это займёт не больше минуты. - no account: У вас нет учётной записи? - account not active: Извините, ваша учётная запись ещё не активирована.
    Чтобы - активировать её, пожалуйста, нажмите на ссылку в отправленном вам письме, - или запросите отправку нового письма-подтверждения. - account is suspended: Извините, ваша учётная запись была приостановлена из-за - подозрительной активности.
    Пожалуйста, свяжитесь с веб-мастером, - если вы хотите выяснить подробности. - auth failure: Извините, вход с этими именем или паролем невозможен. - openid_logo_alt: Войти с помощью OpenID - auth_providers: - openid: - title: Войти с помощью OpenID - alt: Войти с помощью OpenID URL - google: - title: Войти с помощью Google - alt: Войти с помощью Google OpenID - facebook: - title: Войти с помощью Facebook - alt: Войти с помощью учётной записи в Facebook - windowslive: - title: Войти с помощью Windows Live - alt: Войти с помощью учётной записи Windows Live - github: - title: Войти с GitHub - alt: Войти с учётной записи на GitHub - wikipedia: - title: Войти с помощью Википедии - alt: Вход с использованием учётной записи в Википедии - yahoo: - title: Войти с помощью Yahoo - alt: Войти с помощью Yahoo OpenID - wordpress: - title: Войти с помощью Wordpress - alt: Войти с помощью Wordpress OpenID - aol: - title: Войти с помощью AOL - alt: Войти с помощью AOL OpenID - logout: - title: Выйти - heading: Выйти из OpenStreetMap - logout_button: Выйти - lost_password: - title: Восстановление пароля - heading: Забыли пароль? - email address: 'Адрес электронной почты:' - new password button: Вышлите мне новый пароль - help_text: Введите адрес вашей электронной почты, который вы использовали для - подписки, и мы вышлем инструкции, как можно обновить ваш пароль. - notice email on way: Жаль, что вы потеряли пароль :-( но ничего, скоро придёт - письмо и вы сможете поменять свой пароль. - notice email cannot find: Такой адрес не зарегистрирован. - reset_password: - title: Повторная установка пароля - heading: Повторная установка пароля для %{user} - reset: Установить пароль - flash changed: Ваш пароль был изменён. - flash token bad: Невозможно найти такой код подтверждения, проверьте ссылку. new: title: Регистрация no_auto_account_create: К сожалению, сейчас мы не можем автоматически создать @@ -2411,13 +2547,13 @@ ru: account: title: Изменить учетную запись my settings: Мои настройки - current email address: 'Текущий адрес электронной почты:' + current email address: Текущий адрес электронной почты external auth: 'Внешняя аутентификация:' openid: link: https://wiki.openstreetmap.org/wiki/RU:OpenID link text: что это? public editing: - heading: 'Публичная правка:' + heading: Общедоступная правка enabled: Включено. Можно редактировать. Правки не анонимны. enabled link: https://wiki.openstreetmap.org/wiki/RU:%D0%90%D0%BD%D0%BE%D0%BD%D0%B8%D0%BC%D0%BD%D1%8B%D0%B5_%D0%BF%D1%80%D0%B0%D0%B2%D0%BA%D0%B8 enabled link text: что это? @@ -2435,7 +2571,7 @@ ru: силы, а все новые пользователи теперь доступны для связи по умолчанию. contributor terms: - heading: 'Условия участия:' + heading: Условия участия agreed: Вы согласились с новыми Условиями участия. not yet agreed: Вы ещё не согласились с новыми Условиями участия. review link text: Пожалуйста, перейдите по этой ссылке в удобное для вас время @@ -2448,6 +2584,7 @@ ru: gravatar: gravatar: Использовать Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar?uselang=ru + what_is_gravatar: Что такое Gravatar? disabled: Gravatar отключён. enabled: Отображение вашего Gravatar включено. new image: Добавить изображение @@ -2456,7 +2593,7 @@ ru: replace image: Заменить текущее изображение image size hint: (квадратные изображения, по крайней мере 100×100, работают лучше) - home location: 'Моё местоположение:' + home location: Моё местоположение no home location: Вы не обозначили свое домашнее местоположение. update home location on click: Обновлять моё местоположение, когда я нажимаю на карту? @@ -2466,33 +2603,6 @@ ru: flash update success confirm needed: Информация о пользователе успешно обновлена. Проверьте свою электронную почту для подтверждения вашего нового адреса. flash update success: Информация о пользователе успешно обновлена. - confirm: - heading: Проверьте свою электронную почту! - introduction_1: Мы отправили вам подтверждение по электронной почте. - introduction_2: Подтвердите аккаунт, нажав на ссылку в письме. Затем вы сможете - править карту. - press confirm button: Нажмите кнопку ниже, чтобы активировать вашу учетную запись. - button: Подтвердить - success: Ваша учётная запись подтверждена, спасибо за регистрацию! - already active: Эта учётная запись уже подтверждена. - unknown token: Такой код подтверждения истек или не существует. - reconfirm_html: Если хотите, чтобы мы выслали ещё одно подтверждение по электронной - почте, нажмите здесь. - confirm_resend: - success_html: Мы выслали новое письмо с подтверждением на адрес %{email}, и - как только вы подтвердите вашу учётную запись, вы можете начать работать с - картами.

    Если вы используете антиспам-систему, посылающую запросы - на подтверждение, пожалуйста, внесите адрес %{sender} в ваш белый список, - так как мы не можем отвечать на такие запросы. - failure: Участник %{name} не найден. - confirm_email: - heading: Подтвердите изменение адреса электронной почты - press confirm button: Нажмите кнопку подтверждения чтобы подтвердить ваш новый - адрес электронной почты. - button: Подтвердить - success: Ваш адрес электронной почты был успешно изменён! - failure: Адрес электронной почты уже был подтверждён этим токеном. - unknown_token: Такой код подтверждения истёк или не существует. set_home: flash success: Домашнее местоположение сохранено go_public: @@ -2692,6 +2802,8 @@ ru: custom_dimensions: Выбрать размер вручную format: 'Формат:' scale: 'Масштаб:' + image_dimensions: На изображении будет показан стандартный слой в %{width} x + %{height} download: Скачать short_url: Короткая ссылка include_marker: Включая маркер @@ -2740,8 +2852,11 @@ ru: donate_link_text: terms: Условия использования сайта и API + cyclosm: Оформление тайлов выполнено CyclOSM, + хостинг от OpenStreetMap France thunderforest: Тайлы предоставлены Andy Allan + opnvkarte: Тайлы любезно предоставлены MeMoMaps hotosm: Оформление тайлов выполнено Humanitarian OpenStreetMap Team, хостинг от OpenStreetMap France diff --git a/config/locales/sat.yml b/config/locales/sat.yml index 8e2f31b48..758a6b38f 100644 --- a/config/locales/sat.yml +++ b/config/locales/sat.yml @@ -483,6 +483,12 @@ sat: text: ᱫᱟᱱ ᱮᱢᱢᱮ learn_more: ᱟᱨᱦᱚᱸ ᱪᱤᱫᱢᱮ more: ᱵᱟᱹᱲᱛᱤ + confirmations: + confirm: + heading: ᱟᱢᱟᱜ ᱤᱢᱮᱞ ᱡᱟᱸᱪ ᱛᱟᱢ! + button: ᱜᱚᱴᱟᱭ ᱢᱮ + confirm_email: + button: ᱜᱚᱴᱟᱭ ᱢᱮ messages: inbox: subject: ᱵᱤᱥᱚᱭ @@ -503,6 +509,33 @@ sat: back: ᱛᱟᱭᱚᱢ sent_message_summary: destroy_button: ᱜᱮᱫ ᱜᱤᱰᱤ + passwords: + lost_password: + title: ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱟᱫ ᱠᱮᱫᱟᱢ + email address: 'ᱤᱢᱮᱞ ᱴᱷᱤᱠᱟᱹᱬᱟ:' + reset_password: + flash changed: ᱟᱢᱟᱜ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱫᱚ ᱵᱚᱫᱚᱞᱮᱱᱟ ᱾ + sessions: + new: + title: ᱵᱚᱞᱚᱜ ᱢᱮ + heading: ᱵᱚᱞᱚᱜ ᱢᱮ + password: 'ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ:' + remember: ᱫᱤᱥᱟᱹᱭᱤᱧ ᱢᱮ + lost password link: ᱟᱢᱟᱜ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱟᱫᱟᱠᱟᱫᱟᱢ? + login_button: ᱵᱚᱞᱚᱜ ᱢᱮ + register now: ᱱᱤᱛᱜᱮ ᱚᱞ ᱦᱚᱪᱚᱜ ᱢᱮ + new to osm: OpenStreetMap ᱨᱮ ᱱᱟᱶᱟ ᱜᱮᱭᱟᱢ? + no account: ᱠᱷᱟᱛᱟ ᱵᱟᱱᱩᱜ ᱛᱟᱢᱟ? + auth_providers: + github: + title: ᱜᱤᱴᱦᱚᱵ ᱥᱟᱣᱛᱮ ᱞᱚᱜᱤᱱ ᱢᱮ + wikipedia: + title: ᱩᱭᱠᱤᱯᱤᱰᱤᱭᱟ ᱥᱟᱣᱛᱮ ᱞᱚᱜᱤᱱ ᱢᱮ + yahoo: + title: ᱭᱟᱦᱚ ᱥᱟᱣᱛᱮ ᱞᱚᱜᱤᱱ ᱢᱮ + destroy: + title: ᱩᱰᱩᱜᱚᱜᱢᱮ + logout_button: ᱩᱰᱩᱜᱚᱜᱢᱮ shared: markdown_help: link: ᱞᱤᱸᱠ @@ -548,15 +581,6 @@ sat: bicycle_shop: ᱥᱟᱭᱠᱤᱞ ᱫᱩᱠᱟᱹᱱ bicycle_parking: ᱥᱟᱭᱠᱤᱞ ᱯᱟᱨᱠᱤᱝ toilets: ᱴᱚᱭᱞᱮᱴᱠᱚ - richtext_area: - edit: ᱥᱟᱯᱲᱟᱣ - preview: ᱧᱮᱞ ᱵᱤᱰᱟᱹᱣ - markdown_help: - link: ᱡᱚᱱᱚᱲ - text: ᱚᱞ - image: ᱪᱤᱛᱟᱹᱨ - alt: ᱥᱟᱱᱟᱢ ᱚᱱᱚᱞᱠᱚ - url: URL welcome: title: ᱥᱟᱹᱜᱩᱱ ᱫᱟᱨᱟᱢ! whats_on_the_map: @@ -583,10 +607,8 @@ sat: trace: more: ᱵᱟᱹᱲᱛᱤ view_map: ᱱᱚᱠᱥᱟ ᱧᱮᱞ ᱢᱮ - edit: ᱥᱟᱯᱲᱟᱣ edit_map: ᱱᱚᱠᱥᱟ ᱥᱟᱯᱲᱟᱣ ᱢᱮ public: ᱦᱚᱲ ᱠᱚᱣᱟ - map: ᱱᱟᱠᱥᱟ oauth: authorize: allow_write_api: ᱱᱚᱠᱥᱟ ᱵᱚᱫᱚᱞ ᱢᱮ ᱾ @@ -600,31 +622,6 @@ sat: index: application: ᱟᱹᱨᱡᱤ ᱥᱟᱠᱟᱢ ᱧᱩᱛᱩᱢ users: - login: - title: ᱵᱚᱞᱚᱜ ᱢᱮ - heading: ᱵᱚᱞᱚᱜ ᱢᱮ - password: 'ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ:' - remember: ᱫᱤᱥᱟᱹᱭᱤᱧ ᱢᱮ - lost password link: ᱟᱢᱟᱜ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱟᱫᱟᱠᱟᱫᱟᱢ? - login_button: ᱵᱚᱞᱚᱜ ᱢᱮ - register now: ᱱᱤᱛᱜᱮ ᱚᱞ ᱦᱚᱪᱚᱜ ᱢᱮ - new to osm: OpenStreetMap ᱨᱮ ᱱᱟᱶᱟ ᱜᱮᱭᱟᱢ? - no account: ᱠᱷᱟᱛᱟ ᱵᱟᱱᱩᱜ ᱛᱟᱢᱟ? - auth_providers: - github: - title: ᱜᱤᱴᱦᱚᱵ ᱥᱟᱣᱛᱮ ᱞᱚᱜᱤᱱ ᱢᱮ - wikipedia: - title: ᱩᱭᱠᱤᱯᱤᱰᱤᱭᱟ ᱥᱟᱣᱛᱮ ᱞᱚᱜᱤᱱ ᱢᱮ - yahoo: - title: ᱭᱟᱦᱚ ᱥᱟᱣᱛᱮ ᱞᱚᱜᱤᱱ ᱢᱮ - logout: - title: ᱩᱰᱩᱜᱚᱜᱢᱮ - logout_button: ᱩᱰᱩᱜᱚᱜᱢᱮ - lost_password: - title: ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱟᱫ ᱠᱮᱫᱟᱢ - email address: 'ᱤᱢᱮᱞ ᱴᱷᱤᱠᱟᱹᱬᱟ:' - reset_password: - flash changed: ᱟᱢᱟᱜ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱫᱚ ᱵᱚᱫᱚᱞᱮᱱᱟ ᱾ new: title: ᱧᱩᱛᱩᱢ ᱚᱞ email address: 'ᱤᱢᱮᱞ ᱴᱷᱤᱠᱟᱹᱬᱟ:' @@ -673,11 +670,6 @@ sat: new image: ᱢᱤᱫᱴᱮᱱ ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ home location: 'ᱚᱲᱟᱜ ᱡᱟᱭᱜᱟ:' save changes button: ᱵᱚᱫᱚᱞᱠᱚ ᱪᱟᱺᱪᱟᱣ ᱢᱮ - confirm: - heading: ᱟᱢᱟᱜ ᱤᱢᱮᱞ ᱡᱟᱸᱪ ᱛᱟᱢ! - button: ᱜᱚᱴᱟᱭ ᱢᱮ - confirm_email: - button: ᱜᱚᱴᱟᱭ ᱢᱮ index: title: ᱵᱮᱵᱦᱟᱨᱤᱡᱽᱠᱩ heading: ᱵᱮᱵᱦᱟᱨᱤᱡᱽᱠᱩ diff --git a/config/locales/sc.yml b/config/locales/sc.yml index e500a39d6..efbb43e5c 100644 --- a/config/locales/sc.yml +++ b/config/locales/sc.yml @@ -752,6 +752,11 @@ sc: changeset_comment_notification: hi: Salude %{to_user}, greeting: Salude, + confirmations: + confirm: + button: Cunfirma + confirm_email: + button: Cunfirma messages: inbox: from: Dae @@ -786,6 +791,11 @@ sc: destroy_button: Cantzella destroy: destroyed: Messàgiu iscantzelladu + sessions: + new: + title: Intra + heading: Intra + login_button: Intra site: index: createnote: Annanghe una nota @@ -866,13 +876,6 @@ sc: bicycle_shop: Butega de bitzicletas bicycle_parking: Parchègiu pro bitzicletas toilets: Còmodu - richtext_area: - edit: Modìfica - preview: Anteprima - markdown_help: - link: Ligàmene - text: Testu - image: Immàgine welcome: title: Bene bènnidu! rules: @@ -903,14 +906,8 @@ sc: trace_paging_nav: showing_page: Pàgina %{page} trace: - edit: modìfica by: De - map: mapa users: - login: - title: Intra - heading: Intra - login_button: Intra new: title: Iscrie·ti continue: Iscrie·ti @@ -930,10 +927,6 @@ sc: friend: Amigu account: save changes button: Sarva sas modìficas - confirm: - button: Cunfirma - confirm_email: - button: Cunfirma user_role: grant: confirm: Cunfirma diff --git a/config/locales/scn.yml b/config/locales/scn.yml index 40f7169fc..b9e4eefe7 100644 --- a/config/locales/scn.yml +++ b/config/locales/scn.yml @@ -1034,11 +1034,39 @@ scn: partial_changeset_without_comment: senza cummentu details: Si ponnu attruvari àutri dittagghî a prupòsitu di stu gruppu di canciamenti nta %{url}. + confirmations: + confirm: + heading: Talìa la tò posta! + introduction_1: Ti mannammu nu missaggiu di posta elittrònica di cunferma. + introduction_2: Cunferma lu tò cuntu cliccannu lu link ntô missaggiu e poi accuminzari + a mappari. + press confirm button: Carca lu buttuni «cunferma» ccassutta p'attivari lu tò + cuntu. + button: Cunferma + success: Cunfirmasti lu tò cuntu, t'arringrazziamu p'avìriti scrivutu! + already active: Già stu cuntu fu cunfirmatu. + unknown token: Ddu còdici di cunferma o scadìu o nun esisti. + reconfirm_html: Si voi chi ti mannamu n'àutra vota lu missaggiu di cunferma, + clicca ccà. + confirm_resend: + success_html: Ti mannammu n'àutru missaggiu di cunferma unni %{email}, e lu + forti chi cunfermi lu tò cuntu poi accuminzari a mappari.

    S'adòpiri + nu sistema anti-spam chi manna addumannati di cunferma, pi favuri hai a mèttiri + lu nnirizzu %{sender} ntâ lista janca, pirchì nuàutri nun putemu arrispùnniri + a nudda addumannata di cunferma. + failure: Utenti %{name} nun attruvatu. + confirm_email: + heading: Cunferma dû canciu dû nnirizzu di posta + press confirm button: Carca lu buttuni «cunferma» ccassutta pi cunfirmari lu + tò nnirizzu di posta elittrònica novu. + button: Cunferma + success: Cunfirmasti lu canciamentu dû tò nnirizzu di posta! + failure: Già cu stu còdici fu cunfirmatu nu nnirizzu di posta. + unknown_token: Ddu còdici di cunferma o scadìu o nun esisti. messages: inbox: title: Posta arrivata my_inbox: La mè posta arrivata - outbox: posta mannata messages: Hai %{new_messages} e %{old_messages} new_messages: one: '%{count} missaggiu novu' @@ -1073,9 +1101,6 @@ scn: body: Purtroppu nun c'è nuddu missaggiu cu l'id nnicatu. outbox: title: Posta mannata - my_inbox_html: La mè %{inbox_link} - inbox: posta arrivata - outbox: posta mannata messages: one: Hai %{count} missaggiu mannatu other: Hai %{count} missaggî mannati @@ -1107,6 +1132,77 @@ scn: as_unread: Missaggiu marcatu comu di lèggiri destroy: destroyed: Missaggiu cancillatu + passwords: + lost_password: + title: Palora d'òrdini pirduta + heading: Ti scurdasti la palora d'òrdini? + email address: 'Nnirizzu di posta elittrònica:' + new password button: Azzera la palora d'òrdini + help_text: Scrivi lu nnirizzu di posta elittrònica c'adupirasti quannu ti scrivisti, + e ci mannamu nu culligamentu chi poi adupirari p'azzirari la tò palora d'òrdini. + notice email on way: Ni dispiaci chi la pirdisti :-( pirò ti sta arrivannu nu + missaggiu di posta elittrònica pi menzu dû quali prestu la poi azzirari. + notice email cannot find: Putroppu nun s'attrova stu nnirizzu di posta elittrònica. + reset_password: + title: Azzera la palora d'òrdini + heading: Azziramentu dâ palora d'òrdini di %{user} + reset: Azzera la palora d'òrdini + flash changed: La tò palora d'òrdini fu canciata. + flash token bad: Stu còdici nun s'attrova, pirchì nun cuntrolli l'URL? + sessions: + new: + title: Trasi + heading: Trasi + email or username: 'Nnirizzu di posta elittrònica o nomu utenti:' + password: 'Palora d''òrdini:' + openid_html: '%{logo} OpenID:' + remember: Arricòrdati di mìa + lost password link: Pirdisti la tò palora d'òrdini? + login_button: Trasi + register now: Scrìviti ora + with username: 'Già hai un cuntu d''OpenStreetMap? Pi favuri trasi cû tò nomu + utenti e palora d''òrdini:' + with external: 'O puru, trasi pi menzu di na terza parti:' + new to osm: Sî novu nta OpenStreetMap? + to make changes: Pi fari canciamenti ntê dati d'OpenStreetMap, prima hai a aviri + un cuntu. + create account minute: Crea un cuntu. Ci voli sulu un minutu. + no account: Nun hai un cuntu? + account not active: Purtroppu lu tò cuntu ancora nun è attivatu.
    P'attivàrilu, + pi favuri adòpira lu culligamentu chi t'arrivau ntô missaggiu di posta elittrònica + di cunferma, o puru addumanna chi ti mànnanu n'àutru + missaggiu di cunferma. + account is suspended: Purtroppu lu tò cuntu fu suspinnutu pi càusa d'attività + suspetti.
    Pi favuri cuntatta lu webmaster si + nni voi discùtiri. + auth failure: Purtroppu nun fu pussìbbili tràsiri cu sti dittagghî. + openid_logo_alt: Trasi cu n'OpenID + auth_providers: + openid: + title: Trasi cu n'OpenID + alt: Trasi cu n'URL OpenID + google: + title: Trasi cu Google + alt: Trasi cu n'OpenID di Google + facebook: + title: Trasi cu Facebook + alt: Trasi cûn cuntu di Facebook + windowslive: + title: Trasi cu Windows Live + alt: Trasi cûn cuntu di Windows Live + yahoo: + title: Trasi cu Yahoo + alt: Trasi cu n'OpenID di Yahoo + wordpress: + title: Trasi cu Wordpress + alt: Trasi cu n'OpenID di Wordpress + aol: + title: Trasi cu AOL + alt: Trasi cu n'OpenID d'AOL + destroy: + title: Nesci + heading: Nesci d'OpenStreetMap + logout_button: Nesci site: about: next: Appressu @@ -1457,23 +1553,6 @@ scn: private: Accessu privatu destination: Sirvitù di passaggiu construction: Strati n custruzzioni - richtext_area: - edit: Cancia - preview: Antiprima - markdown_help: - title_html: Testu cu Markdown - headings: Ntistazzioni - heading: Ntistazzioni - subheading: Suttantistazzioni - unordered: Elencu puntatu - ordered: Elencu nummiratu - first: Prima vuci - second: Secunna vuci - link: Culligamentu - text: Testu - image: Mmàggini - alt: Testu altirnativu - url: URL welcome: title: Bimminuti! introduction_html: Bimminuti nta OpenStreetMap, la cartina dû munnu lìbbira @@ -1584,7 +1663,6 @@ scn: more: dittagghî trace_details: Talìa li dittagghî dû tracciatu view_map: Talìa lu tracciatu supra dâ cartina - edit: cancia edit_map: Cancia la cartina unni stu tracciatu public: PÙBBLICA identifiable: IDINTIFICÀBBILI @@ -1592,7 +1670,6 @@ scn: trackable: TRACCIÀBBILI by: di in: nta - map: carta index: public_traces: Tracciati GPS pùbblici public_traces_from: Tracciati GPS pùbblici di %{user} @@ -1696,75 +1773,6 @@ scn: destroy: flash: Fu distruiuta la riggistrazzioni di l'applicazzioni clienti users: - login: - title: Trasi - heading: Trasi - email or username: 'Nnirizzu di posta elittrònica o nomu utenti:' - password: 'Palora d''òrdini:' - openid_html: '%{logo} OpenID:' - remember: Arricòrdati di mìa - lost password link: Pirdisti la tò palora d'òrdini? - login_button: Trasi - register now: Scrìviti ora - with username: 'Già hai un cuntu d''OpenStreetMap? Pi favuri trasi cû tò nomu - utenti e palora d''òrdini:' - with external: 'O puru, trasi pi menzu di na terza parti:' - new to osm: Sî novu nta OpenStreetMap? - to make changes: Pi fari canciamenti ntê dati d'OpenStreetMap, prima hai a aviri - un cuntu. - create account minute: Crea un cuntu. Ci voli sulu un minutu. - no account: Nun hai un cuntu? - account not active: Purtroppu lu tò cuntu ancora nun è attivatu.
    P'attivàrilu, - pi favuri adòpira lu culligamentu chi t'arrivau ntô missaggiu di posta elittrònica - di cunferma, o puru addumanna chi ti mànnanu n'àutru - missaggiu di cunferma. - account is suspended: Purtroppu lu tò cuntu fu suspinnutu pi càusa d'attività - suspetti.
    Pi favuri cuntatta lu webmaster si - nni voi discùtiri. - auth failure: Purtroppu nun fu pussìbbili tràsiri cu sti dittagghî. - openid_logo_alt: Trasi cu n'OpenID - auth_providers: - openid: - title: Trasi cu n'OpenID - alt: Trasi cu n'URL OpenID - google: - title: Trasi cu Google - alt: Trasi cu n'OpenID di Google - facebook: - title: Trasi cu Facebook - alt: Trasi cûn cuntu di Facebook - windowslive: - title: Trasi cu Windows Live - alt: Trasi cûn cuntu di Windows Live - yahoo: - title: Trasi cu Yahoo - alt: Trasi cu n'OpenID di Yahoo - wordpress: - title: Trasi cu Wordpress - alt: Trasi cu n'OpenID di Wordpress - aol: - title: Trasi cu AOL - alt: Trasi cu n'OpenID d'AOL - logout: - title: Nesci - heading: Nesci d'OpenStreetMap - logout_button: Nesci - lost_password: - title: Palora d'òrdini pirduta - heading: Ti scurdasti la palora d'òrdini? - email address: 'Nnirizzu di posta elittrònica:' - new password button: Azzera la palora d'òrdini - help_text: Scrivi lu nnirizzu di posta elittrònica c'adupirasti quannu ti scrivisti, - e ci mannamu nu culligamentu chi poi adupirari p'azzirari la tò palora d'òrdini. - notice email on way: Ni dispiaci chi la pirdisti :-( pirò ti sta arrivannu nu - missaggiu di posta elittrònica pi menzu dû quali prestu la poi azzirari. - notice email cannot find: Putroppu nun s'attrova stu nnirizzu di posta elittrònica. - reset_password: - title: Azzera la palora d'òrdini - heading: Azziramentu dâ palora d'òrdini di %{user} - reset: Azzera la palora d'òrdini - flash changed: La tò palora d'òrdini fu canciata. - flash token bad: Stu còdici nun s'attrova, pirchì nun cuntrolli l'URL? new: title: Scrìviti no_auto_account_create: Purtroppu comu a ora nun semu n gradu di criàriti un @@ -1937,34 +1945,6 @@ scn: boni. Cuntrolla la tò posta elittrònica chi t'havi a arrivari nu missaggiu pi cunfirmari lu nnirizzu di posta novu. flash update success: Li nfurmazzioni di l'utenti foru aggiurnati boni. - confirm: - heading: Talìa la tò posta! - introduction_1: Ti mannammu nu missaggiu di posta elittrònica di cunferma. - introduction_2: Cunferma lu tò cuntu cliccannu lu link ntô missaggiu e poi accuminzari - a mappari. - press confirm button: Carca lu buttuni «cunferma» ccassutta p'attivari lu tò - cuntu. - button: Cunferma - success: Cunfirmasti lu tò cuntu, t'arringrazziamu p'avìriti scrivutu! - already active: Già stu cuntu fu cunfirmatu. - unknown token: Ddu còdici di cunferma o scadìu o nun esisti. - reconfirm_html: Si voi chi ti mannamu n'àutra vota lu missaggiu di cunferma, - clicca ccà. - confirm_resend: - success_html: Ti mannammu n'àutru missaggiu di cunferma unni %{email}, e lu - forti chi cunfermi lu tò cuntu poi accuminzari a mappari.

    S'adòpiri - nu sistema anti-spam chi manna addumannati di cunferma, pi favuri hai a mèttiri - lu nnirizzu %{sender} ntâ lista janca, pirchì nuàutri nun putemu arrispùnniri - a nudda addumannata di cunferma. - failure: Utenti %{name} nun attruvatu. - confirm_email: - heading: Cunferma dû canciu dû nnirizzu di posta - press confirm button: Carca lu buttuni «cunferma» ccassutta pi cunfirmari lu - tò nnirizzu di posta elittrònica novu. - button: Cunferma - success: Cunfirmasti lu canciamentu dû tò nnirizzu di posta! - failure: Già cu stu còdici fu cunfirmatu nu nnirizzu di posta. - unknown_token: Ddu còdici di cunferma o scadìu o nun esisti. set_home: flash success: Pusizzioni basi sarvata bona. go_public: diff --git a/config/locales/sco.yml b/config/locales/sco.yml index 9c5178113..8fa46657d 100644 --- a/config/locales/sco.yml +++ b/config/locales/sco.yml @@ -830,6 +830,41 @@ sco: subject_own: '[OpenStreetMap] %{commenter} haes commentit on ane o yer notes' subject_other: '[OpenStreetMap] %{commenter} haes commentit on a note ye are interestit in' + passwords: + lost_password: + title: Lost password + heading: Forgotten Passwird? + sessions: + new: + auth_providers: + google: + title: Login wi Google + alt: Login wi a Google OpenID + facebook: + title: Login wi Facebook + alt: Login wi a Facebook Accoont + windowslive: + title: Login wi Windows Live + alt: Login wi a Windows Live Accoont + github: + title: Login wi GitHub + alt: Login wi a GitHub Account + wikipedia: + title: Login wi Wikipedia + alt: Login wi a Wikipedia Accoont + yahoo: + title: Login wi Yahoo + alt: Login wi a Yahoo OpenID + wordpress: + title: Login wi Wordpress + alt: Login wi a Wordpress OpenID + aol: + title: Login wi AOL + alt: Login wi an AOL OpenID + destroy: + title: Logoot + heading: Logoot frae OpenStreetMap + logout_button: Logoot site: copyright: foreign: @@ -1010,10 +1045,6 @@ sco: - Schuil - varsity building: Signeeficant biggin - richtext_area: - edit: Eedit - markdown_help: - headings: Heidins welcome: title: Walcome! introduction_html: |- @@ -1034,39 +1065,6 @@ sco: create: upload_trace: Uplaid GPS Trace users: - login: - auth_providers: - google: - title: Login wi Google - alt: Login wi a Google OpenID - facebook: - title: Login wi Facebook - alt: Login wi a Facebook Accoont - windowslive: - title: Login wi Windows Live - alt: Login wi a Windows Live Accoont - github: - title: Login wi GitHub - alt: Login wi a GitHub Account - wikipedia: - title: Login wi Wikipedia - alt: Login wi a Wikipedia Accoont - yahoo: - title: Login wi Yahoo - alt: Login wi a Yahoo OpenID - wordpress: - title: Login wi Wordpress - alt: Login wi a Wordpress OpenID - aol: - title: Login wi AOL - alt: Login wi an AOL OpenID - logout: - title: Logoot - heading: Logoot frae OpenStreetMap - logout_button: Logoot - lost_password: - title: Lost password - heading: Forgotten Passwird? show: edits: Eedits created from: 'Creautit frae:' diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 559b5b85b..440389f87 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -2,6 +2,7 @@ # Exported from translatewiki.net # Export driver: phpyaml # Author: Chiak +# Author: Dušan Kreheľ # Author: Helix84 # Author: Jose1711 # Author: KuboF @@ -26,6 +27,8 @@ sk: formats: friendly: '%e. %B %Y o %H:%M' helpers: + file: + prompt: Vybrať súbor submit: diary_comment: create: Uložiť @@ -38,7 +41,7 @@ sk: create: Odoslať client_application: create: Registrovať - update: Upraviť + update: Aktualizovať redaction: create: Vytvoriť revíziu update: Uložiť revíziu @@ -90,6 +93,7 @@ sk: way_tag: Značka cesty attributes: client_application: + name: Meno (povinné) callback_url: URL pre spätné volanie (callback) support_url: URL s podporou diary_comment: @@ -106,15 +110,15 @@ sk: trace: user: Používateľ visible: Viditeľný - name: Meno + name: Názov súboru size: Veľkosť latitude: Zem. šírka longitude: Zem. dĺžka public: Verejné description: Popis - gpx_file: 'Nahrať GPX súbor:' - visibility: 'Viditeľnosť:' - tagstring: 'Značky:' + gpx_file: Nahrať GPX súbor + visibility: Viditeľnosť + tagstring: Značky message: sender: Odosielateľ title: Predmet @@ -126,13 +130,13 @@ sk: details: Prosím uveďte bližšie informácie o probléme (potrebné). user: email: E-mail - new_email: 'Nová e-mailová adresa:' + new_email: Nová e-mailová adresa active: Aktívny display_name: Zobrazované meno description: Popis - home_lat: 'Zem. šírka:' - home_lon: 'Zem. dĺžka:' - languages: Jazyky + home_lat: Zemepisná šírka + home_lon: Zemepisná dĺžka + languages: Preferované jazyky pass_crypt: Heslo help: trace: @@ -232,6 +236,7 @@ sk: entry_html: Relácia %{relation_name} entry_role_html: Relácia %{relation_name} (ako %{relation_role}) not_found: + title: Nenájdené sorry: 'Ľutujeme, %{type} #%{id} nebolo možné nájsť.' type: node: bod @@ -240,6 +245,7 @@ sk: changeset: počet zmien note: poznámka timeout: + title: Vypršal časový limit sorry: Ľutujeme, ale načítanie dát %{type} číslo %{id} trvalo príliš dlho type: node: bod @@ -321,7 +327,7 @@ sk: new: title: Nový záznam denníka form: - location: 'Poloha:' + location: Poloha use_map_link: použiť mapu index: title: Denníky používateľov @@ -568,6 +574,7 @@ sk: plumber: Inštalatér shoemaker: Obuvník tailor: Krajčír + winery: Vináreň emergency: ambulance_station: Stanica záchrannej služby assembly_point: Miesto zhromaždenia @@ -745,6 +752,7 @@ sk: cape: Mys cave_entrance: Vstup do jaskyne cliff: Útes, kamenná stena + coastline: Pobrežie crater: Kráter dune: Duna fell: Horská pastvina @@ -755,6 +763,7 @@ sk: grassland: Trvalé trávne porasty heath: Vresovisko hill: Kopec + hot_spring: Termálny prameň island: Ostrov land: Pevnina marsh: Bažina @@ -1123,11 +1132,38 @@ sk: details: Viac podrobností o poznámke môžete nájsť nájsť na %{url}. changeset_comment_notification: greeting: Ahoj, + confirmations: + confirm: + heading: Skontrolujte vašu emailovú adresu! + introduction_1: Poslali sme vám potvrdzovací e-mail. + introduction_2: Potvrďte svoje konto kliknutím na odkaz v e-maili a budete môcť + začať mapovať. + press confirm button: Stlačte tlačítko na potvrdenie dole, pre aktiváciu vášho + účtu. + button: Potvrdiť + success: Váš účet je založený, ďakujeme, že ste sa zapísali! + already active: Toto používateľské konto už bolo potvrdené. + unknown token: Zadaný potvrdzovací kód vypršal alebo neexistuje. + reconfirm_html: Ak potrebujete, aby sme vám potvrdzovací e-mail poslali znova, + kliknite sem. + confirm_resend: + success_html: Na adresu %{email} sme Vám poslali potvrdzovací e-mail. Akonáhle + svoje konto potvrdíte, budete môcť začať tvoriť mapy.

    Ak náhodou + používate systém pre ochranu proti nevyžiadanej pošte (anti-spam), ktorý vyžaduje + potvrdenia, nezabudnite definovať výnimku pre odosielateľa %{sender}, nakoľko + na žiadosti o potvrdenie nie sme schopní reagovať. + failure: Používateľ %{name} neexistuje. + confirm_email: + heading: Potvrdiť zmenu e-mailovej adresy + press confirm button: Stlačte potvrdzovacie tlačidlo nižšie a potvrďte svoju + novú e-mailovú adresu. + button: Potvrdiť + success: Potvrdená vaša e-mailová adresa, ďakujeme za registráciu! + failure: E-mailová adresa bola už potvrdená s týmto znakom. messages: inbox: title: Doručená pošta my_inbox: Moja doručená pošta - outbox: odoslaná pošta messages: Máte %{new_messages} a %{old_messages} new_messages: few: '%{count} nové správy' @@ -1163,9 +1199,6 @@ sk: body: Ľutujeme, neexistuje správa s takým ID. outbox: title: Odoslaná pošta - my_inbox_html: Moja %{inbox_link} - inbox: prichádzajúca pošta - outbox: odoslaná pošta messages: few: Máte %{count} odeslané správy one: Máte %{count} odoslanú správu @@ -1200,6 +1233,83 @@ sk: as_unread: Správa označená ako neprečítaná destroy: destroyed: Správa vymazaná + passwords: + lost_password: + title: Stratené heslo + heading: Zabudli ste heslo? + email address: 'E-mailová adresa:' + new password button: Resetnúť heslo + help_text: Vložte emailovú adresu, ktorú ste uviedli pri registrácii, pošleme + vám odkaz, pomocou ktorého si budete môcť nastaviť nové heslo. + notice email on way: Škoda zabudnutého hesla :-( ale e-mail je už na ceste, + takže si čoskoro budete môcť zvoliť nové. + notice email cannot find: Ľutujeme, túto e-mailovú adresu nie je možné nájsť. + reset_password: + title: Resetnúť heslo + heading: Resetnúť heslo pre %{user} + reset: Vynulovať heslo + flash changed: Vaše heslo bolo zmenené. + flash token bad: Zodpovedajúci kód nebol nájdený, skontrolujte prípadne URL. + sessions: + new: + title: Prihlásiť sa + heading: Prihlásenie + email or username: 'E-mailová adresa alebo prihlasovacie meno:' + password: 'Heslo:' + openid_html: '%{logo} OpenID:' + remember: Zapamätať + lost password link: Stratili ste heslo? + login_button: Prihlásiť + register now: Zaregistrujte se + with username: 'Už máte na OpenStreetMap konto? Prihláste sa svojim menom a + heslom:' + with external: 'Prípadne použite na prihlásenie služby tretích strán:' + new to osm: Ste na OpenStreetMap nový? + to make changes: Ak chcete upravovať OpenStreetMap, musíte mať používateľské + konto. + create account minute: Založte si konto. Zaberie to len chvíľku. + no account: Nemáte konto? + account not active: Ľutujeme, vaše konto ešte nie je aktívne.
    Môžete si + ho aktivovať kliknutím na odkaz v potvrdzovacom e-maile, prípadne si nechajte + poslať nový potvrdzovací e-mail. + account is suspended: Ľutujeme, ale vaše konto bolo pozastavené vzhľadom na + podozrivú aktivitu.
    Ak to chcete riešiť, môžete kontaktovať webmastera. + auth failure: Ľutujeme, s uvedenými údajmi sa nie je možné prihlásiť. + openid_logo_alt: Prihlásenie pomocou OpenID + auth_providers: + openid: + title: Prihlásenie sa pomocou OpenID + alt: Prihlásenie sa pomocou OpenID URL + google: + title: Prihlásenie sa pomocou Google + alt: Prihlásenie sa pomocou Google OpenID + facebook: + title: Prihlásenie sa pomocou Facebooku + alt: Prihlásenie sa pomocou účtu na Facebooku + windowslive: + title: Prihlásenie sa pomocou Windows Live + alt: Prihlásenie sa pomocou účtu Windows Live + yahoo: + title: Prihlásenie sa pomocou Yahoo + alt: Prihlásenie sa pomocou Yahoo OpenID + wordpress: + title: Prihlásenie sa pomocou Wordpress + alt: Prihlásenie sa pomocou Wordpress OpenID + aol: + title: Prihlásenie sa pomocou AOL + alt: Prihlásenie sa pomocou AOL OpenID + destroy: + title: Odhlásenie + heading: Odhlásenie z OpenStreetMap + logout_button: Odhlásenie + shared: + markdown_help: + image: Obrázok + alt: Alternatívny text + url: URL + richtext_field: + edit: Upraviť + preview: Náhľad site: about: next: Ďalej @@ -1377,6 +1487,9 @@ sk: title: IRC switch2osm: title: switch2osm + welcomemat: + url: https://welcome.openstreetmap.org/ + title: Pre organizácie wiki: url: http://wiki.openstreetmap.org/ title: OpenStreetMap Wiki @@ -1463,23 +1576,6 @@ sk: bicycle_shop: Obchod s bicyklami bicycle_parking: Parkovanie pre bicykle toilets: WC - richtext_area: - edit: Upraviť - preview: Náhľad - markdown_help: - title_html: Používa sa syntax Markdown - headings: Nadpisy - heading: Nadpis - subheading: Podnadpis - unordered: Neusporiadaný zoznam - ordered: Číslovaný zoznam - first: Prvá položka - second: Druhá položka - link: Odkaz - text: Text - image: Obrázok - alt: Alternatívny text - url: URL welcome: title: Vitajte! introduction_html: Vitajte na OpenStreetMap, slobodnej a upravovateľnej mape @@ -1505,6 +1601,8 @@ sk: jazerá alebo budovy. tag_html: Značka je trochu údajov o uzle alebo ceste, napr. názov reštaurácie alebo rýchlostný limit cesty. + rules: + title: Pravidlá! questions: title: Akékoľvek otázky? paragraph_1_html: Potrebujete pomoc s mapovaním alebo vám nie je jasné, ako @@ -1535,6 +1633,7 @@ sk: čakanie, dokedy neukončíte nahrávanie niečoho iného, pokiaľ nie je blok v rade pre iných užívateľov. edit: + cancel: Zrušiť title: Úprava stopy %{name} heading: Úprava stopy %{name} visibility_help: čo má toto znamenať? @@ -1569,7 +1668,6 @@ sk: more: viac trace_details: Zobraziť detaily stopy view_map: Zobraziť mapu - edit: upraviť edit_map: Upraviť mapu public: VEREJNÁ identifiable: IDENTIFIKOVATEĽNÁ @@ -1577,7 +1675,6 @@ sk: trackable: STOPOVATEĽNÁ by: od in: v - map: mapa index: public_traces: Verejné GPS stopy public_traces_from: Verejné GPS stopy od %{user} @@ -1664,73 +1761,6 @@ sk: destroy: flash: Registrácia klientskej aplikácie bola zrušená users: - login: - title: Prihlásiť sa - heading: Prihlásenie - email or username: 'E-mailová adresa alebo prihlasovacie meno:' - password: 'Heslo:' - openid_html: '%{logo} OpenID:' - remember: Zapamätať - lost password link: Stratili ste heslo? - login_button: Prihlásiť - register now: Zaregistrujte se - with username: 'Už máte na OpenStreetMap konto? Prihláste sa svojim menom a - heslom:' - with external: 'Prípadne použite na prihlásenie služby tretích strán:' - new to osm: Ste na OpenStreetMap nový? - to make changes: Ak chcete upravovať OpenStreetMap, musíte mať používateľské - konto. - create account minute: Založte si konto. Zaberie to len chvíľku. - no account: Nemáte konto? - account not active: Ľutujeme, vaše konto ešte nie je aktívne.
    Môžete si - ho aktivovať kliknutím na odkaz v potvrdzovacom e-maile, prípadne si nechajte - poslať nový potvrdzovací e-mail. - account is suspended: Ľutujeme, ale vaše konto bolo pozastavené vzhľadom na - podozrivú aktivitu.
    Ak to chcete riešiť, môžete kontaktovať webmastera. - auth failure: Ľutujeme, s uvedenými údajmi sa nie je možné prihlásiť. - openid_logo_alt: Prihlásenie pomocou OpenID - auth_providers: - openid: - title: Prihlásenie sa pomocou OpenID - alt: Prihlásenie sa pomocou OpenID URL - google: - title: Prihlásenie sa pomocou Google - alt: Prihlásenie sa pomocou Google OpenID - facebook: - title: Prihlásenie sa pomocou Facebooku - alt: Prihlásenie sa pomocou účtu na Facebooku - windowslive: - title: Prihlásenie sa pomocou Windows Live - alt: Prihlásenie sa pomocou účtu Windows Live - yahoo: - title: Prihlásenie sa pomocou Yahoo - alt: Prihlásenie sa pomocou Yahoo OpenID - wordpress: - title: Prihlásenie sa pomocou Wordpress - alt: Prihlásenie sa pomocou Wordpress OpenID - aol: - title: Prihlásenie sa pomocou AOL - alt: Prihlásenie sa pomocou AOL OpenID - logout: - title: Odhlásenie - heading: Odhlásenie z OpenStreetMap - logout_button: Odhlásenie - lost_password: - title: Stratené heslo - heading: Zabudli ste heslo? - email address: 'E-mailová adresa:' - new password button: Resetnúť heslo - help_text: Vložte emailovú adresu, ktorú ste uviedli pri registrácii, pošleme - vám odkaz, pomocou ktorého si budete môcť nastaviť nové heslo. - notice email on way: Škoda zabudnutého hesla :-( ale e-mail je už na ceste, - takže si čoskoro budete môcť zvoliť nové. - notice email cannot find: Ľutujeme, túto e-mailovú adresu nie je možné nájsť. - reset_password: - title: Resetnúť heslo - heading: Resetnúť heslo pre %{user} - reset: Vynulovať heslo - flash changed: Vaše heslo bolo zmenené. - flash token bad: Zodpovedajúci kód nebol nájdený, skontrolujte prípadne URL. new: title: Zaregistrovať sa no_auto_account_create: Bohužiaľ teraz nie sme schopný vytvoriť pre vás účet @@ -1750,14 +1780,15 @@ sk: terms declined: Je nám ľúto, že ste sa rozhodli neprijať nové Podmienky prispievania. Bližšie informácie nájdete natejto wiki-stránke. terms: - title: Podmienky prispievania - heading: Podmienky prispievania - consider_pd: Navyše k uvedenej dohode vyhlasujem, že považujem svoje príspevky + title: Podmienky + heading: Podmienky + consider_pd: Navyše k vyššie uvedenému vyhlasujem, že považujem svoje príspevky za slobodné dielo (Public Domain). consider_pd_why: čo to znamená? guidance_html: 'Informácie, ktoré Vám môžu pomôcť porozumieť týmto podmienkam: zhrnutie a nejaké neoficiálne preklady' + continue: Pokračovať decline: Nesúhlasím you need to accept or decline: Pre pokračovanie si prosím prečítajte a príjmite, alebo odmietnite nové Podmienky prispievania. @@ -1805,6 +1836,7 @@ sk: if_set_location_html: Ak si na stránke %{settings_link} zvolíte domovské miesto, zobrazí sa tu mapka vášho okolia. settings_link_text: nastavenia + my friends: Moji priatelia no friends: Ešte nemáte pridaných žiadnych priateľov. km away: vzdialený %{count}km m away: vzdialený %{count}m @@ -1842,7 +1874,7 @@ sk: account: title: Upraviť účet my settings: Moje nastavenia - current email address: 'Aktuálna e-mailová adresa:' + current email address: Aktuálna e-mailová adresa openid: link: http://wiki.openstreetmap.org/wiki/CS:OpenID link text: čo to znamená? @@ -1872,10 +1904,11 @@ sk: agreed_with_pd: Deklarovali ste tiež, že svoje úpravy považujete za slobodné dielo. link text: čo to znamená? - image: 'Obrázok:' + image: Obrázok gravatar: gravatar: Používať Gravatar link: http://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Čo je Gravatar? new image: 'Pridať obrázok:' keep image: Ponechať aktuálny obrázok delete image: Odstrániť aktuálny obrázok @@ -1891,33 +1924,6 @@ sk: Skontrolujte si e-mail, mala by Vám prísť výzva na potvrdenie novej e-mailovej adresy. flash update success: Používateľské údaje boli úspešne aktualizované. - confirm: - heading: Skontrolujte vašu emailovú adresu! - introduction_1: Poslali sme vám potvrdzovací e-mail. - introduction_2: Potvrďte svoje konto kliknutím na odkaz v e-maili a budete môcť - začať mapovať. - press confirm button: Stlačte tlačítko na potvrdenie dole, pre aktiváciu vášho - účtu. - button: Potvrdiť - success: Váš účet je založený, ďakujeme, že ste sa zapísali! - already active: Toto používateľské konto už bolo potvrdené. - unknown token: Zadaný potvrdzovací kód vypršal alebo neexistuje. - reconfirm_html: Ak potrebujete, aby sme vám potvrdzovací e-mail poslali znova, - kliknite sem. - confirm_resend: - success_html: Na adresu %{email} sme Vám poslali potvrdzovací e-mail. Akonáhle - svoje konto potvrdíte, budete môcť začať tvoriť mapy.

    Ak náhodou - používate systém pre ochranu proti nevyžiadanej pošte (anti-spam), ktorý vyžaduje - potvrdenia, nezabudnite definovať výnimku pre odosielateľa %{sender}, nakoľko - na žiadosti o potvrdenie nie sme schopní reagovať. - failure: Používateľ %{name} neexistuje. - confirm_email: - heading: Potvrdiť zmenu e-mailovej adresy - press confirm button: Stlačte potvrdzovacie tlačidlo nižšie a potvrďte svoju - novú e-mailovú adresu. - button: Potvrdiť - success: Potvrdená vaša e-mailová adresa, ďakujeme za registráciu! - failure: E-mailová adresa bola už potvrdená s týmto znakom. set_home: flash success: Domáca poloha úspešne uložená go_public: @@ -2097,9 +2103,11 @@ sk: title: Zobraziť moju polohu base: standard: Štandardná + cyclosm: CyclOSM cycle_map: Cyklomapa transport_map: Dopravná mapa hot: Humanitárna + opnvkarte: ÖPNVKarte layers: header: Mapové vrstvy notes: Poznámky k mape diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 99142c928..c82a4f5ab 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -123,12 +123,12 @@ sl: details: Prosimo, opišite še več podrobnosti o težavi (polje je obvezno). user: email: Elektronski naslov - new_email: 'Nov e-poštni naslov:' + new_email: Nov e-poštni naslov active: Aktiven display_name: Prikazno ime - description: Opis - home_lat: 'Zemljepisna širina:' - home_lon: 'Zemljepisna dolžina:' + description: Opis profila + home_lat: Zemljepisna širina + home_lon: Zemljepisna dolžina languages: Jeziki pass_crypt: Geslo pass_crypt_confirmation: Potrditev gesla @@ -141,7 +141,52 @@ sl: new_email: (nikoli javno objavljen) datetime: distance_in_words_ago: - half_a_minute: pol minute nazaj + about_x_hours: + one: pred približno 1 uro + two: pred približno %{count} urama + few: pred približno %{count} urami + other: pred približno %{count} urami + about_x_months: + one: pred približno 1 mesecem + two: pred približno %{count} mesecema + few: pred približno %{count} meseci + other: pred približno %{count} meseci + almost_x_years: + one: pred skoraj 1 letom + two: pred skoraj %{count} letoma + few: pred skoraj %{count} leti + other: pred skoraj %{count} leti + half_a_minute: pred pol minute + less_than_x_seconds: + one: pred manj kot 1 sekundo + two: pred manj kot %{count} sekundama + few: pred manj kot %{count} sekundami + other: pred manj kot %{count} sekundami + less_than_x_minutes: + one: pred manj kot minuto + two: pred manj kot %{count} minutama + few: pred manj kot %{count} minutami + other: pred manj kot %{count} minutami + x_seconds: + one: pred 1 sekundo + two: pred %{count} sekundama + few: pred %{count} sekundami + other: pred %{count} sekundami + x_minutes: + one: pred 1 minuto + two: pred %{count} minutama + few: pred %{count} minutami + other: pred %{count} minutami + x_months: + one: pred 1 mesecem + two: pred %{count} mesecema + few: pred %{count} meseci + other: pred %{count} meseci + x_years: + one: pred 1 letom + two: pred %{count} letoma + few: pred %{count} leti + other: pred %{count} leti printable_name: with_version: '%{id}, %{version}. različica' editor: @@ -164,14 +209,14 @@ sl: api: notes: comment: - opened_at_html: Ustvarjeno %{when} nazaj - opened_at_by_html: Ustvarjeno %{when} nazaj od %{user} - commented_at_html: Posodobljeno %{when} nazaj - commented_at_by_html: Posodobljeno %{when} nazaj od %{user} - closed_at_html: Rešeno %{when} nazaj - closed_at_by_html: Rešeno %{when} nazaj od %{user} - reopened_at_html: Ponovno aktivirano %{when} nazaj - reopened_at_by_html: Ponovno aktivirano %{when} nazaj od %{user} + opened_at_html: Ustvarjeno %{when} + opened_at_by_html: Ustvaril(a) %{user} %{when} + commented_at_html: Posodobljeno %{when} + commented_at_by_html: Posodobil(a) %{user} %{when} + closed_at_html: Razrešeno %{when} + closed_at_by_html: Razrešil(a) %{user} %{when} + reopened_at_html: Ponovno aktivirano %{when} + reopened_at_by_html: Ponovno aktiviral(a) %{user} %{when} rss: title: OpenStreetMap opombe description_area: Seznam opomb, prijavljenih, komentiranih ali zaprtih na @@ -187,12 +232,12 @@ sl: browse: created: Ustvarjeno closed: Zaprto - created_html: Ustvarjeno %{time} nazaj - closed_html: Zaprto %{time} nazaj - created_by_html: Ustvaril %{user} %{time} nazaj - deleted_by_html: Izbrisal %{user} %{time} nazaj - edited_by_html: Uredil %{user} %{time} nazaj - closed_by_html: Zaprl %{user} %{time} nazaj + created_html: Ustvarjeno %{time} + closed_html: Zaprto %{time} + created_by_html: Ustvaril(a) %{user} %{time} + deleted_by_html: Izbrisal(a) %{user} %{time} + edited_by_html: Uredil(a) %{user} %{time} + closed_by_html: Zaprl(a) %{user} %{time} version: Različica in_changeset: Paket sprememb anonymous: anonimni @@ -283,7 +328,7 @@ sl: key: Wiki stran z opisom oznake %{key} tag: Wiki stran z opisom oznake %{key}=%{value} wikidata_link: Element %{page} na strani Wikidata - wikipedia_link: Članek %{page} na Wikipediji + wikipedia_link: Članek %{page} v Wikipediji telephone_link: Pokliči %{phone_number} colour_preview: Predogled barve %{colour_value} note: @@ -300,14 +345,13 @@ sl: nazaj commented_by_anonymous_html: Komentar anonimnega uporabnika %{when} nazaj - closed_by_html: Razrešil %{user} %{when} nazaj - closed_by_anonymous_html: Ustvaril anonimni %{when} - nazaj + closed_by_html: Razrešil(a) %{user} %{when} + closed_by_anonymous_html: Razrešil anonimni uporabnik %{when} reopened_by_html: Ponovno aktiviral %{user} %{when} nazaj reopened_by_anonymous_html: Ponovno aktiviral anonimni %{when} nazaj - hidden_by_html: Skril %{user} %{when} nazaj + hidden_by_html: Skril(a) %{user} %{when} report: Prijavi to opombo query: title: Poišči značilnosti @@ -325,7 +369,7 @@ sl: view_changeset_details: Ogled podrobnosti paketa sprememb changesets: id: ID - saved_at: Shranjen + saved_at: Shranjeno ob user: Uporabnik comment: Komentar area: Območje @@ -346,7 +390,7 @@ sl: changeset_comments: comment: comment: 'Nov komentar o paketu sprememb #%{changeset_id} uporabnika %{author}' - commented_at_by_html: Posodobil %{user} %{when} nazaj + commented_at_by_html: Posodobil(a) %{user} %{when} index: title_all: Razprava o paketu sprememb OpenStreetMap title_particular: 'Razprava o paketu sprememb OpenStreetMap #%{changeset_id}' @@ -355,7 +399,7 @@ sl: title: Nov zapis v dnevnik uporabnikov form: location: 'Lokacija:' - use_map_link: uporabi zemljevid + use_map_link: Uporabi zemljevid index: title: Dnevniki uporabnikov title_friends: Dnevniki vaših prijateljev @@ -788,6 +832,7 @@ sl: cape: Rt cave_entrance: Vhod v jamo cliff: Pečina + coastline: Obala crater: Krater dune: Peščina fell: Planina @@ -1075,6 +1120,7 @@ sl: intro_text: OpenStreetMap je zemljevid sveta, ki ga ustvarjajo ljudje kot ste vi, brezplačen za uporabo z odprto licenco. intro_2_create_account: Ustvarite uporabniški račun + hosting_partners_html: Gostovanje omogočajo %{ucl}, %{bytemark} in drugi %{partners}. partners_ucl: UCL partners_bytemark: Bytemark Hosting partners_partners: partnerji @@ -1191,11 +1237,40 @@ sl: partial_changeset_with_comment: s komentarjem "%{changeset_comment}" partial_changeset_without_comment: brez komentarja details: Več podrobnosti o tem paketu sprememb lahko najdete na %{url}. + confirmations: + confirm: + heading: Preverite vaš e-poštni naslov! + introduction_1: Poslali smo vam potrditveno e-pošto. + introduction_2: Potrdite svoj račun s klikom na povezavo v e-pošti in takoj + boste lahko začeli kartirati. + press confirm button: Za aktivacijo vašega uporabniškega računa pritisnite na + gumb Potrdi spodaj. + button: Potrdi + success: Vaš uporabniški račun je potrjen. Hvala, da ste se vpisali! + already active: Ta račun je že bil potrjen. + unknown token: Ta potrditvena koda je potekla ali ne obstaja. + reconfirm_html: Če hočete da vam znova pošljemo potrditveno e-pošto, kliknite + tukaj. + confirm_resend: + success_html: Poslali smo potrditveno sporočilo na %{email} in takoj, ko boste + potrdili vaš račun, boste lahko začeli kartirati.

    V kolikor vaš + filter neželene pošte pred sprejemom sporočil neznanih pošiljateljev zahteva + potrditev, vas prosimo, da pošiljatelja %{sender} uvrstite na seznam dovoljenih + pošiljateljev. Sistem pač ne zmore dovolj inteligentno odgovarjati na vse + take zahtevke. + failure: Uporabnika %{name} ni bilo mogoče najti. + confirm_email: + heading: Potrdite spremembo naslova e-pošte + press confirm button: Za potrditev spremembe vašega naslova elektronske pošte + pritisnite na gumb Potrdi spodaj. + button: Potrdi + success: Potrdili smo vašo spremembo e-poštnega naslova! + failure: Naslov elektronske pošte je bil s tem žetonom že potrjen. + unknown_token: Ta potrditvena koda je potekla ali pa ne obstaja. messages: inbox: title: Prejeta pošta my_inbox: Moja prejeta - outbox: poslana pošta messages: Imate %{new_messages} in %{old_messages}. new_messages: few: '%{count} nova sporočila' @@ -1234,9 +1309,6 @@ sl: body: Žal ni sporočila s tem id-jem. outbox: title: Poslana pošta - my_inbox_html: Moja %{inbox_link} - inbox: prejeta - outbox: poslana pošta messages: few: Imate %{count} poslana sporočila one: Imate %{count} poslano sporočilo @@ -1270,6 +1342,87 @@ sl: as_unread: Sporočilo označeno kot neprebrano destroy: destroyed: Sporočilo izbrisano + passwords: + lost_password: + title: pozabljeno geslo + heading: Ste pozabili geslo? + email address: 'E-poštni naslov:' + new password button: Pošlji mi novo geslo + help_text: Vpišite e-poštni naslov s katerim ste se prijavili. Poslali vam bomo + povezavo za ponastavitev gesla. + notice email on way: Elektronsko sporočilo z vsemi potrebnimi podatki za nastavitev + novega gesla je že na poti. + notice email cannot find: Oprostite, a vnešenega naslova elektronske pošte ni + bilo mogoče najti. + reset_password: + title: Ponastavitev gesla + heading: Ponastavi geslo za %{user} + reset: Ponastavitev gesla + flash changed: Vaše geslo je bilo spremenjeno. + flash token bad: Tega žetona ni bilo mogoče najti. Predlagamo, da preverite + naslov URL. + sessions: + new: + title: Prijava + heading: Prijava + email or username: 'Naslov e-pošte ali uporabniško ime:' + password: 'Geslo:' + openid_html: '%{logo} OpenID:' + remember: Zapomni si me + lost password link: Ste pozabili geslo? + login_button: Prijava + register now: Registrirajte se + with username: 'Že imate OpenStreetMap račun? Prosim, prijavite se s svojim + uporabniškim imenom in geslom:' + with external: 'Lahko pa uporabite prijavo tretje osebe:' + new to osm: Ste novi na OpenStreetMap? + to make changes: Če želite spreminjati podatke na OpenStreetMap, morate imeti + račun. + create account minute: Naredite si račun. To vam bo vzelo le minuto. + no account: Še nimate uporabniškega računa? + account not active: Oprostite, vaš uporabniški račun še ni aktiven.
    Za + aktivacijo prosimo uporabite povezavo, ki ste jo prejeli v elektronskem sporočilu + za potrditev uporabniškega računa, ali zahtevajte novo + potrditveno elektronsko sporočilo. + account is suspended: Žal je bil vaš račun ustavljen zaradi sumljive aktivnosti.
    Prosimo, + obrnite se na webmaster, če želite o tem razpravljati. + auth failure: Oprostite, prijava s temi podatki ni uspela. + openid_logo_alt: Prijavite se z OpenID + auth_providers: + openid: + title: Prijava z OpenID + alt: Prijava s povezavo OpenID + google: + title: Prijava z Googlom + alt: Prijava z Google OpenID-jem + facebook: + title: Prijavi se s Facebookom + alt: Prijavi se z računom Facebook + windowslive: + title: Prijavi se z Windows Live + alt: Prijavi se z računom Windows Live + github: + title: Vpis z GitHub-om + alt: Vpis z računom pri GitHub-u + wikipedia: + title: Prijavi se z Wikipedio + alt: Prijavi se z računom Wikipedia + yahoo: + title: Prijava z Yahoo + alt: Prijava z Yahoo OpenID + wordpress: + title: Prijava z Wordpressom + alt: Prijava z Wordpress OpenID-jem + aol: + title: Prijavi se z AOL-om + alt: Prijavi se z z OpenID-jem AOL + destroy: + title: Odjava + heading: Odjava iz OpenStreetMap + logout_button: Odjava + shared: + richtext_field: + preview: Predogled site: about: next: Naslednji @@ -1504,23 +1657,6 @@ sl: bicycle_shop: Kolesarska trgovina bicycle_parking: Parkirišče za kolesa toilets: Stranišče - richtext_area: - edit: Uredi - preview: Predogled - markdown_help: - title_html: Obdelano z kramdown - headings: Poglavja - heading: Poglavje - subheading: Podpoglavje - unordered: Neurejen seznam - ordered: Urejen seznam - first: Prvi element - second: Drugi element - link: Povezava - text: Besedilo - image: Slika - alt: Dodatno besedilo - url: URL welcome: title: Dobrodošli! introduction_html: Dobrodošli na OpenStreetMap, brezplačni zemljevid sveta, @@ -1624,7 +1760,6 @@ sl: more: več trace_details: Ogled podrobnnosti zemljevida view_map: Ogled zemljevida - edit: uredi edit_map: Uredi zemljevid public: JAVNA identifiable: DOLOČLJIVA @@ -1632,7 +1767,6 @@ sl: trackable: SLEDLJIVA by: Uporabnik in: v - map: zemljevid index: public_traces: Javne sledi GPS my_traces: Moje sledi GPS @@ -1742,89 +1876,13 @@ sl: destroy: flash: Registracija odjemalske aplikacije uničena users: - login: - title: Prijava - heading: Prijava - email or username: 'Naslov e-pošte ali uporabniško ime:' - password: 'Geslo:' - openid_html: '%{logo} OpenID:' - remember: 'Zapomni si me:' - lost password link: Ste pozabili geslo? - login_button: Prijava - register now: Registrirajte se - with username: 'Že imate OpenStreetMap račun? Prosim, prijavite se s svojim - uporabniškim imenom in geslom:' - with external: 'Lahko pa uporabite prijavo tretje osebe:' - new to osm: Ste novi na OpenStreetMap? - to make changes: Če želite spreminjati podatke na OpenStreetMap, morate imeti - račun. - create account minute: Naredite si račun. To vam bo vzelo le minuto. - no account: Še nimate uporabniškega računa? - account not active: Oprostite, vaš uporabniški račun še ni aktiven.
    Za - aktivacijo prosimo uporabite povezavo, ki ste jo prejeli v elektronskem sporočilu - za potrditev uporabniškega računa, ali zahtevajte novo - potrditveno elektronsko sporočilo. - account is suspended: Žal je bil vaš račun ustavljen zaradi sumljive aktivnosti.
    Prosimo, - obrnite se na webmaster, če želite o tem razpravljati. - auth failure: Oprostite, prijava s temi podatki ni uspela. - openid_logo_alt: Prijavite se z OpenID - auth_providers: - openid: - title: Prijava z OpenID - alt: Prijava s povezavo OpenID - google: - title: Prijava z Googlom - alt: Prijava z Google OpenID-jem - facebook: - title: Prijavi se s Facebookom - alt: Prijavi se z računom Facebook - windowslive: - title: Prijavi se z Windows Live - alt: Prijavi se z računom Windows Live - github: - title: Vpis z GitHub-om - alt: Vpis z računom pri GitHub-u - wikipedia: - title: Prijavi se z Wikipedio - alt: Prijavi se z računom Wikipedia - yahoo: - title: Prijava z Yahoo - alt: Prijava z Yahoo OpenID - wordpress: - title: Prijava z Wordpressom - alt: Prijava z Wordpress OpenID-jem - aol: - title: Prijavi se z AOL-om - alt: Prijavi se z z OpenID-jem AOL - logout: - title: Odjava - heading: Odjava iz OpenStreetMap - logout_button: Odjava - lost_password: - title: pozabljeno geslo - heading: Ste pozabili geslo? - email address: 'E-poštni naslov:' - new password button: Pošlji mi novo geslo - help_text: Vpišite e-poštni naslov s katerim ste se prijavili. Poslali vam bomo - povezavo za ponastavitev gesla. - notice email on way: Elektronsko sporočilo z vsemi potrebnimi podatki za nastavitev - novega gesla je že na poti. - notice email cannot find: Oprostite, a vnešenega naslova elektronske pošte ni - bilo mogoče najti. - reset_password: - title: Ponastavitev gesla - heading: Ponastavi geslo za %{user} - reset: Ponastavitev gesla - flash changed: Vaše geslo je bilo spremenjeno. - flash token bad: Tega žetona ni bilo mogoče najti. Predlagamo, da preverite - naslov URL. new: title: Prijavite se no_auto_account_create: Na žalost vam trenutno ne moremo samodejno ustvariti uporabniškega računa. - contact_webmaster_html: Prosimo, pišite skrbniku spletišča - (v angleščini) in se dogovorite za ustvaritev uporabniškega računa – potrudili - se bomo za čimprejšnjo obravnavo vašega zahtevka. + contact_webmaster_html: Prosimo, pišite skrbniku spletnega + mesta (v angleščini) in se dogovorite za ustvaritev uporabniškega računa + – potrudili se bomo za čimprejšnjo obravnavo vašega zahtevka. about: header: Brezplačen, ki ga je mogoče urejati html: |- @@ -1879,7 +1937,7 @@ sl: my profile: Moj profil my settings: Moje nastavitve my comments: Moje pripombe - oauth settings: OAuth nastavitve + oauth settings: Nastavitve OAuth blocks on me: Blokade mene blocks by me: Moje blokade send message: Pošlji sporočilo @@ -1942,13 +2000,13 @@ sl: account: title: Urejanje uporabniškega računa my settings: Moje nastavitve - current email address: 'E-poštni naslov:' + current email address: Trenutni e-poštni naslov external auth: 'Zunanje preverjanje pristnosti:' openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: kaj je to? public editing: - heading: 'Javno urejanje:' + heading: Javno urejanje enabled: Omogočeno. Niste anonimni in lahko urejate podatke. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: Kaj je to? @@ -1974,10 +2032,11 @@ sl: agreed_with_pd: Prav tako ste izjavili, da so vaša urejanja v javni lasti. link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: Kaj je to? - image: 'Slika:' + image: Slika gravatar: gravatar: Uporabi Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Kaj je Gravatar? disabled: Gravatar je onemogočen. new image: Dodaj sliko keep image: Obdrži trenutno sliko @@ -1993,35 +2052,6 @@ sl: flash update success confirm needed: Podatki o uporabniku so bili uspešno posodobljeni. Preverite svojo e-pošto in potrdite spremembo e-poštnega naslova. flash update success: Podatki o uporabniku so uspešno posodobljeni. - confirm: - heading: Preverite vaš e-poštni naslov! - introduction_1: Poslali smo vam potrditveno e-pošto. - introduction_2: Potrdite svoj račun s klikom na povezavo v e-pošti in takoj - boste lahko začeli kartirati. - press confirm button: Za aktivacijo vašega uporabniškega računa pritisnite na - gumb Potrdi spodaj. - button: Potrdi - success: Vaš uporabniški račun je potrjen. Hvala, da ste se vpisali! - already active: Ta račun je že bil potrjen. - unknown token: Ta potrditvena koda je potekla ali ne obstaja. - reconfirm_html: Če hočete da vam znova pošljemo potrditveno e-pošto, kliknite - tukaj. - confirm_resend: - success_html: Poslali smo potrditveno sporočilo na %{email} in takoj, ko boste - potrdili vaš račun, boste lahko začeli kartirati.

    V kolikor vaš - filter neželene pošte pred sprejemom sporočil neznanih pošiljateljev zahteva - potrditev, vas prosimo, da pošiljatelja %{sender} uvrstite na seznam dovoljenih - pošiljateljev. Sistem pač ne zmore dovolj inteligentno odgovarjati na vse - take zahtevke. - failure: Uporabnika %{name} ni bilo mogoče najti. - confirm_email: - heading: Potrdite spremembo naslova e-pošte - press confirm button: Za potrditev spremembe vašega naslova elektronske pošte - pritisnite na gumb Potrdi spodaj. - button: Potrdi - success: Potrdili smo vašo spremembo e-poštnega naslova! - failure: Naslov elektronske pošte je bil s tem žetonom že potrjen. - unknown_token: Ta potrditvena koda je potekla ali pa ne obstaja. set_home: flash success: Domača lokacija uspešno shranjena go_public: @@ -2390,5 +2420,5 @@ sl: not_empty: Redakcija ni prazna. Prosim odrevidirajte vse različice, ki pripadajo tej redakciji, preden jo uničite. flash: Redakcija uničena. - error: Prišlo je do napake ob uničevanju te redakcije. + error: Ob uničevanju te redakcije se je pojavila napaka. ... diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 8140e4f67..0426ba5b5 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -2,6 +2,7 @@ # Exported from translatewiki.net # Export driver: phpyaml # Author: Bjakupi +# Author: Eraldkerciku # Author: Euriditi # Author: Fanjiayi # Author: GretaDoci @@ -32,53 +33,53 @@ sq: create: Dërgo client_application: create: Regjistrohu - update: Redakto + update: Përditëso trace: create: Ngarko - update: Ruaj ndryshimet + update: Ruaj Ndryshimet activerecord: models: - acl: Qasja në listën e kontrollit - changeset: Vargu i ndryshimeve - changeset_tag: Etiketa e vargut të ndryshimeve + acl: Qasja në Listën e Kontrollit + changeset: Grupi i Ndryshimeve + changeset_tag: Etiketa e Grupit të Ndryshimeve country: Vendi - diary_comment: Koment ditari - diary_entry: Shënim ditari + diary_comment: Koment Ditari + diary_entry: Shënim Ditari friend: Mik language: Gjuha message: Mesazh node: Nyjë - node_tag: Etiketë nyje + node_tag: Etiketë Nyje notifier: Lajmëruesi - old_node: Nyjë e vjetër - old_node_tag: Etiketë e vjetër e nyjës - old_relation: Marrëdhënie e vjetër - old_relation_member: Anëtar me lidhje të vjetër - old_relation_tag: Etiketë relacioni e vjetër - old_way: Rrugë e vjetër - old_way_node: Nyje rrugore e vjetër - old_way_tag: Etiketë rrugore e vjetër - relation: Lidhje - relation_member: Anëtar me lidhje të vjetër - relation_tag: Etiketë lidhjeje + old_node: Nyjë e Vjetër + old_node_tag: Etiketë e Vjetër e Nyjës + old_relation: Marrëdhënie e Vjetër + old_relation_member: Anëtar me Lidhje të Vjetër + old_relation_tag: Etiketë Marrëdhënie e Vjetër + old_way: Rrugë e Vjetër + old_way_node: Nyje Rrugore e Vjetër + old_way_tag: Etiketë Rrugore e Vjetër + relation: Lidhja + relation_member: Anëtar i Marrëdhënies + relation_tag: Etiketë Lidhjeje session: Seancë trace: Gjurmë - tracepoint: Pika e gjurmës - tracetag: Etiketa e gjurmës + tracepoint: Pika e Gjurmës + tracetag: Etiketa e Gjurmës user: Përdoruesi - user_preference: Parapëlqimet e përdoruesit - user_token: Shenja e përdoruesit + user_preference: Parapëlqimet e Përdoruesit + user_token: Shenja e Përdoruesit way: Rruga - way_node: Nyjë rruge - way_tag: Etiketë rruge + way_node: Nyjë Rruge + way_tag: Etiketë Rruge attributes: diary_comment: - body: Trupi i mesazhit + body: Trupi i Mesazhit diary_entry: user: Përdoruesi title: Titulli - latitude: Gjerësia gjeografike - longitude: Gjatësia gjeografike + latitude: Gjerësia Gjeografike + longitude: Gjatësia Gjeografike language: Gjuha friend: user: Përdoruesi @@ -86,29 +87,29 @@ sq: trace: user: Përdoruesi visible: I dukshëm - name: Emri + name: Emri i skedës size: Madhësia - latitude: Gjerësia gjeografike - longitude: Gjatësia gjeografike + latitude: Gjerësia Gjeografike + longitude: Gjatësia Gjeografike public: Publik description: Përshkrimi - gpx_file: 'Ngarko një skedar GPX:' - visibility: 'Dukshmëria:' - tagstring: 'Etiketat:' + gpx_file: Ngarko një skedar GPX + visibility: Dukshmëria + tagstring: Etiketat message: sender: Dërguesi title: Titulli - body: Trupi i mesazhit + body: Trupi i Mesazhit recipient: Marrësi user: email: Emaili - new_email: 'Adresa e re e emailit:' + new_email: Adresa e re e emailit active: Aktiv - display_name: Emër i dukshëm - description: Përshkrimi - home_lat: 'Latituda:' - home_lon: 'Longituda:' - languages: Gjuhët + display_name: Emri i Dukshëm + description: Përshkrimi i Profilit + home_lat: Gjerësia gjeografike + home_lon: Gjatësia gjeografike + languages: Gjuhët e Parapëlqyera pass_crypt: Fjalëkalimi help: trace: @@ -123,8 +124,8 @@ sq: name: iD description: iD (në redaktorin e shfletuesit) remote: - name: Kontrollë nga larg - description: Kontrollë nga larg (JOSM apo Merkaartor) + name: Kontroll nga Larg + description: Kontrollo nga larg (JOSM, Potlatch, Merkaartor) browse: created: Krijuar closed: Mbyllur @@ -135,17 +136,17 @@ sq: edited_by_html: Redaktuar %{time} më parë nga %{user} closed_by_html: Mbyllur %{time} më parë nga %{user} version: Versioni - in_changeset: Grupi i ndryshimeve + in_changeset: Grupi i Ndryshimeve anonymous: Anonim no_comment: (nuk ka koment) part_of: Pjesë e - download_xml: Shkarko në XML - view_history: Shiko historikun - view_details: Shiko detajet - location: Vendndodhja + download_xml: Shkarko XML-në + view_history: Shiko Historikun + view_details: Shiko Detajet + location: 'Vendndodhja:' changeset: - title: 'Grupi i ndryshimeve: %{id}' - belongs_to: Autor + title: 'Grupi i Ndryshimeve: %{id}' + belongs_to: Autori node: Nyjet (%{count}) node_paginated: Nyjet (%{x}-%{y} nga %{count}) way: Mënyrat (%{count}) @@ -166,17 +167,17 @@ sq: discussion: Diskutim node: title_html: 'Nyja: %{name}' - history_title_html: 'Historiati i nyjës: %{name}' + history_title_html: 'Historiku i nyjës: %{name}' way: title_html: 'Drejtimi: %{name}' - history_title_html: 'Historiati i rrugës: %{name}' + history_title_html: 'Historiku i Rrugës: %{name}' nodes: Nyjet also_part_of_html: one: pjesë e rrugës %{related_ways} other: pjesë e rrugëve %{related_ways} relation: title_html: 'Lidhja: %{name}' - history_title_html: 'Historiati i lidhjes: %{name}' + history_title_html: 'Historiku i lidhjes: %{name}' members: Anëtarët relation_member: entry_html: '%{type} %{name}' @@ -217,7 +218,7 @@ sq: feature_warning: Duke ngarkuar %{num_features} karakteristika, të cilat mund ta bëjnë shfletuesin tuaj të ngadalshëm ose të pavëmendshëm. Jeni të sigurt që dëshironi ti shfaqni këto të dhëna? - load_data: Ngarko të dhënat + load_data: Ngarko të Dhënat loading: Duke ngarkuar... tag_details: tags: Etiketat @@ -236,36 +237,36 @@ sq: hidden_title: 'Shënim i fshehur #%{note_name}' opened_by_html: Krijuar nga %{user} në %{when} më parë - opened_by_anonymous_html: Krijuar nga person anonim %{when} + opened_by_anonymous_html: Krijuar nga një person anonim %{when} më parë commented_by_html: Krijuar nga %{user} në %{when} më parë - commented_by_anonymous_html: Krijuar nga person anonim %{when} + commented_by_anonymous_html: Krijuar nga një person anonim %{when} më parë closed_by_html: Zgjidhur nga %{user} në %{when} më parë - closed_by_anonymous_html: Zgjidhur nga person anonim %{when} + closed_by_anonymous_html: Zgjidhur nga një person anonim %{when} më parë reopened_by_html: Riaktivizuar nga %{user} në %{when} më parë - reopened_by_anonymous_html: Riaktivizuar nga person anonim %{when} + reopened_by_anonymous_html: Riaktivizuar nga një person anonim %{when} më parë hidden_by_html: Fshehur nga %{user} në %{when} më parë query: - title: Tiparet e pyetsorit + title: Tiparet e Pyetësorit introduction: Kliko në hartë për të gjetur tipare në afërsi. nearby: Tiparet në afërsi enclosing: Tipare të bashkangjitura changesets: changeset_paging_nav: showing_page: Faqe %{page} - next: Vazhdo » + next: Tjetra » previous: « Mëparshëm changeset: anonymous: Anonim no_edits: (nuk ka redaktime) - view_changeset_details: Shiko detajet e grupit të ndryshimeve + view_changeset_details: Shikoni detajet e ndryshimeve changesets: id: ID saved_at: Të ruajtura në @@ -273,48 +274,47 @@ sq: comment: Koment area: Zona index: - title: Grupi i ndryshimeve + title: Ndryshimet title_user: Ndryshime fjalish nga %{user} - title_friend: Ndryshime nga miqtë e tu + title_friend: Ndryshime nga miqtë e mi title_nearby: Ndryshime nga përdorues të zonës - empty: Nuk u gjet grupi i ndryshimeve. - empty_area: Nuk ka grupndryshime në këtë fushë. - empty_user: Nuk grupndryshime nga ky përdorues. - no_more: Nuk u gjetë më shum grupndryshime. - no_more_area: Nuk ka më grupndryshime në këtë fushë. - no_more_user: Nuk më grupndryshime nga ky përdorues. + empty: Asnjë ndryshim nuk u gjet. + empty_area: Asnjë ndryshim në këtë zonë. + empty_user: Asnjë ndryshim nga ky përdorues. + no_more: Nuk u gjetën më ndryshime. + no_more_area: Nuk ka më ndryshime në këtë zonë. + no_more_user: Nuk ka më ndryshime nga ky përdorues. load_more: Ngarko më shumë timeout: - sorry: Na vjen keq, lista e grupit të ndryshimeve që u kërkua mori shumë kohë - për tu shkarkuar. + sorry: Na vjen keq, lista e ndryshimeve që ju kërkuat zgjati shumë për t'u rikuperuar. changeset_comments: comment: - comment: 'Koment në grupin e ndryshimeve #%{changeset_id} nga %{author}' + comment: 'Koment i ri mbi ndryshimet #%{changeset_id} nga %{author}' commented_at_by_html: Përditësuar %{when} më parë nga %{user} index: - title_all: Diskutim mbi vargun e ndryshimit në OpenStreetMap + title_all: Diskutimi mbi ndryshimet në OpenStreetMap title_particular: 'Diskutimi mbi grupin e ndryshimeve #%{changeset_id} të OpenStreetMap' diary_entries: new: - title: Shënim i ri në ditar + title: Shënim i ri në Ditar form: - location: 'Lokacioni:' - use_map_link: përdor hartën + location: Vendndodhja + use_map_link: Përdor Hartën index: - title: Ditarët e përdoruesve - title_friends: Ditarë të miqve + title: Ditarët e përdoruesëve + title_friends: Ditarët e miqve title_nearby: Ditarët e përdoruesve këtu pranë user_title: Ditari i %{user} - in_language_title: Shënimet në ditar në %{language} - new: Shënim i ri në ditar + in_language_title: Shënimet në Ditar në %{language} + new: Shënim i ri në Ditar new_title: Shkruani një shënim të ri në ditarin tuaj no_entries: Nuk ka shënime në ditar recent_entries: 'Shënimet më të fundit në ditar:' - older_entries: Shënimet e vjetra - newer_entries: Shënimet e fundit + older_entries: Shënimet e Vjetra + newer_entries: Shënimet më të reja edit: - title: Redakto shënimin në ditar - marker_text: Lokacioni i shënimit në ditar + title: Redakto Shënimin në Ditar + marker_text: Vendndodhja e shënimit në ditar show: title: Ditari i %{user} | %{title} user_title: Ditari i %{user} @@ -329,7 +329,7 @@ sq: diary_entry: posted_by_html: Postuar nga %{link_user} më %{created} në %{language_link} comment_link: Komento në këtë shënim - reply_link: Përgjigju në këtë shënim + reply_link: Dërgoni një mesazh autorit comment_count: zero: Nuk ka komente one: '%{count} koment' @@ -342,7 +342,7 @@ sq: hide_link: Fshih këtë koment confirm: Konfirmo location: - location: 'Lokacioni:' + location: 'Vendndodhja:' view: Shfaq edit: Redakto feed: @@ -357,10 +357,10 @@ sq: title: Shënimet e ditarit të OpenStreetMap description: Shënimet e fundit në ditar nga përdoruesit e OpenStreetMap comments: - has_commented_on: '%{display_name} ka komentuar në këto të shënime ditari' + has_commented_on: '%{display_name} ka komentuar shënimet e mëposhtme të ditarit' post: Posto when: Kur - comment: Komenti + comment: Koment newer_comments: Komentet më të fundit older_comments: Komentet e vjetra friendships: @@ -502,7 +502,7 @@ sq: house: Shtëpi public: Ndërtesë publike terrace: Tarracë - train_station: Stacion hekurudhor + train_station: Stacion Hekurudhor university: Godinë universitare "yes": Ndërtesë craft: @@ -806,7 +806,7 @@ sq: toys: Dyqan lodrash "yes": Dyqan tourism: - apartment: Apartament + apartment: Apartament Pushimesh artwork: Vepër artistike bed_and_breakfast: Bujtinë me mëngjes cabin: Kabinë @@ -958,6 +958,29 @@ sq: greeting: Përshëndetje, commented: partial_changeset_without_comment: pa koment + confirmations: + confirm: + heading: Kontrollo emailin tënd! + press confirm button: Shtyp butonin e mëposhtëm për të aktivizuar llogarinë + tënde. + button: Konfirmo + success: Llogaria e juaj u konfirmua, ju falemninderit që u regjistruat! + already active: Kjo llogari tashmë është konfirmuar. + unknown token: Kodi i konfirmimit ka skaduar ose nuk ekziston. + confirm_resend: + success_html: Ne kemi dërguar një shënim konfrimimi tek %{email} juaj dhe sapo + të konfirmoni llogarnië ju do të jeni në gjendje të filloni punën me harta.

    Nëse ju përdorni një antispam sistem që dërgon kërkesat e konfirmimit + atëherë ju lutem që të shtoni në listën e bardhë %{sender} pasi që ne nuk + do të jemi në gjendje të përgjigjemi ndaj çfarëdo kërkese për konfirmim. + failure: Përdoruesi %{name} nuk u gjet. + confirm_email: + heading: Konfirmoni ndryshimin e adresës së emailit + press confirm button: Shtypni butonin e mëposhtëm për të konfirmuar adresën + e re të emailit tuaj. + button: Konfirmo + success: Konfirmohet ndryshimi i adresës së emailit! + failure: Një adresë emaili tashmë është konfirmuar me këtë shenjë. messages: inbox: title: Kutia mbërritëse @@ -990,9 +1013,6 @@ sq: body: Na vjen keq, nuk ka mesazh me këtë id. outbox: title: Dalje - my_inbox_html: '%{inbox_link}' - inbox: kuti mbërritëse - outbox: dalje to: Për subject: Titulli date: Data @@ -1012,6 +1032,57 @@ sq: mark: as_read: Mesazhi është shënuar si të lexuar as_unread: Mesazhi është shënuar si i palexuar + passwords: + lost_password: + title: Fjalëkalimi i humbur + heading: Ke harruar fjalëkalimin? + email address: 'Adresa e emailit:' + new password button: Rivendos fjalëkalimin + help_text: Shkruani adresën e emailit që keni përdorur për tu regjistruar, ne + do të dërgojmë një lidhje të cilën mund të përdorni për të rivendosur fjalëkalimin + tuaj. + notice email on way: Na vjen keq e keni humbur atë :-( por një email është në + rrugëtim kështu që ju mund të rivendosni atë së shpejti. + notice email cannot find: Na vjen keq, ne nuk arritë ta gjejmë adresën e emailit + të dhënë. + reset_password: + title: Rivendos fjalëkalimin + heading: Rivendos fjalëkalimin për %{user} + reset: Rivendos fjalëkalimin + flash changed: Fjalëkalimi yt është ndryshuar. + flash token bad: Nuk e gjet atë shenjë, kontrollo URL-në? + sessions: + new: + title: Identifikohu + heading: Identifikohu + email or username: 'Adresa e emailit ose emri i përdoruesit:' + password: 'Fjalëkalimi:' + remember: Më mbaj mend + lost password link: Ke humbur fjalëkalimin? + login_button: Identifikohu + register now: Regjistrohu tani + create account minute: Krijoni një llogari. Ajo mer vetëm një minutë kohë. + no account: Nuk ke llogari? + account not active: Na vjen keq, llogaria e jote nuk është aktive akoma.
    Të lutem përdor lidhjen në emailin e konfirmimit, në llogari tënde, për + ta aktivizuar atë, ose kërko një email konfirmimi të + ri . + account is suspended: Na vjen keq, llogarinë tuaj ka qenë i pezulluar për shkak + të aktivitetit të dyshimtë.
    Ju lutem kontaktoni webmaster + nëse ju dëshironi për të diskutuar këtë. + auth failure: Na vjen keq, nuk mund të identifikohemi me ato detaje. + openid_logo_alt: Identifikohu me ndonjë ID të hapur + auth_providers: + openid: + title: Identifikohu me OpenID + github: + title: Identifikohuni me GitHub + wikipedia: + alt: Identifikohuni me një llogari të Wikipedia-s + destroy: + title: Çidentifikohu + heading: Çidentifikohu nga OpenStreetMap + logout_button: Çidentifikohu site: about: next: Tjetra @@ -1041,9 +1112,9 @@ sq: të saj. Nëse ndryshoni apo ndërtoni mbi hartat apo të dhënat tona, ju\nmund të shpërndani rezultatet nën licencën e njëjtë. Licenca e plotë legal\n \ code shpjegon të drejtat dhe përgjegjësitë tuaja." - intro_3_1_html: |- - Hartografimi i pjesëve tona, dhe dokumantacioni ynë, janë të licencuara nën licensë të Creative - Commons Attribution-ShareAlike 2.0(CC BY-SA). + intro_3_1_html: "Dokumentacioni ynë është i licencuar nën\n + \nLicenca Kreative e Atribuimit të përbashkët-ShareAlike 2.0 (CC BY-SA + 2.0)." credit_title_html: Si të citoni OpenStreetMap credit_1_html: Ne kërkojmë që ju të përdorni kreditet e “© OpenStreetMap contributors”. @@ -1079,11 +1150,15 @@ sq: Resources Canada), CanVec (© Department of Natural Resources Canada), and StatCan (Geography Division, Statistics Canada). - contributors_nz_html: 'New Zealand: Përmban të dhëna të sigururar - nga Land Information New Zealand. Crown Copyright reserved.' + contributors_nz_html: |- + Zelanda e Re : Përmban të dhëna me burim nga + Shërbimi i të Dhënave LINZ dhe + licencuar për ripërdorim nën + CC BY 4.0 . contributors_gb_html: |- - Britani e Madhe: Përmban të dhëna nga Ordnance - Survey©. Crown i ka të drejtat autoriale dhe të databazës. + Mbretëria e Bashkuar : Përmban Ordinancë + Të dhënat e sondazhit & kopje; E drejta e autorit e kurorës dhe e drejta e bazës së të dhënave + 2010-19. contributors_footer_2_html: " Përfshirja e të dhënave në OpenStreetMap nuk thekson se të ofruesi origjinal i të \n dhënave përdor OpenStreetMap, ofron garancion, apo\n pranon çfarëdo anekse." @@ -1161,7 +1236,7 @@ sq: duke dokumentuar temat e hartës. welcome: url: /mirësevjen - title: Mirësevjen në OSM + title: Mirësevini në OpenStreetMap description: Filloni me këtë udhëzues të thjeshtë që mbulon bazat e OpenStreetMap. beginners_guide: url: http://wiki.openstreetmap.org/wiki/Sq:Beginners%27_guide @@ -1169,9 +1244,9 @@ sq: description: Një udhëzues për fillestarë që mirëmbahet nga komuniteti. help: url: https://help.openstreetmap.org/ - title: help.openstreetmap.org - description: Bëni një pyetje ose shikoni përgjigjet në faqen pyetje dhe përgjigje - të OSM-së. + title: Forumi i Ndihmës + description: Bëni një pyetje ose shikoni përgjigjet në faqen e pyetjeve dhe + përgjigjeve të OpenStreetMap. mailing_lists: title: Listat E Postimeve description: Bëni një pyetje ose diskutoni çështje interesante në një gamë @@ -1185,7 +1260,7 @@ sq: search: Kërko from: Prej to: Për - where_am_i: Ku jam unë? + where_am_i: Ku është kjo? key: table: entry: @@ -1199,9 +1274,6 @@ sq: summit: - Samit - majë - richtext_area: - edit: Redakto - preview: Parapamje welcome: title: Mirësevjen whats_on_the_map: @@ -1277,7 +1349,6 @@ sq: more: më shumë trace_details: Shfaq detajet e gjurmës view_map: Shiko hartën - edit: redakto edit_map: Redakto hartën public: PUBLIKE identifiable: E IDENTIFIKUESHME @@ -1285,7 +1356,6 @@ sq: trackable: E GJURMUESHME by: nga in: në - map: harta index: public_traces: Gjurmët publike të GPS public_traces_from: Gjurmët publike të GPS nga %{user} @@ -1311,55 +1381,6 @@ sq: edit: Redakto detajet confirm: A je i sigurt? users: - login: - title: Identifikohu - heading: Identifikohu - email or username: 'Adresa e emailit ose emri i përdoruesit:' - password: 'Fjalëkalimi:' - remember: Më mbaj mend - lost password link: Ke humbur fjalëkalimin? - login_button: Identifikohu - register now: Regjistrohu tani - create account minute: Krijoni një llogari. Ajo mer vetëm një minutë kohë. - no account: Nuk ke llogari? - account not active: Na vjen keq, llogaria e jote nuk është aktive akoma.
    Të lutem përdor lidhjen në emailin e konfirmimit, në llogari tënde, për - ta aktivizuar atë, ose kërko një email konfirmimi të - ri . - account is suspended: Na vjen keq, llogarinë tuaj ka qenë i pezulluar për shkak - të aktivitetit të dyshimtë.
    Ju lutem kontaktoni webmaster - nëse ju dëshironi për të diskutuar këtë. - auth failure: Na vjen keq, nuk mund të identifikohemi me ato detaje. - openid_logo_alt: Identifikohu me ndonjë ID të hapur - auth_providers: - openid: - title: Identifikohu me OpenID - github: - title: Identifikohuni me GitHub - wikipedia: - alt: Identifikohuni me një llogari të Wikipedia-s - logout: - title: Çidentifikohu - heading: Çidentifikohu nga OpenStreetMap - logout_button: Çidentifikohu - lost_password: - title: Fjalëkalimi i humbur - heading: Ke harruar fjalëkalimin? - email address: 'Adresa e emailit:' - new password button: Rivendos fjalëkalimin - help_text: Shkruani adresën e emailit që keni përdorur për tu regjistruar, ne - do të dërgojmë një lidhje të cilën mund të përdorni për të rivendosur fjalëkalimin - tuaj. - notice email on way: Na vjen keq e keni humbur atë :-( por një email është në - rrugëtim kështu që ju mund të rivendosni atë së shpejti. - notice email cannot find: Na vjen keq, ne nuk arritë ta gjejmë adresën e emailit - të dhënë. - reset_password: - title: Rivendos fjalëkalimin - heading: Rivendos fjalëkalimin për %{user} - reset: Rivendos fjalëkalimin - flash changed: Fjalëkalimi yt është ndryshuar. - flash token bad: Nuk e gjet atë shenjë, kontrollo URL-në? new: title: Krijo llogari no_auto_account_create: Për fat të keq aktualisht nuk jeni në gjendje për të @@ -1377,10 +1398,10 @@ sq: terms accepted: Faleminderit për pranimin kushteve të reja për kontribues! terms declined url: http://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined terms: - title: Kushtet për kontribues - heading: Kushtet për kontribues + title: Kushtet + heading: Kushtet consider_pd: Përveç marrëveshjes së mësipërme, unë i konsideroj kontributet - e mia të jenë në Domenin Publik + e mia të jenë në Domeinin Publik consider_pd_why: çfarë është kjo? consider_pd_why_url: http://www.osmfoundation.org/wiki/License/Why_would_I_want_my_contributions_to_be_public_domain declined: http://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined @@ -1458,11 +1479,11 @@ sq: account: title: Redakto llogarinë my settings: Preferencat e mia - current email address: 'Adresa e tanishme e emailit:' + current email address: Adresa e Tanishme e Emailit openid: link text: çfarë është kjo? public editing: - heading: 'Redaktim publik:' + heading: Redaktim publik enabled: I aktivizuar. Jo anonim dhe mund të redaktojë të dhënat. enabled link: http://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: çfarë është kjo? @@ -1472,7 +1493,7 @@ sq: public editing note: heading: Redaktim publik contributor terms: - heading: Kushtet për kontribues + heading: Kushtet e kontribuesit agreed: Ti je pajtuar me kushtet e reja për kontribues. not yet agreed: Ti ende nuk je pajtuar me kushtet e reja për kontribues. review link text: Të lutem ndiq i këtë link për të për të lexuar dhe pranuar @@ -1481,7 +1502,7 @@ sq: pronësi publike. link: http://www.osmfoundation.org/wiki/License/Contributor_Terms link text: Çka është kjo? - image: 'Imazhi:' + image: Imazhi gravatar: gravatar: Përdor Gravatar new image: Shto një imazh @@ -1489,7 +1510,7 @@ sq: delete image: Heq imazhin e tanishëm replace image: Zëvendëso imazhin e tanishëm image size hint: (imazhet katror të paktën 100x100 duken më mirë) - home location: 'Vendndodhja e shtëpisë:' + home location: Vendndodhja e Shtëpisë no home location: Nuk ke shëuar vendndodhjen e shtëpisë tënde. update home location on click: Përditëso vendndodhjen e shtëpisë kur unë klikoj në hartë! @@ -1500,28 +1521,6 @@ sq: me sukses. Kontrolloni emailin tuaj për një shënim për të konfirmuar adresën e re të emailit tuaj. flash update success: Informacioni i përdoruesit u përditësua me sukses. - confirm: - heading: Kontrollo emailin tënd! - press confirm button: Shtyp butonin e mëposhtëm për të aktivizuar llogarinë - tënde. - button: Konfirmo - success: Llogaria e juaj u konfirmua, ju falemninderit që u regjistruat! - already active: Kjo llogari tashmë është konfirmuar. - unknown token: Kodi i konfirmimit ka skaduar ose nuk ekziston. - confirm_resend: - success_html: Ne kemi dërguar një shënim konfrimimi tek %{email} juaj dhe sapo - të konfirmoni llogarnië ju do të jeni në gjendje të filloni punën me harta.

    Nëse ju përdorni një antispam sistem që dërgon kërkesat e konfirmimit - atëherë ju lutem që të shtoni në listën e bardhë %{sender} pasi që ne nuk - do të jemi në gjendje të përgjigjemi ndaj çfarëdo kërkese për konfirmim. - failure: Përdoruesi %{name} nuk u gjet. - confirm_email: - heading: Konfirmoni ndryshimin e adresës së emailit - press confirm button: Shtypni butonin e mëposhtëm për të konfirmuar adresën - e re të emailit tuaj. - button: Konfirmo - success: Konfirmohet ndryshimi i adresës së emailit! - failure: Një adresë emaili tashmë është konfirmuar me këtë shenjë. set_home: flash success: Lokacioni i shtëpisë është ruajtur me sukses go_public: diff --git a/config/locales/sr-Latn.yml b/config/locales/sr-Latn.yml index 654bf3d86..64344f72c 100644 --- a/config/locales/sr-Latn.yml +++ b/config/locales/sr-Latn.yml @@ -514,6 +514,7 @@ sr-Latn: cape: Rt cave_entrance: Ulaz u pećinu cliff: Litica + coastline: Obala crater: Krater dune: Dina fell: Brdo @@ -783,11 +784,31 @@ sr-Latn: subject: '[OpenStreetMap] Zahtev za poništavanje lozinke' greeting: Pozdrav, click_the_link: Ako ste to vi, kliknite na vezu ispod da biste poništili lozinku. + confirmations: + confirm: + heading: Potvrda korisničkog naloga + press confirm button: Pritisnite dugme za potvrdu da biste aktivirali nalog. + button: Potvrdi + success: Vaš nalog je potvrđen. Hvala vam na upisu! + already active: Ovaj nalog je već potvrđen. + unknown token: Izgleda da taj novčić ne postoji. + confirm_resend: + success_html: Poslali smo novu potvrdnu poruku na %{email}. Nakon što potvrdite + svoj nalog, moći ćete da počnete s mapiranjem.

    Ako koristite sistem + protiv nepoželjnih poruka, dodajte %{sender} u spisak dozvoljenih adresa jer + nismo u mogućnosti da odgovorimo na bilo koji zahtev za potvrdu. + failure: Korisnik %{name} nije pronađen. + confirm_email: + heading: Potvrda promene e-adrese + press confirm button: Kliknite na dugme za potvrdu da biste potvrdili svoju + novu e-adresu. + button: Potvrdi + success: Vaša e-adresa je potvrđena. Hvala vam na upisu! + failure: E-adresa s ovim novčićem je već potvrđena. messages: inbox: title: Primljene my_inbox: Primljene - outbox: poslate messages: Imate %{new_messages} i %{old_messages} new_messages: one: '%{count} nova poruka' @@ -822,9 +843,6 @@ sr-Latn: body: Nažalost, nema poruke s tim IB. outbox: title: Poslate - my_inbox_html: '%{inbox_link}' - inbox: primljene - outbox: poslate messages: one: Imate %{count} poslatu poruku other: Imate %{count} poslate poruke @@ -855,6 +873,50 @@ sr-Latn: as_unread: Poruka je označena kao nepročitana destroy: destroyed: Poruka je obrisana + passwords: + lost_password: + title: Povratak lozinke + heading: Zaboravili ste lozinku? + email address: 'E-adresa:' + new password button: Poništi lozinku + help_text: Unesite e-adresu koju ste uneli pri upisu, a mi ćemo vam poslati + vezu pomoću koje možete da poništite lozinku. + notice email on way: Poruka za poništavanje lozinke je poslata. + notice email cannot find: E-adresa nije pronađena. + reset_password: + title: Poništi lozinku + heading: Poništavanje lozinke za %{user} + reset: Poništi lozinku + flash changed: Vaša lozinka je promenjena. + flash token bad: Takav novčić nije pronađen. Proverite adresu. + sessions: + new: + title: Prijava + heading: Prijava + email or username: 'Imejl adresa ili korisničko ime:' + password: 'Lozinka:' + openid_html: '%{logo} OpenID:' + remember: 'Zapamti me:' + lost password link: Zaboravili ste lozinku? + login_button: Prijavi me + register now: Otvorite nalog + with username: 'Već imate nalog? Prijavite se s korisničkim imenom i lozinkom:' + new to osm: Novi ste na sajtu? + to make changes: Da biste pravili izmene, morate imati nalog. + create account minute: Otvorite nalog. Potrebno je samo nekoliko trenutaka. + no account: Nemate nalog? + account not active: Žao nam je, vaš nalog još uvek nije aktiviran.
    Pratite + vezu u poruci za potvrdu e-pošte da biste ga aktivirali ili zatražite + novu poruku. + account is suspended: Nažalost, vaš nalog je ukinut zbog sumnjive aktivnosti.
    Obratite se administratoru ako želite da porazgovarate + o problemu. + auth failure: Ne mogu da vas prijavim s unetim podacima. + openid_logo_alt: Prijavite se s OpenID-jem + destroy: + title: Odjava + heading: Odjava + logout_button: Odjavi me site: copyright: foreign: @@ -1068,23 +1130,6 @@ sr-Latn: private: Privatni posed destination: Pristup odredištu construction: Putevi u izgradnji - richtext_area: - edit: Uredi - preview: Pregled - markdown_help: - title_html: Raščlanjeno sa markdaunom - headings: Naslovi - heading: Naslov - subheading: Podnaslov - unordered: Nesvrstan spisak - ordered: Svrstan spisak - first: Prva stavka - second: Druga stavka - link: Veza - text: Tekst - image: Slika - alt: Rezervni tekst - url: Adresa traces: visibility: private: Privatni (prikazuje se kao anonimne, neraspoređene tačke) @@ -1140,7 +1185,6 @@ sr-Latn: more: više trace_details: Pogledajte detalje o tragu view_map: Pogledaj kartu - edit: uredi edit_map: Uredi mapu public: JAVNI identifiable: MOŽE SE PREPOZNATI @@ -1148,7 +1192,6 @@ sr-Latn: trackable: MOŽE SE PRATITI by: od in: u - map: mapa index: public_traces: Javni GPS tragovi public_traces_from: Javni GPS tragovi korisnika %{user} @@ -1229,48 +1272,6 @@ sr-Latn: destroy: flash: Upis programa je ukinut users: - login: - title: Prijava - heading: Prijava - email or username: 'Imejl adresa ili korisničko ime:' - password: 'Lozinka:' - openid_html: '%{logo} OpenID:' - remember: 'Zapamti me:' - lost password link: Zaboravili ste lozinku? - login_button: Prijavi me - register now: Otvorite nalog - with username: 'Već imate nalog? Prijavite se s korisničkim imenom i lozinkom:' - new to osm: Novi ste na sajtu? - to make changes: Da biste pravili izmene, morate imati nalog. - create account minute: Otvorite nalog. Potrebno je samo nekoliko trenutaka. - no account: Nemate nalog? - account not active: Žao nam je, vaš nalog još uvek nije aktiviran.
    Pratite - vezu u poruci za potvrdu e-pošte da biste ga aktivirali ili zatražite - novu poruku. - account is suspended: Nažalost, vaš nalog je ukinut zbog sumnjive aktivnosti.
    Obratite se administratoru ako želite da porazgovarate - o problemu. - auth failure: Ne mogu da vas prijavim s unetim podacima. - openid_logo_alt: Prijavite se s OpenID-jem - logout: - title: Odjava - heading: Odjava - logout_button: Odjavi me - lost_password: - title: Povratak lozinke - heading: Zaboravili ste lozinku? - email address: 'E-adresa:' - new password button: Poništi lozinku - help_text: Unesite e-adresu koju ste uneli pri upisu, a mi ćemo vam poslati - vezu pomoću koje možete da poništite lozinku. - notice email on way: Poruka za poništavanje lozinke je poslata. - notice email cannot find: E-adresa nije pronađena. - reset_password: - title: Poništi lozinku - heading: Poništavanje lozinke za %{user} - reset: Poništi lozinku - flash changed: Vaša lozinka je promenjena. - flash token bad: Takav novčić nije pronađen. Proverite adresu. new: title: Otvaranje naloga no_auto_account_create: Nažalost, trenutno nismo u mogućnosti da otvorimo novi @@ -1421,26 +1422,6 @@ sr-Latn: flash update success confirm needed: Podaci o korisniku su uspešno ažurirani. Proverite e-poštu da biste potvrdili svoju novu e-adresu. flash update success: Podaci o korisniku su uspešno ažurirani. - confirm: - heading: Potvrda korisničkog naloga - press confirm button: Pritisnite dugme za potvrdu da biste aktivirali nalog. - button: Potvrdi - success: Vaš nalog je potvrđen. Hvala vam na upisu! - already active: Ovaj nalog je već potvrđen. - unknown token: Izgleda da taj novčić ne postoji. - confirm_resend: - success_html: Poslali smo novu potvrdnu poruku na %{email}. Nakon što potvrdite - svoj nalog, moći ćete da počnete s mapiranjem.

    Ako koristite sistem - protiv nepoželjnih poruka, dodajte %{sender} u spisak dozvoljenih adresa jer - nismo u mogućnosti da odgovorimo na bilo koji zahtev za potvrdu. - failure: Korisnik %{name} nije pronađen. - confirm_email: - heading: Potvrda promene e-adrese - press confirm button: Kliknite na dugme za potvrdu da biste potvrdili svoju - novu e-adresu. - button: Potvrdi - success: Vaša e-adresa je potvrđena. Hvala vam na upisu! - failure: E-adresa s ovim novčićem je već potvrđena. set_home: flash success: Mesto stanovanja je uspešno sačuvano go_public: diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 5cfe6e807..e82bd058a 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -57,12 +57,12 @@ sr: activerecord: errors: messages: - invalid_email_address: не изгледа као важећа е-адреса + invalid_email_address: не изгледа као важећа имејл адреса models: acl: Листа контроле приступа changeset: Скуп промена changeset_tag: Ознака скупа промена - country: Земља + country: Држава diary_comment: Коментар у дневнику diary_entry: Унос у дневнику friend: Пријатељ @@ -83,6 +83,7 @@ sr: relation: Однос relation_member: Члан односа relation_tag: Ознака односа + report: Пријави session: Сесија trace: Рута tracepoint: Тачка руте @@ -98,6 +99,13 @@ sr: name: Име (обавезно) callback_url: Повратна адреса support_url: Адреса подршке + allow_read_prefs: чита њихове корисничке поставке + allow_write_prefs: мења њихове корисничке поставке + allow_write_diary: прави дневничке записе, коментарише и додаје пријатеље + allow_write_api: мења мапу + allow_read_gpx: чита њихове приватне GPS трагове + allow_write_gpx: отпрема GPS трагове + allow_write_notes: мења белешке diary_comment: body: Текст diary_entry: @@ -127,17 +135,26 @@ sr: body: Текст recipient: Прималац redaction: + title: Наслов description: Опис + report: + category: Одаберите разлог пријаве + details: Молимо пружите још мало детања о проблему (захтевано). user: + auth_provider: Провајдер провере идентитета + auth_uid: UID идентитета email: Имејл - new_email: 'Нова имејл адреса:' + email_confirmation: Имејл потврда + new_email: Нова имејл адреса active: Активан display_name: Име за приказ - description: Опис - home_lat: 'Географска ширина:' - home_lon: 'Географска дужина:' - languages: Језици + description: Опис профила + home_lat: Географска ширина + home_lon: Географска дужина + languages: Жељени језици + preferred_editor: Жељени уређивач pass_crypt: Лозинка + pass_crypt_confirmation: Потврдите лозинку help: trace: tagstring: раздвојено запетама @@ -157,11 +174,14 @@ sr: description: iD (уређивач у прегледачу) remote: name: Даљинско управљање - description: Даљинско управљање (JOSM или Merkaartor) + description: Даљинско управљање (JOSM, Potlatch, Merkaator) auth: providers: + none: Ниједан + openid: OpenID google: Google facebook: Facebook + windowslive: Windows Live github: GitHub wikipedia: Википедија api: @@ -195,7 +215,7 @@ sr: created_by_html: '%{user} је направио/-ла у %{time}' deleted_by_html: '%{user} је избрисао/-ла у %{time}' edited_by_html: '%{user} је уредио/-ла у %{time}' - closed_by_html: Затворио корисник %{user} пре %{time} + closed_by_html: Корисник %{user} затворио %{time} version: Верзија in_changeset: Скуп промена anonymous: анониман @@ -251,6 +271,7 @@ sr: entry_html: Однос %{relation_name} entry_role_html: Однос %{relation_name} (као %{relation_role}) not_found: + title: Није нађено sorry: 'Нажалост, %{type} #%{id} није пронађен.' type: node: тачка @@ -341,7 +362,7 @@ sr: changeset_comments: comment: comment: 'Нови коментар на скуп промена #%{changeset_id} корисника %{author}' - commented_at_by_html: Ажурирао %{user} пре %{when} + commented_at_by_html: Ажурирао %{user} у %{when} comments: comment: 'Нови коментар о скупу промена #%{changeset_id} аутора %{author}' index: @@ -354,8 +375,8 @@ sr: new: title: Нови унос у дневнику form: - location: 'Локација:' - use_map_link: користи мапу + location: Локација + use_map_link: Користи мапу index: title: Кориснички дневници title_friends: Дневници пријатеља @@ -364,6 +385,7 @@ sr: in_language_title: Уноси у дневнику на %{language} new: Нови унос у дневнику new_title: Састави нови унос у мом дневнику + my_diary: Мој дневник no_entries: Нема уноса у дневнику recent_entries: Недавни уноси у дневнику older_entries: Старији уноси @@ -383,20 +405,22 @@ sr: body: Нема уноса у дневнику нити коментара са ID-јем %{id}. Проверите правопис. Можда је веза на коју сте кликнули погрешна. diary_entry: - posted_by_html: Поставио корисник %{link_user} у %{created} на %{language_link} + posted_by_html: Поставио корисник %{link_user} у %{created} на %{language_link}. comment_link: Коментариши овај унос - reply_link: Одговори на овај унос + reply_link: Пошаљи поруку аутору comment_count: zero: Нема коментара one: '%{count} коментар' other: '%{count} коментара' edit_link: Уреди овај унос hide_link: Сакриј овај унос + unhide_link: Откриј овај унос confirm: Потврди report: Пријавите овај унос diary_comment: comment_from_html: Коментар корисника %{link_user} у %{comment_created_at} hide_link: Сакриј овај коментар + unhide_link: Откриј овај коментар confirm: Потврди report: Пријави овај коментар location: @@ -454,6 +478,7 @@ sr: gondola: Кабинска жичара pylon: Пилон station: Станица жичаре + "yes": Ваздушни путеви aeroway: aerodrome: Аеродром airstrip: Писта @@ -463,6 +488,7 @@ sr: helipad: Хелиодром parking_position: Место за паркинг runway: Писта + taxilane: Жута трака taxiway: Рулна стаза terminal: Терминал amenity: @@ -475,7 +501,9 @@ sr: bench: Клупа bicycle_parking: Паркинг за бицикле bicycle_rental: Изнајмљивање бицикала + bicycle_repair_station: Станица за поправку бицикла biergarten: Пивница на отвореном + blood_bank: Банка крви boat_rental: Услуге изнајмљивања чамаца brothel: Бордел bureau_de_change: Мењачница @@ -492,6 +520,7 @@ sr: clock: Часовник college: Колеџ community_centre: Месна заједница + conference_centre: Конференцијски центар courthouse: Суд crematorium: Крематоријум dentist: Стоматолог @@ -510,16 +539,22 @@ sr: hospital: Болница hunting_stand: Ловачка кула ice_cream: Продавница сладоледа + internet_cafe: Интернет кафе kindergarten: Обданиште + language_school: Школа за језике library: Библиотека + love_hotel: Бордел marketplace: Зелена пијаца monastery: Манастир + money_transfer: Пренос новца motorcycle_parking: Паркинг за мотоцикле + music_school: Музичка школа nightclub: Ноћни клуб nursing_home: Старачки дом parking: Паркинг parking_entrance: Улаз на паркинг parking_space: Паркинг место + payment_terminal: Терминал за плаћање pharmacy: Апотека place_of_worship: Верски објекат police: Полиција @@ -527,6 +562,7 @@ sr: post_office: Пошта prison: Затвор pub: Паб + public_bath: Јавно купатило public_building: Јавна зграда recycling: Место за рециклажу restaurant: Ресторан @@ -553,6 +589,7 @@ sr: census: Пописна граница national_park: Национални парк protected_area: Заштићено подручје + "yes": Граница bridge: aqueduct: Аквадукт boardwalk: Рива @@ -562,37 +599,70 @@ sr: "yes": Мост building: apartments: Станови + barn: Штала + bungalow: Бунгалов + cabin: Кабина chapel: Капела church: Црква + college: Факултетска зграда commercial: Пословна зграда + construction: Зграда у изградњи + detached: Издвојена кућа dormitory: Студентски дом + duplex: Дуплекс кућа farm: Фарма + farm_auxiliary: Помоћна штала garage: Гаража + garages: Гараже + hangar: Хангар hospital: Болница hotel: Хотел house: Кућа + houseboat: Кућа на води industrial: Индустријска зграда + kindergarten: Зграда вртића + manufacture: Зграда фабрике office: Пословница public: Јавна зграда residential: Стамбена зграда retail: Малопродајна радња + roof: Кров + ruins: Рушевина school: Школа + semidetached_house: Полуиздвојена кућа + service: Сервисна зграда + shed: Шупа + stable: Штала + static_caravan: Караван + temple: Зграда храма terrace: Тераса train_station: Железничка станица university: Универзитетска зграда + warehouse: Складиште "yes": Зграда + club: + sport: Спортски клуб + "yes": Клуб craft: + beekeper: Пчелар + blacksmith: Ковач brewery: Пивара carpenter: Столар + confectionery: Кондитор electrician: Електричар + electronics_repair: Поправка електронике gardener: Баштован painter: Молер photographer: Фотограф plumber: Водоинсталатер + roofer: Кровник + sawmill: Пилана shoemaker: Обућар tailor: Кројач + winery: Винарија "yes": Занатска радња emergency: + access_point: Приступна тачка ambulance_station: Хитна помоћ assembly_point: Тачка окупљања defibrillator: Дефибрилатор @@ -636,17 +706,21 @@ sr: tertiary: Локални пут tertiary_link: Локални пут track: Макадам + traffic_mirror: Саобраћајно огледало traffic_signals: Саобраћајна сигнализација trunk: Магистрала trunk_link: Магистрала unclassified: Некласификовани пут "yes": Пут historic: + aircraft: Историјска летелица archaeological_site: Археолошко налазиште + bomb_crater: Историјски кратер од бомбе battlefield: Бојно поље boundary_stone: Гранични камен building: Историјска зграда bunker: Бункер + cannon: Историјски топ castle: Дворац church: Црква city_gate: Градска капија @@ -659,6 +733,7 @@ sr: mine: Рудник mine_shaft: Рударско окно monument: Споменик + railway: Историјска пруга roman_road: Римски пут ruins: Рушевине stone: Камен @@ -731,6 +806,8 @@ sr: water_park: Аквапарк "yes": Разонода man_made: + advertising: Реклама + antenna: Антена beacon: Светионик beehive: Кошница са пчелама bridge: Мост @@ -751,6 +828,7 @@ sr: petroleum_well: Нафтни бунар pier: Пристаниште pipeline: Цевовод + pumping_station: Црпна станица silo: Силос surveillance: Присмотра tower: Кула @@ -768,11 +846,14 @@ sr: mountain_pass: "yes": Планински прелаз natural: + atoll: Атол + bare_rock: Голи камен bay: Залив beach: Плажа cape: Рт cave_entrance: Улаз у пећину cliff: Литица + coastline: Обала crater: Кратер dune: Дина fell: Голо брдо @@ -789,6 +870,7 @@ sr: moor: Вресиште mud: Блато peak: Врх + peninsula: Полуострво point: Тачка reef: Риф ridge: Гребен @@ -809,8 +891,10 @@ sr: office: accountant: Рачуновођа administrative: Администрација + advertising_agency: Маркетиншка агенција architect: Архитекта company: Предузеће + diplomatic: Дипломатска канцеларија educational_institution: Образовна установа employment_agency: Агенција за запошљавање estate_agent: Агенција за некретнине @@ -819,11 +903,14 @@ sr: it: ИТ канцеларија lawyer: Адвокат ngo: Невладина организација + notary: Нотар + research: Истраживачка канцеларија telecommunication: Телекомуникациона компанија travel_agent: Туристичка агенција "yes": Канцеларија place: allotments: Парцеле + archipelago: Архипелаг city: Град city_block: Градски блок country: Земља @@ -873,9 +960,12 @@ sr: tram_stop: Трамвајско стајалиште yard: Ранжирна станица shop: + agrarian: Аграрна продавница alcohol: Продавница алкохолних пића antiques: Антикварница + appliance: Продавница уређаја art: Продавница опреме за уметнике + bag: Продавница кеса bakery: Пекара beauty: Козметички салон beverages: Продавница пића @@ -888,20 +978,27 @@ sr: car_repair: Ауто-сервис carpet: Продавница тепиха charity: Добротворна продавница + cheese: Продавница сира chemist: Продавница кућне хемије + chocolate: Чоколада clothes: Продавница одеће + coffee: Кафић computer: Продавница рачунара confectionery: Посластичарница convenience: Продавница мешовите робе copyshop: Фотокопирница cosmetics: Козметичка радња + curtain: Продавница драперија deli: Сендвичара department_store: Робна кућа discount: Дисконт doityourself: Уради сам dry_cleaning: Хемијско чишћење + e-cigarette: Продавница е-цигарета electronics: Продавница електронике + erotic: Еротска радња estate_agent: Агент за некретнине + fabric: Продавница тканине farm: Пољопривредна апотека fashion: Продавница модне одеће florist: Цвећара @@ -915,6 +1012,7 @@ sr: grocery: Бакалница hairdresser: Фризерски салон hardware: Продавница алата + health_food: Продавница здраве хране hifi: Продавница аудио-опреме interior_decoration: Декорација ентеријера jewelry: Јувелирница @@ -941,6 +1039,7 @@ sr: stationery: Продавница канцеларијског прибора supermarket: Супермаркет tailor: Кројач + tattoo: Тетоваже ticket: Продавница карата tobacco: Продавница цигарета toys: Продавница играчака @@ -1034,6 +1133,7 @@ sr: reopen: Поново отвори read_reports: Прочитај извештаје new_reports: Нови извештаји + comments_on_this_issue: Коментари на овај проблем helper: reportable_title: diary_comment: '%{entry_title}, коментар %{comment_id}' @@ -1208,11 +1308,37 @@ sr: details: Више информација о чејнџсетовима може да се пронађе на %{url}. unsubscribe: Да бисте престали пратити апдејте овог чејнџсета, посетите %{url} и кликните на „Престани пратити”. + confirmations: + confirm: + heading: Проверите Ваш имејл! + introduction_1: Послалисмо ти е-писмо за потврду. + introduction_2: Потврди свој налог тако што ћеш кликнути на везу у имејлу и + моћићеш да почнеш са цртањем карте. + press confirm button: Притисните дугме за потврду да бисте активирали налог. + button: Потврди + success: Ваш налог је потврђен. Хвала вам на упису! + already active: Овај налог је већ потврђен. + unknown token: Тај код за потврду је истекао или не постоји. + reconfirm_html: Ако треба да нам поново пошаљеш е-писмо, кликни + овде. + confirm_resend: + success_html: Послали смо нову потврдну поруку на %{email}. Након што потврдите + свој налог, моћи ћете да почнете с мапирањем.

    Ако користите систем + против непожељних порука, додајте %{sender} у списак дозвољених адреса јер + нисмо у могућности да одговоримо на било који захтев за потврду. + failure: Корисник %{name} није пронађен. + confirm_email: + heading: Потврда промене имејл адресе + press confirm button: Кликните на дугме за потврду да бисте потврдили Вашу нову + имејл адресу. + button: Потврди + success: Промена ваше е-адресе је потврђенаǃ + failure: Е-адреса с овим новчићем је већ потврђена. + unknown_token: Вредност кода за потврду је истекла или тај код не постоји. messages: inbox: title: Примљене my_inbox: Примљене - outbox: послате messages: Имате %{new_messages} и %{old_messages} new_messages: one: '%{count} нова порука' @@ -1247,9 +1373,6 @@ sr: body: Нажалост, нема поруке с тим ИБ. outbox: title: Послате - my_inbox_html: '%{inbox_link}' - inbox: примљене - outbox: послате messages: one: Имате %{count} послату поруку other: Имате %{count} послате поруке @@ -1282,6 +1405,79 @@ sr: as_unread: Порука је означена као непрочитана destroy: destroyed: Порука је обрисана + passwords: + lost_password: + title: Повратак лозинке + heading: Заборавили сте лозинку? + email address: 'Имејл адреса:' + new password button: Поништи лозинку + help_text: Унесите е-адресу коју сте унели при упису, а ми ћемо вам послати + везу помоћу које можете да поништите лозинку. + notice email on way: Порука за поништавање лозинке је послата. + notice email cannot find: Имејл адреса није пронађена, жао нам је. + reset_password: + title: Поништи лозинку + heading: Поништавање лозинке за %{user} + reset: Поништи лозинку + flash changed: Ваша лозинка је промењена. + flash token bad: Такав новчић није пронађен. Проверите адресу. + sessions: + new: + title: Пријава + heading: Пријава + email or username: 'Имејл адреса или корисничко име:' + password: 'Лозинка:' + openid_html: '%{logo} OpenID:' + remember: Запамти ме + lost password link: Заборавили сте лозинку? + login_button: Пријави ме + register now: Отворите налог + with username: 'Већ имате налог? Пријавите се с корисничким именом и лозинком:' + with external: 'Алтернативно, користите трећу страну да се пријавите:' + new to osm: Нови сте на сајту? + to make changes: Да бисте правили измене, морате имати налог. + create account minute: Отворите налог. Потребно је само неколико тренутака. + no account: Немате налог? + account not active: Жао нам је, ваш налог још увек није активиран.
    Пратите + везу у поруци за потврду е-поште да бисте га активирали или затражите + нову поруку. + account is suspended: Нажалост, ваш налог је укинут због сумњиве активности.
    Обратите се администратору ако желите да поразговарате + о проблему. + auth failure: Није могуће пријавити се са тим детаљима. + openid_logo_alt: Пријавите се с OpenID-јем + auth_providers: + openid: + title: Пријавити се са OpenID + alt: Пријава преко OpenID URL-а + google: + title: Пријава преко Google-а + alt: Пријава преко Google OpenID-а + facebook: + title: Пријавити се са Facebook-ом + alt: Пријава преко Facebook налога + windowslive: + title: Пријава преко Windows Live-а + alt: Пријава преко Windows Live налога + github: + title: Пријава коришћењем GitHub-а + alt: Пријава коришћењем GitHub налога + wikipedia: + title: Пријава преко Википедије + alt: Пријава коришћењем Википедија налога + yahoo: + title: Пријава преко Јахуа + alt: Пријава преко Yahoo OpenID-а + wordpress: + title: Пријава коришћењем Wordpress-а + alt: Пријава преко Wordpress OpenID-а + aol: + title: Пријава преко AOL-а + alt: Пријава преко AOL OpenID-а + destroy: + title: Одјава + heading: Одјава + logout_button: Одјави ме site: about: next: Следеће @@ -1316,7 +1512,7 @@ sr: заједнице. Употреба свих алатки којима управља OSMF је предмет \nнаших \nуслова коришћења и наше политике - приватности\n
    \nМолимо да контактирате + приватности.\n
    \nМолимо да контактирате OSMF \nако имате правна питања око лиценцирања, ауторских права и сл.\n
    \nOpenStreetMap, лого лупе и State of the Map су регистровани жигови OSMF фондације." @@ -1538,7 +1734,7 @@ sr: теме. welcome: url: /welcome - title: Добро дошли на ОСМ + title: Добро дошли на OpenStreetMap description: Почни са овим брзим водичем који покрива основе ОпенСтритМапа beginners_guide: url: http://wiki.openstreetmap.org/wiki/Sr:Beginners%27_guide @@ -1546,8 +1742,9 @@ sr: description: Водич за почетнике help: url: https://help.openstreetmap.org/ - title: help.openstreetmap.org - description: Постави питање или нађи одговор на ОСМ страници за питања и одговоре. + title: Форум за помоћ + description: Постави питање или нађи одговор на OpenStreetMap страници за + питања и одговоре. mailing_lists: title: Дописне листе description: Поставите питање или дискутујте о питањима од значаја која се @@ -1569,8 +1766,8 @@ sr: title: За организације wiki: url: https://wiki.openstreetmap.org/wiki/Sr:Main_Page - title: wiki.openstreetmap.org/wiki/Sr:Main_Page - description: Претражи вики за детаљнију ОСМ документаацију. + title: OpenStreetMap вики + description: Претражи вики за детаљнију OpenStreetMap документаацију. sidebar: search_results: Резултати претраге close: Затвори @@ -1653,23 +1850,6 @@ sr: bicycle_shop: Продавница бицикала bicycle_parking: Паркинг за бицикле toilets: Тоалети - richtext_area: - edit: Уреди - preview: Преглед - markdown_help: - title_html: Рашчлањено помоћу kramdown-а - headings: Наслови - heading: Наслов - subheading: Поднаслов - unordered: Неуређена листа - ordered: Уређена листа - first: Прва ставка - second: Друга ставка - link: Веза - text: Текст - image: Слика - alt: Резервни текст - url: Адреса welcome: title: Добро дошли! introduction_html: Добро дошли на OpenStreetMap, бесплатну изменљиву карту света. @@ -1780,7 +1960,6 @@ sr: more: више trace_details: Погледајте детаље о трагу view_map: Погледај карту - edit: уреди edit_map: Уреди мапу public: ЈАВНИ identifiable: МОЖЕ СЕ ПРЕПОЗНАТИ @@ -1788,7 +1967,6 @@ sr: trackable: МОЖЕ СЕ ПРАТИТИ by: од in: у - map: мапа index: public_traces: Јавни ГПС трагови my_traces: Моји GPS трагови @@ -1897,77 +2075,6 @@ sr: destroy: flash: Уништена је регистрација клијентског програма users: - login: - title: Пријава - heading: Пријава - email or username: 'Имејл адреса или корисничко име:' - password: 'Лозинка:' - openid_html: '%{logo} OpenID:' - remember: Запамти ме - lost password link: Заборавили сте лозинку? - login_button: Пријави ме - register now: Отворите налог - with username: 'Већ имате налог? Пријавите се с корисничким именом и лозинком:' - with external: 'Алтернативно, користите трећу страну да се пријавите:' - new to osm: Нови сте на сајту? - to make changes: Да бисте правили измене, морате имати налог. - create account minute: Отворите налог. Потребно је само неколико тренутака. - no account: Немате налог? - account not active: Жао нам је, ваш налог још увек није активиран.
    Пратите - везу у поруци за потврду е-поште да бисте га активирали или затражите - нову поруку. - account is suspended: Нажалост, ваш налог је укинут због сумњиве активности.
    Обратите се администратору ако желите да поразговарате - о проблему. - auth failure: Није могуће пријавити се са тим детаљима. - openid_logo_alt: Пријавите се с OpenID-јем - auth_providers: - openid: - title: Пријавити се са OpenID - alt: Пријава преко OpenID URL-а - google: - title: Пријава преко Google-а - alt: Пријава преко Google OpenID-а - facebook: - title: Пријавити се са Facebook-ом - alt: Пријава преко Facebook налога - windowslive: - title: Пријава преко Windows Live-а - alt: Пријава преко Windows Live налога - github: - title: Пријава коришћењем GitHub-а - alt: Пријава коришћењем GitHub налога - wikipedia: - title: Пријава преко Википедије - alt: Пријава коришћењем Википедија налога - yahoo: - title: Пријава преко Јахуа - alt: Пријава преко Yahoo OpenID-а - wordpress: - title: Пријава коришћењем Wordpress-а - alt: Пријава преко Wordpress OpenID-а - aol: - title: Пријава преко AOL-а - alt: Пријава преко AOL OpenID-а - logout: - title: Одјава - heading: Одјава - logout_button: Одјави ме - lost_password: - title: Повратак лозинке - heading: Заборавили сте лозинку? - email address: 'Имејл адреса:' - new password button: Поништи лозинку - help_text: Унесите е-адресу коју сте унели при упису, а ми ћемо вам послати - везу помоћу које можете да поништите лозинку. - notice email on way: Порука за поништавање лозинке је послата. - notice email cannot find: Имејл адреса није пронађена, жао нам је. - reset_password: - title: Поништи лозинку - heading: Поништавање лозинке за %{user} - reset: Поништи лозинку - flash changed: Ваша лозинка је промењена. - flash token bad: Такав новчић није пронађен. Проверите адресу. new: title: Регистрација no_auto_account_create: Нажалост, тренутно нисмо у могућности да отворимо нови @@ -2042,7 +2149,7 @@ sr: ct status: 'Услови за учешће:' ct undecided: Неодлучено ct declined: Одбијено - latest edit: 'Последња измена пре %{ago}:' + latest edit: 'Последња измена (%{ago}):' email address: 'Имејл адреса:' created from: 'Направљено из:' status: 'Стање:' @@ -2090,13 +2197,13 @@ sr: account: title: Уреди налог my settings: Поставке - current email address: 'Тренутна имејл адреса:' - external auth: 'Спољна аутентификација:' + current email address: Тренутна имејл адреса + external auth: Спољна аутентификација openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: шта је ово? public editing: - heading: 'Јавно уређивање:' + heading: Јавно уређивање enabled: Омогућено. Није анонимно и могу се уређивати подаци. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: шта је ово? @@ -2113,7 +2220,7 @@ sr: радња не може бити опозвана и сви нови корисници су од сада постављени као јавни. contributor terms: - heading: 'Услови уређивања:' + heading: Услови уређивања agreed: Прихватили сте нове услове уређивања. not yet agreed: Нисте прихватили нове услове уређивања. review link text: Пратите ову везу да бисте прегледали и прихватили нове услове @@ -2121,7 +2228,7 @@ sr: agreed_with_pd: Такође се слажете да ваше измене буду у јавном власништву. link: http://www.osmfoundation.org/wiki/License/Contributor_Terms?uselang=sr-ec link text: шта је ово? - image: 'Слика:' + image: Слика gravatar: gravatar: Користи Граватар link: https://wiki.openstreetmap.org/wiki/Gravatar?uselang=sr @@ -2132,7 +2239,7 @@ sr: delete image: Уклони тренутну слику replace image: Замени тренутну слику image size hint: (квадратне слике од барем 100×100 пиксела раде најбоље) - home location: 'Место становања:' + home location: Место становања no home location: Нисте унели место становања. update home location on click: Ажурирати место становања када кликнем на мапу? save changes button: Сачувај промене @@ -2141,32 +2248,6 @@ sr: flash update success confirm needed: Подаци о кориснику су успешно ажурирани. Проверите имејл да бисте потврдили Вашу нову имејл адресу. flash update success: Подаци о кориснику су успешно ажурирани. - confirm: - heading: Проверите Ваш имејл! - introduction_1: Послалисмо ти е-писмо за потврду. - introduction_2: Потврди свој налог тако што ћеш кликнути на везу у имејлу и - моћићеш да почнеш са цртањем карте. - press confirm button: Притисните дугме за потврду да бисте активирали налог. - button: Потврди - success: Ваш налог је потврђен. Хвала вам на упису! - already active: Овај налог је већ потврђен. - unknown token: Тај код за потврду је истекао или не постоји. - reconfirm_html: Ако треба да нам поново пошаљеш е-писмо, кликни - овде. - confirm_resend: - success_html: Послали смо нову потврдну поруку на %{email}. Након што потврдите - свој налог, моћи ћете да почнете с мапирањем.

    Ако користите систем - против непожељних порука, додајте %{sender} у списак дозвољених адреса јер - нисмо у могућности да одговоримо на било који захтев за потврду. - failure: Корисник %{name} није пронађен. - confirm_email: - heading: Потврда промене имејл адресе - press confirm button: Кликните на дугме за потврду да бисте потврдили Вашу нову - имејл адресу. - button: Потврди - success: Промена ваше е-адресе је потврђенаǃ - failure: Е-адреса с овим новчићем је већ потврђена. - unknown_token: Вредност кода за потврду је истекла или тај код не постоји. set_home: flash success: Место становања је успешно сачувано go_public: @@ -2270,7 +2351,7 @@ sr: title: Опозивање блокаде на %{block_on} heading_html: Опозивање блокаде на %{block_on} од %{block_by} time_future: Ова блокада ће се завршити за %{time}. - past: Ова блокада је завршена пре %{time} и не може се сада опозвати. + past: Ова блокада је завршена у %{time} и не може се сада опозвати. confirm: Желите ли да опозовете ову блокаду? revoke: Опозови flash: Ова блокада је опозвана. diff --git a/config/locales/sv.yml b/config/locales/sv.yml index f70752804..586ae0421 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -123,6 +123,7 @@ sv: attributes: client_application: name: Namn (krävs) + url: Huvudapplikations-URL (obligatorisk) callback_url: Återkopplingsadress support_url: Support-adress allow_read_prefs: läs deras användarinställningar @@ -167,6 +168,8 @@ sv: category: Välj en anledning för din rapport details: Ange fler detaljer om problemet (nödvändigt). user: + auth_provider: Autentiseringsleverantör + auth_uid: Autentiserings-UID email: E-post email_confirmation: E-postbekräftelse new_email: Ny e-postadress @@ -183,8 +186,15 @@ sv: trace: tagstring: kommaseparerad user_block: + reason: Anledning till varför användaren blockerats. Var så lugn och resonabel + som möjligt och ge så så många detaljer som du kan om situationen. Men ha + i bakhuvudet att meddelandet kommer vara offentligt. Tänk på att inte alla + användare förstår gemenskapsjargongen, så försök att använda lekmannatermer. needs_view: Behöver användaren logga in innan blockeringen upphör? user: + email_confirmation: Din adress visas inte offentligt, se vår integritetspolicy + för mer information. new_email: (visas aldrig offentligt) datetime: distance_in_words_ago: @@ -235,7 +245,7 @@ sv: description: iD (webbläsarredigeraren) remote: name: Fjärrstyrning - description: Fjärrstyrning (JOSM eller Merkaartor) + description: Fjärrstyrning (JOSM, Potlatch, Merkaartor) auth: providers: none: Ingen @@ -488,7 +498,8 @@ sv: body: Tyvärr finns inget dagboksinlägg eller -kommentar med id %{id}. Kontrollera stavning, eller så kan länken du klickade på vara felaktig. diary_entry: - posted_by_html: Skrivet av %{link_user} den %{created} på %{language_link} + posted_by_html: Skrivet av %{link_user} den %{created} på %{language_link}. + updated_at_html: Uppdaterades senast %{updated}. comment_link: Kommentera detta inlägg reply_link: Skicka ett meddelande till skribenten comment_count: @@ -573,6 +584,7 @@ sv: hangar: Hangar helipad: Helikopterplatta holding_position: Väntplats + navigationaid: Luftfartsnavigationshjälp parking_position: Parkeringsplats runway: Landningsbana taxilane: Taxifil @@ -637,6 +649,7 @@ sv: love_hotel: Kärlekshotell marketplace: Marknad monastery: Kloster + money_transfer: Valutaöverföring motorcycle_parking: Motorcykelparkering music_school: Musikskola nightclub: Nattklubb @@ -654,6 +667,7 @@ sv: pub: Pub public_bath: Badhus public_building: Offentlig byggnad + ranger_station: Skogvaktarpost recycling: Återvinningsstation restaurant: Restaurang school: Skola @@ -684,6 +698,7 @@ sv: census: Folkräkningsgräns national_park: Nationalpark protected_area: Skyddat område + "yes": Gräns bridge: aqueduct: Akvedukt boardwalk: Strandpromenad @@ -741,6 +756,7 @@ sv: dressmaker: Sömmerska electrician: Elektriker gardener: Trädgårdsmästare + glaziery: Glasblåseri handicraft: Konsthantverk painter: Målare photographer: Fotograf @@ -904,6 +920,7 @@ sv: man_made: adit: Gruvöppning antenna: Antenn + avalanche_protection: Lavinskydd beacon: Fyr beehive: Bikupa breakwater: Vågbrytare @@ -947,16 +964,19 @@ sv: airfield: Militärt flygfält barracks: Kaserner bunker: Bunker + checkpoint: Kontrollpost trench: Skyttegrav "yes": Militär mountain_pass: "yes": Bergspass natural: + bare_rock: Klippa bay: Bukt beach: Strand cape: Udde cave_entrance: Grottmynning cliff: Klippa + coastline: Kustlinje crater: Krater dune: Sanddyn fell: Fjäll @@ -967,12 +987,14 @@ sv: grassland: Betesmark heath: Ljunghed hill: Kulle + hot_spring: Varm källa island: Ö land: Land marsh: Träsk moor: Hed mud: Lera peak: Topp + peninsula: Halvö point: Punkt reef: Rev ridge: Bergskam @@ -1009,6 +1031,7 @@ sv: "yes": Kontor place: allotments: Kolonilotter + archipelago: Skärgård city: Stad city_block: Kvarter country: Land @@ -1092,11 +1115,14 @@ sv: doityourself: Gör-det-själv dry_cleaning: Kemtvätt electronics: Elektronikbutik + erotic: Sexbutik estate_agent: Egendomsmäklare farm: Gårdsbutik fashion: Modebutik + fishing: Fiskebutik florist: Florist food: Mataffär + frame: Ramhandlare funeral_directors: Begravningsentreprenör furniture: Möbler garden_centre: Trädgårdshandel @@ -1106,7 +1132,9 @@ sv: grocery: Livsmedelsbutik hairdresser: Frisör hardware: Järnhandel + health_food: Hälsokostbutik hearing_aids: Hörapparater + herbalist: Örthandel hifi: Hi-Fi houseware: Husvaruhandel ice_cream: Glassbutik @@ -1126,6 +1154,7 @@ sv: music: Musikaffär musical_instrument: Musikinstrument newsagent: Tidningskiosk + nutrition_supplements: Kosttillskottsbutik optician: Optiker organic: Ekologiska livsmedelsaffär outdoor: Friluftsbutik @@ -1134,6 +1163,7 @@ sv: pawnbroker: Pantlånare perfumery: Parfymaffär pet: Djuraffär + pet_grooming: Husdjursfrisör photo: Fotoaffär seafood: Skaldjur second_hand: Second hand-butik @@ -1206,12 +1236,15 @@ sv: "yes": Vattenväg admin_levels: level2: Landsgräns + level3: Regiongräns level4: Statsgräns level5: Regionsgräns level6: Länsgräns + level7: Kommungräns level8: Stadsgräns level9: Bygräns level10: Förortsgräns + level11: Kvartersgräns types: cities: Städer towns: Samhällen @@ -1378,13 +1411,21 @@ sv: hi: Hej %{to_user}, header: '%{from_user} har kommenterat dagboksinlägget på OpenStreetMap med rubriken %{subject}:' + header_html: '%{from_user} har kommenterat dagboksinlägget på OpenStreetMap + med rubriken %{subject}:' footer: Du kan också läsa kommentaren på %{readurl} och du kan kommentera på %{commenturl} eller skicka ett meddelande till författaren på %{replyurl} + footer_html: Du kan också läsa kommentaren på %{readurl} och du kan kommentera + på %{commenturl} eller skicka ett meddelande till författaren på %{replyurl} message_notification: subject: '[OpenStreetMap] %{message_title}' hi: Hej %{to_user}, header: '%{from_user} har skickat ett meddelande via OpenStreetMap med ämnet %{subject}:' + header_html: '%{from_user} har skickat ett meddelande via OpenStreetMap med + ämnet %{subject}:' + footer: Du kan också läsa meddelandet på %{readurl} och du kan skicka ett meddelande + till författaren på %{replyurl} footer_html: Du kan också läsa meddelandet på %{readurl} och du kan skicka ett meddelande till författaren på %{replyurl} friendship_notification: @@ -1392,12 +1433,23 @@ sv: subject: '[OpenStreetMap] %{user} lade till dig som en vän' had_added_you: '%{user} har lagt till dig som vän på OpenStreetMap.' see_their_profile: Du kan se deras profil på %{userurl}. + see_their_profile_html: Du kan se deras profil på %{userurl}. befriend_them: Du kan också lägga till dem som en vän på %{befriendurl}. + befriend_them_html: Du kan också lägga till dem som en vän på %{befriendurl}. + gpx_description: + description_with_tags_html: 'Det ser ut som att din GPX-fil %{trace_name} med + beskrivningen %{trace_description} och följande taggar: %{tags}' + description_with_no_tags_html: Det ser ut som att din GPX-fil %{trace_name} + med beskrivningen %{trace_description} och inga taggar gpx_failure: + hi: Hej %{to_user}, failed_to_import: 'misslyckats med att importera. Här är felet:' + more_info_html: Mer information om misslyckade GPX-importer och hur man undviker + dem återfinns på %{url}. import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures subject: '[OpenStreetMap] Misslyckades importera GPX' gpx_success: + hi: Hej %{to_user}, loaded_successfully: one: |- inläst med %{trace_points} av 1 möjlig punkt. @@ -1439,25 +1491,38 @@ sv: du är intresserad av' your_note: '%{commenter} har lämnat en kommentar till en av dina kartanteckningar i närheten av %{place}.' + your_note_html: '%{commenter} har lämnat en kommentar till en av dina kartanteckningar + i närheten av %{place}.' commented_note: '%{commenter} har kommenterat en kartanteckning som du tidigare kommenterat. Anteckningen är i närheten av %{place}.' + commented_note_html: '%{commenter} har kommenterat en kartanteckning som du + tidigare kommenterat. Anteckningen är i närheten av %{place}.' closed: subject_own: '[OpenStreetMap] %{commenter} har löst en av dina anteckningar' subject_other: '[OpenStreetMap] %{commenter} har löst en anteckning som du är intresserad av' your_note: '%{commenter} har kommenterat en av dina kartanteckningar i närheten av %{place}.' + your_note_html: '%{commenter} har löst en av dina kartanteckningar i närheten + av %{place}.' commented_note: '%{commenter} har löst en kartanteckning du har kommenterat. Anteckningen är nära %{place}.' + commented_note_html: '%{commenter} har löst en kartanteckning du har kommenterat. + Anteckningen är nära %{place}.' reopened: subject_own: '[OpenStreetMap] %{commenter} har återaktiverat en av dina anteckningar' subject_other: '[OpenStreetMap] %{commenter} har återaktiverat en anteckning som du är intresserad av' your_note: '%{commenter} har återaktiverat en av dina kartanteckningar nära %{place}.' + your_note_html: '%{commenter} har återaktiverat en av dina kartanteckningar + nära %{place}.' commented_note: '%{commenter} har återaktiverat en kartnotering du har kommenterat på. Noteringen är nära %{place}.' + commented_note_html: '%{commenter} har återaktiverat en kartnotering du har + kommenterat på. Noteringen är nära %{place}.' details: Mer detaljer om anteckningen finns på %{url}. + details_html: Fler detaljer om anteckningen finns på %{url}. changeset_comment_notification: hi: Hej %{to_user}, greeting: Hej, @@ -1471,16 +1536,50 @@ sv: av dina ändringsuppsättningar' commented_changeset: '%{commenter} har lämnat en kommentar på ändringarna på en karta du bevakar, skapad av %{changeset_author} %{time}' + commented_changeset_html: '%{commenter} har lämnat en kommentar på ändringarna + på en karta du bevakar, skapad av %{changeset_author} %{time}' partial_changeset_with_comment: med kommentar '%{changeset_comment}' + partial_changeset_with_comment_html: med kommentar '%{changeset_comment}' partial_changeset_without_comment: utan kommentar details: Mer detaljer om ändringssetet finns på %{url}. + details_html: Mer detaljer om ändringssetet finns på %{url}. unsubscribe: För att avsluta prenumerationen av uppdateringar i denna ändringsgrupp, besök %{url} och klicka på "Avprenumerera". + unsubscribe_html: För att avsluta prenumerationen av uppdateringar i denna ändringsgrupp, + besök %{url} och klicka på "Avprenumerera". + confirmations: + confirm: + heading: Kontrollera din e-post! + introduction_1: Vi har skickat en bekräftelse via e-post. + introduction_2: Bekräfta ditt konto genom att klicka på länken i mailet, sen + kan du sätta igång att kartera. + press confirm button: Klicka på bekräftelseknappen nedan för att aktivera ditt + konto. + button: Bekräfta + success: Ditt konto är bekräftat, tack för att du registrerade dig! + already active: Detta konto har redan bekräftats. + unknown token: Denna bekräftelsekod har gått ut eller finns inte. + reconfirm_html: Om du vill att vi ska skicka bekräftelsemailet igen, klicka + här. + confirm_resend: + success_html: Vi har skickat ett nytt bekräftelsemeddelande till %{email} och + så snart du bekräftat ditt konto kommer du kunna börja kartera.

    Om + du använder ett antispamsystem som skickar bekräftelsemeddelanden se till + att du vitlistar %{sender} då vi inte kan svara på några sådana begäranden. + failure: Användaren %{name} hittades inte. + confirm_email: + heading: Bekräfta byte av e-postadress + press confirm button: Klicka på bekräftaknappen nedan för att bekräfta din nya + e-postadress. + button: Bekräfta + success: Ditt byte av e-postadress har bekräftats! + failure: En e-postadress har redan bekräftats med den här nyckeln. + unknown_token: Den bekräftelsekoden har löpt ut eller existerar inte. messages: inbox: title: Inkorg my_inbox: Min inkorg - outbox: utkorg + my_outbox: Min utkorg messages: Du har %{new_messages} och %{old_messages} new_messages: one: '%{count} nytt meddelande' @@ -1515,9 +1614,8 @@ sv: body: Det finns inget meddelande med det ID:et. outbox: title: Utkorg - my_inbox_html: Min %{inbox_link} - inbox: inkorg - outbox: utkorg + my_inbox: Min inkorg + my_outbox: Min utkorg messages: one: Du har %{count} skickat ett meddelande other: Du har %{count} skickat meddelanden @@ -1551,6 +1649,81 @@ sv: as_unread: Meddelandet markerat som oläst destroy: destroyed: Meddelande raderat + passwords: + lost_password: + title: Förlorat lösenord + heading: Glömt lösenord? + email address: 'E-postadress:' + new password button: Återställ lösenord + help_text: Ange e-postadressen du använde för att registrera dig så skickar + vi en länk till den som du kan använda för att återställa ditt lösenord. + notice email on way: Synd att du förlorade det, men ett nytt är på väg via e-post. + notice email cannot find: Kunde inte hitta den e-postadressen. + reset_password: + title: Återställ lösenord + heading: Återställ lösenord för %{user} + reset: Återställ lösenord + flash changed: Ditt lösenord har ändrats. + flash token bad: Hittade inte den nyckeln, kontrollera webbadressen. + sessions: + new: + title: Logga in + heading: Logga in + email or username: 'E-postadress eller användarnamn:' + password: 'Lösenord:' + openid_html: '%{logo} OpenID:' + remember: Kom ihåg mig + lost password link: Glömt ditt lösenord? + login_button: Logga in + register now: Registrera dig nu + with username: 'Har du redan ett OpenStreetMap-konto? Logga in med ditt användarnamn + och lösenord:' + with external: 'Alternativt kan du använda en tredje part för att logga in:' + new to osm: Ny på OpenStreetMap? + to make changes: För att göra ändringar i OpenStreetMaps data måste du ha ett + konto. + create account minute: Skapa ett konto. Det tar bara en minut. + no account: Har du inget konto? + account not active: Tyvärr, ditt konto är inte aktiverat.
    Vänligen klicka + på länken i e-posten med kontobekräftelsen, för att aktivera ditt konto, eller + begär en ny epostsbekräftelse. + account is suspended: |- + Tyvärr har ditt konto stängts av på grund av tvivelaktig aktivitet.
    Kontakta webbansvarig om du vill diskutera saken. + auth failure: Kunde inte logga in med de uppgifterna. + openid_logo_alt: Logga in med ett OpenID + auth_providers: + openid: + title: Logga in med OpenID + alt: Logga in med en OpenID-URL + google: + title: Logga in med Google + alt: Logga in med ett Google OpenID + facebook: + title: Logga in med Facebook + alt: Logga in med ett Facebook-konto + windowslive: + title: Logga in med Windows Live + alt: Logga in med ett Windows Live-konto + github: + title: Logga in med GitHub + alt: Logga in med ett GitHub-Konto + wikipedia: + title: Logga in med Wikipedia + alt: Logga in med ett Wikipedia-konto + yahoo: + title: Logga in med Yahoo + alt: Logga in med ett Yahoo OpenID + wordpress: + title: Logga in med Wordpress + alt: Logga in med ett Wordpress OpenID + aol: + title: Logga in med AOL + alt: Logga in med ett AOL OpenID + destroy: + title: Logga ut + heading: Logga ut från OpenStreetMap + logout_button: Logga ut shared: markdown_help: title_html: Tolkat med kramdown @@ -1870,6 +2043,15 @@ sv: url: https://wiki.openstreetmap.org/ title: OpenStreetMaps wiki description: Sök i wikin för ingående dokumentation av OpenStreetMap. + potlatch: + removed: Din standardredigerare på OpenStreetMat är Potlatch. På grund av att + Adobe Flash Player har dragits tillbaka, kan inte Potlatch längre användas + i webbläsaren. + desktop_html: Du kan fortfarande använda Potlatch genom att ladda + ner datorprogrammet för Mac och Windows. + id_html: Eller så kan du ange din standardredigerare som iD, vilket kör din + webbläsare som Potlatch tidigare gjort. Ändra dina + inställningar här. sidebar: search_results: Sökresultat close: Stäng @@ -1953,23 +2135,6 @@ sv: bicycle_shop: Cykelaffär bicycle_parking: Cykelparkering toilets: Toaletter - richtext_area: - edit: Redigera - preview: Förhandsgranska - markdown_help: - title_html: Tolkat med kramdown - headings: Rubriker - heading: Rubrik - subheading: Underrubrik - unordered: Osorterad lista - ordered: Sorterad lista - first: Första objektet - second: Andra objektet - link: Länk - text: Text - image: Bild - alt: Alt-text - url: Webbadress welcome: title: Välkommen! introduction_html: Välkommen till OpenStreetMap, den fria och redigerbara kartan @@ -2088,7 +2253,6 @@ sv: more: mer trace_details: Visa detaljer för GPS-spår view_map: Visa karta - edit: redigera edit_map: Redigera karta public: PUBLIK identifiable: IDENTIFIERBAR @@ -2096,7 +2260,6 @@ sv: trackable: SPÅRBAR by: av in: i - map: karta index: public_traces: Publika GPS-spår my_traces: Mina GPS-spår @@ -2211,79 +2374,6 @@ sv: destroy: flash: Annullerade registreringen av klientprogrammet users: - login: - title: Logga in - heading: Logga in - email or username: 'E-postadress eller användarnamn:' - password: 'Lösenord:' - openid_html: '%{logo} OpenID:' - remember: Kom ihåg mig - lost password link: Glömt ditt lösenord? - login_button: Logga in - register now: Registrera dig nu - with username: 'Har du redan ett OpenStreetMap-konto? Logga in med ditt användarnamn - och lösenord:' - with external: 'Alternativt kan du använda en tredje part för att logga in:' - new to osm: Ny på OpenStreetMap? - to make changes: För att göra ändringar i OpenStreetMaps data måste du ha ett - konto. - create account minute: Skapa ett konto. Det tar bara en minut. - no account: Har du inget konto? - account not active: Tyvärr, ditt konto är inte aktiverat.
    Vänligen klicka - på länken i e-posten med kontobekräftelsen, för att aktivera ditt konto, eller - begär en ny epostsbekräftelse. - account is suspended: |- - Tyvärr har ditt konto stängts av på grund av tvivelaktig aktivitet.
    Kontakta webbansvarig om du vill diskutera saken. - auth failure: Kunde inte logga in med de uppgifterna. - openid_logo_alt: Logga in med ett OpenID - auth_providers: - openid: - title: Logga in med OpenID - alt: Logga in med en OpenID-URL - google: - title: Logga in med Google - alt: Logga in med ett Google OpenID - facebook: - title: Logga in med Facebook - alt: Logga in med ett Facebook-konto - windowslive: - title: Logga in med Windows Live - alt: Logga in med ett Windows Live-konto - github: - title: Logga in med GitHub - alt: Logga in med ett GitHub-Konto - wikipedia: - title: Logga in med Wikipedia - alt: Logga in med ett Wikipedia-konto - yahoo: - title: Logga in med Yahoo - alt: Logga in med ett Yahoo OpenID - wordpress: - title: Logga in med Wordpress - alt: Logga in med ett Wordpress OpenID - aol: - title: Logga in med AOL - alt: Logga in med ett AOL OpenID - logout: - title: Logga ut - heading: Logga ut från OpenStreetMap - logout_button: Logga ut - lost_password: - title: Förlorat lösenord - heading: Glömt lösenord? - email address: 'E-postadress:' - new password button: Återställ lösenord - help_text: Ange e-postadressen du använde för att registrera dig så skickar - vi en länk till den som du kan använda för att återställa ditt lösenord. - notice email on way: Synd att du förlorade det, men ett nytt är på väg via e-post. - notice email cannot find: Kunde inte hitta den e-postadressen. - reset_password: - title: Återställ lösenord - heading: Återställ lösenord för %{user} - reset: Återställ lösenord - flash changed: Ditt lösenord har ändrats. - flash token bad: Hittade inte den nyckeln, kontrollera webbadressen. new: title: Registrera no_auto_account_create: Tyvärr kan vi för närvarande inte kan skapa ett konto @@ -2474,33 +2564,6 @@ sv: flash update success confirm needed: Användarinformation uppdaterades. Kontrollera din e-post för att bekräfta din e-postadress. flash update success: Användarinformation uppdaterades. - confirm: - heading: Kontrollera din e-post! - introduction_1: Vi har skickat en bekräftelse via e-post. - introduction_2: Bekräfta ditt konto genom att klicka på länken i mailet, sen - kan du sätta igång att kartera. - press confirm button: Klicka på bekräftelseknappen nedan för att aktivera ditt - konto. - button: Bekräfta - success: Ditt konto är bekräftat, tack för att du registrerade dig! - already active: Detta konto har redan bekräftats. - unknown token: Denna bekräftelsekod har gått ut eller finns inte. - reconfirm_html: Om du vill att vi ska skicka bekräftelsemailet igen, klicka - här. - confirm_resend: - success_html: Vi har skickat ett nytt bekräftelsemeddelande till %{email} och - så snart du bekräftat ditt konto kommer du kunna börja kartera.

    Om - du använder ett antispamsystem som skickar bekräftelsemeddelanden se till - att du vitlistar %{sender} då vi inte kan svara på några sådana begäranden. - failure: Användaren %{name} hittades inte. - confirm_email: - heading: Bekräfta byte av e-postadress - press confirm button: Klicka på bekräftaknappen nedan för att bekräfta din nya - e-postadress. - button: Bekräfta - success: Ditt byte av e-postadress har bekräftats! - failure: En e-postadress har redan bekräftats med den här nyckeln. - unknown_token: Den bekräftelsekoden har löpt ut eller existerar inte. set_home: flash success: Hemposition sparad go_public: @@ -2695,6 +2758,7 @@ sv: custom_dimensions: Ange anpassade dimensioner format: 'Format:' scale: 'Skala:' + image_dimensions: Bilden kommer visa standardlager på %{width} x %{height} download: Ladda ned short_url: Kortlänk include_marker: Lägg till markör @@ -2722,6 +2786,7 @@ sv: other: Du är inom %{count} fot av denna punkt base: standard: Standard + cyclosm: CyclOSM cycle_map: Cykelkarta transport_map: Transportkarta hot: Humanitärt @@ -2736,6 +2801,9 @@ sv: copyright: © OpenStreetMaps bidragsgivare donate_link_text: terms: Hemsidan och API-villkor + cyclosm: Rututseende av CyclOSM + som förvaltas av OpenStreetMap + France thunderforest: Rutor av Andy Allan opnvkarte: Rutor av MeMoMaps diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 10783392a..4b29d4402 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -396,6 +396,7 @@ ta: bay: வளைகுடா beach: கடற்கரை cave_entrance: குகை நுழைவாயில் + coastline: கடற்கரை பகுதி grassland: புல்வெளி heath: சுகாதாரம் hill: குன்று @@ -544,8 +545,6 @@ ta: heading: அப்படியொரு தகவல் இல்லை outbox: title: அனுப்பியவை - inbox: உள்பெட்டி - outbox: வெளிப்பெட்டி subject: பொருள் date: நாள் show: @@ -561,6 +560,30 @@ ta: destroy_button: நீக்கு destroy: destroyed: தகவல் நீக்கப்பட்டது + passwords: + lost_password: + title: காணப்படாத கடவுச்சொல் + heading: கடவுச்சொல் மறந்துவிட்டதா? + email address: 'மின்னஞ்சல் முகவரி:' + new password button: கடவுச்சொல்லை மீட்டமை + reset_password: + title: கடவுச்சொல்லை மீட்டமை + heading: ' %{user}க்கு கடவுச்சொல் மீட்டமை' + reset: கடவுச்சொல்லை மீட்டமை + flash changed: உங்கள் கடவுச்சொல் மாற்றப்பட்டது. + sessions: + new: + title: புகுபதிகை + heading: புகுபதிகை + email or username: 'மின்னஞ்சல் முகவரி அல்லது பயனர் பெயர்:' + password: 'கடவுச்சொல்:' + remember: என்னை நினைவில் வைத்துக்கொள்ளவும் + lost password link: உங்கள் கடவுச்சொல் மறந்துவிட்டதா? + login_button: புகுபதிகை + register now: இப்போது பதிவுசெய்யுங்கள் + destroy: + title: விடுபதிகை + logout_button: விடுபதிகை shared: markdown_help: heading: தலைப்பு @@ -654,14 +677,12 @@ ta: trace: more: மேலும் view_map: வரைபடத்தை காண் - edit: தொகு edit_map: வரைபடத்தை திருத்து public: பொது identifiable: அடையாளம் காணக்கூடிய private: தனியார் by: மூலம் in: உள் - map: வரைபடம் index: upload_trace: சுவடை பதிவேற்றவும் see_all_traces: அனைத்து சுவடுகளையும் காண் @@ -672,28 +693,6 @@ ta: index: revoke: திரும்பபெறு users: - login: - title: புகுபதிகை - heading: புகுபதிகை - email or username: 'மின்னஞ்சல் முகவரி அல்லது பயனர் பெயர்:' - password: 'கடவுச்சொல்:' - remember: என்னை நினைவில் வைத்துக்கொள்ளவும் - lost password link: உங்கள் கடவுச்சொல் மறந்துவிட்டதா? - login_button: புகுபதிகை - register now: இப்போது பதிவுசெய்யுங்கள் - logout: - title: விடுபதிகை - logout_button: விடுபதிகை - lost_password: - title: காணப்படாத கடவுச்சொல் - heading: கடவுச்சொல் மறந்துவிட்டதா? - email address: 'மின்னஞ்சல் முகவரி:' - new password button: கடவுச்சொல்லை மீட்டமை - reset_password: - title: கடவுச்சொல்லை மீட்டமை - heading: ' %{user}க்கு கடவுச்சொல் மீட்டமை' - reset: கடவுச்சொல்லை மீட்டமை - flash changed: உங்கள் கடவுச்சொல் மாற்றப்பட்டது. new: title: கணக்கை உருவாக்கு email address: 'மின்னஞ்சல் முகவரி:' diff --git a/config/locales/te.yml b/config/locales/te.yml index 6dd354f18..f724e8748 100644 --- a/config/locales/te.yml +++ b/config/locales/te.yml @@ -514,10 +514,23 @@ te: anonymous: అజ్ఞాత వాడుకరి changeset_comment_notification: hi: '%{to_user} గారూ,' + confirmations: + confirm: + heading: మీ ఈమెయిల్ చూడండి! + introduction_1: మీకు నిర్ధారణ ఈమెయిలును పంపించాం. + button: నిర్ధారించు + already active: ఈ ఖాతాని ఇప్పటికే నిర్ధారించారు. + confirm_resend: + failure: వాడుకరి %{name} కనబడలేదు. + confirm_email: + heading: ఈమెయిలు చిరునామా మార్పును నిర్ధారించండి + press confirm button: మీ కొత్త ఈమెయిలు చిరునామాను నిర్ధారించడానికి క్రింది నిర్ధారింపు + బొత్తాన్ని నొక్కండి. + button: నిర్ధారించు + success: మీ ఈమెయిలు చిరునామా నిర్ధారణ అయింది! messages: inbox: my_inbox: నా ఇన్‌బాక్స్ - outbox: పంపించినవి subject: విషయం date: తేదీ message_summary: @@ -527,8 +540,6 @@ te: send_message_to_html: '%{name}కి ఒక సందేశాన్ని పంపండి' subject: విషయం outbox: - my_inbox_html: నా %{inbox_link} - outbox: పంపించినవి subject: విషయం date: తేదీ show: @@ -538,6 +549,31 @@ te: back: వెనుకకు sent_message_summary: destroy_button: తొలగించు + passwords: + lost_password: + title: సంకేతపదం పోయింది + heading: సంకేతపదం మర్చిపోయారా? + email address: 'ఈమెయిల్ చిరునామా:' + notice email cannot find: క్షమించండి, ఆ ఈమెయిలు చిరునామా దొరకలేదు. + reset_password: + flash changed: మీ సంకేతపదాన్ని మార్చాం. + sessions: + new: + title: ప్రవేశం + heading: ప్రవేశం + email or username: 'ఈమెయిల్ చిరునామా లేదా వాడుకరిపేరు:' + password: 'సంకేతపదం:' + remember: 'నన్ను గుర్తుంచుకో:' + lost password link: మీ సంకేతపదం పోయిందా? + login_button: ప్రవేశించు + register now: ఇప్పుడే నమోదవ్వండి + new to osm: ఓపెన్‌స్ట్రీట్‌మ్యాప్‌కి కొత్తా? + create account minute: ఒక ఖాతాను సృష్టించుకోండి. కేవలం నిమిషంలో అయిపోతుంది. + no account: మీకు ఖాతా లేదా? + destroy: + title: నిష్క్రమించు + heading: ఓపెన్‌స్ట్రీట్‌మ్యాప్‌ నుండి నిష్క్రమించండి + logout_button: నిష్క్రమించు shared: markdown_help: headings: శీర్షికలు @@ -635,20 +671,6 @@ te: station: రైల్వే స్టేషన్ construction: నిర్మాణంలో ఉన్న రహదార్లు toilets: మరుగుదొడ్లు - richtext_area: - edit: మార్చు - preview: మునుజూపు - markdown_help: - heading: శీర్షిక - subheading: ఉప శీర్షిక - unordered: క్రమం లేని జాబితా - ordered: సక్రమ జాబితా - first: మొదటి అంశం - second: రెండవ అంశం - link: లంకె - text: పాఠ్యం - image: బొమ్మ - alt: ప్రత్యామ్నాయ పాఠ్యం welcome: title: స్వాగతం! whats_on_the_map: @@ -678,36 +700,13 @@ te: one: 1 బిందువు other: '%{count} బిందువులు' more: మరిన్ని - edit: మార్చు oauth_clients: show: edit: వివరాలను మార్చు + confirm: నిశ్చయంగానే ఉన్నారా? index: application: ఉపకరణపు పేరు users: - login: - title: ప్రవేశం - heading: ప్రవేశం - email or username: 'ఈమెయిల్ చిరునామా లేదా వాడుకరిపేరు:' - password: 'సంకేతపదం:' - remember: 'నన్ను గుర్తుంచుకో:' - lost password link: మీ సంకేతపదం పోయిందా? - login_button: ప్రవేశించు - register now: ఇప్పుడే నమోదవ్వండి - new to osm: ఓపెన్‌స్ట్రీట్‌మ్యాప్‌కి కొత్తా? - create account minute: ఒక ఖాతాను సృష్టించుకోండి. కేవలం నిమిషంలో అయిపోతుంది. - no account: మీకు ఖాతా లేదా? - logout: - title: నిష్క్రమించు - heading: ఓపెన్‌స్ట్రీట్‌మ్యాప్‌ నుండి నిష్క్రమించండి - logout_button: నిష్క్రమించు - lost_password: - title: సంకేతపదం పోయింది - heading: సంకేతపదం మర్చిపోయారా? - email address: 'ఈమెయిల్ చిరునామా:' - notice email cannot find: క్షమించండి, ఆ ఈమెయిలు చిరునామా దొరకలేదు. - reset_password: - flash changed: మీ సంకేతపదాన్ని మార్చాం. new: title: నమోదవ్వండి email address: 'ఈమెయిలు చిరునామా:' @@ -788,19 +787,6 @@ te: save changes button: మార్పులను భద్రపరచు make edits public button: నా దిద్దుబాట్లన్నింటినీ బహిరంగం చేయి flash update success: వాడుకరి సమాచారం విజయవంతంగా తాజాకరించబడింది. - confirm: - heading: మీ ఈమెయిల్ చూడండి! - introduction_1: మీకు నిర్ధారణ ఈమెయిలును పంపించాం. - button: నిర్ధారించు - already active: ఈ ఖాతాని ఇప్పటికే నిర్ధారించారు. - confirm_resend: - failure: వాడుకరి %{name} కనబడలేదు. - confirm_email: - heading: ఈమెయిలు చిరునామా మార్పును నిర్ధారించండి - press confirm button: మీ కొత్త ఈమెయిలు చిరునామాను నిర్ధారించడానికి క్రింది నిర్ధారింపు - బొత్తాన్ని నొక్కండి. - button: నిర్ధారించు - success: మీ ఈమెయిలు చిరునామా నిర్ధారణ అయింది! go_public: flash success: ఇప్పుడు మీ మార్పుచేర్పులన్నీ బహిరంగం, మీరు ఇక నుండి దిద్దుబాట్లు చేయవచ్చు. @@ -836,6 +822,7 @@ te: status: స్థితి show: చూపించు edit: మార్చు + confirm: నిశ్చయించుకున్నారా? reason: 'నిరోధానికి కారణం:' back: అన్ని నిరోధాలను చూడండి block: diff --git a/config/locales/th.yml b/config/locales/th.yml index 32719f83e..60e2795f4 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -4,6 +4,7 @@ # Author: Aefgh39622 # Author: Ariesanywhere # Author: B20180 +# Author: Bebiezaza # Author: Karit # Author: Korrawit # Author: Patsagorn Y. @@ -125,27 +126,38 @@ th: body: เนื้อหา recipient: ผู้รับ redaction: + title: ชื่อเรื่อง description: คำอธิบาย report: category: เลือกเหตุผลของปัญหาที่ท่านแจ้ง details: โปรดให้คำอธิบายเพิ่มเติมเกี่ยวกับปัญหา (จำเป็นต้องใส่) user: + auth_provider: ผู้ให้การยืนยัน + auth_uid: UID การยืนยัน email: อีเมล์ - new_email: 'ที่อยู่อีเมลใหม่:' + email_confirmation: การยืนยันอีเมล + new_email: ที่อยู่อีเมลใหม่ active: เปิดใช้ display_name: ชื่อที่ใช้แสดง - description: คำอธิบาย - home_lat: 'ละติจูด:' - home_lon: 'ลองจิจูด:' - languages: ภาษา + description: คำอธิบายโปรไฟล์ + home_lat: ละติจูด + home_lon: ลองจิจูด + languages: ภาษาที่เลือก + preferred_editor: เครื่องมือแก้ไขที่เลือกใช้ pass_crypt: รหัสผ่าน pass_crypt_confirmation: ยืนยันรหัสผ่าน help: trace: tagstring: คั่นด้วยจุลภาค user_block: + reason: เหตุผลที่ผู้ใช้กำลังถูกระงับ โปรดอย่าเขียนด้วยอารมณ์รุนแรงและระบุรายละเอียดเกี่ยวกับสถานการณ์ที่พบให้ละเอียดชัดเจน + ควรใช้คำอธิบายที่เข้าใจง่ายเป็นหลัก เพราะไม่ใช่ว่าผู้ใช้ทุกคนจะเข้าใจศัพท์เฉพาะ + และต้องอย่าลืมว่าสิ่งที่คุณเขียนนี้จะแสดงต่อสาธารณะด้วย needs_view: ต้องการให้ผู้ใช้คนนี้เข้าระบบก่อนเพิกถอนการระงับหรือไม่? user: + email_confirmation: ที่อยู่อีเมลของคุณจะไม่แสดงเป็นสาธารณะ โปรดดูเพิ่มเติมที่นโยบายความเป็นส่วนตัวสำหรับสารสนเทศเพิ่มเติม new_email: (จะไม่แสดงต่อสาธารณะ) datetime: distance_in_words_ago: @@ -185,7 +197,7 @@ th: description: iD (ตัวแก้ไขในเบราว์เซอร์) remote: name: การควบคุมระยะไกล - description: ตัวควบคุมระยะไกล (JOSM หรือ Merkaartor) + description: การควบคุมทางไกล (JOSM, Potlatch, Merkaator) auth: providers: none: ไม่มี @@ -211,6 +223,7 @@ th: description_area: รายชื่อหมายเหตุที่มีการรายงาน แสดงความคิดเห็น หรือถูกปิดในพื้นที่ของคุณ [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})] description_item: ฟีด rss สำหรับหมายเหตุ %{id} + opened: หมายเหตุใหม่ (พิกัดใกล้กับ %{place}) commented: ความคิดเห็นใหม่ (ใกล้เคียง %{place}) closed: หมายเหตุที่ถูกปิด (ใกล้เคียง %{place}) reopened: หมายเหตุที่ถูกเปิดใช้งานใหม่ (ใกล้เคียง %{place}) @@ -231,6 +244,10 @@ th: anonymous: ไม่ระบุตัวตน no_comment: (ไม่มีความคิดเห็น) part_of: เป็นส่วนหนึ่งของ + part_of_relations: + other: '%{count} ความเกี่ยวข้อง' + part_of_ways: + other: '%{count} ทาง' download_xml: ดาวน์โหลด XML view_history: ดูประวัติ view_details: ดูรายละเอียด @@ -279,6 +296,7 @@ th: entry_html: ความสัมพันธ์ %{relation_name} entry_role_html: ความสัมพันธ์ %{relation_name} (ในฐานะ %{relation_role}) not_found: + title: ไม่พบข้อมูล sorry: 'ขออภัย ไม่พบ %{type} #%{id}' type: node: หมุด @@ -287,6 +305,7 @@ th: changeset: ชุดการเปลี่ยนแปลง note: หมายเหตุ timeout: + title: หมดเวลาค้น sorry: ขออภัย ข้อมูลสำหรับชนิด %{type} ที่กำกับด้วยรหัส %{id} ใช้เวลานานเกินสมควรในการเรียกดู type: node: หมุด @@ -383,7 +402,7 @@ th: new: title: สร้างรายการบันทึกใหม่ form: - location: 'ที่ตั้ง:' + location: ที่ตั้ง use_map_link: ใช้แผนที่ index: title: บันทึกของผู้ใช้ @@ -413,7 +432,8 @@ th: body: ขออภัย ไม่พบรายการบันทึกหรือข้อคิดเห็นที่กำกับด้วย id %{id} โปรดตรวจการสะกดของท่าน หรือถ้าไม่เป็นผลแสดงว่าลิงก์ที่ท่านคลิกมาผิดพลาด diary_entry: - posted_by_html: ประกาศโดย %{link_user} เมื่อ %{created} ในภาษา %{language_link} + posted_by_html: โพสต์โดย %{link_user} เมื่อ %{created} ในภาษา %{language_link} + updated_at_html: อัปเดตล่าสุดเมื่อ %{updated} comment_link: แสดงความคิดเห็นต่อรายการนี้ reply_link: ตอบกลับข้อความถึงผู้เขียนนี้ comment_count: @@ -828,6 +848,7 @@ th: moor: ทุ่งหญ้าที่สูง mud: โคลน peak: ยอดเขา + peninsula: คาบสมุทร point: จุด reef: แนวปะการัง ridge: สันเขา @@ -1209,9 +1230,12 @@ th: footer: ท่านสามารถอ่านความคิดเห็นได้ที่ลิงก์ %{readurl} และแสดงความคิดเห็นตอบได้ที่ %{commenturl} หรือตอบกลับได้ที่ %{replyurl} message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: เรียนคุณ %{to_user}, header: 'ผู้ใช้ %{from_user} ส่งข้อความหาท่านผ่านทาง OpenStreetMap โดยมีหัวเรื่อง %{subject}:' + header_html: 'ผู้ใช้ %{from_user} ส่งข้อความหาท่านผ่านทาง OpenStreetMap โดยมีหัวเรื่อง + %{subject}:' footer_html: ท่านสามารถอ่านข้อความที่ลิงก์ %{readurl} และถ้าต้องการสามารถตอบกลับที่ลิงก์ %{replyurl} friendship_notification: @@ -1221,6 +1245,7 @@ th: see_their_profile: ท่านสามารถดูหน้าประวัติส่วนตัวของเขาได้ที่ %{userurl}. befriend_them: นอกจากนี้ท่านสามารถเพิ่มเขาในรายการเพื่อนได้ที่ %{befriendurl}. gpx_failure: + hi: สวัสดี %{to_user} failed_to_import: 'การนำเข้าล้มเหลว เนื่องจาก:' subject: '[OpenStreetMap] การนำเข้า GPX ล้มเหลว' gpx_success: @@ -1286,11 +1311,35 @@ th: details: รายละเอียดเพิ่มเติมเกี่ยวกับชุดการเปลี่ยนแปลงสามารถหาได้ที่ %{url} unsubscribe: เพื่อบอกเลิกการรับข้อมูลการปรับปรุงชุดการเปลี่ยนแปลงนี้ โปรดไปนี้ %{url} แล้วคลิก "เลิกรับข้อมูล". + confirmations: + confirm: + heading: โปรดตรวจสอบอีเมลของท่าน! + introduction_1: เราได้ส่งอีเมลยืนยันให้ท่านแล้ว + introduction_2: โปรดยืนยันบัญชีของท่านโดยคลิกลิงก์ในอีเมล หลังจากนั้นท่านสามารถเริ่มใช้งานแผนที่ได้ + press confirm button: คลิกปุ่ม ยืนยัน ข้างล่างเพื่อเปิดใช้บัญชีของท่าน + button: ยืนยัน + success: บัญชีของท่านยืนยันเสร็จแล้ว ขอบคุณสำหรับการสมัครใช้งาน! + already active: บัญชีนี้ได้ถูกยืนยันมาก่อนแล้ว + unknown token: รหัสยืนยันหมดอายุหรือผิดพลาด + reconfirm_html: ถ้าท่านต้องการให้เราส่งอีเมลยืนยันซ้ำ โปรดคลิกที่นี่. + confirm_resend: + success_html: เราได้ส่งบันทึกยืนยันใหม่ไปยังอีเมล %{email} เมื่อท่านยืนยันแล้ว + จะสามารถเริ่มทำแผนที่ได้ทันที

    ถ้าท่านมีระบบป้องกันสแปม โปรดให้ + %{sender} อยู่ในรายการปลอดภัย (whitelist) เพราะเราไม่สามารถตอบอีเมลยืนยันใด + ๆ ได้ + failure: ไม่พบผู้ใช้ %{name} + confirm_email: + heading: ยืนยันการเปลี่ยนแปลงที่อยู่อีเมล + press confirm button: คลิกปุ่ม ยืนยัน ข้างล่างเพื่อยืนยันที่อยู่อีเมลใหม่ + button: ยืนยัน + success: ยืนยันการเปลี่ยนแปลงที่อยู่อีเมลเรียบร้อย! + failure: อีเมลนี้ถูกยืนยันกับคำขอนี้เรียบร้อย + unknown_token: รหัสยืนยันหมดอายุหรือผิดพลาด messages: inbox: title: จดหมายรับ my_inbox: จดหมายรับส่วนตัว - outbox: จดหมายออก + my_outbox: กล่องจดหมายขาออกส่วนตัว messages: ท่านมี %{new_messages} และ %{old_messages} new_messages: one: ข้อความใหม่ %{count} ข้อความ @@ -1323,9 +1372,8 @@ th: body: ขออภัย ไม่พบข้อความที่กำกับด้วยรหัสดังกล่าว outbox: title: จดหมายออก - my_inbox_html: '%{inbox_link}ส่วนตัว' - inbox: จดหมายรับ - outbox: จดหมายออก + my_inbox: กล่องจดหมายขาเข้าส่วนตัว + my_outbox: กล่องจดหมายขาออกส่วนตัว messages: one: ท่านมีข้อความส่งแล้ว %{count} ฉบับ other: ท่านมีข้อความส่งแล้ว %{count} ฉบับ @@ -1356,6 +1404,73 @@ th: as_unread: ข้อความถูกทำเครื่องหมายว่ายังไม่ได้อ่าน destroy: destroyed: ข้อความถูกลบแล้ว + passwords: + lost_password: + title: ตั้งรหัสผ่านใหม่ + heading: ลืมรหัสผ่านหรือ? + email address: 'ที่อยู่อีเมล:' + new password button: ตั้งรหัสผ่านใหม่ + notice email cannot find: ขออภัย, ไม่พบที่อยู่อีเมลที่ระบุ + reset_password: + title: ตั้งรหัสผ่านใหม่ + heading: 'ตั้วรหัสผ่านใหม่สำหรับ: %{user}' + reset: ตั้งรหัสผ่านใหม่ + flash changed: เปลี่ยนรหัสผ่านของคุณแล้วเรียบร้อย + sessions: + new: + title: ลงชื่อเข้าใช้ + heading: ลงชื่อเข้าใช้ + email or username: 'อีเมลหรือชื่อผู้ใช้:' + password: 'รหัสผ่าน:' + openid_html: 'โอเพนไอดีของ %{logo}:' + remember: จดจำฉันไว้ในระบบ + lost password link: ลืมรหัสผ่านหรือ? + login_button: ลงชื่อเข้าใช้ + register now: สมัครเลย! + with username: มีบัญชี OpenStreetMap แล้วหรือยัง? ถ้ามีโปรดเข้าระบบด้วยชื่อผู้ใช้และรหัสผ่านที่ท่านมี + with external: นอกจากนี้ ท่านสามารถใช้บัญชีผู้ใช้จากเว็บอื่นในการเข้าใช้งานได้ + new to osm: เพิ่งเริ่มใช้ OpenStreetMap หรือ? + to make changes: หากต้องการเปลี่ยนแปลงข้อมูลใน OpenStreetMap ท่านต้องมีบัญชีเสียก่อน + create account minute: สร้างบัญชีเดี๋ยวนี้ ใช้เวลาไม่นาน + no account: ยังไม่ได้เป็นสมาชิก? + account not active: ขออภัย บัญชีของท่านยังไม่เปิดใช้งาน
    โปรดใช้ลิงก์ที่ให้ไว้ในอีเมลตอบรับเพื่อเปิดใช้งานบัญชี + หรือขออีเมลตอบรับใหม่ หากสูญหาย + account is suspended: ขออภัย บัญชีของคุณถูกระงับการใช้งานเนื่องจากกิจกรรมที่น่าสงสัย
    หากต้องการพูดคุยในรายละเอียด + กรุณาติดต่อผู้ดูแลระบบ + auth failure: ขออภัย ไม่สามารถเข้าระบบด้วยชื่อผู้ใช้และรหัสผ่านดังกล่าวได้ + openid_logo_alt: เข้าใช้งานด้วย OpenID + auth_providers: + openid: + title: เข้าใช้งานด้วย OpenID + alt: เข้าใช้งานด้วยลิงก์ OpenID + google: + title: เข้าใช้งานด้วย Google + alt: เข้าใช้งานด้วย Google OpenID + facebook: + title: เข้าใช้งานด้วย Facebook + alt: เข้าใช้งานด้วยบัญชี Facebook + windowslive: + title: เข้าใช้งานด้วย Windows Live + alt: เข้าใช้งานด้วยบัญชี Windows Live + github: + title: เข้าใช้งานด้วย GitHub + alt: เข้าใช้งานด้วยบัญชี GitHub + wikipedia: + title: เข้าใช้งานด้วยวิกิพีเดีย + alt: เข้าสู่ระบบด้วยบัญชีวิกิพีเดีย + yahoo: + title: เข้าใช้งานด้วย Yahoo + alt: เข้าใช้งานด้วย Yahoo OpenID + wordpress: + title: เข้าใช้งานด้วย Wordpress + alt: เข้าสู่ระบบด้วย Wordpress OpenID + aol: + title: เข้าใช้งานด้วย AOL + alt: เข้าใช้งานด้วย AOL OpenID + destroy: + title: ออกจากระบบ + heading: ออกจากระบบ OpenStreetMap + logout_button: ออกจากระบบ site: about: next: ถัดไป @@ -1695,23 +1810,6 @@ th: bicycle_shop: ร้านขายและเช่าจักรยาน bicycle_parking: ที่จอดจักรยาน toilets: ห้องน้ำสาธารณะ - richtext_area: - edit: แก้ไข - preview: แสดงตัวอย่าง - markdown_help: - title_html: เขียนด้วยรูปแบบ Kramdown - headings: หัวเรื่องหลัก - heading: หัวเรื่องหลัก - subheading: หัวเรื่องย่อย - unordered: รายการไม่เรียงลำดับ - ordered: รายการเรียงลำดับ - first: รายการแรก - second: รายการที่สอง - link: ลิงก์ - text: ข้อความ - image: รูปภาพ - alt: ข้อความทดแทนภาพ - url: ที่อยู่ลิงก์ welcome: title: ยินดีต้อนรับ! introduction_html: 'ยินดิต้อนรับสู่ OpenStreetMap, แผนที่โลกแบบเสรีที่ทุกคนสามารถแก้ไขได้ @@ -1802,7 +1900,6 @@ th: more: เพิ่มเติม trace_details: ดูรายละเอียดรอยทาง view_map: แสดงแผนที่ - edit: แก้ไข edit_map: แก้ไขแผนที่ public: สาธารณะ identifiable: ระบุได้ @@ -1810,7 +1907,6 @@ th: trackable: ติดตามได้ by: โดย in: ใน - map: แผนที่ index: public_traces: รอยทาง GPS สาธารณะ my_traces: รอยทาง GPS ของฉัน @@ -1899,71 +1995,6 @@ th: destroy: flash: ถอนการลงทะเบียนแอปพลิเคชันฝั่งผู้ใช้แล้ว users: - login: - title: ลงชื่อเข้าใช้ - heading: ลงชื่อเข้าใช้ - email or username: 'อีเมลหรือชื่อผู้ใช้:' - password: 'รหัสผ่าน:' - openid_html: 'โอเพนไอดีของ %{logo}:' - remember: จดจำฉันไว้ในระบบ - lost password link: ลืมรหัสผ่านหรือ? - login_button: ลงชื่อเข้าใช้ - register now: สมัครเลย! - with username: มีบัญชี OpenStreetMap แล้วหรือยัง? ถ้ามีโปรดเข้าระบบด้วยชื่อผู้ใช้และรหัสผ่านที่ท่านมี - with external: นอกจากนี้ ท่านสามารถใช้บัญชีผู้ใช้จากเว็บอื่นในการเข้าใช้งานได้ - new to osm: เพิ่งเริ่มใช้ OpenStreetMap หรือ? - to make changes: หากต้องการเปลี่ยนแปลงข้อมูลใน OpenStreetMap ท่านต้องมีบัญชีเสียก่อน - create account minute: สร้างบัญชีเดี๋ยวนี้ ใช้เวลาไม่นาน - no account: ยังไม่ได้เป็นสมาชิก? - account not active: ขออภัย บัญชีของท่านยังไม่เปิดใช้งาน
    โปรดใช้ลิงก์ที่ให้ไว้ในอีเมลตอบรับเพื่อเปิดใช้งานบัญชี - หรือขออีเมลตอบรับใหม่ หากสูญหาย - account is suspended: ขออภัย บัญชีของคุณถูกระงับการใช้งานเนื่องจากกิจกรรมที่น่าสงสัย
    หากต้องการพูดคุยในรายละเอียด - กรุณาติดต่อผู้ดูแลระบบ - auth failure: ขออภัย ไม่สามารถเข้าระบบด้วยชื่อผู้ใช้และรหัสผ่านดังกล่าวได้ - openid_logo_alt: เข้าใช้งานด้วย OpenID - auth_providers: - openid: - title: เข้าใช้งานด้วย OpenID - alt: เข้าใช้งานด้วยลิงก์ OpenID - google: - title: เข้าใช้งานด้วย Google - alt: เข้าใช้งานด้วย Google OpenID - facebook: - title: เข้าใช้งานด้วย Facebook - alt: เข้าใช้งานด้วยบัญชี Facebook - windowslive: - title: เข้าใช้งานด้วย Windows Live - alt: เข้าใช้งานด้วยบัญชี Windows Live - github: - title: เข้าใช้งานด้วย GitHub - alt: เข้าใช้งานด้วยบัญชี GitHub - wikipedia: - title: เข้าใช้งานด้วยวิกิพีเดีย - alt: เข้าสู่ระบบด้วยบัญชีวิกิพีเดีย - yahoo: - title: เข้าใช้งานด้วย Yahoo - alt: เข้าใช้งานด้วย Yahoo OpenID - wordpress: - title: เข้าใช้งานด้วย Wordpress - alt: เข้าสู่ระบบด้วย Wordpress OpenID - aol: - title: เข้าใช้งานด้วย AOL - alt: เข้าใช้งานด้วย AOL OpenID - logout: - title: ออกจากระบบ - heading: ออกจากระบบ OpenStreetMap - logout_button: ออกจากระบบ - lost_password: - title: ตั้งรหัสผ่านใหม่ - heading: ลืมรหัสผ่านหรือ? - email address: 'ที่อยู่อีเมล:' - new password button: ตั้งรหัสผ่านใหม่ - notice email cannot find: ขออภัย, ไม่พบที่อยู่อีเมลที่ระบุ - reset_password: - title: ตั้งรหัสผ่านใหม่ - heading: 'ตั้วรหัสผ่านใหม่สำหรับ: %{user}' - reset: ตั้งรหัสผ่านใหม่ - flash changed: เปลี่ยนรหัสผ่านของคุณแล้วเรียบร้อย new: title: สมัครสมาชิก about: @@ -1984,9 +2015,13 @@ th: title: ข้อกำหนด heading: ข้อกำหนด heading_ct: ข้อกำหนดผู้มีส่วนร่วม - consider_pd: นอกเหนือจากข้อตกลงข้างต้น ข้าพเจ้ายินดีสละการสร้างสรรค์ของข้าพเจ้าให้เป็นงานอันไม่มีลิขสิทธิ์ + read_tou: ข้าพเจ้าได้อ่านและเห็นด้วยในข้อกำหนดการใช้งาน + consider_pd: นอกเหนือจากข้อความข้างต้น ข้าพเจ้ายินดีสละการสร้างสรรค์ของข้าพเจ้าให้เป็นงานอันไม่มีลิขสิทธิ์ consider_pd_why: นี้คืออะไร? + continue: ถัดไป + declined: https://wiki.openstreetmap.org/wiki/Contributor_Terms_Declined decline: ไม่ยอมรับ + you need to accept or decline: กรุณาตรวจทานและเลือกยอมรับหรือไม่ยอมรับข้อกำหนดของผู้มีส่วนร่วมเพื่อไปต่อ legale_select: 'ประเทศที่พำนัก:' legale_names: france: ฝรั่งเศส @@ -1995,6 +2030,7 @@ th: no_such_user: title: ไม่มีผู้ใช้ที่ระบุ heading: ไม่พบผู้ใช้ชื่อ %{user} + body: ขออภัย ไม่พบผู้ใช้ที่ใช้ชื่อ %{user} โปรดตรวจสอบการสะกดหรือลิงก์ที่คุณคลิกมาอาจผิดพลาดหรือไม่ถูกต้อง deleted: ลบแล้ว show: my diary: บันทึกของฉัน @@ -2038,6 +2074,12 @@ th: role: administrator: คนนี้เป็นผู้ดูแลระบบ moderator: ผู้ใช้นี้เป็นผู้ดูแล + grant: + administrator: ให้สิทธิ์ผู้ดูแลระบบ + moderator: ให้สิทธิ์ผู้ควบคุม + revoke: + administrator: เพิกถอนสิทธิ์ผู้ดูแลระบบ + moderator: เพิกถอนสิทธิ์ผู้ควบคุม block_history: การถูกระงับใช้งานในปัจจุบัน comments: ความเห็นที่เขียน create_block: ระงับผู้ใช้นี้ @@ -2054,8 +2096,8 @@ th: account: title: แก้ไขบัญชี my settings: การตั้งค่าของฉัน - current email address: 'ที่อยู่อีเมลปัจจุบัน:' - external auth: 'เชื่อมโยงตัวตนจากบริการอื่น:' + current email address: ที่อยู่อีเมลปัจจุบัน + external auth: การยืนยันตัวตนด้วยบริการภายนอก openid: link text: นี้คืออะไร? public editing: @@ -2086,29 +2128,6 @@ th: flash update success confirm needed: การปรับปรุงข้อมูลผู้ใช้งานสำเร็จเรียบร้อย โปรดตรวจสอบอีเมลของท่านเพื่อยืนยันที่อยู่อีเมลใหม่ flash update success: การปรับปรุงข้อมูลผู้ใช้งานสำเร็จเรียบร้อย - confirm: - heading: โปรดตรวจสอบอีเมลของท่าน! - introduction_1: เราได้ส่งอีเมลยืนยันให้ท่านแล้ว - introduction_2: โปรดยืนยันบัญชีของท่านโดยคลิกลิงก์ในอีเมล หลังจากนั้นท่านสามารถเริ่มใช้งานแผนที่ได้ - press confirm button: คลิกปุ่ม ยืนยัน ข้างล่างเพื่อเปิดใช้บัญชีของท่าน - button: ยืนยัน - success: บัญชีของท่านยืนยันเสร็จแล้ว ขอบคุณสำหรับการสมัครใช้งาน! - already active: บัญชีนี้ได้ถูกยืนยันมาก่อนแล้ว - unknown token: รหัสยืนยันหมดอายุหรือผิดพลาด - reconfirm_html: ถ้าท่านต้องการให้เราส่งอีเมลยืนยันซ้ำ โปรดคลิกที่นี่. - confirm_resend: - success_html: เราได้ส่งบันทึกยืนยันใหม่ไปยังอีเมล %{email} เมื่อท่านยืนยันแล้ว - จะสามารถเริ่มทำแผนที่ได้ทันที

    ถ้าท่านมีระบบป้องกันสแปม โปรดให้ - %{sender} อยู่ในรายการปลอดภัย (whitelist) เพราะเราไม่สามารถตอบอีเมลยืนยันใด - ๆ ได้ - failure: ไม่พบผู้ใช้ %{name} - confirm_email: - heading: ยืนยันการเปลี่ยนแปลงที่อยู่อีเมล - press confirm button: คลิกปุ่ม ยืนยัน ข้างล่างเพื่อยืนยันที่อยู่อีเมลใหม่ - button: ยืนยัน - success: ยืนยันการเปลี่ยนแปลงที่อยู่อีเมลเรียบร้อย! - failure: อีเมลนี้ถูกยืนยันกับคำขอนี้เรียบร้อย - unknown_token: รหัสยืนยันหมดอายุหรือผิดพลาด set_home: flash success: ตำแหน่งที่อยู่บ้านบันทึกเรียบร้อย go_public: diff --git a/config/locales/tl.yml b/config/locales/tl.yml index db3607bd2..6ddfe758e 100644 --- a/config/locales/tl.yml +++ b/config/locales/tl.yml @@ -633,6 +633,7 @@ tl: cape: Tangway cave_entrance: Pasukan ng Yungib cliff: Bangin + coastline: Baybay-dagat crater: Uka dune: Burol ng Buhangin fell: Pulak @@ -946,11 +947,34 @@ tl: partial_changeset_without_comment: walang puna details: Higit pang mga detalye tungkol sa pangkat ng pagbabago ay matatagpuan sa %{url}. + confirmations: + confirm: + heading: Tingnan ang iyong e-liham! + press confirm button: Pindtuin ang pindutan ng pagtitiyak na nasa ibaba upang + buhayin ang akawnt mo. + button: Tiyakin + success: Natiyak ang akawnt mo, salamat sa pagpapatala! + already active: Natiyak na ang akawnt na ito. + unknown token: Tila lumipas o hindi umiiral ang kahalip na iyan. + confirm_resend: + success_html: Nagpadala kami ng isang paunawa ng pagtitiyak sa %{email} at kapag + tiniyak mo nang iyong akawnt sa lalong madaling panahon maaari ka nang magsimula + sa pagmamapa.

    Kung gumagamit ka ng isang sistemang panlaban sa + basurang liham na nagpapadala ng mga kahilingan ng pagtitiyak, pakitiyak na + itala mo sa puting-talaan ang %{sender} dahil hindi namin magagawang tumugon + sa anumang mga kahilingan ng pagtitiyak. + failure: Hindi natagpuan ang tagagamit na si %{name}. + confirm_email: + heading: Tiyakin ang isang pagpapalit ng tirahan ng e-liham + press confirm button: Pindutin ang pindutan ng pagtitiyak na nasa ibaba upang + tiyakin ang bago mong tirahan ng e-liham. + button: Tiyakin + success: Natiyak ang pagpapalit ng tirahan ng sulatroniko! + failure: Isang tirahan ng e-liham ang natiyak nang may ganitong kahalip. messages: inbox: title: Kahon ng pumapasok my_inbox: Kahong-tanggapan ko - outbox: kahong-labasan messages: Mayroong kang %{new_messages} at %{old_messages} new_messages: one: '%{count} bagong mensahe' @@ -985,9 +1009,6 @@ tl: body: Paumanhin walang mensahe na may ganyang ID. outbox: title: Kahong-labasan - my_inbox_html: '%{inbox_link} ko' - inbox: kahon ng pumapasok - outbox: kahong-labasan messages: one: Mayroon kang %{count} ipinadalang mensahe other: Mayroon kang %{count} ipinadalang mga mensahe @@ -1021,6 +1042,55 @@ tl: as_unread: Minarkahan ang mensahe bilang hindi pa nababasa destroy: destroyed: Binura ang mensahe + passwords: + lost_password: + title: Naiwalang password + heading: Nakalimutang Password? + email address: 'Tirahan ng e-liham:' + new password button: Itakda uli ang hudyat + help_text: Ipasok ang tirahan ng e-liham na ginamit mo upang magpatala, ipapadala + namin ang isang kawing papunta rito na magagamit mo upang muling maitakda + mo ang iyong hudyat. + notice email on way: Ikinalulungkot na naiwala mo iyan :-( ngunit darating na + ang isang e-liham upang maitakda mong muli iyan kaagad. + notice email cannot find: Hindi matagpuan ang ganyang tirahan ng e-liham, paumanhin. + reset_password: + title: Muling itakda ang hudyat + heading: Muling itakda ang Hudyat para kay %{user} + reset: Muling Itakda ang Hudyat + flash changed: Napalitan na ang hudyat mo. + flash token bad: Hindi natagpuan ang ganyang kahalip, suriin kaya ang URL? + sessions: + new: + title: Lumagda + heading: Lumagda + email or username: 'Tirahan ng E-liham o Pangalan ng Tagagamit:' + password: 'Password:' + openid_html: '%{logo} OpenID:' + remember: 'Tandaan ako:' + lost password link: Nawala ang hudyat mo? + login_button: Lumagda + register now: Magpatala na ngayon + with username: 'Mayroon ka na bang akawnt sa OpenStreetMap? Mangyaring lumagda + sa pamamagitan ng iyong pangalan ng tagagamit at hudyat:' + new to osm: Bago pa lamang sa OpenStreetMap? + to make changes: Upang makagawa ng mga pagbabago sa dato ng OpenStreetMap data, + kailangang mayroon kang isang akawnt. + create account minute: Lumikha ng isang akawnt. Aabutin lamang ng isang minuto. + no account: Wala ka pa bang akawnt? + account not active: Paumanhin, hindi pa binubuhay ang akawnt mo.
    Mangyaring + gamitin ang kawing na nasa loob ng e-liham ng pagtitiyak ng akawnt upang buhayin + ang akawnt mo, o humiling ng isang panibagong e-liham + ng pagtitiyak. + account is suspended: Paumanhin, nasuspindi ang akawnt mo dahil sa kaduda-dudang + gawain.
    Mangyaring makipag-uganayan sa webmaster + kung nais mong talakayin ito. + auth failure: Paumanhin, hindi makalagda sa pamamagitan ng mga detalyeng iyan. + openid_logo_alt: Lumagda sa pamamagitan ng isang OpenID + destroy: + title: Umalis sa pagkakalagda + heading: Umalis sa pagkakalagda mula sa OpenStreetMap + logout_button: Umalis sa pagkakalagda site: about: next: Kasunod @@ -1299,23 +1369,6 @@ tl: construction: Mga kalsadang ginagawa bicycle_parking: Paradahan ng bisikleta toilets: Mga banyo - richtext_area: - edit: Baguhin - preview: Paunang tanaw - markdown_help: - title_html: Sinuri sa pamamagitan ng Pagbabawas - headings: Mga pamulaan - heading: Pamulaan - subheading: Kabahaging Pamulaan - unordered: Listahang walang pagkakasunud-sunod - ordered: Listahang may pagkakasunud-sunod - first: Unang bagay - second: Ikalawang bagay - link: Kawing - text: Teksto - image: Larawan - alt: Kahaliling teksto - url: URL welcome: title: Maligayang pagdating! whats_on_the_map: @@ -1386,7 +1439,6 @@ tl: more: marami pa trace_details: Tingnan ang mga Detalye ng Bakas view_map: Tingnan ang Mapa - edit: baguhin edit_map: Baguhin ang Mapa public: PANGMADLA identifiable: MAKIKILALA @@ -1394,7 +1446,6 @@ tl: trackable: MATUTUGAYGAYAN by: sa pamamagitan ng in: sa - map: mapa index: public_traces: Mga pagbabakas ng pangmadlang GPS public_traces_from: Pangmadlang pagbakas ng GPS mula kay %{user} @@ -1487,53 +1538,6 @@ tl: destroy: flash: Winasak ang pagpapatala ng aplikasyon ng kliyente users: - login: - title: Lumagda - heading: Lumagda - email or username: 'Tirahan ng E-liham o Pangalan ng Tagagamit:' - password: 'Password:' - openid_html: '%{logo} OpenID:' - remember: 'Tandaan ako:' - lost password link: Nawala ang hudyat mo? - login_button: Lumagda - register now: Magpatala na ngayon - with username: 'Mayroon ka na bang akawnt sa OpenStreetMap? Mangyaring lumagda - sa pamamagitan ng iyong pangalan ng tagagamit at hudyat:' - new to osm: Bago pa lamang sa OpenStreetMap? - to make changes: Upang makagawa ng mga pagbabago sa dato ng OpenStreetMap data, - kailangang mayroon kang isang akawnt. - create account minute: Lumikha ng isang akawnt. Aabutin lamang ng isang minuto. - no account: Wala ka pa bang akawnt? - account not active: Paumanhin, hindi pa binubuhay ang akawnt mo.
    Mangyaring - gamitin ang kawing na nasa loob ng e-liham ng pagtitiyak ng akawnt upang buhayin - ang akawnt mo, o humiling ng isang panibagong e-liham - ng pagtitiyak. - account is suspended: Paumanhin, nasuspindi ang akawnt mo dahil sa kaduda-dudang - gawain.
    Mangyaring makipag-uganayan sa webmaster - kung nais mong talakayin ito. - auth failure: Paumanhin, hindi makalagda sa pamamagitan ng mga detalyeng iyan. - openid_logo_alt: Lumagda sa pamamagitan ng isang OpenID - logout: - title: Umalis sa pagkakalagda - heading: Umalis sa pagkakalagda mula sa OpenStreetMap - logout_button: Umalis sa pagkakalagda - lost_password: - title: Naiwalang password - heading: Nakalimutang Password? - email address: 'Tirahan ng e-liham:' - new password button: Itakda uli ang hudyat - help_text: Ipasok ang tirahan ng e-liham na ginamit mo upang magpatala, ipapadala - namin ang isang kawing papunta rito na magagamit mo upang muling maitakda - mo ang iyong hudyat. - notice email on way: Ikinalulungkot na naiwala mo iyan :-( ngunit darating na - ang isang e-liham upang maitakda mong muli iyan kaagad. - notice email cannot find: Hindi matagpuan ang ganyang tirahan ng e-liham, paumanhin. - reset_password: - title: Muling itakda ang hudyat - heading: Muling itakda ang Hudyat para kay %{user} - reset: Muling Itakda ang Hudyat - flash changed: Napalitan na ang hudyat mo. - flash token bad: Hindi natagpuan ang ganyang kahalip, suriin kaya ang URL? new: title: Magpatala no_auto_account_create: Sa kasamaang-palad pangkasalukuyang hindi namin magawang @@ -1700,29 +1704,6 @@ tl: sa tagagamit. Suriin ang e-liham mo para sa isang tala upang matiyak ang bago mong tirahan ng e-liham. flash update success: Matagumpay na naisapanahon ang kabatiran sa tagagamit. - confirm: - heading: Tingnan ang iyong e-liham! - press confirm button: Pindtuin ang pindutan ng pagtitiyak na nasa ibaba upang - buhayin ang akawnt mo. - button: Tiyakin - success: Natiyak ang akawnt mo, salamat sa pagpapatala! - already active: Natiyak na ang akawnt na ito. - unknown token: Tila lumipas o hindi umiiral ang kahalip na iyan. - confirm_resend: - success_html: Nagpadala kami ng isang paunawa ng pagtitiyak sa %{email} at kapag - tiniyak mo nang iyong akawnt sa lalong madaling panahon maaari ka nang magsimula - sa pagmamapa.

    Kung gumagamit ka ng isang sistemang panlaban sa - basurang liham na nagpapadala ng mga kahilingan ng pagtitiyak, pakitiyak na - itala mo sa puting-talaan ang %{sender} dahil hindi namin magagawang tumugon - sa anumang mga kahilingan ng pagtitiyak. - failure: Hindi natagpuan ang tagagamit na si %{name}. - confirm_email: - heading: Tiyakin ang isang pagpapalit ng tirahan ng e-liham - press confirm button: Pindutin ang pindutan ng pagtitiyak na nasa ibaba upang - tiyakin ang bago mong tirahan ng e-liham. - button: Tiyakin - success: Natiyak ang pagpapalit ng tirahan ng sulatroniko! - failure: Isang tirahan ng e-liham ang natiyak nang may ganitong kahalip. set_home: flash success: Matagumpay na nasagip ang kinalalagyan ng tahanan go_public: diff --git a/config/locales/tr.yml b/config/locales/tr.yml index bc7c897b1..54dccb93c 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -51,6 +51,8 @@ # Author: 아라 --- tr: + html: + dir: ltr time: formats: friendly: '%e %B %Y saat %H:%M' @@ -1033,12 +1035,14 @@ tr: mountain_pass: "yes": Dağ Geçidi natural: + atoll: Mercan adası bare_rock: Çıplak Kaya bay: Koy / körfez beach: Plaj cape: Burun cave_entrance: Mağara girişi cliff: Uçurum + coastline: Sahil şeridi crater: Krater dune: Kumul fell: Ağaçsız tepe @@ -1056,6 +1060,7 @@ tr: moor: Bataklık mud: Balçık peak: Tepe / zirve + peninsula: Yarımada point: Nokta reef: Resif ridge: Sırt @@ -1103,6 +1108,7 @@ tr: "yes": Ofis place: allotments: Bostan + archipelago: Takımadalar city: Büyükşehir / İl Merkezi city_block: Ada country: Ülke @@ -1629,11 +1635,40 @@ tr: için %{url} sayfasını ziyaret edin ve "Aboneliği iptal et"i tıklayın. unsubscribe_html: Bu değişiklik kümesiyle ilgili güncellemelerden çıkmak için %{url} adresini ziyaret edin ve "Abonelikten çık" seçeneğine tıklayın. + confirmations: + confirm: + heading: E-postalarını kontrol et! + introduction_1: Size bir doğrulama e-postası gönderdik. + introduction_2: E-postadaki bağlantıya tıklayarak hesabınızı doğrulayın ve daha + sonra haritalama yapmanız mümkün olacak. + press confirm button: Hesabınızı etkinleştirmek için aşağıdaki onaylama butonuna + basın. + button: Onayla + success: Hesabınızı doğruladınız, kaydolduğunuz için teşekkürler! + already active: Bu hesap zaten doğrulandı. + unknown token: Onay kodu geçerliliğini yitirmiş veya mevcut değil. + reconfirm_html: Doğrulama e-postasının tekrar gönderimi için bize ihtiyacınız + varsa, buraya tıklayın. + confirm_resend: + success_html: '%{email} hesabınıza yeni bir bilgilendirme notu gönderdik ve + hesabınızı onaylar onaylamaz harita yapımına başlayabileceksiniz.

    Onay isteği gönderen bir anti-spam sistemi kullanırsanız onay isteklerine + cevap veremediğimizden lütfen kabul edilen adresler listesinde %{sender} olduğundan + emin olunuz.' + failure: '%{name} kullanıcısı bulunamadı.' + confirm_email: + heading: E-posta adresinde değişikliği onayla + press confirm button: Yeni e-posta adresinizi onaylamak için aşağıdaki onay + butonuna basınız. + button: Onayla + success: E-posta adresinizdeki değişikliğiniz onaylandı! + failure: Bu özellikle ile bir e-posta adresi zaten doğrulandı. + unknown_token: Onay kodu geçerliliğini yitirmiş veya mevcut değil. messages: inbox: title: Gelen kutusu my_inbox: Gelen kutusu - outbox: giden kutusu + my_outbox: Giden Kutum messages: '%{new_messages} ve %{old_messages}' new_messages: one: '%{count} yeni mesaj' @@ -1668,9 +1703,8 @@ tr: body: Üzgünüz, bu id ile bir mesaj yok. outbox: title: Giden kutusu - my_inbox_html: Benim %{inbox_link} - inbox: gelen kutusu - outbox: giden kutusu + my_inbox: Gelen Kutum + my_outbox: Giden Kutum messages: one: '%{count} mesaj gönderdiniz' other: ' %{count} mesaj gönderdiniz' @@ -1704,6 +1738,82 @@ tr: as_unread: Mesaj okunmadı olarak işaretlendi destroy: destroyed: Mesaj silindi + passwords: + lost_password: + title: Kayıp parola + heading: Parolanızı mı Unuttunuz? + email address: 'E-posta Adresi:' + new password button: Parolayı sıfırla + help_text: Kaydolmak için kullandığınız e-posta adresini girin, şifrenizi sıfırlamak + için kullanabileceğiniz bir bağlantı yollayacağız. + notice email on way: Maalesef şifrenizi kaybettiniz :-( Ancak yeni bir e-posta + yolda böylece şifreniziyakında sıfırlayabilirsiniz. + notice email cannot find: 'Üzgünüz: bu e-posta adresi bulunamadı.' + reset_password: + title: Parolayı sıfırla + heading: '%{user} İçin Parolayı Sıfırlayın' + reset: Parolayı Sıfırla + flash changed: Parolanız değiştirildi. + flash token bad: Bu simgeyi bulamadıysanız belki de bağlantıyı kontrol etmelisiniz? + sessions: + new: + title: Oturum aç + heading: Oturum aç + email or username: 'E-posta Adresi veya Kullanıcı Adı:' + password: 'Parola:' + openid_html: '%{logo} OpenID:' + remember: Beni hatırla + lost password link: Parolanızı mı kaybettiniz? + login_button: Oturum aç + register now: Şimdi kaydol + with username: 'OpenStreetMap hesabınız var mı? Lütfen kullanıcı adı ve parolanızla + oturum açın:' + with external: 'Alternatif olarak, bir üçüncü parti uygulaması kullanarak oturum + açın:' + new to osm: OpenStreetMap sitesinde yeni misiniz? + to make changes: OpenStreetMap verileri değiştirmek için bir hesabın olması + gerekir. + create account minute: Bir hesap oluştur. Bir dakika bile sürmez. + no account: Hesabın yok mu? + account not active: Üzgünüz, hesabınız henüz aktif değil.
    Lütfen aldığın + onaylama e-postasında ki bağlantı tıkla veya yeni bir + onaylama e-posta iste. + account is suspended: Üzgünüz, hesabınız şüpheli etkinlikler nedeniyle askıya + alındı.
    Bu konu için lütfen webmaster'a başvurun. + auth failure: Üzgünüz, bu giriş ile oturum açılamadı. + openid_logo_alt: OpenID ile giriş + auth_providers: + openid: + title: OpenID ile giriş + alt: OpenID Bağlantısı ile giriş + google: + title: Google ile oturum aç + alt: Google OpenID ile giriş + facebook: + title: Facebook ile giriş + alt: Facebook Hesabı ile giriş + windowslive: + title: Windows Live ile giriş + alt: Windows Live Hesabı ile giriş + github: + title: GitHub ile giriş + alt: GitHub Hesabı ile giriş + wikipedia: + title: Vikipedi ile giriş + alt: Vikipedi Hesabı ile giriş + yahoo: + title: Yahoo ile oturum aç + alt: Yahoo OpenID ile giriş + wordpress: + title: Wordpress ile oturum aç + alt: Wordpress OpenID ile giriş + aol: + title: AOL ile giriş + alt: AOL OpenID ile giriş + destroy: + title: Oturumu kapat + heading: OpenStreetMap'den çıkış + logout_button: Oturumu kapat shared: markdown_help: title_html: kramdown @@ -2121,24 +2231,6 @@ tr: bicycle_shop: Bisikletçi bicycle_parking: Bisiklet parkı toilets: Tuvaletler - richtext_area: - edit: Düzenle - preview: Önizleme - markdown_help: - title_html: Kramdown - kodlarını kullanabilirsiniz - headings: Başlıklar - heading: Başlık - subheading: Alt başlık - unordered: Sırasız liste - ordered: Sıralı liste - first: İlk öge - second: İkinci öge - link: Bağlantı - text: Metin - image: Resim - alt: Alt metin - url: URL welcome: title: Hoş geldiniz! introduction_html: Dünyanın düzenlenebilir ve ücretsiz haritası OpenStreetMap'e @@ -2261,7 +2353,6 @@ tr: more: daha fazla trace_details: İz Ayrıntılarını Görüntüle view_map: Haritayı Görüntüle - edit: düzenle edit_map: Haritayı Düzenle public: KAMU identifiable: TANIMLANABİLİR @@ -2269,7 +2360,6 @@ tr: trackable: İZLENEBİLİR by: 'yükleyen:' in: 'etiketler:' - map: harita index: public_traces: Herkese açık GPS izleri my_traces: GPS izlerim @@ -2382,80 +2472,6 @@ tr: destroy: flash: İstemci uygulaması kaydını yok etti users: - login: - title: Oturum aç - heading: Oturum aç - email or username: 'E-posta Adresi veya Kullanıcı Adı:' - password: 'Parola:' - openid_html: '%{logo} OpenID:' - remember: Beni hatırla - lost password link: Parolanızı mı kaybettiniz? - login_button: Oturum aç - register now: Şimdi kaydol - with username: 'OpenStreetMap hesabınız var mı? Lütfen kullanıcı adı ve parolanızla - oturum açın:' - with external: 'Alternatif olarak, bir üçüncü parti uygulaması kullanarak oturum - açın:' - new to osm: OpenStreetMap sitesinde yeni misiniz? - to make changes: OpenStreetMap verileri değiştirmek için bir hesabın olması - gerekir. - create account minute: Bir hesap oluştur. Bir dakika bile sürmez. - no account: Hesabın yok mu? - account not active: Üzgünüz, hesabınız henüz aktif değil.
    Lütfen aldığın - onaylama e-postasında ki bağlantı tıkla veya yeni bir - onaylama e-posta iste. - account is suspended: Üzgünüz, hesabınız şüpheli etkinlikler nedeniyle askıya - alındı.
    Bu konu için lütfen webmaster'a başvurun. - auth failure: Üzgünüz, bu giriş ile oturum açılamadı. - openid_logo_alt: OpenID ile giriş - auth_providers: - openid: - title: OpenID ile giriş - alt: OpenID Bağlantısı ile giriş - google: - title: Google ile oturum aç - alt: Google OpenID ile giriş - facebook: - title: Facebook ile giriş - alt: Facebook Hesabı ile giriş - windowslive: - title: Windows Live ile giriş - alt: Windows Live Hesabı ile giriş - github: - title: GitHub ile giriş - alt: GitHub Hesabı ile giriş - wikipedia: - title: Vikipedi ile giriş - alt: Vikipedi Hesabı ile giriş - yahoo: - title: Yahoo ile oturum aç - alt: Yahoo OpenID ile giriş - wordpress: - title: Wordpress ile oturum aç - alt: Wordpress OpenID ile giriş - aol: - title: AOL ile giriş - alt: AOL OpenID ile giriş - logout: - title: Oturumu kapat - heading: OpenStreetMap'den çıkış - logout_button: Oturumu kapat - lost_password: - title: Kayıp parola - heading: Parolanızı mı Unuttunuz? - email address: 'E-posta Adresi:' - new password button: Parolayı sıfırla - help_text: Kaydolmak için kullandığınız e-posta adresini girin, şifrenizi sıfırlamak - için kullanabileceğiniz bir bağlantı yollayacağız. - notice email on way: Maalesef şifrenizi kaybettiniz :-( Ancak yeni bir e-posta - yolda böylece şifreniziyakında sıfırlayabilirsiniz. - notice email cannot find: 'Üzgünüz: bu e-posta adresi bulunamadı.' - reset_password: - title: Parolayı sıfırla - heading: '%{user} İçin Parolayı Sıfırlayın' - reset: Parolayı Sıfırla - flash changed: Parolanız değiştirildi. - flash token bad: Bu simgeyi bulamadıysanız belki de bağlantıyı kontrol etmelisiniz? new: title: Hesap oluştur no_auto_account_create: Maalesef sizin için otomatik olarak bir hesap oluşturamıyoruz. @@ -2644,34 +2660,6 @@ tr: flash update success confirm needed: Kullanıcı bilgisi başarıyla güncellendi. Yeni e-posta adresinizi onaylamak için e-mail'inizi lütfen kontrol ediniz. flash update success: Kullanıcı bilgisi başarıyla güncellendi. - confirm: - heading: E-postalarını kontrol et! - introduction_1: Size bir doğrulama e-postası gönderdik. - introduction_2: E-postadaki bağlantıya tıklayarak hesabınızı doğrulayın ve daha - sonra haritalama yapmanız mümkün olacak. - press confirm button: Hesabınızı etkinleştirmek için aşağıdaki onaylama butonuna - basın. - button: Onayla - success: Hesabınızı doğruladınız, kaydolduğunuz için teşekkürler! - already active: Bu hesap zaten doğrulandı. - unknown token: Onay kodu geçerliliğini yitirmiş veya mevcut değil. - reconfirm_html: Doğrulama e-postasının tekrar gönderimi için bize ihtiyacınız - varsa, buraya tıklayın. - confirm_resend: - success_html: '%{email} hesabınıza yeni bir bilgilendirme notu gönderdik ve - hesabınızı onaylar onaylamaz harita yapımına başlayabileceksiniz.

    Onay isteği gönderen bir anti-spam sistemi kullanırsanız onay isteklerine - cevap veremediğimizden lütfen kabul edilen adresler listesinde %{sender} olduğundan - emin olunuz.' - failure: '%{name} kullanıcısı bulunamadı.' - confirm_email: - heading: E-posta adresinde değişikliği onayla - press confirm button: Yeni e-posta adresinizi onaylamak için aşağıdaki onay - butonuna basınız. - button: Onayla - success: E-posta adresinizdeki değişikliğiniz onaylandı! - failure: Bu özellikle ile bir e-posta adresi zaten doğrulandı. - unknown_token: Onay kodu geçerliliğini yitirmiş veya mevcut değil. set_home: flash success: Ev konumu başarıyla kaydedildi go_public: diff --git a/config/locales/tt.yml b/config/locales/tt.yml index 39509a5bf..a3ad99ca8 100644 --- a/config/locales/tt.yml +++ b/config/locales/tt.yml @@ -577,6 +577,11 @@ tt: greeting: Сәлам, changeset_comment_notification: greeting: Сәлам, + confirmations: + confirm: + button: Раслау + confirm_email: + button: Раслау messages: inbox: messages: Сезнең %{new_messages} һәм %{old_messages} бар @@ -593,6 +598,19 @@ tt: title: Хәбәр җибәрү subject: 'Тема:' body: 'Текст:' + passwords: + lost_password: + email address: 'Электрон почта адресы:' + sessions: + new: + title: Керү + heading: Керү + password: 'Серсүз:' + login_button: Керү + register now: Теркәлегезче + destroy: + title: Чыгу + logout_button: Чыгу site: export: licence: Лицензия @@ -659,16 +677,6 @@ tt: - университет station: Тимер юл станциясе toilets: Бәдрәф - richtext_area: - edit: Үзгәртү - preview: Алдан карау - markdown_help: - headings: Башлыклар - heading: Бүлек башы - link: Сылтама - text: Текст - image: Сурәт - url: URL traces: trace_optionals: tags: Тамгалар @@ -676,21 +684,7 @@ tt: download: күчереп алу uploaded: 'Төялде:' none: Һични - trace: - edit: үзгәртү - map: харита users: - login: - title: Керү - heading: Керү - password: 'Серсүз:' - login_button: Керү - register now: Теркәлегезче - logout: - title: Чыгу - logout_button: Чыгу - lost_password: - email address: 'Электрон почта адресы:' new: email address: 'Электрон почта адресы:' terms: @@ -722,10 +716,6 @@ tt: image: 'Сурәт:' new image: Сурәтне өстәү save changes button: Үзгәрешләрне саклау - confirm: - button: Раслау - confirm_email: - button: Раслау index: title: Кулланучылар heading: Кулланучылар diff --git a/config/locales/uk.yml b/config/locales/uk.yml index b25207d36..451e21dcd 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -24,6 +24,7 @@ # Author: Kareyac # Author: Lxlalexlxl # Author: Macofe +# Author: Mike140 # Author: Movses # Author: Mykola Swarnyk # Author: Nemo bis @@ -76,7 +77,7 @@ uk: errors: messages: invalid_email_address: не схоже на коректну адресу електронної пошти - email_address_not_routable: не маршрутизований + email_address_not_routable: недоступний models: acl: Список контролю доступу changeset: Набір змін @@ -107,7 +108,7 @@ uk: trace: Трек tracepoint: Точка треку tracetag: Теґ треку - user: Учасник + user: Користувач user_preference: Налаштування користувача user_token: Код підтвердження користувача way: Лінія @@ -159,7 +160,7 @@ uk: description: Опис report: category: 'Оберіть причину вашої скарги:' - details: Будь ласка, надайте більше подробиць (обов'язково). + details: Будь ласка, надайте більше відомостей (обов'язково). user: auth_provider: Автентифікатор auth_uid: Ідентифікатор автентифікації @@ -183,8 +184,7 @@ uk: толерантні та дійте розумно, надаючи як можна більше інформації про причини блокування. Пам’ятайте, що повідомлення буде доступне всім. Не всі учасники розуміють жаргон спільноти, тому користуйтесь для пояснення простою мовою. - needs_view: Дозволити користувачу входити в систему, перш, ніж блокування - буде знято? + needs_view: Дозволити користувачу увійти, перш, ніж блокування буде знято? user: email_confirmation: Ваша адреса не є загальнодоступною і не показується іншим, ознайомтесь з %{time}
    , %{user} link_to_reports: Дивитсь скарги reports_count: - one: 1 Скарга + one: '%{count} Скарга' few: '%{count} Скарги' - other: '%{count} Скарг' + many: '%{count} Скарг' + other: "" reported_item: Оскаржено states: ignored: Проігноровано @@ -1316,10 +1491,13 @@ uk: diary_comment_notification: subject: '[OpenStreetMap] %{user} залишив коментар у вашому щоденнику' hi: Привіт, %{to_user}, - header: '%{from_user} прокоментував ваш запис у щоденнику у OpenStreetMap з + header: '%{from_user} прокоментував ваш допис у щоденнику у OpenStreetMap з темою %{subject}:' + header_html: '%{from_user} прокоментував допис %{subject} в щоденнику OpenStreetMap' footer: Ви можете також прочитати коментар — %{readurl}, залишити свій — %{commenturl} або відповісти — %{replyurl} + footer_html: Ви можете ознайомитись з коментарем за посиланням %{readurl}, відповісти + на коментар - %{commenturl}, чи надіслати повідомлення автору - %{replyurl} message_notification: subject: '[OpenStreetMap] %{message_title}' hi: Привіт, %{to_user}, @@ -1327,6 +1505,8 @@ uk: %{subject}:' header_html: '%{from_user} надіслав повідомлення через OpenStreetMap з темою %{subject}:' + footer: Ви також можете прочитати повідомлення – %{readurl} та відповісти - + %{replyurl} footer_html: Ви також можете прочитати повідомлення в %{readurl} і ви можете відповісти на %{replyurl} friendship_notification: @@ -1334,9 +1514,19 @@ uk: subject: '[OpenStreetMap] %{user} додав Вас як друга' had_added_you: '%{user} додав Вас як друга у OpenStreetMap.' see_their_profile: Ви можете побачити їх профіль на %{userurl}. + see_their_profile_html: Ви можете ознайомитись з його/її профілем - %{userurl}. befriend_them: Ви також можете додати їх у якості друзів %{befriendurl}. + befriend_them_html: Ви також можете додати його/її до друзів %{befriendurl}. + gpx_description: + description_with_tags_html: 'Схоже це ваш файл GPX %{trace_name}, що має опис + - %{trace_description} та наступні теґи: %{tags}' + description_with_no_tags_html: Схоже це ваш файл GPX %{trace_name}, що має опис + - %{trace_description} та без теґів gpx_failure: + hi: Привіт, %{to_user}, failed_to_import: 'не вдалось імпортувати. Трапилась помилка:' + more_info_html: Докладна інформація про проблеми імпорту GPX та шляхи їх вирішення + знаходяться за посиланням %{url}. subject: '[OpenStreetMap] Збій імпорту GPX' gpx_success: hi: Привіт, %{to_user}, @@ -1392,14 +1582,20 @@ uk: %{place}.' commented_note: '%{commenter} розв’язав нотатку, прокоментовану вами, що знаходиться біля %{place}.' + commented_note_html: '%{commenter} розв’язав нотатку, прокоментовану вами, + що знаходиться біля %{place}.' reopened: subject_own: '[OpenStreetMap] %{commenter} поновив одну з ваших нотаток' subject_other: '[OpenStreetMap] %{commenter} поновив нотатку до якови ви виявили зацікавленість' your_note: '%{commenter} поновив одну з ваших нотаток на мапі біля %{place}.' + your_note_html: '%{commenter} поновив одну з ваших нотаток на мапі біля %{place}.' commented_note: '%{commenter} поновив нотатку, прокоментовану вами, що знаходиться біля %{place}.' + commented_note_html: '%{commenter} поновив нотатку, прокоментовану вами, що + знаходиться біля %{place}.' details: Докладніше про нотатку %{url}. + details_html: Докладніше про нотатку %{url}. changeset_comment_notification: hi: Привіт %{to_user}, greeting: Привіт, @@ -1410,21 +1606,57 @@ uk: якого ви залишали свій коментар' your_changeset: '%{commenter} залишив коментар у %{time} до одного з ваших наборів змін' + your_changeset_html: '%{commenter} залишив коментар %{time} до одного з ваших + наборів змін' commented_changeset: '%{commenter} залишив коментар у %{time} до набору змін, що ви переглядаєте, створений %{changeset_author}' + commented_changeset_html: '%{commenter} залишив коментар %{time} до набору + змін, за яким ви стежите, створений %{changeset_author}' partial_changeset_with_comment: з коментарем '%{changeset_comment}' partial_changeset_with_comment_html: з коментарем '%{changeset_comment}' partial_changeset_without_comment: без коментарів details: |2- Більше деталей про зміни, які можуть бути знайдені в %{url}. + details_html: Більше деталей про набір змін можна знайти за посиланням - %{url}. unsubscribe: Щоб відмовитись від отримання повідомлень для цього набору змін, перейдіть за посиланням %{url} й натисніть кнопку „Відписатись“. + unsubscribe_html: Щоб відмовитись від отримання повідомлень для цього набору + змін, перейдіть за посиланням %{url} й натисніть кнопку «Відписатись». + confirmations: + confirm: + heading: Перевірте вашу електронну пошту! + introduction_1: Ми надіслали вам підтвердження електронною поштою. + introduction_2: Підтвердіть ваш обліковий запис, натиснувши на посилання в листі, + і ви зможете почати картографувати. + press confirm button: Натисніть на кнопку підтвердження нижче, щоб активувати + ваш профіль. + button: Підтвердити + success: Ваш обліковий запис підтверджено, дякуємо за реєстрацію! + already active: Цей обліковий запис вже підтверджений. + unknown token: Термін дії коду підтвердження вже минув або він не існує. + reconfirm_html: Якщо ви бажаєте, аби ми повторно надіслали ще одне підтвердження + електронною поштою, то натисніть тут. + confirm_resend: + success_html: Ми надіслали на вашу електрону пошту (%{email}) листа для підтвердження + реєстрації, після того як ви натиснете на посиланні в ньому, ви отримаєте + можливість вносити зміни до мапи.

    Якщо ви користуєтесь системою + анти-спаму, що надсилає запити на підтвердження, внесіть до «білого» списку + адресу %{sender}, так як ми не в змозі відповідати на такі запити. + failure: Користувача %{name} не знайдено. + confirm_email: + heading: Підтвердить зміну адреси електронної пошти + press confirm button: Натисніть кнопку підтвердження нижче, щоб підтвердити + вашу нову адресу електронної пошти. + button: Підтвердити + success: Зміну вами адреси електронної пошти підтверджено! + failure: Електронна адреса вже була підтверджена цим посиланням. + unknown_token: Цей код підтвердження недійсний або просторочений. messages: inbox: title: Вхідні my_inbox: Мої вхідні - outbox: вихідні + my_outbox: Вихідні messages: У вас %{new_messages} і %{old_messages} new_messages: one: '%{count} нове повідомлення' @@ -1434,7 +1666,8 @@ uk: old_messages: one: '%{count} старе повідомлення' few: '%{count} старих повідомлення' - other: '%{count} старих повідомлень' + many: '%{count} старих повідомлень' + other: "" from: Від subject: Тема date: Дата @@ -1462,12 +1695,13 @@ uk: body: Вибачте, але повідомлення з цим ідентифікатором не існує. outbox: title: Вихідні - my_inbox_html: Мої %{inbox_link} - inbox: вхідні - outbox: вихідні + my_inbox: Вхідні + my_outbox: Вихідні messages: one: У вас %{count} надіслане повідомлення - other: У вас %{count} надісланих повідомлень + few: У вас %{count} надісланих повідомлення + many: У вас %{count} надісланих повідомлень + other: "" to: Кому subject: Тема date: Дата @@ -1498,12 +1732,93 @@ uk: as_unread: Повідомлення позначене як непрочитане destroy: destroyed: Повідомлення вилучено + passwords: + lost_password: + title: Відновлення пароля + heading: Забули пароль? + email address: 'Адреса ел. пошти:' + new password button: Вишліть мені новий пароль + help_text: Введіть адресу вашої електронної пошти, який ви використовували для + реєстрації, і ми надішлемо інструкції, як можна відновити ваш пароль. + notice email on way: Шкода, що ви втратили пароль :-( але нічого, скоро прийде + лист і ви зможете перевстановити свій пароль. + notice email cannot find: На жаль, така адреса не зареєстрована. + reset_password: + title: Перевстановлення пароля + heading: Перевстановлення паролю для %{user} + reset: Перевстановити пароль + flash changed: Ваш пароль було змінено. + flash token bad: Неможливо знайти такий код підтвердження, перевірте посилання. + sessions: + new: + title: Ласкаво просимо + heading: Ласкаво просимо + email or username: 'Ел. пошта або ім''я користувача:' + password: 'Пароль:' + openid_html: '%{logo} OpenID:' + remember: Запам’ятати мене + lost password link: Забули пароль? + login_button: Увійти + register now: Зареєструйтеся зараз + with username: 'Вже є обліковий запис OpenStreetMap? Будь ласка, введіть ваше + ім''я користувача та пароль:' + with external: 'Або використовуйте, облікові записи з інших ресурсів:' + new to osm: Вперше на OpenStreetMap? + to make changes: Щоб вносити зміни до даних OpenStreetMap, ви повинні мати обліковий + запис. + create account minute: Створити обліковий запис. Це займе всього хвилину. + no account: Не маєте облікового запису? + account not active: Вибачте, ваш обліковий запис ще не активовано.
    Щоб + його активувати, будь ласка, перевірте вашу поштову скриньку та натисніть + на посилання в листі з проханням про підтвердження, або + запросіть нове підтвердження по електронній пошті. + account is suspended: На жаль, ваш обліковий запис був заблокований через підозрілу + діяльність.
    Будь ласка, зв'яжіться з адміністратором, + якщо ви маєте заперечення. + auth failure: Вибачте, вхід з цими ім'ям або паролем неможливий. + openid_logo_alt: Увійти з допомогою OpenID + auth_providers: + openid: + title: Увійти за допомогою OpenID + alt: Увійти за допомогою OpenID URL + google: + title: Увійти через Google + alt: Увійти через Google OpenID + facebook: + title: Увійти з Facebook + alt: Увійти з облікового запису Facebook + windowslive: + title: Увійти з Windows Live + alt: Увійти з облікового запису Windows Live + github: + title: Увійти через GitHub + alt: Вхід через обліковий запис GitHub + wikipedia: + title: Увійти через Вікіпедію + alt: Вхід через обліковий запис у Вікіпедії + yahoo: + title: Увійти з облікового запису Yahoo + alt: Увійти з Yahoo OpenID + wordpress: + title: Увійти через Wordpress + alt: Увійти через Wordpress OpenID + aol: + title: Увійти через AOL + alt: Увійти через AOL OpenID + destroy: + title: Вийти + heading: Вийти з OpenStreetMap + logout_button: Вийти shared: markdown_help: title_html: Оброблено kramdown headings: Заголовки + heading: Заголовок subheading: Підзаголовок + unordered: Невпорядкований список ordered: Впорядкований список + first: Перший елемент + second: Другий елемент link: Посилання text: Текст image: Зображення @@ -1794,6 +2109,13 @@ uk: url: http://wiki.openstreetmap.org/ title: OpenStreetMap Wiki description: Перегляньте вікі щоб отримати докладу документацію OpenStreetMap. + potlatch: + removed: Вашим типовим редактором зазначено Potlatch. Через припинення роботи + Adobe Flash Player він більше не доступний для використання у вебоглядачі. + desktop_html: Ви можете використовувати Potlatch завантаживши + його у вигляді застосунку для Mac чи Windows. + id_html: Або ж ви можете встановити типовим редактором iD, який працює у вебоглядачі, + так само як до цього працював Potlatch. Змініть ваші налаштування. sidebar: search_results: Результати пошуку close: Закрити @@ -1878,23 +2200,6 @@ uk: bicycle_shop: Веломагазин bicycle_parking: Велопарковка toilets: Туалети - richtext_area: - edit: Редагувати - preview: Попередній перегляд - markdown_help: - title_html: Оброблено kramdown - headings: Заголовки - heading: Заголовок - subheading: Підзаголовок - unordered: Невпорядкований список - ordered: Впорядкований список - first: Перший елемент - second: Другий елемент - link: Посилання - text: Текст - image: Зображення - alt: Alt текст - url: URL welcome: title: Ласкаво просимо! introduction_html: Ласкаво просимо до OpenStreetMap, безкоштовної та доступної @@ -1918,7 +2223,7 @@ uk: використовувати для редагування мапи. node_html: Точка — це позначка на мапі, на кшталт ресторану або дерева. - way_html: Лінія — це відкрита або замкнена ламана на кшталт + way_html: Лінія — це звичайна або замкнена ламана на кшталт дороги, струмка, озера або будівлі. tag_html: Теґ — одиниця опису точки чи лінії на кшталт назви ресторану або обмеження швидкості на дорозі. @@ -1972,9 +2277,10 @@ uk: few: '%{count} ваших треки очікують завантаження на сервер. Будь ласка, дочекайтесь завершення їх завантаження перед завантаженням на сервер інших треків, що дозволить іншим користувачам також надіслати свої треки.' - other: '%{count} ваших треків очікують завантаження на сервер. Будь ласка, + many: '%{count} ваших треків очікують завантаження на сервер. Будь ласка, дочекайтесь завершення їх завантаження перед завантаженням на сервер інших треків, що дозволить іншим користувачам також надіслати свої треки.' + other: "" edit: cancel: Скасувати title: Редагування треку %{name} @@ -2012,12 +2318,13 @@ uk: trace: pending: ОЧІКУЄ count_points: - one: 1 точка - other: '%{count} точки' + one: '%{count} точка' + few: '%{count} точки' + many: '%{count} точок' + other: "" more: більше trace_details: Показати дані треку view_map: Перегляд Мапи - edit: редагувати edit_map: Редагувати Мапу public: ЗАГАЛЬНИЙ identifiable: ІДЕНТИФІКОВУВАНИЙ @@ -2025,7 +2332,6 @@ uk: trackable: ВІДСТЕЖУВАННИЙ by: 'Автор:' in: у - map: мапа index: public_traces: Загальнодоступні GPS-треки my_traces: Мої GPS-треки @@ -2053,7 +2359,9 @@ uk: description: description_with_count: one: Файл GPX з %{count} точкою від %{user} - other: Файл GPX з %{count} точками від %{user} + few: Файл GPX з %{count} точками від %{user} + many: Файл GPX з %{count} точками від %{user} + other: "" description_without_count: GPX файл від %{user} application: permission_denied: Вибачте, у вас недостатньо прав для виконання цієї дії. @@ -2139,81 +2447,6 @@ uk: destroy: flash: Знищено реєстрацію клієнтського застосунку users: - login: - title: Ласкаво просимо - heading: Ласкаво просимо - email or username: 'Ел. пошта або ім''я користувача:' - password: 'Пароль:' - openid_html: '%{logo} OpenID:' - remember: Запам’ятати мене - lost password link: Забули пароль? - login_button: Увійти - register now: Зареєструйтеся зараз - with username: 'Вже є обліковий запис OpenStreetMap? Будь ласка, введіть ваше - ім''я користувача та пароль:' - with external: 'Або використовуйте, облікові записи з інших ресурсів:' - new to osm: Вперше на OpenStreetMap? - to make changes: Щоб вносити зміни до даних OpenStreetMap, ви повинні мати обліковий - запис. - create account minute: Створити обліковий запис. Це займе всього хвилину. - no account: Не маєте облікового запису? - account not active: Вибачте, ваш обліковий запис ще не активовано.
    Щоб - його активувати, будь ласка, перевірте вашу поштову скриньку та натисніть - на посилання в листі з проханням про підтвердження, або - запросіть нове підтвердження по електронній пошті. - account is suspended: На жаль, ваш обліковий запис був заблокований через підозрілу - діяльність.
    Будь ласка, зв'яжіться з адміністратором, - якщо ви маєте заперечення. - auth failure: Вибачте, вхід з цими ім'ям або паролем неможливий. - openid_logo_alt: Увійти з допомогою OpenID - auth_providers: - openid: - title: Увійти за допомогою OpenID - alt: Увійти за допомогою OpenID URL - google: - title: Увійти через Google - alt: Увійти через Google OpenID - facebook: - title: Увійти з Facebook - alt: Увійти з облікового запису Facebook - windowslive: - title: Увійти з Windows Live - alt: Увійти з облікового запису Windows Live - github: - title: Увійти через GitHub - alt: Вхід через обліковий запис GitHub - wikipedia: - title: Увійти через Вікіпедію - alt: Вхід через обліковий запис у Вікіпедії - yahoo: - title: Увійти з облікового запису Yahoo - alt: Увійти з Yahoo OpenID - wordpress: - title: Увійти через Wordpress - alt: Увійти через Wordpress OpenID - aol: - title: Увійти через AOL - alt: Увійти через AOL OpenID - logout: - title: Вийти - heading: Вийти з OpenStreetMap - logout_button: Вийти - lost_password: - title: Відновлення пароля - heading: Забули пароль? - email address: 'Адреса ел. пошти:' - new password button: Вишліть мені новий пароль - help_text: Введіть адресу вашої електронної пошти, який ви використовували для - реєстрації, і ми надішлемо інструкції, як можна відновити ваш пароль. - notice email on way: Шкода, що ви втратили пароль :-( але нічого, скоро прийде - лист і ви зможете перевстановити свій пароль. - notice email cannot find: На жаль, така адреса не зареєстрована. - reset_password: - title: Перевстановлення пароля - heading: Перевстановлення паролю для %{user} - reset: Перевстановити пароль - flash changed: Ваш пароль було змінено. - flash token bad: Неможливо знайти такий код підтвердження, перевірте посилання. new: title: Реєстрація no_auto_account_create: На жаль, наразі ми не в змозі створити для вас обліковий @@ -2351,13 +2584,13 @@ uk: account: title: Редагувати обліковий запис my settings: Налаштування - current email address: 'Поточна адреса електронної пошти:' - external auth: 'Зовнішня автентифікація:' + current email address: Поточна адреса електронної пошти + external auth: Зовнішня автентифікація openid: link: http://wiki.openstreetmap.org/wiki/Uk:OpenID link text: що це? public editing: - heading: 'Загальнодоступне редагування:' + heading: Загальнодоступне редагування enabled: Увімкнено. Не анонім і можна редагувати дані. enabled link: http://wiki.openstreetmap.org/wiki/Uk:Anonymous_edits enabled link text: що це? @@ -2374,7 +2607,7 @@ uk: з вами стане можливо.
  • Ця дія не має зворотної сили, а всі нові користувачі зазвичай тепер доступні для зв’язку.
  • contributor terms: - heading: 'Умови Співпраці:' + heading: Умови Співпраці agreed: Ви погодилися на нові Умови Співпраці. not yet agreed: Ви ще не погодилися на нові Умови Співпраці. review link text: Перейдіть за цим посиланням у зручний для Вас спосіб, щоб @@ -2383,10 +2616,11 @@ uk: Суспільного Надбання. link: http://wiki.openstreetmap.org/wiki/Uk:Open_Database_License/Contributor_Terms link text: що це? - image: 'Зображення:' + image: Зображення gravatar: gravatar: Використовувати Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: Про Gravatar. disabled: Gravatar вимкнено. enabled: Показ Вашого Gravatar'а увімкнено. new image: Додати зображення @@ -2394,7 +2628,7 @@ uk: delete image: Видалити поточне зображення replace image: Замінити поточне зображення image size hint: (найкраще підходять квадратні зображення, принаймні 100х100) - home location: 'Основне місце розташування:' + home location: Основне місце розташування no home location: Ви не позначили своє основне місце розташування. update home location on click: Оновлювати моє місце розташування, коли я клацаю на мапу? @@ -2404,34 +2638,6 @@ uk: flash update success confirm needed: Інформацію про користувача успішно оновлено. Перевірте свою електронну пошту, щоб підтвердити вашу нову адресу. flash update success: Інформацію про користувача успішно оновлено. - confirm: - heading: Перевірте вашу електронну пошту! - introduction_1: Ми надіслали вам підтвердження електронною поштою. - introduction_2: Підтвердіть ваш обліковий запис, натиснувши на посилання в листі, - і ви зможете почати картографувати. - press confirm button: Натисніть на кнопку підтвердження нижче, щоб активувати - ваш профіль. - button: Підтвердити - success: Ваш обліковий запис підтверджено, дякуємо за реєстрацію! - already active: Цей обліковий запис вже підтверджений. - unknown token: Термін дії коду підтвердження вже минув або він не існує. - reconfirm_html: Якщо ви бажаєте, аби ми повторно надіслали ще одне підтвердження - електронною поштою, то натисніть тут. - confirm_resend: - success_html: Ми надіслали на вашу електрону пошту (%{email}) листа для підтвердження - реєстрації, після того як ви натиснете на посиланні в ньому, ви отримаєте - можливість вносити зміни до мапи.

    Якщо ви користуєтесь системою - анти-спаму, що надсилає запити на підтвердження, внесіть до «білого» списку - адресу %{sender}, так як ми не в змозі відповідати на такі запити. - failure: Користувача %{name} не знайдено. - confirm_email: - heading: Підтвердить зміну адреси електронної пошти - press confirm button: Натисніть кнопку підтвердження нижче, щоб підтвердити - вашу нову адресу електронної пошти. - button: Підтвердити - success: Зміну вами адреси електронної пошти підтверджено! - failure: Електронна адреса вже була підтверджена цим посиланням. - unknown_token: Цей код підтвердження недійсний або просторочений. set_home: flash success: Ваше місце розташування збережено go_public: @@ -2549,22 +2755,28 @@ uk: hours: one: '%{count} година' few: '%{count} години' - other: '%{count} годин' + many: '%{count} годин' + other: "" days: one: 1 день few: '%{count} дні' - other: '%{count} днів' + many: '%{count} днів' + other: "" weeks: one: 1 тиждень few: '%{count} тижні' - other: '%{count} тижнів' + many: '%{count} тижнів' + other: "" months: - one: 1 місяць - few: '%{count} місячи' - other: '%{count} місяців' + one: '%{count} місяць' + few: '%{count} місяці' + many: '%{count} місяців' + other: "" years: - one: 1 рік - other: '%{count} роки' + one: '%{count} рік' + few: '%{count} роки' + many: '%{count} років' + other: "" blocks_on: title: Блокування для %{name} heading_html: Перелік блокувань користувача %{name} @@ -2649,12 +2861,12 @@ uk: one: Ви перебуваєте за один метр від цієї точки few: Ви перебуваєте за %{count} метри від цієї точки many: Ви перебуваєте за %{count} метрів від цієї точки - other: Ви перебуваєте за %{count} метрів від цієї точки + other: "" feetPopup: one: Ви перебуваєте за %{count} фут від цієї точки few: Ви перебуваєте за %{count} фути від цієї точки many: Ви перебуваєте за %{count} футів від цієї точки - other: Ви перебуваєте за %{count} футів від цієї точки + other: "" base: standard: Стандартний cycle_map: ВелоМапа diff --git a/config/locales/vi.yml b/config/locales/vi.yml index b651c90cd..c39e90f60 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -133,19 +133,24 @@ vi: body: Nội dung recipient: Người nhận redaction: + title: Tiêu đề description: Miêu tả report: category: Chọn lý do cho báo cáo của bạn details: Vui lòng cung cấp thêm chi tiết về vấn đề (yêu cầu). user: + auth_provider: Nhà cung cấp Xác thực + auth_uid: Định dạng Duy nhất Xác thực email: Thư điện tử - new_email: 'Địa chỉ Thư điện tử Mới:' + email_confirmation: Xác nhận Thư điện tử + new_email: Địa chỉ Thư điện tử Mới active: Tích cực display_name: Tên Hiển thị - description: Miêu tả - home_lat: 'Vĩ độ:' - home_lon: 'Kinh độ:' - languages: Ngôn ngữ + description: Miêu tả trong Hồ sơ + home_lat: Vĩ độ + home_lon: Kinh độ + languages: Ngôn ngữ Ưu tiên + preferred_editor: Trình vẽ Ưa thích pass_crypt: Mật khẩu pass_crypt_confirmation: Xác nhận mật khẩu help: @@ -157,6 +162,10 @@ vi: hãy tránh thuật ngữ chuyên môn vì người dùng có thể không rành. needs_view: Người dùng có phải cần đăng nhập trước khi bỏ cấm được không? user: + email_confirmation: Địa chỉ thư điện tử của bạn không được hiển thị công khai. + Xem thêm chi tiết trong quy định quyền riêng tư của chúng tôi. new_email: (không lúc nào hiện công khai) datetime: distance_in_words_ago: @@ -912,6 +921,7 @@ vi: cape: Mũi đất cave_entrance: Cửa vào Hang cliff: Vách đá + coastline: Bờ biển crater: Miệng Núi dune: Cồn cát fell: Đồi Cằn cỗi @@ -1467,11 +1477,38 @@ vi: “Không theo dõi”. unsubscribe_html: Để ngừng nhận các thông báo về bộ thay đổi này, mở %{url} và bấm “Không theo dõi”. + confirmations: + confirm: + heading: Hãy kiểm tra hộp thư điện tử! + introduction_1: Chúng tôi đã gửi cho bạn một thư điện tử xác nhận. + introduction_2: Hãy xác nhận tài khoản của bạn dùng liên kết trong thư điện + tử để bắt đầu đóng góp vào bản đồ. + press confirm button: Bấm nút Xác nhận ở dưới để xác nhận tài khoản. + button: Xác nhận + success: Đã xác nhận tài khoản của bạn. Cám ơn bạn đã mở tài khoản! + already active: Tài khoản này đã được xác nhận rồi. + unknown token: Dấu hiệu xác nhận này đã hết hạn hoặc không tồn tại. + reconfirm_html: Nhấn vào đây để gửi thư điện tử xác + nhận lần nữa. + confirm_resend: + success_html: Chúng tôi đã gửi thư xác nhận đến %{email}; ngay khi xác nhận + tài khoản, bạn sẽ có thể vẽ bản đồ.

    Nếu hộp thư của bạn gửi thư + yêu cầu xác nhận để chống thư rác, xin chắc chắn thêm %{sender} vào danh sách + trắng, vì chúng tôi không thể trả lời những yêu cầu xác nhận này. + failure: Không tìm thấy người dùng %{name}. + confirm_email: + heading: Xác nhận thay đổi địa chỉ thư điện tử + press confirm button: Bấm nút Xác nhận ở dưới để xác nhận địa chỉ thư điện tử + mới. + button: Xác nhận + success: Đã xác nhận địa chỉ thư điện tử mới! + failure: Một địa chỉ thư điện tử đã được xác nhận dùng dấu hiệu này. + unknown_token: Dấu hiệu xác nhận này đã hết hạn hoặc không tồn tại. messages: inbox: title: Hộp thư my_inbox: Hộp thư đến - outbox: đã gửi + my_outbox: Hộp thư gửi messages: Bạn có %{new_messages} và %{old_messages} new_messages: '%{count} thư mới' old_messages: '%{count} thư cũ' @@ -1501,9 +1538,8 @@ vi: body: Rất tiếc, không có thư nào với ID đó. outbox: title: Hộp thư đã gửi - my_inbox_html: Hộp %{inbox_link} - inbox: thư đến - outbox: thư đã gửi + my_inbox: Hộp thư đến + my_outbox: Hộp thử gửi messages: Bạn có %{count} thư đã gửi to: Tới subject: Tiêu đề @@ -1535,6 +1571,81 @@ vi: as_unread: Thư chưa đọc destroy: destroyed: Đã xóa thư + passwords: + lost_password: + title: Quên mất mật khẩu + heading: Quên mất Mật khẩu? + email address: 'Địa chỉ Thư điện tử:' + new password button: Đặt lại mật khẩu + help_text: Nhập địa chỉ thư điện tử mà bạn đã dùng để mở tài khoản, rồi chúng + tôi sẽ gửi liên kết cho địa chỉ đó để cho bạn đặt lại mật khẩu. + notice email on way: Đáng tiếc là bạn quên nó. :-( May là thư điện tử sắp tới + để bạn đặt nó lại. + notice email cannot find: Rất tiếc, không tìm thấy địa chỉ thư điện tử. + reset_password: + title: Đặt lại mật khẩu + heading: Đặt lại Mật khẩu của %{user} + reset: Đặt lại Mật khẩu + flash changed: Mật khẩu của bạn đã được thay đổi. + flash token bad: Không tìm thấy dấu hiệu đó. Có lẽ kiểm tra URL? + sessions: + new: + title: Đăng nhập + heading: Đăng nhập + email or username: 'Địa chỉ Thư điện tử hoặc Tên người dùng:' + password: 'Mật khẩu:' + openid_html: '%{logo} OpenID:' + remember: Nhớ tôi + lost password link: Quên mất Mật khẩu? + login_button: Đăng nhập + register now: Mở tài khoản ngay + with username: 'Đã có tài khoản OpenStreetMap? Hãy đăng nhập với tên người dùng + và mật khẩu của bạn:' + with external: 'Hoặc đăng nhập qua dịch vụ bên thứ ba:' + new to osm: Mới đến OpenStreetMap? + to make changes: Bạn phải có tài khoản để thay đổi dữ liệu OpenStreetMap. + create account minute: Chỉ mất một phút để mở tài khoản mới. + no account: Chưa có tài khoản? + account not active: Rất tiếc, tài khoản của bạn chưa được kích hoạt.
    Xin + hãy nhấn chuột vào liên kết trong thư điện tử xác nhận tài khoản để kích hoạt + tài khoản, hoặc yêu cầu thư xác nhận mới. + account is suspended: Rất tiếc, tài khoản của bạn đã bị đình chỉ vì hoạt động + bị nghi ngờ.
    Xin vui lòng liên lạc với webmaster + để thảo luận về điều này. + auth failure: Rất tiếc, không thể đăng nhập với những chi tiết đó. + openid_logo_alt: Đăng nhập dùng OpenID + auth_providers: + openid: + title: Đăng nhập qua OpenID + alt: Đăng nhập dùng URL OpenID + google: + title: Đăng nhập qua Google + alt: Đăng nhập dùng OpenID của Google + facebook: + title: Đăng nhập qua Facebook + alt: Đăng nhập dùng tài khoản Facebook + windowslive: + title: Đăng nhập qua Windows Live + alt: Đăng nhập dùng tài khoản Windows Live + github: + title: Đăng nhập qua GitHub + alt: Đăng nhập dùng tài khoản GitHub + wikipedia: + title: Đăng nhập qua Wikipedia + alt: Đăng nhập qua Tài khoản Wikipedia + yahoo: + title: Đăng nhập qua Yahoo! + alt: Đăng nhập dùng OpenID của Yahoo! + wordpress: + title: Đăng nhập qua WordPress + alt: Đăng nhập dùng OpenID của WordPress + aol: + title: Đăng nhập qua AOL + alt: Đăng nhập dùng OpenID của AOL + destroy: + title: Đăng xuất + heading: Đăng xuất OpenStreetMap + logout_button: Đăng xuất shared: markdown_help: title_html: Trang trí dùng cú pháp kramdown @@ -1930,23 +2041,6 @@ vi: bicycle_shop: Tiệm xe đạp bicycle_parking: Chỗ đậu xe đạp toilets: Vệ sinh - richtext_area: - edit: Sửa đổi - preview: Xem trước - markdown_help: - title_html: Trang trí dùng cú pháp kramdown - headings: Đề mục - heading: Đề mục - subheading: Đề mục con - unordered: Danh sách không đánh số - ordered: Danh sách đánh số - first: Khoản mục đầu tiên - second: Khoản mục sau - link: Liên kết - text: Văn bản - image: Hình ảnh - alt: Văn bản thay thế - url: URL welcome: title: Hoan nghênh! introduction_html: Chào mừng bạn đã đến OpenStreetMap, bản đồ thế giới có dữ @@ -2062,7 +2156,6 @@ vi: more: thêm trace_details: Xem Chi tiết Tuyến đường view_map: Xem Bản đồ - edit: sửa đổi edit_map: Sửa đổi Bản đồ public: CÔNG KHAI identifiable: NHẬN RA ĐƯỢC @@ -2070,7 +2163,6 @@ vi: trackable: THEO DÕI ĐƯỢC by: bởi in: trong - map: bản đồ index: public_traces: Tuyến đường GPS công khai my_traces: Tuyên đường GPS của tôi @@ -2183,79 +2275,6 @@ vi: destroy: flash: Đã xóa đăng ký trình khách users: - login: - title: Đăng nhập - heading: Đăng nhập - email or username: 'Địa chỉ Thư điện tử hoặc Tên người dùng:' - password: 'Mật khẩu:' - openid_html: '%{logo} OpenID:' - remember: Nhớ tôi - lost password link: Quên mất Mật khẩu? - login_button: Đăng nhập - register now: Mở tài khoản ngay - with username: 'Đã có tài khoản OpenStreetMap? Hãy đăng nhập với tên người dùng - và mật khẩu của bạn:' - with external: 'Hoặc đăng nhập qua dịch vụ bên thứ ba:' - new to osm: Mới đến OpenStreetMap? - to make changes: Bạn phải có tài khoản để thay đổi dữ liệu OpenStreetMap. - create account minute: Chỉ mất một phút để mở tài khoản mới. - no account: Chưa có tài khoản? - account not active: Rất tiếc, tài khoản của bạn chưa được kích hoạt.
    Xin - hãy nhấn chuột vào liên kết trong thư điện tử xác nhận tài khoản để kích hoạt - tài khoản, hoặc yêu cầu thư xác nhận mới. - account is suspended: Rất tiếc, tài khoản của bạn đã bị đình chỉ vì hoạt động - bị nghi ngờ.
    Xin vui lòng liên lạc với webmaster - để thảo luận về điều này. - auth failure: Rất tiếc, không thể đăng nhập với những chi tiết đó. - openid_logo_alt: Đăng nhập dùng OpenID - auth_providers: - openid: - title: Đăng nhập qua OpenID - alt: Đăng nhập dùng URL OpenID - google: - title: Đăng nhập qua Google - alt: Đăng nhập dùng OpenID của Google - facebook: - title: Đăng nhập qua Facebook - alt: Đăng nhập dùng tài khoản Facebook - windowslive: - title: Đăng nhập qua Windows Live - alt: Đăng nhập dùng tài khoản Windows Live - github: - title: Đăng nhập qua GitHub - alt: Đăng nhập dùng tài khoản GitHub - wikipedia: - title: Đăng nhập qua Wikipedia - alt: Đăng nhập qua Tài khoản Wikipedia - yahoo: - title: Đăng nhập qua Yahoo! - alt: Đăng nhập dùng OpenID của Yahoo! - wordpress: - title: Đăng nhập qua WordPress - alt: Đăng nhập dùng OpenID của WordPress - aol: - title: Đăng nhập qua AOL - alt: Đăng nhập dùng OpenID của AOL - logout: - title: Đăng xuất - heading: Đăng xuất OpenStreetMap - logout_button: Đăng xuất - lost_password: - title: Quên mất mật khẩu - heading: Quên mất Mật khẩu? - email address: 'Địa chỉ Thư điện tử:' - new password button: Đặt lại mật khẩu - help_text: Nhập địa chỉ thư điện tử mà bạn đã dùng để mở tài khoản, rồi chúng - tôi sẽ gửi liên kết cho địa chỉ đó để cho bạn đặt lại mật khẩu. - notice email on way: Đáng tiếc là bạn quên nó. :-( May là thư điện tử sắp tới - để bạn đặt nó lại. - notice email cannot find: Rất tiếc, không tìm thấy địa chỉ thư điện tử. - reset_password: - title: Đặt lại mật khẩu - heading: Đặt lại Mật khẩu của %{user} - reset: Đặt lại Mật khẩu - flash changed: Mật khẩu của bạn đã được thay đổi. - flash token bad: Không tìm thấy dấu hiệu đó. Có lẽ kiểm tra URL? new: title: Mở tài khoản no_auto_account_create: Rất tiếc, chúng ta hiện không có khả năng tạo ra tài @@ -2390,13 +2409,13 @@ vi: account: title: Chỉnh sửa tài khoản my settings: Tùy chọn - current email address: 'Địa chỉ Thư điện tử Hiện tại:' - external auth: 'Xác minh Bên ngoài:' + current email address: Địa chỉ Thư điện tử Hiện tại + external auth: Xác minh Bên ngoài openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: đây là gì? public editing: - heading: 'Sửa đổi công khai:' + heading: Sửa đổi công khai enabled: Kích hoạt. Không vô danh và có thể sửa đổi dữ liệu. enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits?uselang=vi enabled link text: đây là gì? @@ -2412,7 +2431,7 @@ vi:
  • Không thể lùi lại tác vụ này, và mọi người dùng mới hiện là người dùng công khai theo mặc định.
  • contributor terms: - heading: 'Các Điều khoản Đóng góp:' + heading: Các Điều khoản Đóng góp agreed: Bạn đã đồng ý với các Điều khoản Đóng góp mới. not yet agreed: Bạn chưa đồng ý với các Điều khoản Đóng góp mới. review link text: Xin vui lòng theo liên kết này khi nào có thì giờ để đọc @@ -2421,10 +2440,11 @@ vi: phạm vi công cộng. link: https://wiki.osmfoundation.org/wiki/Licence/Contributor_Terms?uselang=vi link text: đây là gì? - image: 'Hình:' + image: Hình gravatar: gravatar: Sá»­ dụng Gravatar link: https://wiki.openstreetmap.org/wiki/Gravatar?uselang=vi + what_is_gravatar: Gravatar là gì? disabled: Hình Gravatar cá»§a bạn đã bị tắt. enabled: Hình Gravatar cá»§a bạn đã bị kích hoạt. new image: Thêm hình @@ -2432,7 +2452,7 @@ vi: delete image: Xóa hình hiện dùng replace image: Thay hình hiện dùng image size hint: (hình vuông ít nhất 100×100 điểm ảnh là tốt nhất) - home location: 'Vị trí Nhà:' + home location: Vị trí Nhà no home location: Bạn chưa định vị trí nhà. update home location on click: Cập nhật vị trí nhà khi tôi nhấn chuột vào bản đồ? @@ -2442,32 +2462,6 @@ vi: flash update success confirm needed: Đã cập nhật thông tin cá nhân thành công. Kiểm tra thư điện tá»­ xác nhận địa chỉ thư điện tá»­ mới. flash update success: Đã cập nhật thông tin cá nhân thành công. - confirm: - heading: Hãy kiểm tra hộp thư điện tá»­! - introduction_1: Chúng tôi đã gá»­i cho bạn một thư điện tá»­ xác nhận. - introduction_2: Hãy xác nhận tài khoản cá»§a bạn dùng liên kết trong thư điện - tá»­ để bắt đầu đóng góp vào bản đồ. - press confirm button: Bấm nút Xác nhận ở dưới để xác nhận tài khoản. - button: Xác nhận - success: Đã xác nhận tài khoản cá»§a bạn. Cám Æ¡n bạn đã mở tài khoản! - already active: Tài khoản này đã được xác nhận rồi. - unknown token: Dấu hiệu xác nhận này đã hết hạn hoặc không tồn tại. - reconfirm_html: Nhấn vào đây để gá»­i thư điện tá»­ xác - nhận lần nữa. - confirm_resend: - success_html: Chúng tôi đã gá»­i thư xác nhận đến %{email}; ngay khi xác nhận - tài khoản, bạn sẽ có thể vẽ bản đồ.

    Nếu hộp thư của bạn gửi thư - yêu cầu xác nhận để chống thư rác, xin chắc chắn thêm %{sender} vào danh sách - trắng, vì chúng tôi không thể trả lời những yêu cầu xác nhận này. - failure: Không tìm thấy người dùng %{name}. - confirm_email: - heading: Xác nhận thay đổi địa chỉ thư điện tử - press confirm button: Bấm nút Xác nhận ở dưới để xác nhận địa chỉ thư điện tử - mới. - button: Xác nhận - success: Đã xác nhận địa chỉ thư điện tử mới! - failure: Một địa chỉ thư điện tử đã được xác nhận dùng dấu hiệu này. - unknown_token: Dấu hiệu xác nhận này đã hết hạn hoặc không tồn tại. set_home: flash success: Đã lưu vị trí nhà thành công go_public: @@ -2690,7 +2684,7 @@ vi: cycle_map: Bản đồ Xe đạp transport_map: Bản đồ Giao thông hot: Nhân đạo - opnvkarte: Thẻ giao thông công cộng + opnvkarte: ÖPNVKarte layers: header: Lớp Bản đồ notes: Ghi chú Bản đồ diff --git a/config/locales/yi.yml b/config/locales/yi.yml index 9e98c2279..9a029a598 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -91,11 +91,17 @@ yi: export: עקספארט data: דאטן export_data: עקספארטירן דאטן + confirmations: + confirm: + heading: קאנטראלירט אײַער ע־פאסט! messages: message_summary: destroy_button: אויסמעקן sent_message_summary: destroy_button: אויסמעקן + sessions: + new: + password: 'פאַסווארט:' site: export: export_button: עקספארט @@ -107,15 +113,11 @@ yi: trace: public: עפֿנטלעך users: - login: - password: 'פאַסווארט:' new: title: אײַנשרייבן continue: אײַנשרייבן terms: legale_select: 'וואוין־לאנד:' - confirm: - heading: קאנטראלירט אײַער ע־פאסט! javascripts: share: image: בילד diff --git a/config/locales/yo.yml b/config/locales/yo.yml index 83d9812e4..28aba4c39 100644 --- a/config/locales/yo.yml +++ b/config/locales/yo.yml @@ -48,6 +48,21 @@ yo: messages: show: title: Ka message + passwords: + lost_password: + title: lost password + new password button: Fi ọ̀rọ̀ìpamọ́ tuntun ránsẹ́ sí mi + reset_password: + title: ìtúntò ọ̀rọ̀ìpamọ́ + sessions: + new: + title: Wole + heading: Wole + lost password link: Se eh ti san password nu? + account not active: Àforjìn, àkópamọ́ yín kò tí ì bẹ̀rẹ̀ ìṣẹ́ báyìí.
    Ẹ + jọ̀wọ́ ẹ lo àjápọ̀ tó wà nínú e-mail ìmúdájú àkòpamọ́ lati bẹ̀rẹ̀ àkópamọ́ + yín, tàbí kí ẹ tọrọ e-mail ìmúdájú tuntun. + auth failure: Pele, e le wole pelu details yi. site: search: where_am_i: Ni bo ni mo wa? @@ -57,19 +72,6 @@ yo: filename: 'Orúkọ fáìlì:' tags: Tags users: - login: - title: Wole - heading: Wole - lost password link: Se eh ti san password nu? - account not active: Àforjìn, àkópamọ́ yín kò tí ì bẹ̀rẹ̀ ìṣẹ́ báyìí.
    Ẹ - jọ̀wọ́ ẹ lo àjápọ̀ tó wà nínú e-mail ìmúdájú àkòpamọ́ lati bẹ̀rẹ̀ àkópamọ́ - yín, tàbí kí ẹ tọrọ e-mail ìmúdájú tuntun. - auth failure: Pele, e le wole pelu details yi. - lost_password: - title: lost password - new password button: Fi ọ̀rọ̀ìpamọ́ tuntun ránsẹ́ sí mi - reset_password: - title: ìtúntò ọ̀rọ̀ìpamọ́ account: public editing: enabled link: http://wiki.openstreetmap.org/wiki/Disabling_anonymous_edits diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml index 1c128211f..10b4029f0 100644 --- a/config/locales/zh-CN.yml +++ b/config/locales/zh-CN.yml @@ -15,6 +15,8 @@ # Author: Dimension # Author: Duolaimi # Author: Fanjiayi +# Author: Gerongfenh +# Author: Hmgrmb # Author: Hudafu # Author: Hydra # Author: Hzy980512 @@ -23,6 +25,7 @@ # Author: Jienus # Author: Jiwei # Author: Josephine W. +# Author: Ken418 # Author: Koalberry # Author: Lakejason0 # Author: LaoShuBaby @@ -41,6 +44,7 @@ # Author: SinonJZH # Author: StephDC # Author: TianyinLee +# Author: Vikarna # Author: VulpesVulpes825 # Author: WQL # Author: Wong128cn @@ -174,27 +178,35 @@ zh-CN: body: 正文 recipient: 收件人 redaction: + title: 标题 description: 描述 report: category: 选择您举报的原因 details: 请提供一些有关问题的更多详情(必填)。 user: + auth_provider: 验证提供商 + auth_uid: 验证UID email: 电子邮件 - new_email: 新电子邮件地址: + email_confirmation: 电子邮件确认 + new_email: 新电子邮件地址 active: 激活 display_name: 显示名称 - description: 描述 - home_lat: 纬度: - home_lon: 经度: - languages: 语言 + description: 个人资料描述 + home_lat: 纬度 + home_lon: 经度 + languages: 首选语言 + preferred_editor: 首选编辑器 pass_crypt: 密码 pass_crypt_confirmation: 确认密码 help: trace: tagstring: 用逗号分隔 user_block: + reason: 用户被封禁的原因。请尽可能以冷静、合理的态度,尽量详细的说明有关情况,并请记住,该信息将被公开。请牢记,并非所有用户都了解社区的术语,所以请尝试使用较通俗的说法。 needs_view: 在清除这个封禁之前,是否需要用户先登录? user: + email_confirmation: 你的电子邮件地址不会被公开展示,更多信息请查看请我们的隐私政策以获取更多信息。 new_email: (从不公开显示) datetime: distance_in_words_ago: @@ -568,7 +580,7 @@ zh-CN: t-bar: T字形电梯 "yes": 航空 aeroway: - aerodrome: 小型飞机场 + aerodrome: 飞机场 airstrip: 飞机跑道 apron: 停机坪 gate: 登机口 @@ -720,6 +732,7 @@ zh-CN: dormitory: 宿舍 duplex: 双拼住宅 farm: 农场屋 + farm_auxiliary: 辅助农场建筑 garage: 车库 garages: 车库 greenhouse: 温室 @@ -766,6 +779,7 @@ zh-CN: gardener: 园艺工坊 glaziery: 琉璃工坊 handicraft: 手工艺工坊 + hvac: 暖通空调工坊 metal_construction: 金属结构坊 painter: 装修工坊 photographer: 摄影室 @@ -859,6 +873,7 @@ zh-CN: house: 房屋 manor: 庄园 memorial: 纪念碑 + milestone: 历史里程碑 mine: 矿井 mine_shaft: 矿井 monument: 纪念碑 @@ -1009,12 +1024,14 @@ zh-CN: mountain_pass: "yes": 山口 natural: + atoll: 环礁 bare_rock: 裸岩 bay: 湾 beach: 滩 cape: 海岬 cave_entrance: 洞口 cliff: 峭壁 + coastline: 海岸线 crater: 火山口 dune: 沙丘 fell: 费尔地貌 @@ -1032,6 +1049,7 @@ zh-CN: moor: 停泊区 mud: 泥地 peak: 山顶 + peninsula: 半岛 point: 点 reef: 礁 ridge: 山脊 @@ -1079,6 +1097,7 @@ zh-CN: "yes": 办公室 place: allotments: 分配的土地 + archipelago: 群岛 city: 城市 city_block: 城市街区 country: 国家 @@ -1180,9 +1199,11 @@ zh-CN: fishing: 钓鱼用品店 florist: 花店 food: 食品店 + frame: 画框店 funeral_directors: 殡仪馆 furniture: 家具店 garden_centre: 园艺品店 + gas: 加油站 general: 杂货店 gift: 礼品店 greengrocer: 蔬菜水果店 @@ -1294,6 +1315,7 @@ zh-CN: "yes": 航道 admin_levels: level2: 国界 + level3: 大区界 level4: 州界(省界) level5: 地区界(地级市界) level6: 县界 @@ -1463,9 +1485,13 @@ zh-CN: hi: 您好,%{to_user}: header: '%{from_user} 评论了主题为 %{subject} 的 OpenStreetMap 日记文章:' footer: 您也可以通过%{readurl}来读取评论,并且在%{commenturl}来撰写评论或者通过%{replyurl}向作者发送消息 + footer_html: 您也可以通过%{readurl}查看评论,并在%{commenturl}撰写评论或通过%{replyurl}向作者发送消息 message_notification: + subject: '[OpenStreetMap] %{message_title}' hi: 您好,%{to_user}: header: '%{from_user} 已经通过 OpenStreetMap 给您发送了一条主题为 %{subject} 的信息:' + header_html: '%{from_user} 已经通过 OpenStreetMap 给您发送了一条主题为 %{subject} 的信息:' + footer: 您也可以在%{readurl}阅读此消息并在%{replyurl}向作者发送信息 footer_html: 您还可以在%{readurl}阅读这条信息并在%{replyurl}向作者发送信息 friendship_notification: hi: 您好,%{to_user}: @@ -1473,15 +1499,20 @@ zh-CN: had_added_you: '%{user} 已经在 OpenStreetMap 添加您为朋友。' see_their_profile: 您可以在%{userurl}查看他们的个人资料。 see_their_profile_html: 您可以在%{userurl}查看他们的个人资料。 - befriend_them: 您也可以在%{befriendurl}添加他们为朋友。 + befriend_them: 您也可以在 %{befriendurl} 添加他们为朋友。 + befriend_them_html: 您也可以在%{befriendurl}把他们添加为朋友。 gpx_description: + description_with_tags_html: 您的GPX文件 %{trace_name} ,其描述为 %{trace_description} + 并有以下标签: %{tags} description_with_no_tags_html: 似乎您的GPX文件%{trace_name},描述为%{trace_description},没有标签 gpx_failure: + hi: 您好,%{to_user}: failed_to_import: 导入失败。下面是错误信息: import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures subject: '[OpenStreetMap] GPX 导入失败' gpx_success: - loaded_successfully: 成功载入可能 %{possible_points} 点中的 %{trace_points} 点。 + hi: 您好,%{to_user}: + loaded_successfully: 成功载入 %{possible_points} 可能节点中的 %{trace_points} 个。 subject: '[OpenStreetMap] GPX 导入成功' signup_confirm: subject: '[OpenStreetMap] 欢迎加入 OpenStreetMap' @@ -1506,20 +1537,24 @@ zh-CN: subject_own: '[OpenStreetMap] %{commenter} 评论了您的一个注记' subject_other: '[OpenStreetMap] %{commenter} 评论了您感兴趣的一个注记' your_note: '%{commenter} 评论了您在 %{place} 附近的一个注记。' + your_note_html: '%{commenter}评论了您在%{place}附近的一个地图注记。' commented_note: '%{commenter} 评论了您感兴趣的一个地图注记。该注记位于 %{place} 附近。' closed: subject_own: '[OpenStreetMap] %{commenter} 解决了您的一个注记' subject_other: '[OpenStreetMap] %{commenter} 已经解决了一个您感兴趣的注记' your_note: '%{commenter} 解决了您在 %{place} 附近的一个注记。' + your_note_html: '%{commenter} 解决了您在 %{place} 附近的一个注记。' commented_note: '%{commenter} 解决了您感兴趣的一个地图注记。该注记位于 %{place} 附近。' commented_note_html: '%{commenter} 解决了您感兴趣的一个地图注记。该注记位于 %{place} 附近。' reopened: subject_own: '[OpenStreetMap] %{commenter} 重新激活了您的一个注记' subject_other: '[OpenStreetMap] %{commenter} 重新激活了您感兴趣的一个注记' your_note: '%{commenter} 重新激活了您在 %{place} 附近的一个注记。' + your_note_html: '%{commenter} 重新激活了您在 %{place} 附近的一个注记。' commented_note: '%{commenter} 重新激活了您感兴趣的一个地图注记。该注记位于 %{place} 附近。' commented_note_html: '%{commenter} 重新激活了您感兴趣的一个地图注记。该注记位于 %{place} 附近。' details: 更多关于笔记的详细信息可以在%{url}找到。 + details_html: 更多关于笔记的详细信息可以在%{url}找到。 changeset_comment_notification: hi: 您好,%{to_user}: greeting: 您好, @@ -1533,12 +1568,35 @@ zh-CN: partial_changeset_with_comment: 带评论“%{changeset_comment}” partial_changeset_without_comment: 没有评论 details: 更多关于变更集的详细信息可以在 %{url} 找到。 + details_html: 更多有关变更集的详细信息,请参见 %{url}。 unsubscribe: 要从该变更集中退订,请访问%{url},并点击“退订”。 + unsubscribe_html: 要从该变更集中退订,请访问%{url},并点击“退订”。 + confirmations: + confirm: + heading: 检查您的电子邮件! + introduction_1: 我们给您发送了确认邮件。 + introduction_2: 点击电子邮件中的链接确认您的账户,然后您就可以开始绘制地图了。 + press confirm button: 按下面的确认按钮激活您的账户。 + button: 确认 + success: 已确认您的账号,感谢您的注册! + already active: 该账户已经确认。 + unknown token: 确认码已经过期或不存在。 + reconfirm_html: 如果您需要我们重新发送确认邮件,请点击这里。 + confirm_resend: + success_html: 我们已经发送一封新的确认电子邮件到 %{email},只要您确认您的帐户,您就可以开始制图了。

    如果您使用的反垃圾邮件系统发送确认请求,那么请确保您的白名单中有%{sender},因为我们无法回复任何确认请求。 + failure: 用户 %{name} 未找到。 + confirm_email: + heading: 确认电子邮件地址更改 + press confirm button: 按下面的确认按钮以确认您的新电子邮件地址。 + button: 确认 + success: 已确认您对电子邮件地址的更改! + failure: 具有此令牌的电子邮件地址已经确认过了。 + unknown_token: 那个确认代码已过期或不存在。 messages: inbox: title: 收件箱 my_inbox: 我的收件箱 - outbox: 发件箱 + my_outbox: 我的发件箱 messages: 您有 %{new_messages}和 %{old_messages} new_messages: '%{count} 条新消息' old_messages: '%{count} 条旧消息' @@ -1567,9 +1625,8 @@ zh-CN: body: 对不起,没有具有该 id 的消息。 outbox: title: 发件箱 - my_inbox_html: 我的%{inbox_link} - inbox: 收件箱 - outbox: 发件箱 + my_inbox: 我的收件箱 + my_outbox: 我的发件箱 messages: one: 您有 %{count} 条已发送信息 other: 您有 %{count} 条已发送信息 @@ -1598,6 +1655,74 @@ zh-CN: as_unread: 标记消息为未读 destroy: destroyed: 消息已删除 + passwords: + lost_password: + title: 忘记密码 + heading: 忘记密码? + email address: 电子邮件地址: + new password button: 重置密码 + help_text: 输入您的电子邮件地址来注册,我们会寄出链接给它,这样您就可以用它来重置密码。 + notice email on way: 很遗憾您遗失了密码:-(不过一封电子邮件已经发往您的邮箱,您很快就可以重置密码了。 + notice email cannot find: 对不起,无法找到邮箱。 + reset_password: + title: 重置密码 + heading: 重置%{user}的密码 + reset: 重置密码 + flash changed: 您的密码已经更改。 + flash token bad: 未找到标记,建议检查 URL? + sessions: + new: + title: 登录 + heading: 登录 + email or username: 电子邮件地址或用户名: + password: 密码: + openid_html: '%{logo}OpenID:' + remember: 记住我 + lost password link: 忘记密码? + login_button: 登录 + register now: 立即注册 + with username: 已经有 OpenStreetMap 账户?请使用您的用户名和密码登录: + with external: 或者使用第三方服务登录: + new to osm: 第一次来到 OpenStreetMap? + to make changes: 要修改 OpenStreetMap 的数据,您必须拥有一个帐户。 + create account minute: 创建账户。只需花费一分钟。 + no account: 没有账户? + account not active: 对不起,您的账户尚未激活。
    请点击在账户确认邮件中的链接来激活您的账户,或请求新的确认电子邮件。 + account is suspended: 对不起,您的帐户因可疑活动已被暂停。
    如果您想讨论这个,请联系网站管理员。 + auth failure: 对不起,凭这些信息您无法登录。 + openid_logo_alt: 使用 OpenID 登录 + auth_providers: + openid: + title: 使用OpenID登录 + alt: 使用OpenID URL登录 + google: + title: 使用Google登录 + alt: 使用Google OpenID登录 + facebook: + title: 使用脸书登录 + alt: 使用Facebook账户登录 + windowslive: + title: 使用Windows Live登录 + alt: 使用一个Windows Live账户登录 + github: + title: 使用GitHub登录 + alt: 通过GitHub账户登录 + wikipedia: + title: 使用维基百科登录 + alt: 使用维基百科账户登录 + yahoo: + title: 使用Yahoo登录 + alt: 使用Yahoo OpenID登录 + wordpress: + title: 使用Wordpress登录 + alt: 使用 Wordpress OpenID 登录 + aol: + title: 使用AOL登录 + alt: 使用AOL OpenID登录 + destroy: + title: 退出 + heading: 退出登录OpenStreetMap + logout_button: 退出 shared: markdown_help: headings: 标题 @@ -1831,6 +1956,9 @@ zh-CN: url: https://wiki.openstreetmap.org/ title: OpenStreetMap Wiki description: 浏览 wiki 深入了解 OpenStreetMap 文档。 + potlatch: + removed: 您的默认OpenStreetMap编辑器设置为Potlatch。由于Adobe Flash Player已停止支持,因此Potlatch不再可在Web浏览器中使用。 + desktop_html: 您仍然可以通过下载适用于Mac和Windows的桌面应用程序来使用Potlatch。 sidebar: search_results: 搜索结果 close: 关闭 @@ -1914,24 +2042,6 @@ zh-CN: bicycle_shop: 自行车店 bicycle_parking: 自行车停车场 toilets: 厕所 - richtext_area: - edit: 编辑 - preview: 预览 - markdown_help: - title_html: 使用 kramdown - 解析 - headings: 标题 - heading: 标题 - subheading: 副标题 - unordered: 无序列表 - ordered: 有序列表 - first: 第一项 - second: 第二项 - link: 链接 - text: 文本 - image: 图像 - alt: 替代文本 - url: URL welcome: title: 欢迎! introduction_html: 欢迎访问 OpenStreeMap,自由且可编辑的世界地图。您已经登录,可以开始绘制地图。这里是含有您需要知道的最重要的信息的快速指南。 @@ -2021,7 +2131,6 @@ zh-CN: more: 更多 trace_details: 查看轨迹详情 view_map: 查看地图 - edit: 编辑 edit_map: 编辑地图 public: 公开 identifiable: 可识别 @@ -2029,7 +2138,6 @@ zh-CN: trackable: 可追踪 by: 由 in: 使用 - map: 地图 index: public_traces: 公开GPS轨迹 my_traces: 我的GPS轨迹 @@ -2132,72 +2240,6 @@ zh-CN: destroy: flash: 已破坏此客户端应用程序注册 users: - login: - title: 登录 - heading: 登录 - email or username: 电子邮件地址或用户名: - password: 密码: - openid_html: '%{logo}OpenID:' - remember: 记住我 - lost password link: 忘记密码? - login_button: 登录 - register now: 立即注册 - with username: 已经有 OpenStreetMap 账户?请使用您的用户名和密码登录: - with external: 或者使用第三方服务登录: - new to osm: 第一次来到 OpenStreetMap? - to make changes: 要修改 OpenStreetMap 的数据,您必须拥有一个帐户。 - create account minute: 创建账户。只需花费一分钟。 - no account: 没有账户? - account not active: 对不起,您的账户尚未激活。
    请点击在账户确认邮件中的链接来激活您的账户,或请求新的确认电子邮件。 - account is suspended: 对不起,您的帐户因可疑活动已被暂停。
    如果您想讨论这个,请联系网站管理员。 - auth failure: 对不起,凭这些信息您无法登录。 - openid_logo_alt: 使用 OpenID 登录 - auth_providers: - openid: - title: 使用OpenID登录 - alt: 使用OpenID URL登录 - google: - title: 使用Google登录 - alt: 使用Google OpenID登录 - facebook: - title: 使用脸书登录 - alt: 使用Facebook账户登录 - windowslive: - title: 使用Windows Live登录 - alt: 使用一个Windows Live账户登录 - github: - title: 使用GitHub登录 - alt: 通过GitHub账户登录 - wikipedia: - title: 使用维基百科登录 - alt: 使用维基百科账户登录 - yahoo: - title: 使用Yahoo登录 - alt: 使用Yahoo OpenID登录 - wordpress: - title: 使用Wordpress登录 - alt: 使用 Wordpress OpenID 登录 - aol: - title: 使用AOL登录 - alt: 使用AOL OpenID登录 - logout: - title: 退出 - heading: 退出登录OpenStreetMap - logout_button: 退出 - lost_password: - title: 忘记密码 - heading: 忘记密码? - email address: 电子邮件地址: - new password button: 重置密码 - help_text: 输入您的电子邮件地址来注册,我们会寄出链接给它,这样您就可以用它来重置密码。 - notice email on way: 很遗憾您遗失了密码:-(不过一封电子邮件已经发往您的邮箱,您很快就可以重置密码了。 - notice email cannot find: 对不起,无法找到邮箱。 - reset_password: - title: 重置密码 - heading: 重置%{user}的密码 - reset: 重置密码 - flash changed: 您的密码已经更改。 - flash token bad: 未找到标记,建议检查 URL? new: title: 注册 no_auto_account_create: 很遗憾,我们目前无法为您自动创建一个帐户。 @@ -2316,13 +2358,13 @@ zh-CN: account: title: 编辑账户 my settings: 我的设置 - current email address: 当前电子邮件地址: - external auth: 外部身份验证: + current email address: 当前电子邮件地址 + external auth: 外部身份验证 openid: link: https://wiki.openstreetmap.org/wiki/OpenID link text: 这是什么? public editing: - heading: 公开编辑: + heading: 公开编辑 enabled: 启用。非匿名用户,可以编辑数据。 enabled link: https://wiki.openstreetmap.org/wiki/Anonymous_edits enabled link text: 这是什么? @@ -2333,17 +2375,18 @@ zh-CN: html: 目前您的编辑是匿名的,人们不能发送邮件给您或看到您的位置。为了显示您的编辑,让别人通过网站与您联系,请点击下面的按钮。由于 0.6 API 的转换,只有公开的用户可以编辑地图数据。(了解为什么)。
    • 您的电子邮件地址将不会被因为成为公开用户而被透露。
    • 此操作无法撤销,所有新用户现在都默认为公开的。
    contributor terms: - heading: 贡献者条款: + heading: 贡献者条款 agreed: 您已同意新的贡献者条款。 not yet agreed: 您还没有同意新的贡献者条款。 review link text: 请跟随此链接,方便您查看并接受新的贡献者条款。 agreed_with_pd: 您也将您的编辑释于公有领域。 link: https://www.osmfoundation.org/wiki/License/Contributor_Terms link text: 这是什么? - image: 图像: + image: 图像 gravatar: gravatar: 使用 Gravatar link: http://wiki.openstreetmap.org/wiki/Gravatar + what_is_gravatar: 什么是Gravatar? disabled: Gravatar已禁用。 enabled: 您的Gravatar显示已启用。 new image: 添加图像 @@ -2351,7 +2394,7 @@ zh-CN: delete image: 删除当前图像 replace image: 替换当前图像 image size hint: (正方形图像,尺寸至少为100x100) - home location: 住所位置: + home location: 住所位置 no home location: 您还没有输入您的住所位置。 update home location on click: 点击地图时更新所在位置? save changes button: 保存更改 @@ -2359,26 +2402,6 @@ zh-CN: return to profile: 返回基本信息 flash update success confirm needed: 成功更新用户信息。 查看您的邮箱以确认您的新邮箱地址。 flash update success: 成功更新用户信息。 - confirm: - heading: 检查您的电子邮件! - introduction_1: 我们给您发送了确认邮件。 - introduction_2: 点击电子邮件中的链接确认您的账户,然后您就可以开始绘制地图了。 - press confirm button: 按下面的确认按钮激活您的账户。 - button: 确认 - success: 已确认您的账号,感谢您的注册! - already active: 该账户已经确认。 - unknown token: 确认码已经过期或不存在。 - reconfirm_html: 如果您需要我们重新发送确认邮件,请点击这里。 - confirm_resend: - success_html: 我们已经发送一封新的确认电子邮件到 %{email},只要您确认您的帐户,您就可以开始制图了。

    如果您使用的反垃圾邮件系统发送确认请求,那么请确保您的白名单中有%{sender},因为我们无法回复任何确认请求。 - failure: 用户 %{name} 未找到。 - confirm_email: - heading: 确认电子邮件地址更改 - press confirm button: 按下面的确认按钮以确认您的新电子邮件地址。 - button: 确认 - success: 已确认您对电子邮件地址的更改! - failure: 具有此令牌的电子邮件地址已经确认过了。 - unknown_token: 那个确认代码已过期或不存在。 set_home: flash success: 成功保存您所在位置 go_public: diff --git a/config/locales/zh-TW.yml b/config/locales/zh-TW.yml index ff0255372..050e08d59 100644 --- a/config/locales/zh-TW.yml +++ b/config/locales/zh-TW.yml @@ -1004,12 +1004,14 @@ zh-TW: mountain_pass: "yes": 埡口 natural: + atoll: 環礁 bare_rock: 裸露岩石 bay: 灣 beach: 海灘 cape: 海角 cave_entrance: 洞穴入口 cliff: 懸崖 + coastline: 海岸線 crater: 火山口 dune: 沙丘 fell: 高原荒地 @@ -1027,6 +1029,7 @@ zh-TW: moor: 停泊處 mud: 泥地 peak: 山峰 + peninsula: 半島 point: 點 reef: 礁 ridge: 山脊 @@ -1074,6 +1077,7 @@ zh-TW: "yes": 辦公室 place: allotments: 社區農園 + archipelago: 群島 city: 城市 city_block: 街區 country: 國家 @@ -1557,11 +1561,33 @@ zh-TW: details_html: 關於變更集的詳情可在 %{url} 找到。 unsubscribe: 要取消訂閱此變更集的更新內容,請訪問%{url}並點擊「取消訂閱」。 unsubscribe_html: 要取消訂閱此變更集的更新內容,請訪問%{url}並點擊「取消訂閱」。 + confirmations: + confirm: + heading: 請檢查您的電子郵件! + introduction_1: 我們寄給您一封確認電子郵件。 + introduction_2: 按電子郵件中的連結以確認你的帳號,然後你就可以開始繪製地圖。 + press confirm button: 按下確認按鈕以開啟您的帳號。 + button: 確認 + success: 已確認您的帳號,感謝您的註冊! + already active: 該帳號已經確認。 + unknown token: 確認碼已經過期或不存在。 + reconfirm_html: 如果你需要我們重新發送確認電子郵件,請按這裡。 + confirm_resend: + success_html: 我們已經傳送一封新的確認電子郵件至 %{email},只要你確認你的帳號,你就可以開始製圖了。

    如果你使用會傳送確認請求的反垃圾郵件系統,請確保你將 + %{sender} 加入白名單中,因為我們無法回覆任何確認請求。 + failure: 找不到使用者 %{name}。 + confirm_email: + heading: 確認電子郵件地址的變更 + press confirm button: 按下確認按鈕以確認您的新電子郵件地址。 + button: 確認 + success: 已確認您變更的電子郵件地址! + failure: 電子郵件地址已使用此密鑰確認過。 + unknown_token: 確認碼已經過期或不存在。 messages: inbox: title: 收件匣 my_inbox: 我的收件匣 - outbox: 寄件匣 + my_outbox: 我的寄件匣 messages: 您有 %{new_messages} 及 %{old_messages}。 new_messages: one: '%{count} 項新訊息' @@ -1594,9 +1620,8 @@ zh-TW: body: 抱歉,並沒有這個 id 的訊息。 outbox: title: 寄件匣 - my_inbox_html: 我的 %{inbox_link} - inbox: 收件匣 - outbox: 寄件匣 + my_inbox: 我的收件匣 + my_outbox: 我的寄件匣 messages: one: 您有 %{count} 項已寄訊息 other: 您有 %{count} 項已寄訊息 @@ -1625,6 +1650,74 @@ zh-TW: as_unread: 訊息標記為未讀 destroy: destroyed: 訊息已刪除 + passwords: + lost_password: + title: 遺失密碼 + heading: 忘記密碼? + email address: 電子郵件地址: + new password button: 重設密碼 + help_text: 輸入您的電子郵件地址來註冊,我們會將連結送至該地址,而您可以用它來重設密碼。 + notice email on way: 很遺憾您忘了它 :-( 不過讓您可以重設它的電子郵件已經寄出,您待會便可重設。 + notice email cannot find: 很抱歉,找不到該電子郵件地址。 + reset_password: + title: 重設密碼 + heading: 重設 %{user} 的密碼 + reset: 重設密碼 + flash changed: 您的密碼已經變更。 + flash token bad: 找不到該密鑰,可能要檢查一下 URL? + sessions: + new: + title: 登入 + heading: 登入 + email or username: 電子郵件地址或使用者名稱: + password: 密碼: + openid_html: '%{logo} OpenID:' + remember: 記住我 + lost password link: 忘記您的密碼? + login_button: 登入 + register now: 立即註冊 + with username: 已經有 OpenStreetMap 的帳號嗎?請使用您的使用者名和密碼登入: + with external: 或者使用第三方服務登入 + new to osm: 第一次來到 OpenStreetMap? + to make changes: 要更改的 OpenStreetMap 的資料,您必須擁有一個帳號。 + create account minute: 建立一個帳號。只需要一分鐘。 + no account: 還沒有帳號嗎? + account not active: 抱歉,您的帳號尚未開啟。
    請點選帳號確認電子郵件中的連結來開啟您的帳號,或要求發出新的確認電子郵件。 + account is suspended: 很抱歉,您的帳號已經因可疑活動被暫停。
    請如果您想要討論這個問題,請與網站管理員聯繫。 + auth failure: 很抱歉,無法以這些資料登入。 + openid_logo_alt: 使用 OpenID 登入 + auth_providers: + openid: + title: 使用 OpenID 登入 + alt: 使用 OpenID 網址登入 + google: + title: 使用 Google 帳號登入 + alt: 使用 Google OpenID 登入 + facebook: + title: 使用臉書登入 + alt: 使用臉書帳號登入 + windowslive: + title: 使用 Windows Live 登入 + alt: 使用 Windows Live 帳號登入 + github: + title: 使用 GitHub 登入 + alt: 使用 GitHub 帳號登入 + wikipedia: + title: 以維基百科登入 + alt: 以維基百科帳號登入 + yahoo: + title: 使用 Yahoo 登入 + alt: 使用 Yahoo OpenID 登入 + wordpress: + title: 使用 Wordpress 登入 + alt: 使用 Wordpress OpenID 登入 + aol: + title: 使用 AOL 登入 + alt: 使用 AOL OpenID 登入 + destroy: + title: 登出 + heading: 從 OpenStreetMap 登出 + logout_button: 登出 shared: markdown_help: title_html: 使用 kramdown @@ -1972,24 +2065,6 @@ zh-TW: bicycle_shop: 自行車店 bicycle_parking: 自行車停車場 toilets: 廁所 - richtext_area: - edit: 編輯 - preview: 預覽 - markdown_help: - title_html: 使用 kramdown - 解析 - headings: 標題 - heading: 標題 - subheading: 副標題 - unordered: 無序清單 - ordered: 有序清單 - first: 第一項 - second: 第二項 - link: 連結 - text: 文字 - image: 圖片 - alt: 替代文字 - url: URL welcome: title: 歡迎! introduction_html: 歡迎來到 OpenStreetMap,自由和可編輯的世界地圖。您目前已經登入,可以開始繪製地圖。這裡有一份您須知道最重要事項的快速指南。 @@ -2083,7 +2158,6 @@ zh-TW: more: 更多 trace_details: 檢視軌跡詳細資料 view_map: 檢視地圖 - edit: 編輯 edit_map: 編輯地圖 public: 公開 identifiable: 可辨識 @@ -2091,7 +2165,6 @@ zh-TW: trackable: 可追蹤 by: 由 in: 於 - map: 地圖 index: public_traces: 公開 GPS 軌跡 my_traces: 我的 GPS 軌跡 @@ -2194,72 +2267,6 @@ zh-TW: destroy: flash: 已銷毀此用戶端應用程式註冊 users: - login: - title: 登入 - heading: 登入 - email or username: 電子郵件地址或使用者名稱: - password: 密碼: - openid_html: '%{logo} OpenID:' - remember: 記住我 - lost password link: 忘記您的密碼? - login_button: 登入 - register now: 立即註冊 - with username: 已經有 OpenStreetMap 的帳號嗎?請使用您的使用者名和密碼登入: - with external: 或者使用第三方服務登入 - new to osm: 第一次來到 OpenStreetMap? - to make changes: 要更改的 OpenStreetMap 的資料,您必須擁有一個帳號。 - create account minute: 建立一個帳號。只需要一分鐘。 - no account: 還沒有帳號嗎? - account not active: 抱歉,您的帳號尚未開啟。
    請點選帳號確認電子郵件中的連結來開啟您的帳號,或要求發出新的確認電子郵件。 - account is suspended: 很抱歉,您的帳號已經因可疑活動被暫停。
    請如果您想要討論這個問題,請與網站管理員聯繫。 - auth failure: 很抱歉,無法以這些資料登入。 - openid_logo_alt: 使用 OpenID 登入 - auth_providers: - openid: - title: 使用 OpenID 登入 - alt: 使用 OpenID 網址登入 - google: - title: 使用 Google 帳號登入 - alt: 使用 Google OpenID 登入 - facebook: - title: 使用臉書登入 - alt: 使用臉書帳號登入 - windowslive: - title: 使用 Windows Live 登入 - alt: 使用 Windows Live 帳號登入 - github: - title: 使用 GitHub 登入 - alt: 使用 GitHub 帳號登入 - wikipedia: - title: 以維基百科登入 - alt: 以維基百科帳號登入 - yahoo: - title: 使用 Yahoo 登入 - alt: 使用 Yahoo OpenID 登入 - wordpress: - title: 使用 Wordpress 登入 - alt: 使用 Wordpress OpenID 登入 - aol: - title: 使用 AOL 登入 - alt: 使用 AOL OpenID 登入 - logout: - title: 登出 - heading: 從 OpenStreetMap 登出 - logout_button: 登出 - lost_password: - title: 遺失密碼 - heading: 忘記密碼? - email address: 電子郵件地址: - new password button: 重設密碼 - help_text: 輸入您的電子郵件地址來註冊,我們會將連結送至該地址,而您可以用它來重設密碼。 - notice email on way: 很遺憾您忘了它 :-( 不過讓您可以重設它的電子郵件已經寄出,您待會便可重設。 - notice email cannot find: 很抱歉,找不到該電子郵件地址。 - reset_password: - title: 重設密碼 - heading: 重設 %{user} 的密碼 - reset: 重設密碼 - flash changed: 您的密碼已經變更。 - flash token bad: 找不到該密鑰,可能要檢查一下 URL? new: title: 註冊 no_auto_account_create: 很不幸的我們現在無法自動為您建立帳號。 @@ -2423,27 +2430,6 @@ zh-TW: return to profile: 返回基本資料 flash update success confirm needed: 使用者資訊成功的更新。請檢查您的電子郵件,以確認收到新電子郵件地址的通知。 flash update success: 使用者資訊已成功更新。 - confirm: - heading: 請檢查您的電子郵件! - introduction_1: 我們寄給您一封確認電子郵件。 - introduction_2: 按電子郵件中的連結以確認你的帳號,然後你就可以開始繪製地圖。 - press confirm button: 按下確認按鈕以開啟您的帳號。 - button: 確認 - success: 已確認您的帳號,感謝您的註冊! - already active: 該帳號已經確認。 - unknown token: 確認碼已經過期或不存在。 - reconfirm_html: 如果你需要我們重新發送確認電子郵件,請按這裡。 - confirm_resend: - success_html: 我們已經傳送一封新的確認電子郵件至 %{email},只要你確認你的帳號,你就可以開始製圖了。

    如果你使用會傳送確認請求的反垃圾郵件系統,請確保你將 - %{sender} 加入白名單中,因為我們無法回覆任何確認請求。 - failure: 找不到使用者 %{name}。 - confirm_email: - heading: 確認電子郵件地址的變更 - press confirm button: 按下確認按鈕以確認您的新電子郵件地址。 - button: 確認 - success: 已確認您變更的電子郵件地址! - failure: 電子郵件地址已使用此密鑰確認過。 - unknown_token: 確認碼已經過期或不存在。 set_home: flash success: 家的位置成功的儲存 go_public: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index 45bbe4050..2421c73de 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -653,11 +653,32 @@ zh-hk: note_comment_notification: anonymous: 一位匿名用戶 greeting: 您好, + confirmations: + confirm_resend: + failure: 找不到用戶%{name}。 messages: outbox: title: 寄件匣 - inbox: 收件匣 - outbox: 寄件匣 + passwords: + lost_password: + title: 忘記密碼 + heading: 忘記密碼? + email address: 電郵地址: + new password button: 重設密碼 + help_text: 輸入您註冊時用的電郵地址,我們會將可用於重設密碼的連結發送至該地址。 + reset_password: + title: 重設密碼 + heading: 重設%{user}的密碼 + reset: 重設密碼 + flash changed: 您的密碼已經變更。 + sessions: + new: + email or username: 電郵地址或用戶名稱: + password: 密碼: + lost password link: 忘記您的密碼? + with username: 已經有OpenStreetMap的帳號了嗎?請使用您的用戶名稱和密碼登入: + destroy: + title: 登出 site: edit: not_public: 您尚未把編輯公開。 @@ -734,9 +755,6 @@ zh-hk: bicycle_shop: 單車店 bicycle_parking: 單車停泊處 toilets: 廁所 - richtext_area: - edit: 編輯 - preview: 預覽 welcome: introduction_html: 歡迎來到OpenStreetMap,自由而可以編輯的世界地圖。現在您已經注冊完成,繪製地圖所需要的準備已經就緒。以下是一份快速指南,裡面包含着您所需要知道的最重要事項。 rules: @@ -763,24 +781,6 @@ zh-hk: form: requests: 向用戶要求下列權限: users: - login: - email or username: 電郵地址或用戶名稱: - password: 密碼: - lost password link: 忘記您的密碼? - with username: 已經有OpenStreetMap的帳號了嗎?請使用您的用戶名稱和密碼登入: - logout: - title: 登出 - lost_password: - title: 忘記密碼 - heading: 忘記密碼? - email address: 電郵地址: - new password button: 重設密碼 - help_text: 輸入您註冊時用的電郵地址,我們會將可用於重設密碼的連結發送至該地址。 - reset_password: - title: 重設密碼 - heading: 重設%{user}的密碼 - reset: 重設密碼 - flash changed: 您的密碼已經變更。 new: title: 註冊 no_auto_account_create: 很不幸地我們目前無法為您自動建立帳號。 @@ -822,8 +822,6 @@ zh-hk: report: 舉報此用戶 account: my settings: 我的設定 - confirm_resend: - failure: 找不到用戶%{name}。 index: title: 用戶 heading: 用戶 diff --git a/config/routes.rb b/config/routes.rb index 97cedd965..da3921e4a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -145,8 +145,9 @@ OpenStreetMap::Application.routes.draw do get "/history/feed" => "changesets#feed", :defaults => { :format => :atom } get "/history/comments/feed" => "changeset_comments#index", :as => :changesets_comments_feed, :defaults => { :format => "rss" } get "/export" => "site#export" - match "/login" => "users#login", :via => [:get, :post] - match "/logout" => "users#logout", :via => [:get, :post] + get "/login" => "sessions#new" + post "/login" => "sessions#create" + match "/logout" => "sessions#destroy", :via => [:get, :post] get "/offline" => "site#offline" get "/key" => "site#key" get "/id" => "site#id" @@ -155,13 +156,13 @@ OpenStreetMap::Application.routes.draw do post "/user/new" => "users#create" get "/user/terms" => "users#terms" post "/user/save" => "users#save" - get "/user/:display_name/confirm/resend" => "users#confirm_resend", :as => :user_confirm_resend - match "/user/:display_name/confirm" => "users#confirm", :via => [:get, :post] - match "/user/confirm" => "users#confirm", :via => [:get, :post] - match "/user/confirm-email" => "users#confirm_email", :via => [:get, :post] + get "/user/:display_name/confirm/resend" => "confirmations#confirm_resend", :as => :user_confirm_resend + match "/user/:display_name/confirm" => "confirmations#confirm", :via => [:get, :post] + match "/user/confirm" => "confirmations#confirm", :via => [:get, :post] + match "/user/confirm-email" => "confirmations#confirm_email", :via => [:get, :post] post "/user/go_public" => "users#go_public" - match "/user/reset-password" => "users#reset_password", :via => [:get, :post] - match "/user/forgot-password" => "users#lost_password", :via => [:get, :post] + match "/user/reset-password" => "passwords#reset_password", :via => [:get, :post], :as => :user_reset_password + match "/user/forgot-password" => "passwords#lost_password", :via => [:get, :post], :as => :user_forgot_password get "/user/suspended" => "users#suspended" get "/index.html", :to => redirect(:path => "/") diff --git a/config/settings.yml b/config/settings.yml index 049844d3d..3dd732972 100644 --- a/config/settings.yml +++ b/config/settings.yml @@ -95,9 +95,6 @@ imagery_blacklist: - "http://xdworld\\.vworld\\.kr:8080/.*" # Blacklist here - ".*\\.here\\.com[/:].*" - # Blacklist Kanton SH and GL - - ".*wms.geo.sh.ch.*Luftbild_201[06].*" - - ".*wms.geo.gl.ch.*ch.gl.imagery.orthofoto201[357].*" # URL of Overpass instance to use for feature queries overpass_url: "https://overpass-api.de/api/interpreter" # Routing endpoints diff --git a/lib/bounding_box.rb b/lib/bounding_box.rb index 44375ae5b..3b366dc1e 100644 --- a/lib/bounding_box.rb +++ b/lib/bounding_box.rb @@ -14,7 +14,7 @@ class BoundingBox end def self.from_s(s) - BoundingBox.new(*s.split(/,/)) if s.count(",") == 3 + BoundingBox.new(*s.split(",")) if s.count(",") == 3 end def self.from_bbox_params(params) diff --git a/lib/gpx.rb b/lib/gpx.rb index 86cf2f49d..71b2823b8 100644 --- a/lib/gpx.rb +++ b/lib/gpx.rb @@ -50,7 +50,7 @@ module GPX rescue Archive::Error io = ::File.open(@file) - case MimeMagic.by_magic(io)&.type + case Marcel::MimeType.for(io) when "application/gzip" then io = Zlib::GzipReader.open(@file) when "application/x-bzip" then io = Bzip2::FFI::Reader.open(@file) end diff --git a/package.json b/package.json index 7e12125bc..79f324107 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "jquery-simulate": "^1.0.2", "jquery.cookie": "^1.4.1", "leaflet": "^1.6.0", - "leaflet.locatecontrol": "^0.72.0", + "leaflet.locatecontrol": "^0.73.0", "ohauth": "^1.0.0", "qs": "^6.9.4" }, diff --git a/test/controllers/api/nodes_controller_test.rb b/test/controllers/api/nodes_controller_test.rb index 339dd2af8..b085dee9d 100644 --- a/test/controllers/api/nodes_controller_test.rb +++ b/test/controllers/api/nodes_controller_test.rb @@ -527,7 +527,7 @@ module Api # try and put something into a string that the API might # use unquoted and therefore allow code injection... xml = "" \ - '' \ + "" \ "" put node_create_path, :params => xml, :headers => auth_header assert_require_public_data "Shouldn't be able to create with non-public user" @@ -538,7 +538,7 @@ module Api # try and put something into a string that the API might # use unquoted and therefore allow code injection... xml = "" \ - '' \ + "" \ "" put node_create_path, :params => xml, :headers => auth_header assert_response :success diff --git a/test/controllers/api/user_preferences_controller_test.rb b/test/controllers/api/user_preferences_controller_test.rb index 7cfc875ef..3d3f79712 100644 --- a/test/controllers/api/user_preferences_controller_test.rb +++ b/test/controllers/api/user_preferences_controller_test.rb @@ -9,6 +9,10 @@ module Api { :path => "/api/0.6/user/preferences", :method => :get }, { :controller => "api/user_preferences", :action => "index" } ) + assert_routing( + { :path => "/api/0.6/user/preferences.json", :method => :get }, + { :controller => "api/user_preferences", :action => "index", :format => "json" } + ) assert_routing( { :path => "/api/0.6/user/preferences", :method => :put }, { :controller => "api/user_preferences", :action => "update_all" } @@ -62,6 +66,16 @@ module Api assert_select "preference[k=\"#{user_preference2.k}\"][v=\"#{user_preference2.v}\"]", :count => 1 end end + + # Test json + get user_preferences_path(:format => "json"), :headers => auth_header + assert_response :success + assert_equal "application/json", @response.media_type + + js = ActiveSupport::JSON.decode(@response.body) + assert_not_nil js + assert_equal 2, js["preferences"].count + assert_equal user_preference.v, js["preferences"][user_preference.k] end ## diff --git a/test/controllers/changesets_controller_test.rb b/test/controllers/changesets_controller_test.rb index fbbb36f3f..31a1e2d0c 100644 --- a/test/controllers/changesets_controller_test.rb +++ b/test/controllers/changesets_controller_test.rb @@ -164,7 +164,7 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest get friend_changesets_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => friend_changesets_path + assert_redirected_to login_path(:referer => friend_changesets_path) session_for(private_user) @@ -190,7 +190,7 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest get nearby_changesets_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => nearby_changesets_path + assert_redirected_to login_path(:referer => nearby_changesets_path) session_for(private_user) diff --git a/test/controllers/confirmations_controller_test.rb b/test/controllers/confirmations_controller_test.rb new file mode 100644 index 000000000..bae0158cd --- /dev/null +++ b/test/controllers/confirmations_controller_test.rb @@ -0,0 +1,339 @@ +require "test_helper" + +class UsersControllerTest < ActionDispatch::IntegrationTest + ## + # test all routes which lead to this controller + def test_routes + assert_routing( + { :path => "/user/username/confirm", :method => :get }, + { :controller => "confirmations", :action => "confirm", :display_name => "username" } + ) + assert_routing( + { :path => "/user/username/confirm", :method => :post }, + { :controller => "confirmations", :action => "confirm", :display_name => "username" } + ) + assert_routing( + { :path => "/user/username/confirm/resend", :method => :get }, + { :controller => "confirmations", :action => "confirm_resend", :display_name => "username" } + ) + + assert_routing( + { :path => "/user/confirm", :method => :get }, + { :controller => "confirmations", :action => "confirm" } + ) + assert_routing( + { :path => "/user/confirm", :method => :post }, + { :controller => "confirmations", :action => "confirm" } + ) + assert_routing( + { :path => "/user/confirm-email", :method => :get }, + { :controller => "confirmations", :action => "confirm_email" } + ) + assert_routing( + { :path => "/user/confirm-email", :method => :post }, + { :controller => "confirmations", :action => "confirm_email" } + ) + end + + def test_confirm_get + user = build(:user, :pending) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create.token + + get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_response :success + assert_template :confirm + end + + def test_confirm_get_already_confirmed + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create.token + + # Get the confirmation page + get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_response :success + assert_template :confirm + + # Confirm the user + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to welcome_path + + # Now try to get the confirmation page again + get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_response :redirect + assert_redirected_to root_path + end + + def test_confirm_success_no_token_no_referer + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create.token + + post logout_path + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to login_path + assert_match(/Confirmed your account/, flash[:notice]) + end + + def test_confirm_success_good_token_no_referer + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create.token + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to welcome_path + end + + def test_confirm_success_bad_token_no_referer + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create.token + + post logout_path + session_for(create(:user)) + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to login_path + assert_match(/Confirmed your account/, flash[:notice]) + end + + def test_confirm_success_no_token_with_referer + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token + + post logout_path + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to login_path(:referer => new_diary_entry_path) + assert_match(/Confirmed your account/, flash[:notice]) + end + + def test_confirm_success_good_token_with_referer + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to new_diary_entry_path + end + + def test_confirm_success_bad_token_with_referer + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token + + post logout_path + session_for(create(:user)) + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to login_path(:referer => new_diary_entry_path) + assert_match(/Confirmed your account/, flash[:notice]) + end + + def test_confirm_expired_token + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create(:expiry => 1.day.ago).token + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to :action => "confirm" + assert_match(/confirmation code has expired/, flash[:error]) + end + + def test_confirm_already_confirmed + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token + + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to new_diary_entry_path + + post logout_path + + confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_redirected_to login_path + assert_match(/already been confirmed/, flash[:error]) + end + + def test_confirm_deleted + user = build(:user, :pending) + stub_gravatar_request(user.email) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + confirm_string = User.find_by(:email => user.email).tokens.create.token + + User.find_by(:display_name => user.display_name).update(:status => "deleted") + + # Get the confirmation page + get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_response :redirect + assert_redirected_to root_path + + # Confirm the user + post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } + assert_response :not_found + assert_template :no_such_user + end + + def test_confirm_resend_success + user = build(:user, :pending) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + + assert_difference "ActionMailer::Base.deliveries.size", 1 do + perform_enqueued_jobs do + get user_confirm_resend_path(user) + end + end + + assert_response :redirect + assert_redirected_to login_path + assert_match(/sent a new confirmation/, flash[:notice]) + + email = ActionMailer::Base.deliveries.last + + assert_equal user.email, email.to.first + + ActionMailer::Base.deliveries.clear + end + + def test_confirm_resend_no_token + user = build(:user, :pending) + # only complete first half of registration + post user_new_path, :params => { :user => user.attributes } + + assert_no_difference "ActionMailer::Base.deliveries.size" do + perform_enqueued_jobs do + get user_confirm_resend_path(user) + end + end + + assert_response :redirect + assert_redirected_to login_path + assert_match "User #{user.display_name} not found.", flash[:error] + end + + def test_confirm_resend_deleted + user = build(:user, :pending) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + + User.find_by(:display_name => user.display_name).update(:status => "deleted") + + assert_no_difference "ActionMailer::Base.deliveries.size" do + perform_enqueued_jobs do + get user_confirm_resend_path(user) + end + end + + assert_response :redirect + assert_redirected_to login_path + assert_match "User #{user.display_name} not found.", flash[:error] + end + + def test_confirm_resend_unknown_user + assert_no_difference "ActionMailer::Base.deliveries.size" do + perform_enqueued_jobs do + get user_confirm_resend_path(:display_name => "No Such User") + end + end + + assert_response :redirect + assert_redirected_to login_path + assert_match "User No Such User not found.", flash[:error] + end + + def test_confirm_email_get + user = create(:user) + confirm_string = user.tokens.create.token + + get user_confirm_email_path, :params => { :confirm_string => confirm_string } + assert_response :success + assert_template :confirm_email + end + + def test_confirm_email_success + user = create(:user, :new_email => "test-new@example.com") + stub_gravatar_request(user.new_email) + confirm_string = user.tokens.create.token + + post user_confirm_email_path, :params => { :confirm_string => confirm_string } + assert_response :redirect + assert_redirected_to :controller => :users, :action => :account, :display_name => user.display_name + assert_match(/Confirmed your change of email address/, flash[:notice]) + end + + def test_confirm_email_already_confirmed + user = create(:user) + confirm_string = user.tokens.create.token + + post user_confirm_email_path, :params => { :confirm_string => confirm_string } + assert_response :redirect + assert_redirected_to :controller => :users, :action => :account, :display_name => user.display_name + assert_match(/already been confirmed/, flash[:error]) + end + + def test_confirm_email_bad_token + post user_confirm_email_path, :params => { :confirm_string => "XXXXX" } + assert_response :success + assert_template :confirm_email + assert_match(/confirmation code has expired or does not exist/, flash[:error]) + end + + ## + # test if testing for a gravatar works + # this happens when the email is actually changed + # which is triggered by the confirmation mail + def test_gravatar_auto_enable + # switch to email that has a gravatar + user = create(:user, :new_email => "test-new@example.com") + stub_gravatar_request(user.new_email, 200) + confirm_string = user.tokens.create.token + # precondition gravatar should be turned off + assert_not user.image_use_gravatar + post user_confirm_email_path, :params => { :confirm_string => confirm_string } + assert_response :redirect + assert_redirected_to :controller => :users, :action => :account, :display_name => user.display_name + assert_match(/Confirmed your change of email address/, flash[:notice]) + # gravatar use should now be enabled + assert User.find(user.id).image_use_gravatar + end + + def test_gravatar_auto_disable + # switch to email without a gravatar + user = create(:user, :new_email => "test-new@example.com", :image_use_gravatar => true) + stub_gravatar_request(user.new_email, 404) + confirm_string = user.tokens.create.token + # precondition gravatar should be turned on + assert user.image_use_gravatar + post user_confirm_email_path, :params => { :confirm_string => confirm_string } + assert_response :redirect + assert_redirected_to :controller => :users, :action => :account, :display_name => user.display_name + assert_match(/Confirmed your change of email address/, flash[:notice]) + # gravatar use should now be disabled + assert_not User.find(user.id).image_use_gravatar + end +end diff --git a/test/controllers/diary_entries_controller_test.rb b/test/controllers/diary_entries_controller_test.rb index 868171752..255b43997 100644 --- a/test/controllers/diary_entries_controller_test.rb +++ b/test/controllers/diary_entries_controller_test.rb @@ -113,7 +113,7 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest # are not logged in get new_diary_entry_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => "/diary/new" + assert_redirected_to login_path(:referer => "/diary/new") end def test_new_form @@ -257,7 +257,7 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest # not logged in, without and with the id of the entry you want to edit get edit_diary_entry_path(:display_name => entry.user.display_name, :id => entry) assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => "/user/#{ERB::Util.u(entry.user.display_name)}/diary/#{entry.id}/edit" + assert_redirected_to login_path(:referer => "/user/#{ERB::Util.u(entry.user.display_name)}/diary/#{entry.id}/edit") session_for(other_user) @@ -506,7 +506,7 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest # Try a list of diary entries for your friends when not logged in get friends_diary_entries_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => "/diary/friends" + assert_redirected_to login_path(:referer => "/diary/friends") # Try a list of diary entries for your friends when logged in session_for(user) @@ -526,7 +526,7 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest # Try a list of diary entries for nearby users when not logged in get nearby_diary_entries_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => "/diary/nearby" + assert_redirected_to login_path(:referer => "/diary/nearby") # Try a list of diary entries for nearby users when logged in session_for(nearby_user) @@ -848,9 +848,7 @@ class DiaryEntriesControllerTest < ActionDispatch::IntegrationTest get diary_comments_path(:display_name => user.display_name) assert_response :success assert_template :comments - assert_select "table.table-striped" do - assert_select "tr", :count => 1 # header, no comments - end + assert_select "h4", :html => "No diary comments" # Test a user with a comment create(:diary_comment, :user => other_user) diff --git a/test/controllers/notes_controller_test.rb b/test/controllers/notes_controller_test.rb index 1450aced8..50e7ae833 100644 --- a/test/controllers/notes_controller_test.rb +++ b/test/controllers/notes_controller_test.rb @@ -73,4 +73,11 @@ class NotesControllerTest < ActionDispatch::IntegrationTest assert_response :success assert_select "table.note_list tr", :count => 11 end + + def test_empty_page + user = create(:user) + get user_notes_path(:display_name => user.display_name) + assert_response :success + assert_select "h4", :html => "No notes" + end end diff --git a/test/controllers/passwords_controller_test.rb b/test/controllers/passwords_controller_test.rb new file mode 100644 index 000000000..8a6e0b901 --- /dev/null +++ b/test/controllers/passwords_controller_test.rb @@ -0,0 +1,153 @@ +require "test_helper" + +class PasswordsControllerTest < ActionDispatch::IntegrationTest + ## + # test all routes which lead to this controller + def test_routes + assert_routing( + { :path => "/user/forgot-password", :method => :get }, + { :controller => "passwords", :action => "lost_password" } + ) + assert_routing( + { :path => "/user/forgot-password", :method => :post }, + { :controller => "passwords", :action => "lost_password" } + ) + assert_routing( + { :path => "/user/reset-password", :method => :get }, + { :controller => "passwords", :action => "reset_password" } + ) + assert_routing( + { :path => "/user/reset-password", :method => :post }, + { :controller => "passwords", :action => "reset_password" } + ) + end + + def test_lost_password + # Test fetching the lost password page + get user_forgot_password_path + assert_response :success + assert_template :lost_password + assert_select "div#notice", false + + # Test resetting using the address as recorded for a user that has an + # address which is duplicated in a different case by another user + user = create(:user) + uppercase_user = build(:user, :email => user.email.upcase).tap { |u| u.save(:validate => false) } + + # Resetting with GET should fail + assert_no_difference "ActionMailer::Base.deliveries.size" do + perform_enqueued_jobs do + get user_forgot_password_path, :params => { :email => user.email } + end + end + assert_response :success + assert_template :lost_password + + # Resetting with POST should work + assert_difference "ActionMailer::Base.deliveries.size", 1 do + perform_enqueued_jobs do + post user_forgot_password_path, :params => { :email => user.email } + end + end + assert_response :redirect + assert_redirected_to login_path + assert_match(/^Sorry you lost it/, flash[:notice]) + email = ActionMailer::Base.deliveries.first + assert_equal 1, email.to.count + assert_equal user.email, email.to.first + ActionMailer::Base.deliveries.clear + + # Test resetting using an address that matches a different user + # that has the same address in a different case + assert_difference "ActionMailer::Base.deliveries.size", 1 do + perform_enqueued_jobs do + post user_forgot_password_path, :params => { :email => user.email.upcase } + end + end + assert_response :redirect + assert_redirected_to login_path + assert_match(/^Sorry you lost it/, flash[:notice]) + email = ActionMailer::Base.deliveries.first + assert_equal 1, email.to.count + assert_equal uppercase_user.email, email.to.first + ActionMailer::Base.deliveries.clear + + # Test resetting using an address that is a case insensitive match + # for more than one user but not an exact match for either + assert_no_difference "ActionMailer::Base.deliveries.size" do + perform_enqueued_jobs do + post user_forgot_password_path, :params => { :email => user.email.titlecase } + end + end + assert_response :success + assert_template :lost_password + assert_select ".error", /^Could not find that email address/ + + # Test resetting using the address as recorded for a user that has an + # address which is case insensitively unique + third_user = create(:user) + assert_difference "ActionMailer::Base.deliveries.size", 1 do + perform_enqueued_jobs do + post user_forgot_password_path, :params => { :email => third_user.email } + end + end + assert_response :redirect + assert_redirected_to login_path + assert_match(/^Sorry you lost it/, flash[:notice]) + email = ActionMailer::Base.deliveries.first + assert_equal 1, email.to.count + assert_equal third_user.email, email.to.first + ActionMailer::Base.deliveries.clear + + # Test resetting using an address that matches a user that has the + # same (case insensitively unique) address in a different case + assert_difference "ActionMailer::Base.deliveries.size", 1 do + perform_enqueued_jobs do + post user_forgot_password_path, :params => { :email => third_user.email.upcase } + end + end + assert_response :redirect + assert_redirected_to login_path + assert_match(/^Sorry you lost it/, flash[:notice]) + email = ActionMailer::Base.deliveries.first + assert_equal 1, email.to.count + assert_equal third_user.email, email.to.first + ActionMailer::Base.deliveries.clear + end + + def test_reset_password + user = create(:user, :pending) + # Test a request with no token + get user_reset_password_path + assert_response :bad_request + + # Test a request with a bogus token + get user_reset_password_path, :params => { :token => "made_up_token" } + assert_response :redirect + assert_redirected_to :action => :lost_password + + # Create a valid token for a user + token = user.tokens.create + + # Test a request with a valid token + get user_reset_password_path, :params => { :token => token.token } + assert_response :success + assert_template :reset_password + + # Test that errors are reported for erroneous submissions + post user_reset_password_path, :params => { :token => token.token, :user => { :pass_crypt => "new_password", :pass_crypt_confirmation => "different_password" } } + assert_response :success + assert_template :reset_password + assert_select "div.invalid-feedback" + + # Test setting a new password + post user_reset_password_path, :params => { :token => token.token, :user => { :pass_crypt => "new_password", :pass_crypt_confirmation => "new_password" } } + assert_response :redirect + assert_redirected_to root_path + assert_equal user.id, session[:user] + user.reload + assert_equal "active", user.status + assert user.email_valid + assert_equal user, User.authenticate(:username => user.email, :password => "new_password") + end +end diff --git a/test/controllers/sessions_controller_test.rb b/test/controllers/sessions_controller_test.rb new file mode 100644 index 000000000..a94a9a158 --- /dev/null +++ b/test/controllers/sessions_controller_test.rb @@ -0,0 +1,90 @@ +require "test_helper" + +class SessionsControllerTest < ActionDispatch::IntegrationTest + ## + # test all routes which lead to this controller + def test_routes + assert_routing( + { :path => "/login", :method => :get }, + { :controller => "sessions", :action => "new" } + ) + assert_routing( + { :path => "/login", :method => :post }, + { :controller => "sessions", :action => "create" } + ) + assert_recognizes( + { :controller => "sessions", :action => "new", :format => "html" }, + { :path => "/login.html", :method => :get } + ) + + assert_routing( + { :path => "/logout", :method => :get }, + { :controller => "sessions", :action => "destroy" } + ) + assert_routing( + { :path => "/logout", :method => :post }, + { :controller => "sessions", :action => "destroy" } + ) + assert_recognizes( + { :controller => "sessions", :action => "destroy", :format => "html" }, + { :path => "/logout.html", :method => :get } + ) + end + + def test_login + user = create(:user) + + get login_path + assert_response :redirect + assert_redirected_to login_path(:cookie_test => true) + follow_redirect! + assert_response :success + assert_template "sessions/new" + + get login_path, :params => { :username => user.display_name, :password => "test" } + assert_response :success + assert_template "sessions/new" + + post login_path, :params => { :username => user.display_name, :password => "test" } + assert_response :redirect + assert_redirected_to root_path + end + + def test_logout_without_referer + post logout_path + assert_response :redirect + assert_redirected_to root_path + end + + def test_logout_with_referer + post logout_path, :params => { :referer => "/test" } + assert_response :redirect + assert_redirected_to "/test" + end + + def test_logout_fallback_without_referer + get logout_path + assert_response :success + assert_template "sessions/destroy" + assert_select "input[name=referer]:not([value])" + end + + def test_logout_fallback_with_referer + get logout_path, :params => { :referer => "/test" } + assert_response :success + assert_template "sessions/destroy" + assert_select "input[name=referer][value=?]", "/test" + end + + def test_logout_removes_session_token + user = build(:user, :pending) + post user_new_path, :params => { :user => user.attributes } + post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } + + assert_difference "User.find_by(:email => user.email).tokens.count", -1 do + post logout_path + end + assert_response :redirect + assert_redirected_to root_path + end +end diff --git a/test/controllers/site_controller_test.rb b/test/controllers/site_controller_test.rb index 4d08a8d0c..6f6e7dcfa 100644 --- a/test/controllers/site_controller_test.rb +++ b/test/controllers/site_controller_test.rb @@ -178,7 +178,7 @@ class SiteControllerTest < ActionDispatch::IntegrationTest get edit_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => "/edit" + assert_redirected_to login_path(:referer => "/edit") end # Test the error when trying to edit without public edits @@ -452,7 +452,7 @@ class SiteControllerTest < ActionDispatch::IntegrationTest def test_welcome get welcome_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => "/welcome" + assert_redirected_to login_path(:referer => "/welcome") session_for(create(:user)) get welcome_path diff --git a/test/controllers/traces_controller_test.rb b/test/controllers/traces_controller_test.rb index 36bee9c95..39a72568f 100644 --- a/test/controllers/traces_controller_test.rb +++ b/test/controllers/traces_controller_test.rb @@ -178,7 +178,7 @@ class TracesControllerTest < ActionDispatch::IntegrationTest # First try to get it when not logged in get traces_mine_path - assert_redirected_to :controller => "users", :action => "login", :referer => "/traces/mine" + assert_redirected_to login_path(:referer => "/traces/mine") session_for(user) @@ -541,7 +541,7 @@ class TracesControllerTest < ActionDispatch::IntegrationTest # First with no auth get new_trace_path assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => new_trace_path + assert_redirected_to login_path(:referer => new_trace_path) # Now authenticated as a user with gps.trace.visibility set user = create(:user) @@ -627,7 +627,7 @@ class TracesControllerTest < ActionDispatch::IntegrationTest # First with no auth get edit_trace_path(:display_name => public_trace_file.user.display_name, :id => public_trace_file) assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :referer => edit_trace_path(:display_name => public_trace_file.user.display_name, :id => public_trace_file.id) + assert_redirected_to login_path(:referer => edit_trace_path(:display_name => public_trace_file.user.display_name, :id => public_trace_file.id)) # Now with some other user, which should fail session_for(create(:user)) @@ -768,7 +768,7 @@ class TracesControllerTest < ActionDispatch::IntegrationTest assert_select "tr", :count => traces.length do |rows| traces.zip(rows).each do |trace, row| assert_select row, "a", Regexp.new(Regexp.escape(trace.name)) - assert_select row, "span", Regexp.new(Regexp.escape("(#{trace.size} points)")) if trace.inserted? + assert_select row, "li", Regexp.new(Regexp.escape("#{trace.size} points")) if trace.inserted? assert_select row, "td", Regexp.new(Regexp.escape(trace.description)) assert_select row, "td", Regexp.new(Regexp.escape("by #{trace.user.display_name}")) end diff --git a/test/controllers/users_controller_test.rb b/test/controllers/users_controller_test.rb index 54c737b97..62eb79f0c 100644 --- a/test/controllers/users_controller_test.rb +++ b/test/controllers/users_controller_test.rb @@ -4,32 +4,6 @@ class UsersControllerTest < ActionDispatch::IntegrationTest ## # test all routes which lead to this controller def test_routes - assert_routing( - { :path => "/login", :method => :get }, - { :controller => "users", :action => "login" } - ) - assert_routing( - { :path => "/login", :method => :post }, - { :controller => "users", :action => "login" } - ) - assert_recognizes( - { :controller => "users", :action => "login", :format => "html" }, - { :path => "/login.html", :method => :get } - ) - - assert_routing( - { :path => "/logout", :method => :get }, - { :controller => "users", :action => "logout" } - ) - assert_routing( - { :path => "/logout", :method => :post }, - { :controller => "users", :action => "logout" } - ) - assert_recognizes( - { :controller => "users", :action => "logout", :format => "html" }, - { :path => "/logout.html", :method => :get } - ) - assert_routing( { :path => "/user/new", :method => :get }, { :controller => "users", :action => "new" } @@ -50,58 +24,11 @@ class UsersControllerTest < ActionDispatch::IntegrationTest { :controller => "users", :action => "save" } ) - assert_routing( - { :path => "/user/username/confirm", :method => :get }, - { :controller => "users", :action => "confirm", :display_name => "username" } - ) - assert_routing( - { :path => "/user/username/confirm", :method => :post }, - { :controller => "users", :action => "confirm", :display_name => "username" } - ) - assert_routing( - { :path => "/user/username/confirm/resend", :method => :get }, - { :controller => "users", :action => "confirm_resend", :display_name => "username" } - ) - - assert_routing( - { :path => "/user/confirm", :method => :get }, - { :controller => "users", :action => "confirm" } - ) - assert_routing( - { :path => "/user/confirm", :method => :post }, - { :controller => "users", :action => "confirm" } - ) - assert_routing( - { :path => "/user/confirm-email", :method => :get }, - { :controller => "users", :action => "confirm_email" } - ) - assert_routing( - { :path => "/user/confirm-email", :method => :post }, - { :controller => "users", :action => "confirm_email" } - ) - assert_routing( { :path => "/user/go_public", :method => :post }, { :controller => "users", :action => "go_public" } ) - assert_routing( - { :path => "/user/forgot-password", :method => :get }, - { :controller => "users", :action => "lost_password" } - ) - assert_routing( - { :path => "/user/forgot-password", :method => :post }, - { :controller => "users", :action => "lost_password" } - ) - assert_routing( - { :path => "/user/reset-password", :method => :get }, - { :controller => "users", :action => "reset_password" } - ) - assert_routing( - { :path => "/user/reset-password", :method => :post }, - { :controller => "users", :action => "reset_password" } - ) - assert_routing( { :path => "/user/suspended", :method => :get }, { :controller => "users", :action => "suspended" } @@ -214,7 +141,7 @@ class UsersControllerTest < ActionDispatch::IntegrationTest assert_match(/#{@url}/, register_email.body.to_s) # Check the page - assert_redirected_to :action => "confirm", :display_name => user.display_name + assert_redirected_to :controller => :confirmations, :action => :confirm, :display_name => user.display_name ActionMailer::Base.deliveries.clear end @@ -406,327 +333,6 @@ class UsersControllerTest < ActionDispatch::IntegrationTest ActionMailer::Base.deliveries.clear end - def test_login - user = create(:user) - - get login_path - assert_response :redirect - assert_redirected_to login_path(:cookie_test => true) - follow_redirect! - assert_response :success - assert_template "login" - - get login_path, :params => { :username => user.display_name, :password => "test" } - assert_response :success - assert_template "login" - - post login_path, :params => { :username => user.display_name, :password => "test" } - assert_response :redirect - assert_redirected_to root_path - end - - def test_logout_without_referer - post logout_path - assert_response :redirect - assert_redirected_to root_path - end - - def test_logout_with_referer - post logout_path, :params => { :referer => "/test" } - assert_response :redirect - assert_redirected_to "/test" - end - - def test_logout_fallback_without_referer - get logout_path - assert_response :success - assert_template :logout - assert_select "input[name=referer]:not([value])" - end - - def test_logout_fallback_with_referer - get logout_path, :params => { :referer => "/test" } - assert_response :success - assert_template :logout - assert_select "input[name=referer][value=?]", "/test" - end - - def test_logout_removes_session_token - user = build(:user, :pending) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - - assert_difference "User.find_by(:email => user.email).tokens.count", -1 do - post logout_path - end - assert_response :redirect - assert_redirected_to root_path - end - - def test_confirm_get - user = build(:user, :pending) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create.token - - get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_response :success - assert_template :confirm - end - - def test_confirm_get_already_confirmed - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create.token - - # Get the confirmation page - get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_response :success - assert_template :confirm - - # Confirm the user - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to welcome_path - - # Now try to get the confirmation page again - get user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_response :redirect - assert_redirected_to root_path - end - - def test_confirm_success_no_token_no_referer - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create.token - - post logout_path - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to login_path - assert_match(/Confirmed your account/, flash[:notice]) - end - - def test_confirm_success_good_token_no_referer - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create.token - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to welcome_path - end - - def test_confirm_success_bad_token_no_referer - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create.token - - post logout_path - session_for(create(:user)) - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to login_path - assert_match(/Confirmed your account/, flash[:notice]) - end - - def test_confirm_success_no_token_with_referer - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token - - post logout_path - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to login_path(:referer => new_diary_entry_path) - assert_match(/Confirmed your account/, flash[:notice]) - end - - def test_confirm_success_good_token_with_referer - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to new_diary_entry_path - end - - def test_confirm_success_bad_token_with_referer - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token - - post logout_path - session_for(create(:user)) - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to login_path(:referer => new_diary_entry_path) - assert_match(/Confirmed your account/, flash[:notice]) - end - - def test_confirm_expired_token - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create(:expiry => 1.day.ago).token - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to :action => "confirm" - assert_match(/confirmation code has expired/, flash[:error]) - end - - def test_confirm_already_confirmed - user = build(:user, :pending) - stub_gravatar_request(user.email) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token - - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to new_diary_entry_path - - post logout_path - - confirm_string = User.find_by(:email => user.email).tokens.create(:referer => new_diary_entry_path).token - post user_confirm_path, :params => { :display_name => user.display_name, :confirm_string => confirm_string } - assert_redirected_to :action => "login" - assert_match(/already been confirmed/, flash[:error]) - end - - def test_confirm_resend_success - user = build(:user, :pending) - post user_new_path, :params => { :user => user.attributes } - post user_save_path, :params => { :read_ct => 1, :read_tou => 1 } - - assert_difference "ActionMailer::Base.deliveries.size", 1 do - perform_enqueued_jobs do - get user_confirm_resend_path(user) - end - end - - assert_response :redirect - assert_redirected_to login_path - assert_match(/sent a new confirmation/, flash[:notice]) - - email = ActionMailer::Base.deliveries.last - - assert_equal user.email, email.to.first - - ActionMailer::Base.deliveries.clear - end - - def test_confirm_resend_no_token - user = build(:user, :pending) - # only complete first half of registration - post user_new_path, :params => { :user => user.attributes } - - assert_no_difference "ActionMailer::Base.deliveries.size" do - perform_enqueued_jobs do - get user_confirm_resend_path(user) - end - end - - assert_response :redirect - assert_redirected_to login_path - assert_match "User #{user.display_name} not found.", flash[:error] - end - - def test_confirm_resend_unknown_user - assert_no_difference "ActionMailer::Base.deliveries.size" do - perform_enqueued_jobs do - get user_confirm_resend_path(:display_name => "No Such User") - end - end - - assert_response :redirect - assert_redirected_to login_path - assert_match "User No Such User not found.", flash[:error] - end - - def test_confirm_email_get - user = create(:user) - confirm_string = user.tokens.create.token - - get user_confirm_email_path, :params => { :confirm_string => confirm_string } - assert_response :success - assert_template :confirm_email - end - - def test_confirm_email_success - user = create(:user, :new_email => "test-new@example.com") - stub_gravatar_request(user.new_email) - confirm_string = user.tokens.create.token - - post user_confirm_email_path, :params => { :confirm_string => confirm_string } - assert_response :redirect - assert_redirected_to :action => :account, :display_name => user.display_name - assert_match(/Confirmed your change of email address/, flash[:notice]) - end - - def test_confirm_email_already_confirmed - user = create(:user) - confirm_string = user.tokens.create.token - - post user_confirm_email_path, :params => { :confirm_string => confirm_string } - assert_response :redirect - assert_redirected_to :action => :account, :display_name => user.display_name - assert_match(/already been confirmed/, flash[:error]) - end - - def test_confirm_email_bad_token - post user_confirm_email_path, :params => { :confirm_string => "XXXXX" } - assert_response :success - assert_template :confirm_email - assert_match(/confirmation code has expired or does not exist/, flash[:error]) - end - - ## - # test if testing for a gravatar works - # this happens when the email is actually changed - # which is triggered by the confirmation mail - def test_gravatar_auto_enable - # switch to email that has a gravatar - user = create(:user, :new_email => "test-new@example.com") - stub_gravatar_request(user.new_email, 200) - confirm_string = user.tokens.create.token - # precondition gravatar should be turned off - assert_not user.image_use_gravatar - post user_confirm_email_path, :params => { :confirm_string => confirm_string } - assert_response :redirect - assert_redirected_to :action => :account, :display_name => user.display_name - assert_match(/Confirmed your change of email address/, flash[:notice]) - # gravatar use should now be enabled - assert User.find(user.id).image_use_gravatar - end - - def test_gravatar_auto_disable - # switch to email without a gravatar - user = create(:user, :new_email => "test-new@example.com", :image_use_gravatar => true) - stub_gravatar_request(user.new_email, 404) - confirm_string = user.tokens.create.token - # precondition gravatar should be turned on - assert user.image_use_gravatar - post user_confirm_email_path, :params => { :confirm_string => confirm_string } - assert_response :redirect - assert_redirected_to :action => :account, :display_name => user.display_name - assert_match(/Confirmed your change of email address/, flash[:notice]) - # gravatar use should now be disabled - assert_not User.find(user.id).image_use_gravatar - end - def test_terms_new_user user = build(:user, :pending) @@ -819,135 +425,6 @@ class UsersControllerTest < ActionDispatch::IntegrationTest assert User.find(user.id).data_public end - def test_lost_password - # Test fetching the lost password page - get user_forgot_password_path - assert_response :success - assert_template :lost_password - assert_select "div#notice", false - - # Test resetting using the address as recorded for a user that has an - # address which is duplicated in a different case by another user - user = create(:user) - uppercase_user = build(:user, :email => user.email.upcase).tap { |u| u.save(:validate => false) } - - # Resetting with GET should fail - assert_no_difference "ActionMailer::Base.deliveries.size" do - perform_enqueued_jobs do - get user_forgot_password_path, :params => { :email => user.email } - end - end - assert_response :success - assert_template :lost_password - - # Resetting with POST should work - assert_difference "ActionMailer::Base.deliveries.size", 1 do - perform_enqueued_jobs do - post user_forgot_password_path, :params => { :email => user.email } - end - end - assert_response :redirect - assert_redirected_to :action => :login - assert_match(/^Sorry you lost it/, flash[:notice]) - email = ActionMailer::Base.deliveries.first - assert_equal 1, email.to.count - assert_equal user.email, email.to.first - ActionMailer::Base.deliveries.clear - - # Test resetting using an address that matches a different user - # that has the same address in a different case - assert_difference "ActionMailer::Base.deliveries.size", 1 do - perform_enqueued_jobs do - post user_forgot_password_path, :params => { :email => user.email.upcase } - end - end - assert_response :redirect - assert_redirected_to :action => :login - assert_match(/^Sorry you lost it/, flash[:notice]) - email = ActionMailer::Base.deliveries.first - assert_equal 1, email.to.count - assert_equal uppercase_user.email, email.to.first - ActionMailer::Base.deliveries.clear - - # Test resetting using an address that is a case insensitive match - # for more than one user but not an exact match for either - assert_no_difference "ActionMailer::Base.deliveries.size" do - perform_enqueued_jobs do - post user_forgot_password_path, :params => { :email => user.email.titlecase } - end - end - assert_response :success - assert_template :lost_password - assert_select ".error", /^Could not find that email address/ - - # Test resetting using the address as recorded for a user that has an - # address which is case insensitively unique - third_user = create(:user) - assert_difference "ActionMailer::Base.deliveries.size", 1 do - perform_enqueued_jobs do - post user_forgot_password_path, :params => { :email => third_user.email } - end - end - assert_response :redirect - assert_redirected_to :action => :login - assert_match(/^Sorry you lost it/, flash[:notice]) - email = ActionMailer::Base.deliveries.first - assert_equal 1, email.to.count - assert_equal third_user.email, email.to.first - ActionMailer::Base.deliveries.clear - - # Test resetting using an address that matches a user that has the - # same (case insensitively unique) address in a different case - assert_difference "ActionMailer::Base.deliveries.size", 1 do - perform_enqueued_jobs do - post user_forgot_password_path, :params => { :email => third_user.email.upcase } - end - end - assert_response :redirect - assert_redirected_to :action => :login - assert_match(/^Sorry you lost it/, flash[:notice]) - email = ActionMailer::Base.deliveries.first - assert_equal 1, email.to.count - assert_equal third_user.email, email.to.first - ActionMailer::Base.deliveries.clear - end - - def test_reset_password - user = create(:user, :pending) - # Test a request with no token - get user_reset_password_path - assert_response :bad_request - - # Test a request with a bogus token - get user_reset_password_path, :params => { :token => "made_up_token" } - assert_response :redirect - assert_redirected_to :action => :lost_password - - # Create a valid token for a user - token = user.tokens.create - - # Test a request with a valid token - get user_reset_password_path, :params => { :token => token.token } - assert_response :success - assert_template :reset_password - - # Test that errors are reported for erroneous submissions - post user_reset_password_path, :params => { :token => token.token, :user => { :pass_crypt => "new_password", :pass_crypt_confirmation => "different_password" } } - assert_response :success - assert_template :reset_password - assert_select "div.invalid-feedback" - - # Test setting a new password - post user_reset_password_path, :params => { :token => token.token, :user => { :pass_crypt => "new_password", :pass_crypt_confirmation => "new_password" } } - assert_response :redirect - assert_redirected_to root_path - assert_equal user.id, session[:user] - user.reload - assert_equal "active", user.status - assert user.email_valid - assert_equal user, User.authenticate(:username => user.email, :password => "new_password") - end - def test_account # Get a user to work with - note that this user deliberately # conflicts with uppercase_user in the email and display name @@ -960,7 +437,7 @@ class UsersControllerTest < ActionDispatch::IntegrationTest # you are not logged in get user_account_path(user) assert_response :redirect - assert_redirected_to :action => "login", :referer => "/user/#{ERB::Util.u(user.display_name)}/account" + assert_redirected_to login_path(:referer => "/user/#{ERB::Util.u(user.display_name)}/account") # Make sure that you are blocked when not logged in as the right user session_for(create(:user)) @@ -1336,7 +813,7 @@ class UsersControllerTest < ActionDispatch::IntegrationTest # Shouldn't work when not logged in get users_path assert_response :redirect - assert_redirected_to :action => :login, :referer => users_path + assert_redirected_to login_path(:referer => users_path) session_for(user) diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index fe4587b87..90fbaebc2 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -47,11 +47,6 @@ class ApplicationHelperTest < ActionView::TestCase assert_dom_equal "", link end - def test_richtext_area - html = richtext_area(:message, :body, :cols => 40, :rows => 20) - assert_not_nil html - end - def test_dir assert_equal "ltr", dir diff --git a/test/integration/client_applications_test.rb b/test/integration/client_applications_test.rb index 5a00a5631..f8055ebc7 100644 --- a/test/integration/client_applications_test.rb +++ b/test/integration/client_applications_test.rb @@ -9,7 +9,7 @@ class ClientApplicationsTest < ActionDispatch::IntegrationTest get "/login" assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true" + assert_redirected_to login_path(:cookie_test => "true") follow_redirect! assert_response :success post "/login", :params => { "username" => user.email, "password" => "test", :referer => "/user/#{ERB::Util.u(user.display_name)}" } diff --git a/test/integration/page_locale_test.rb b/test/integration/page_locale_test.rb index 239c1d847..b42865ae4 100644 --- a/test/integration/page_locale_test.rb +++ b/test/integration/page_locale_test.rb @@ -18,7 +18,7 @@ class PageLocaleTest < ActionDispatch::IntegrationTest follow_redirect! get "/diary/new" - assert_equal [], User.find(user.id).languages + assert_empty User.find(user.id).languages assert_select "html[lang=?]", "en" get "/diary/new", :headers => { "HTTP_ACCEPT_LANGUAGE" => "fr, en" } diff --git a/test/integration/user_changeset_comments_test.rb b/test/integration/user_changeset_comments_test.rb index 2953f5fe2..2483f1543 100644 --- a/test/integration/user_changeset_comments_test.rb +++ b/test/integration/user_changeset_comments_test.rb @@ -30,7 +30,7 @@ class UserChangesetCommentsTest < ActionDispatch::IntegrationTest follow_redirect! # We should now be at the login page assert_response :success - assert_template "users/login" + assert_template "sessions/new" # We can now login post "/login", :params => { "username" => user.email, "password" => "test" } assert_response :redirect diff --git a/test/integration/user_creation_test.rb b/test/integration/user_creation_test.rb index 138911bb1..a39e423c0 100644 --- a/test/integration/user_creation_test.rb +++ b/test/integration/user_creation_test.rb @@ -121,7 +121,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -208,14 +208,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect @@ -266,7 +266,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -361,14 +361,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect @@ -420,7 +420,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -515,14 +515,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect @@ -572,7 +572,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -665,14 +665,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect @@ -722,7 +722,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -815,14 +815,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect @@ -873,7 +873,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -967,14 +967,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect @@ -1025,7 +1025,7 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear end @@ -1119,14 +1119,14 @@ class UserCreationTest < ActionDispatch::IntegrationTest # Check the page assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" ActionMailer::Base.deliveries.clear # Go to the confirmation page get "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :success - assert_template "users/confirm" + assert_template "confirmations/confirm" post "/user/#{display_name}/confirm", :params => { :confirm_string => confirm_string } assert_response :redirect diff --git a/test/integration/user_diaries_test.rb b/test/integration/user_diaries_test.rb index e090342c1..0b3ee930d 100644 --- a/test/integration/user_diaries_test.rb +++ b/test/integration/user_diaries_test.rb @@ -11,7 +11,7 @@ class UserDiariesTest < ActionDispatch::IntegrationTest follow_redirect! # We should now be at the login page assert_response :success - assert_template "users/login" + assert_template "sessions/new" # We can now login post "/login", :params => { "username" => user.email, "password" => "test", :referer => "/diary/new" } assert_response :redirect diff --git a/test/integration/user_login_test.rb b/test/integration/user_login_test.rb index 149875def..589f19a23 100644 --- a/test/integration/user_login_test.rb +++ b/test/integration/user_login_test.rb @@ -47,7 +47,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.email.titlecase, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false end @@ -111,7 +111,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.email, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false assert_select "div.flash.error", /your account has been suspended/ do assert_select "a[href='mailto:openstreetmap@example.com']", "webmaster" @@ -123,7 +123,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.email.upcase, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false assert_select "div.flash.error", /your account has been suspended/ do assert_select "a[href='mailto:openstreetmap@example.com']", "webmaster" @@ -135,7 +135,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.email.titlecase, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false assert_select "div.flash.error", /your account has been suspended/ do assert_select "a[href='mailto:openstreetmap@example.com']", "webmaster" @@ -204,7 +204,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.display_name.downcase, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false end @@ -268,7 +268,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.display_name, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false assert_select "div.flash.error", /your account has been suspended/ do assert_select "a[href='mailto:openstreetmap@example.com']", "webmaster" @@ -280,7 +280,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.display_name.upcase, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false assert_select "div.flash.error", /your account has been suspended/ do assert_select "a[href='mailto:openstreetmap@example.com']", "webmaster" @@ -292,7 +292,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest try_password_login user.display_name.downcase, "test" - assert_template "login" + assert_template "sessions/new" assert_select "span.username", false assert_select "div.flash.error", /your account has been suspended/ do assert_select "a[href='mailto:openstreetmap@example.com']", "webmaster" @@ -355,10 +355,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :cookie_test => true, :referer => "/history" + assert_redirected_to login_path(:cookie_test => true, :referer => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "openid", :openid_url => "http://localhost:1123/john.doe", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "openid", :openid_url => "http://localhost:1123/john.doe", :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -376,10 +376,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :cookie_test => true, :referer => "/history" + assert_redirected_to login_path(:cookie_test => true, :referer => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "openid", :openid_url => user.auth_uid, :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "openid", :openid_url => user.auth_uid, :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -390,7 +390,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Connection to authentication provider failed" assert_select "span.username", false end @@ -401,10 +401,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :cookie_test => true, :referer => "/history" + assert_redirected_to login_path(:cookie_test => true, :referer => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "openid", :openid_url => user.auth_uid, :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "openid", :openid_url => user.auth_uid, :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -415,7 +415,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Invalid authentication credentials" assert_select "span.username", false end @@ -425,10 +425,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :cookie_test => true, :referer => "/history" + assert_redirected_to login_path(:cookie_test => true, :referer => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "openid", :openid_url => "http://localhost:1123/fred.bloggs", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "openid", :openid_url => "http://localhost:1123/fred.bloggs", :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -448,10 +448,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "google", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "google") @@ -468,10 +468,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "google", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "google") @@ -482,7 +482,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Connection to authentication provider failed" assert_select "span.username", false end @@ -492,10 +492,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "google", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "google") @@ -506,7 +506,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Invalid authentication credentials" assert_select "span.username", false end @@ -518,10 +518,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "google", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "google") @@ -541,10 +541,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "google", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "google") @@ -566,10 +566,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "facebook", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "facebook") @@ -586,10 +586,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "facebook", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "facebook") @@ -600,7 +600,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Connection to authentication provider failed" assert_select "span.username", false end @@ -610,10 +610,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "facebook", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "facebook") @@ -624,7 +624,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Invalid authentication credentials" assert_select "span.username", false end @@ -634,10 +634,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "facebook", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "facebook") @@ -655,10 +655,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "windowslive", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "windowslive") @@ -675,10 +675,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "windowslive", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "windowslive") @@ -689,7 +689,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Connection to authentication provider failed" assert_select "span.username", false end @@ -699,10 +699,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "windowslive", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "windowslive") @@ -713,7 +713,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Invalid authentication credentials" assert_select "span.username", false end @@ -723,10 +723,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "windowslive", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "windowslive") @@ -744,10 +744,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "github", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "github") @@ -764,10 +764,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "github", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "github") @@ -778,7 +778,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Connection to authentication provider failed" assert_select "span.username", false end @@ -788,10 +788,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "github", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "github") @@ -802,7 +802,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Invalid authentication credentials" assert_select "span.username", false end @@ -812,10 +812,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "github", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "github") @@ -833,10 +833,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -853,10 +853,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -867,7 +867,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Connection to authentication provider failed" assert_select "span.username", false end @@ -877,10 +877,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -891,7 +891,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "div.flash.error", "Invalid authentication credentials" assert_select "span.username", false end @@ -901,10 +901,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest get "/login", :params => { :referer => "/history" } assert_response :redirect - assert_redirected_to "controller" => "users", "action" => "login", "cookie_test" => "true", "referer" => "/history" + assert_redirected_to login_path("cookie_test" => "true", "referer" => "/history") follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post auth_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") assert_response :redirect assert_redirected_to auth_success_path(:provider => "wikipedia", :origin => "/login?referer=%2Fhistory", :referer => "/history") @@ -921,10 +921,10 @@ class UserLoginTest < ActionDispatch::IntegrationTest def try_password_login(username, password, remember_me = nil) get "/login" assert_response :redirect - assert_redirected_to :controller => :users, :action => :login, :cookie_test => true + assert_redirected_to login_path(:cookie_test => true) follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "input#username", 1 do assert_select "[value]", false end @@ -939,7 +939,7 @@ class UserLoginTest < ActionDispatch::IntegrationTest assert_response :redirect follow_redirect! assert_response :success - assert_template "login" + assert_template "sessions/new" assert_select "input#username", 1 do assert_select "[value=?]", username end diff --git a/test/integration/user_terms_seen_test.rb b/test/integration/user_terms_seen_test.rb index 4bffd99de..f7d3f2e54 100644 --- a/test/integration/user_terms_seen_test.rb +++ b/test/integration/user_terms_seen_test.rb @@ -22,7 +22,7 @@ class UserTermsSeenTest < ActionDispatch::IntegrationTest get "/login" follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post "/login", :params => { :username => user.email, :password => "test", :referer => "/diary/new" } assert_response :redirect # but now we need to look at the terms @@ -47,7 +47,7 @@ class UserTermsSeenTest < ActionDispatch::IntegrationTest get "/login" follow_redirect! assert_response :success - assert_template "users/login" + assert_template "sessions/new" post "/login", :params => { :username => user.email, :password => "test", :referer => "/diary/new" } assert_response :redirect # but now we need to look at the terms diff --git a/test/lib/locale_test.rb b/test/lib/locale_test.rb index 7b02b3f1f..d84239038 100644 --- a/test/lib/locale_test.rb +++ b/test/lib/locale_test.rb @@ -68,7 +68,7 @@ class LocaleTest < ActiveSupport::TestCase end def test_list - assert_equal [], Locale.list + assert_empty Locale.list assert_equal [EN], Locale.list("en") assert_equal [EN, ZH_YUE, ZH_HANT_TW], Locale.list("en", "zh-yue", "zh-Hant-TW") assert_equal [ZH_YUE, ZH_HANT_TW], Locale.list("en;de", "zh-yue", "zh-Hant-TW") diff --git a/test/lib/rich_text_test.rb b/test/lib/rich_text_test.rb index 80cf0ae37..fc9355717 100644 --- a/test/lib/rich_text_test.rb +++ b/test/lib/rich_text_test.rb @@ -47,6 +47,23 @@ class RichTextTest < ActiveSupport::TestCase assert_select "style", false assert_select "p", /^foo *baz$/ end + + r = RichText.new("html", "
    column
    ") + assert_html r do + assert_select "table[class='table table-sm w-auto']" + end + + r = RichText.new("html", "

    Click Me

    ") + assert_html r do + assert_select "p[class='btn btn-warning']", false + assert_select "p", /^Click Me$/ + end + + r = RichText.new("html", "

    Danger

    ") + assert_html r do + assert_select "p[style='color:red']", false + assert_select "p", /^Danger$/ + end end def test_html_to_text @@ -145,6 +162,23 @@ class RichTextTest < ActiveSupport::TestCase assert_html r do assert_select "pre", /^\s*foo bar baz\s*$/ end + + r = RichText.new("markdown", "|column|column") + assert_html r do + assert_select "table[class='table table-sm w-auto']" + end + + r = RichText.new("markdown", "Click Me\n{:.btn.btn-warning}") + assert_html r do + assert_select "p[class='btn btn-warning']", false + assert_select "p", /^Click Me$/ + end + + r = RichText.new("markdown", "

    Danger

    ") + assert_html r do + assert_select "p[style='color:red']", false + assert_select "p", /^Danger$/ + end end def test_markdown_to_text diff --git a/test/models/diary_entry_test.rb b/test/models/diary_entry_test.rb index 2b94d04dd..eb794acec 100644 --- a/test/models/diary_entry_test.rb +++ b/test/models/diary_entry_test.rb @@ -9,16 +9,16 @@ class DiaryEntryTest < ActiveSupport::TestCase def test_diary_entry_validations diary_entry_valid({}) diary_entry_valid({ :title => "" }, :valid => false) - diary_entry_valid(:title => "a" * 255) + diary_entry_valid({ :title => "a" * 255 }) diary_entry_valid({ :title => "a" * 256 }, :valid => false) diary_entry_valid({ :body => "" }, :valid => false) - diary_entry_valid(:latitude => 90) + diary_entry_valid({ :latitude => 90 }) diary_entry_valid({ :latitude => 90.00001 }, :valid => false) - diary_entry_valid(:latitude => -90) + diary_entry_valid({ :latitude => -90 }) diary_entry_valid({ :latitude => -90.00001 }, :valid => false) - diary_entry_valid(:longitude => 180) + diary_entry_valid({ :longitude => 180 }) diary_entry_valid({ :longitude => 180.00001 }, :valid => false) - diary_entry_valid(:longitude => -180) + diary_entry_valid({ :longitude => -180 }) diary_entry_valid({ :longitude => -180.00001 }, :valid => false) end diff --git a/test/models/trace_test.rb b/test/models/trace_test.rb index fc5064ad7..9682d6b28 100644 --- a/test/models/trace_test.rb +++ b/test/models/trace_test.rb @@ -77,15 +77,15 @@ class TraceTest < ActiveSupport::TestCase def test_validations trace_valid({}) trace_valid({ :user_id => nil }, :valid => false) - trace_valid(:name => "a" * 255) + trace_valid({ :name => "a" * 255 }) trace_valid({ :name => "a" * 256 }, :valid => false) trace_valid({ :description => nil }, :valid => false) - trace_valid(:description => "a" * 255) + trace_valid({ :description => "a" * 255 }) trace_valid({ :description => "a" * 256 }, :valid => false) - trace_valid(:visibility => "private") - trace_valid(:visibility => "public") - trace_valid(:visibility => "trackable") - trace_valid(:visibility => "identifiable") + trace_valid({ :visibility => "private" }) + trace_valid({ :visibility => "public" }) + trace_valid({ :visibility => "trackable" }) + trace_valid({ :visibility => "identifiable" }) trace_valid({ :visibility => "foo" }, :valid => false) end diff --git a/test/models/tracetag_test.rb b/test/models/tracetag_test.rb index 1aaa596d2..0d2b17953 100644 --- a/test/models/tracetag_test.rb +++ b/test/models/tracetag_test.rb @@ -5,8 +5,8 @@ class TracetagTest < ActiveSupport::TestCase tracetag_valid({}) tracetag_valid({ :tag => nil }, :valid => false) tracetag_valid({ :tag => "" }, :valid => false) - tracetag_valid(:tag => "a") - tracetag_valid(:tag => "a" * 255) + tracetag_valid({ :tag => "a" }) + tracetag_valid({ :tag => "a" * 255 }) tracetag_valid({ :tag => "a" * 256 }, :valid => false) tracetag_valid({ :tag => "a/b" }, :valid => false) tracetag_valid({ :tag => "a;b" }, :valid => false) diff --git a/test/models/user_test.rb b/test/models/user_test.rb index de318df20..4c863272b 100644 --- a/test/models/user_test.rb +++ b/test/models/user_test.rb @@ -52,7 +52,7 @@ class UserTest < ActiveSupport::TestCase ok.each do |name| user = build(:user) user.email = name - assert user.valid?(:save), user.errors.full_messages.join(",") + assert user.valid?(:save), "#{name} isn't valid when it should be" end bad.each do |name| @@ -129,11 +129,11 @@ class UserTest < ActiveSupport::TestCase # charlie and alice are both near bob, but alice has their data private assert_equal [charlie], bob.nearby # david has no user nearby, since edward is not active - assert_equal [], david.nearby + assert_empty david.nearby # south_pole_user has no user nearby, and doesn't throw exception - assert_equal [], south_pole_user.nearby + assert_empty south_pole_user.nearby # vagrant_user has no home location - assert_equal [], vagrant_user.nearby + assert_empty vagrant_user.nearby end def test_friends @@ -144,7 +144,7 @@ class UserTest < ActiveSupport::TestCase assert_equal [sec], norm.friends assert_equal 1, norm.friends.size - assert_equal [], sec.friends + assert_empty sec.friends assert_equal 0, sec.friends.size end diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 1fdbe1373..4c84d44fc 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -5,7 +5,7 @@ class IssuesTest < ApplicationSystemTestCase def test_view_issues_not_logged_in visit issues_path - assert page.has_content?(I18n.t("users.login.title")) + assert page.has_content?(I18n.t("sessions.new.title")) end def test_view_issues_normal_user diff --git a/test/system/user_signup_test.rb b/test/system/user_signup_test.rb new file mode 100644 index 000000000..d4da01436 --- /dev/null +++ b/test/system/user_signup_test.rb @@ -0,0 +1,11 @@ +require "application_system_test_case" + +class UserSignupTest < ApplicationSystemTestCase + test "Sign up from login page" do + visit login_path + + click_on "Register now" + + assert page.has_content? "Confirm Password" + end +end diff --git a/test/test_helper.rb b/test/test_helper.rb index da36be28b..a6147ef29 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -160,7 +160,7 @@ module ActiveSupport request.sign!(oauth) - method(method).call(request.signed_uri, options) + method(method).call(request.signed_uri, **options) end ## diff --git a/vendor/assets/iD/iD.js b/vendor/assets/iD/iD.js index 4acb40003..24cb83d9f 100644 --- a/vendor/assets/iD/iD.js +++ b/vendor/assets/iD/iD.js @@ -2,10 +2,6 @@ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; - function getDefaultExportFromCjs (x) { - return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; - } - function createCommonjsModule(fn, basedir, module) { return module = { path: basedir, @@ -26,12 +22,12 @@ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global_1 = - // eslint-disable-next-line no-undef + /* global globalThis -- safe */ check(typeof globalThis == 'object' && globalThis) || check(typeof window == 'object' && window) || check(typeof self == 'object' && self) || check(typeof commonjsGlobal == 'object' && commonjsGlobal) || - // eslint-disable-next-line no-new-func + // eslint-disable-next-line no-new-func -- fallback (function () { return this; })() || Function('return this')(); var fails = function (exec) { @@ -42,7 +38,7 @@ } }; - // Thank's IE8 for his funny defineProperty + // Detect IE8's incomplete defineProperty implementation var descriptors = !fails(function () { return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7; }); @@ -54,7 +50,7 @@ var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1); // `Object.prototype.propertyIsEnumerable` method implementation - // https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable + // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable var f = NASHORN_BUG ? function propertyIsEnumerable(V) { var descriptor = getOwnPropertyDescriptor(this, V); return !!descriptor && descriptor.enumerable; @@ -84,14 +80,14 @@ // fallback for non-array-like ES3 and non-enumerable old V8 strings var indexedObject = fails(function () { // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 - // eslint-disable-next-line no-prototype-builtins + // eslint-disable-next-line no-prototype-builtins -- safe return !Object('z').propertyIsEnumerable(0); }) ? function (it) { return classofRaw(it) == 'String' ? split.call(it, '') : Object(it); } : Object; // `RequireObjectCoercible` abstract operation - // https://tc39.github.io/ecma262/#sec-requireobjectcoercible + // https://tc39.es/ecma262/#sec-requireobjectcoercible var requireObjectCoercible = function (it) { if (it == undefined) throw TypeError("Can't call method on " + it); return it; @@ -110,7 +106,7 @@ }; // `ToPrimitive` abstract operation - // https://tc39.github.io/ecma262/#sec-toprimitive + // https://tc39.es/ecma262/#sec-toprimitive // instead of the ES6 spec version, we didn't implement @@toPrimitive case // and the second argument - flag - preferred type is a string var toPrimitive = function (input, PREFERRED_STRING) { @@ -146,7 +142,7 @@ var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // `Object.getOwnPropertyDescriptor` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor + // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor var f$1 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { O = toIndexedObject(O); P = toPrimitive(P, true); @@ -169,7 +165,7 @@ var nativeDefineProperty = Object.defineProperty; // `Object.defineProperty` method - // https://tc39.github.io/ecma262/#sec-object.defineproperty + // https://tc39.es/ecma262/#sec-object.defineproperty var f$2 = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) { anObject(O); P = toPrimitive(P, true); @@ -227,9 +223,9 @@ (module.exports = function (key, value) { return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {}); })('versions', []).push({ - version: '3.7.0', + version: '3.9.1', mode: 'global', - copyright: '© 2020 Denis Pushkarev (zloirock.ru)' + copyright: '© 2021 Denis Pushkarev (zloirock.ru)' }); }); @@ -355,7 +351,7 @@ var floor = Math.floor; // `ToInteger` abstract operation - // https://tc39.github.io/ecma262/#sec-tointeger + // https://tc39.es/ecma262/#sec-tointeger var toInteger = function (argument) { return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument); }; @@ -363,7 +359,7 @@ var min = Math.min; // `ToLength` abstract operation - // https://tc39.github.io/ecma262/#sec-tolength + // https://tc39.es/ecma262/#sec-tolength var toLength = function (argument) { return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 }; @@ -387,10 +383,10 @@ var index = toAbsoluteIndex(fromIndex, length); var value; // Array#includes uses SameValueZero equality algorithm - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check if (IS_INCLUDES && el != el) while (length > index) { value = O[index++]; - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check if (value != value) return true; // Array#indexOf ignores holes, Array#includes - not } else for (;length > index; index++) { @@ -401,10 +397,10 @@ var arrayIncludes = { // `Array.prototype.includes` method - // https://tc39.github.io/ecma262/#sec-array.prototype.includes + // https://tc39.es/ecma262/#sec-array.prototype.includes includes: createMethod(true), // `Array.prototype.indexOf` method - // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + // https://tc39.es/ecma262/#sec-array.prototype.indexof indexOf: createMethod(false) }; @@ -438,7 +434,7 @@ var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype'); // `Object.getOwnPropertyNames` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertynames + // https://tc39.es/ecma262/#sec-object.getownpropertynames var f$3 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return objectKeysInternal(O, hiddenKeys$1); }; @@ -545,7 +541,7 @@ }; // `Date.now` method - // https://tc39.github.io/ecma262/#sec-date.now + // https://tc39.es/ecma262/#sec-date.now _export({ target: 'Date', stat: true }, { now: function now() { return new Date().getTime(); @@ -559,47 +555,402 @@ var getTime = DatePrototype.getTime; // `Date.prototype.toString` method - // https://tc39.github.io/ecma262/#sec-date.prototype.tostring + // https://tc39.es/ecma262/#sec-date.prototype.tostring if (new Date(NaN) + '' != INVALID_DATE) { redefine(DatePrototype, TO_STRING, function toString() { var value = getTime.call(this); - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check return value === value ? nativeDateToString.call(this) : INVALID_DATE; }); } + function _typeof(obj) { + "@babel/helpers - typeof"; + + if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { + _typeof = function (obj) { + return typeof obj; + }; + } else { + _typeof = function (obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }; + } + + return _typeof(obj); + } + + function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } + } + + function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } + } + + function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; + } + + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + } + + function _slicedToArray(arr, i) { + return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); + } + + function _toConsumableArray(arr) { + return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); + } + + function _arrayWithoutHoles(arr) { + if (Array.isArray(arr)) return _arrayLikeToArray(arr); + } + + function _arrayWithHoles(arr) { + if (Array.isArray(arr)) return arr; + } + + function _iterableToArray(iter) { + if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); + } + + function _iterableToArrayLimit(arr, i) { + if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; + var _arr = []; + var _n = true; + var _d = false; + var _e = undefined; + + try { + for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { + _arr.push(_s.value); + + if (i && _arr.length === i) break; + } + } catch (err) { + _d = true; + _e = err; + } finally { + try { + if (!_n && _i["return"] != null) _i["return"](); + } finally { + if (_d) throw _e; + } + } + + return _arr; + } + + function _unsupportedIterableToArray(o, minLen) { + if (!o) return; + if (typeof o === "string") return _arrayLikeToArray(o, minLen); + var n = Object.prototype.toString.call(o).slice(8, -1); + if (n === "Object" && o.constructor) n = o.constructor.name; + if (n === "Map" || n === "Set") return Array.from(o); + if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); + } + + function _arrayLikeToArray(arr, len) { + if (len == null || len > arr.length) len = arr.length; + + for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; + + return arr2; + } + + function _nonIterableSpread() { + throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + + function _nonIterableRest() { + throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + + function _createForOfIteratorHelper(o, allowArrayLike) { + var it; + + if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { + if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { + if (it) o = it; + var i = 0; + + var F = function () {}; + + return { + s: F, + n: function () { + if (i >= o.length) return { + done: true + }; + return { + done: false, + value: o[i++] + }; + }, + e: function (e) { + throw e; + }, + f: F + }; + } + + throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + } + + var normalCompletion = true, + didErr = false, + err; + return { + s: function () { + it = o[Symbol.iterator](); + }, + n: function () { + var step = it.next(); + normalCompletion = step.done; + return step; + }, + e: function (e) { + didErr = true; + err = e; + }, + f: function () { + try { + if (!normalCompletion && it.return != null) it.return(); + } finally { + if (didErr) throw err; + } + } + }; + } + + var engineIsNode = classofRaw(global_1.process) == 'process'; + + var engineUserAgent = getBuiltIn('navigator', 'userAgent') || ''; + + var process$1 = global_1.process; + var versions = process$1 && process$1.versions; + var v8 = versions && versions.v8; + var match, version; + + if (v8) { + match = v8.split('.'); + version = match[0] + match[1]; + } else if (engineUserAgent) { + match = engineUserAgent.match(/Edge\/(\d+)/); + if (!match || match[1] >= 74) { + match = engineUserAgent.match(/Chrome\/(\d+)/); + if (match) version = match[1]; + } + } + + var engineV8Version = version && +version; + var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () { - // Chrome 38 Symbol has incorrect toString conversion - // eslint-disable-next-line no-undef - return !String(Symbol()); + /* global Symbol -- required for testing */ + return !Symbol.sham && + // Chrome 38 Symbol has incorrect toString conversion + // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances + (engineIsNode ? engineV8Version === 38 : engineV8Version > 37 && engineV8Version < 41); }); var useSymbolAsUid = nativeSymbol - // eslint-disable-next-line no-undef + /* global Symbol -- safe */ && !Symbol.sham - // eslint-disable-next-line no-undef && typeof Symbol.iterator == 'symbol'; - // `IsArray` abstract operation - // https://tc39.github.io/ecma262/#sec-isarray - var isArray = Array.isArray || function isArray(arg) { - return classofRaw(arg) == 'Array'; + var WellKnownSymbolsStore = shared('wks'); + var Symbol$1 = global_1.Symbol; + var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid; + + var wellKnownSymbol = function (name) { + if (!has(WellKnownSymbolsStore, name) || !(nativeSymbol || typeof WellKnownSymbolsStore[name] == 'string')) { + if (nativeSymbol && has(Symbol$1, name)) { + WellKnownSymbolsStore[name] = Symbol$1[name]; + } else { + WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name); + } + } return WellKnownSymbolsStore[name]; + }; + + var f$5 = wellKnownSymbol; + + var wellKnownSymbolWrapped = { + f: f$5 + }; + + var defineProperty = objectDefineProperty.f; + + var defineWellKnownSymbol = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, { + value: wellKnownSymbolWrapped.f(NAME) + }); + }; + + // `Symbol.iterator` well-known symbol + // https://tc39.es/ecma262/#sec-symbol.iterator + defineWellKnownSymbol('iterator'); + + var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + var test = {}; + + test[TO_STRING_TAG] = 'z'; + + var toStringTagSupport = String(test) === '[object z]'; + + var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag'); + // ES3 wrong here + var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; + + // fallback for IE11 Script Access Denied error + var tryGet = function (it, key) { + try { + return it[key]; + } catch (error) { /* empty */ } + }; + + // getting tag from ES6+ `Object.prototype.toString` + var classof = toStringTagSupport ? classofRaw : function (it) { + var O, tag, result; + return it === undefined ? 'Undefined' : it === null ? 'Null' + // @@toStringTag case + : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$1)) == 'string' ? tag + // builtinTag case + : CORRECT_ARGUMENTS ? classofRaw(O) + // ES3 arguments fallback + : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result; + }; + + // `Object.prototype.toString` method implementation + // https://tc39.es/ecma262/#sec-object.prototype.tostring + var objectToString = toStringTagSupport ? {}.toString : function toString() { + return '[object ' + classof(this) + ']'; + }; + + // `Object.prototype.toString` method + // https://tc39.es/ecma262/#sec-object.prototype.tostring + if (!toStringTagSupport) { + redefine(Object.prototype, 'toString', objectToString, { unsafe: true }); + } + + // `String.prototype.{ codePointAt, at }` methods implementation + var createMethod$1 = function (CONVERT_TO_STRING) { + return function ($this, pos) { + var S = String(requireObjectCoercible($this)); + var position = toInteger(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; + first = S.charCodeAt(position); + return first < 0xD800 || first > 0xDBFF || position + 1 === size + || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF + ? CONVERT_TO_STRING ? S.charAt(position) : first + : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + }; + }; + + var stringMultibyte = { + // `String.prototype.codePointAt` method + // https://tc39.es/ecma262/#sec-string.prototype.codepointat + codeAt: createMethod$1(false), + // `String.prototype.at` method + // https://github.com/mathiasbynens/String.prototype.at + charAt: createMethod$1(true) }; // `ToObject` abstract operation - // https://tc39.github.io/ecma262/#sec-toobject + // https://tc39.es/ecma262/#sec-toobject var toObject = function (argument) { return Object(requireObjectCoercible(argument)); }; + var correctPrototypeGetter = !fails(function () { + function F() { /* empty */ } + F.prototype.constructor = null; + return Object.getPrototypeOf(new F()) !== F.prototype; + }); + + var IE_PROTO = sharedKey('IE_PROTO'); + var ObjectPrototype = Object.prototype; + + // `Object.getPrototypeOf` method + // https://tc39.es/ecma262/#sec-object.getprototypeof + var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) { + O = toObject(O); + if (has(O, IE_PROTO)) return O[IE_PROTO]; + if (typeof O.constructor == 'function' && O instanceof O.constructor) { + return O.constructor.prototype; + } return O instanceof Object ? ObjectPrototype : null; + }; + + var ITERATOR = wellKnownSymbol('iterator'); + var BUGGY_SAFARI_ITERATORS = false; + + var returnThis = function () { return this; }; + + // `%IteratorPrototype%` object + // https://tc39.es/ecma262/#sec-%iteratorprototype%-object + var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; + + if ([].keys) { + arrayIterator = [].keys(); + // Safari 8 has buggy iterators w/o `next` + if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; + else { + PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator)); + if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; + } + } + + var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function () { + var test = {}; + // FF44- legacy iterators case + return IteratorPrototype[ITERATOR].call(test) !== test; + }); + + if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {}; + + // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() + if ( !has(IteratorPrototype, ITERATOR)) { + createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis); + } + + var iteratorsCore = { + IteratorPrototype: IteratorPrototype, + BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS + }; + // `Object.keys` method - // https://tc39.github.io/ecma262/#sec-object.keys + // https://tc39.es/ecma262/#sec-object.keys var objectKeys = Object.keys || function keys(O) { return objectKeysInternal(O, enumBugKeys); }; // `Object.defineProperties` method - // https://tc39.github.io/ecma262/#sec-object.defineproperties + // https://tc39.es/ecma262/#sec-object.defineproperties var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) { anObject(O); var keys = objectKeys(Properties); @@ -616,7 +967,7 @@ var LT = '<'; var PROTOTYPE = 'prototype'; var SCRIPT = 'script'; - var IE_PROTO = sharedKey('IE_PROTO'); + var IE_PROTO$1 = sharedKey('IE_PROTO'); var EmptyConstructor = function () { /* empty */ }; @@ -658,7 +1009,7 @@ var activeXDocument; var NullProtoObject = function () { try { - /* global ActiveXObject */ + /* global ActiveXObject -- old IE */ activeXDocument = document.domain && new ActiveXObject('htmlfile'); } catch (error) { /* ignore */ } NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame(); @@ -667,10 +1018,10 @@ return NullProtoObject(); }; - hiddenKeys[IE_PROTO] = true; + hiddenKeys[IE_PROTO$1] = true; // `Object.create` method - // https://tc39.github.io/ecma262/#sec-object.create + // https://tc39.es/ecma262/#sec-object.create var objectCreate = Object.create || function create(O, Properties) { var result; if (O !== null) { @@ -678,108 +1029,371 @@ result = new EmptyConstructor(); EmptyConstructor[PROTOTYPE] = null; // add "__proto__" for Object.getPrototypeOf polyfill - result[IE_PROTO] = O; + result[IE_PROTO$1] = O; } else result = NullProtoObject(); return Properties === undefined ? result : objectDefineProperties(result, Properties); }; - var nativeGetOwnPropertyNames = objectGetOwnPropertyNames.f; + var defineProperty$1 = objectDefineProperty.f; - var toString$1 = {}.toString; - var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames - ? Object.getOwnPropertyNames(window) : []; - var getWindowNames = function (it) { - try { - return nativeGetOwnPropertyNames(it); - } catch (error) { - return windowNames.slice(); + var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag'); + + var setToStringTag = function (it, TAG, STATIC) { + if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG$2)) { + defineProperty$1(it, TO_STRING_TAG$2, { configurable: true, value: TAG }); } }; - // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window - var f$5 = function getOwnPropertyNames(it) { - return windowNames && toString$1.call(it) == '[object Window]' - ? getWindowNames(it) - : nativeGetOwnPropertyNames(toIndexedObject(it)); + var iterators = {}; + + var IteratorPrototype$1 = iteratorsCore.IteratorPrototype; + + + + + + var returnThis$1 = function () { return this; }; + + var createIteratorConstructor = function (IteratorConstructor, NAME, next) { + var TO_STRING_TAG = NAME + ' Iterator'; + IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { next: createPropertyDescriptor(1, next) }); + setToStringTag(IteratorConstructor, TO_STRING_TAG, false); + iterators[TO_STRING_TAG] = returnThis$1; + return IteratorConstructor; }; - var objectGetOwnPropertyNamesExternal = { - f: f$5 + var aPossiblePrototype = function (it) { + if (!isObject(it) && it !== null) { + throw TypeError("Can't set " + String(it) + ' as a prototype'); + } return it; }; - var WellKnownSymbolsStore = shared('wks'); - var Symbol$1 = global_1.Symbol; - var createWellKnownSymbol = useSymbolAsUid ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid; + /* eslint-disable no-proto -- safe */ - var wellKnownSymbol = function (name) { - if (!has(WellKnownSymbolsStore, name)) { - if (nativeSymbol && has(Symbol$1, name)) WellKnownSymbolsStore[name] = Symbol$1[name]; - else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name); - } return WellKnownSymbolsStore[name]; - }; - var f$6 = wellKnownSymbol; - var wellKnownSymbolWrapped = { - f: f$6 - }; + // `Object.setPrototypeOf` method + // https://tc39.es/ecma262/#sec-object.setprototypeof + // Works with __proto__ only. Old v8 can't work with null proto objects. + var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () { + var CORRECT_SETTER = false; + var test = {}; + var setter; + try { + setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set; + setter.call(test, []); + CORRECT_SETTER = test instanceof Array; + } catch (error) { /* empty */ } + return function setPrototypeOf(O, proto) { + anObject(O); + aPossiblePrototype(proto); + if (CORRECT_SETTER) setter.call(O, proto); + else O.__proto__ = proto; + return O; + }; + }() : undefined); - var defineProperty = objectDefineProperty.f; + var IteratorPrototype$2 = iteratorsCore.IteratorPrototype; + var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS; + var ITERATOR$1 = wellKnownSymbol('iterator'); + var KEYS = 'keys'; + var VALUES = 'values'; + var ENTRIES = 'entries'; - var defineWellKnownSymbol = function (NAME) { - var Symbol = path.Symbol || (path.Symbol = {}); - if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, { - value: wellKnownSymbolWrapped.f(NAME) - }); - }; + var returnThis$2 = function () { return this; }; - var defineProperty$1 = objectDefineProperty.f; + var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { + createIteratorConstructor(IteratorConstructor, NAME, next); + var getIterationMethod = function (KIND) { + if (KIND === DEFAULT && defaultIterator) return defaultIterator; + if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND]; + switch (KIND) { + case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; + case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; + case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; + } return function () { return new IteratorConstructor(this); }; + }; + var TO_STRING_TAG = NAME + ' Iterator'; + var INCORRECT_VALUES_NAME = false; + var IterablePrototype = Iterable.prototype; + var nativeIterator = IterablePrototype[ITERATOR$1] + || IterablePrototype['@@iterator'] + || DEFAULT && IterablePrototype[DEFAULT]; + var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT); + var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; + var CurrentIteratorPrototype, methods, KEY; - var TO_STRING_TAG = wellKnownSymbol('toStringTag'); + // fix native + if (anyNativeIterator) { + CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable())); + if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) { + if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) { + if (objectSetPrototypeOf) { + objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2); + } else if (typeof CurrentIteratorPrototype[ITERATOR$1] != 'function') { + createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR$1, returnThis$2); + } + } + // Set @@toStringTag to native iterators + setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true); + } + } - var setToStringTag = function (it, TAG, STATIC) { - if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) { - defineProperty$1(it, TO_STRING_TAG, { configurable: true, value: TAG }); + // fix Array#{values, @@iterator}.name in V8 / FF + if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { + INCORRECT_VALUES_NAME = true; + defaultIterator = function values() { return nativeIterator.call(this); }; } - }; - var aFunction$1 = function (it) { - if (typeof it != 'function') { - throw TypeError(String(it) + ' is not a function'); - } return it; - }; + // define iterator + if ( IterablePrototype[ITERATOR$1] !== defaultIterator) { + createNonEnumerableProperty(IterablePrototype, ITERATOR$1, defaultIterator); + } + iterators[NAME] = defaultIterator; - // optional / simple context binding - var functionBindContext = function (fn, that, length) { - aFunction$1(fn); - if (that === undefined) return fn; - switch (length) { - case 0: return function () { - return fn.call(that); - }; - case 1: return function (a) { - return fn.call(that, a); - }; - case 2: return function (a, b) { - return fn.call(that, a, b); - }; - case 3: return function (a, b, c) { - return fn.call(that, a, b, c); + // export additional methods + if (DEFAULT) { + methods = { + values: getIterationMethod(VALUES), + keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), + entries: getIterationMethod(ENTRIES) }; + if (FORCED) for (KEY in methods) { + if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { + redefine(IterablePrototype, KEY, methods[KEY]); + } + } else _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME }, methods); } - return function (/* ...args */) { - return fn.apply(that, arguments); - }; + + return methods; }; - var SPECIES = wellKnownSymbol('species'); + var charAt = stringMultibyte.charAt; + + + + var STRING_ITERATOR = 'String Iterator'; + var setInternalState = internalState.set; + var getInternalState = internalState.getterFor(STRING_ITERATOR); + + // `String.prototype[@@iterator]` method + // https://tc39.es/ecma262/#sec-string.prototype-@@iterator + defineIterator(String, 'String', function (iterated) { + setInternalState(this, { + type: STRING_ITERATOR, + string: String(iterated), + index: 0 + }); + // `%StringIteratorPrototype%.next` method + // https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next + }, function next() { + var state = getInternalState(this); + var string = state.string; + var index = state.index; + var point; + if (index >= string.length) return { value: undefined, done: true }; + point = charAt(string, index); + state.index += point.length; + return { value: point, done: false }; + }); + + var UNSCOPABLES = wellKnownSymbol('unscopables'); + var ArrayPrototype = Array.prototype; + + // Array.prototype[@@unscopables] + // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables + if (ArrayPrototype[UNSCOPABLES] == undefined) { + objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, { + configurable: true, + value: objectCreate(null) + }); + } + + // add a key to Array.prototype[@@unscopables] + var addToUnscopables = function (key) { + ArrayPrototype[UNSCOPABLES][key] = true; + }; + + var ARRAY_ITERATOR = 'Array Iterator'; + var setInternalState$1 = internalState.set; + var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR); + + // `Array.prototype.entries` method + // https://tc39.es/ecma262/#sec-array.prototype.entries + // `Array.prototype.keys` method + // https://tc39.es/ecma262/#sec-array.prototype.keys + // `Array.prototype.values` method + // https://tc39.es/ecma262/#sec-array.prototype.values + // `Array.prototype[@@iterator]` method + // https://tc39.es/ecma262/#sec-array.prototype-@@iterator + // `CreateArrayIterator` internal method + // https://tc39.es/ecma262/#sec-createarrayiterator + var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) { + setInternalState$1(this, { + type: ARRAY_ITERATOR, + target: toIndexedObject(iterated), // target + index: 0, // next index + kind: kind // kind + }); + // `%ArrayIteratorPrototype%.next` method + // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next + }, function () { + var state = getInternalState$1(this); + var target = state.target; + var kind = state.kind; + var index = state.index++; + if (!target || index >= target.length) { + state.target = undefined; + return { value: undefined, done: true }; + } + if (kind == 'keys') return { value: index, done: false }; + if (kind == 'values') return { value: target[index], done: false }; + return { value: [index, target[index]], done: false }; + }, 'values'); + + // argumentsList[@@iterator] is %ArrayProto_values% + // https://tc39.es/ecma262/#sec-createunmappedargumentsobject + // https://tc39.es/ecma262/#sec-createmappedargumentsobject + iterators.Arguments = iterators.Array; + + // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables + addToUnscopables('keys'); + addToUnscopables('values'); + addToUnscopables('entries'); + + // iterable DOM collections + // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods + var domIterables = { + CSSRuleList: 0, + CSSStyleDeclaration: 0, + CSSValueList: 0, + ClientRectList: 0, + DOMRectList: 0, + DOMStringList: 0, + DOMTokenList: 1, + DataTransferItemList: 0, + FileList: 0, + HTMLAllCollection: 0, + HTMLCollection: 0, + HTMLFormElement: 0, + HTMLSelectElement: 0, + MediaList: 0, + MimeTypeArray: 0, + NamedNodeMap: 0, + NodeList: 1, + PaintRequestList: 0, + Plugin: 0, + PluginArray: 0, + SVGLengthList: 0, + SVGNumberList: 0, + SVGPathSegList: 0, + SVGPointList: 0, + SVGStringList: 0, + SVGTransformList: 0, + SourceBufferList: 0, + StyleSheetList: 0, + TextTrackCueList: 0, + TextTrackList: 0, + TouchList: 0 + }; + + var ITERATOR$2 = wellKnownSymbol('iterator'); + var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag'); + var ArrayValues = es_array_iterator.values; + + for (var COLLECTION_NAME in domIterables) { + var Collection = global_1[COLLECTION_NAME]; + var CollectionPrototype = Collection && Collection.prototype; + if (CollectionPrototype) { + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype[ITERATOR$2] !== ArrayValues) try { + createNonEnumerableProperty(CollectionPrototype, ITERATOR$2, ArrayValues); + } catch (error) { + CollectionPrototype[ITERATOR$2] = ArrayValues; + } + if (!CollectionPrototype[TO_STRING_TAG$3]) { + createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG$3, COLLECTION_NAME); + } + if (domIterables[COLLECTION_NAME]) for (var METHOD_NAME in es_array_iterator) { + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) try { + createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, es_array_iterator[METHOD_NAME]); + } catch (error) { + CollectionPrototype[METHOD_NAME] = es_array_iterator[METHOD_NAME]; + } + } + } + } + + // `IsArray` abstract operation + // https://tc39.es/ecma262/#sec-isarray + var isArray = Array.isArray || function isArray(arg) { + return classofRaw(arg) == 'Array'; + }; + + var nativeGetOwnPropertyNames = objectGetOwnPropertyNames.f; + + var toString$1 = {}.toString; + + var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames + ? Object.getOwnPropertyNames(window) : []; + + var getWindowNames = function (it) { + try { + return nativeGetOwnPropertyNames(it); + } catch (error) { + return windowNames.slice(); + } + }; + + // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window + var f$6 = function getOwnPropertyNames(it) { + return windowNames && toString$1.call(it) == '[object Window]' + ? getWindowNames(it) + : nativeGetOwnPropertyNames(toIndexedObject(it)); + }; + + var objectGetOwnPropertyNamesExternal = { + f: f$6 + }; + + var aFunction$1 = function (it) { + if (typeof it != 'function') { + throw TypeError(String(it) + ' is not a function'); + } return it; + }; + + // optional / simple context binding + var functionBindContext = function (fn, that, length) { + aFunction$1(fn); + if (that === undefined) return fn; + switch (length) { + case 0: return function () { + return fn.call(that); + }; + case 1: return function (a) { + return fn.call(that, a); + }; + case 2: return function (a, b) { + return fn.call(that, a, b); + }; + case 3: return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + return function (/* ...args */) { + return fn.apply(that, arguments); + }; + }; + + var SPECIES = wellKnownSymbol('species'); // `ArraySpeciesCreate` abstract operation - // https://tc39.github.io/ecma262/#sec-arrayspeciescreate + // https://tc39.es/ecma262/#sec-arrayspeciescreate var arraySpeciesCreate = function (originalArray, length) { var C; if (isArray(originalArray)) { @@ -795,13 +1409,14 @@ var push = [].push; - // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation - var createMethod$1 = function (TYPE) { + // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterOut }` methods implementation + var createMethod$2 = function (TYPE) { var IS_MAP = TYPE == 1; var IS_FILTER = TYPE == 2; var IS_SOME = TYPE == 3; var IS_EVERY = TYPE == 4; var IS_FIND_INDEX = TYPE == 6; + var IS_FILTER_OUT = TYPE == 7; var NO_HOLES = TYPE == 5 || IS_FIND_INDEX; return function ($this, callbackfn, that, specificCreate) { var O = toObject($this); @@ -810,7 +1425,7 @@ var length = toLength(self.length); var index = 0; var create = specificCreate || arraySpeciesCreate; - var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined; + var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_OUT ? create($this, 0) : undefined; var value, result; for (;length > index; index++) if (NO_HOLES || index in self) { value = self[index]; @@ -822,7 +1437,10 @@ case 5: return value; // find case 6: return index; // findIndex case 2: push.call(target, value); // filter - } else if (IS_EVERY) return false; // every + } else switch (TYPE) { + case 4: return false; // every + case 7: push.call(target, value); // filterOut + } } } return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target; @@ -831,26 +1449,29 @@ var arrayIteration = { // `Array.prototype.forEach` method - // https://tc39.github.io/ecma262/#sec-array.prototype.foreach - forEach: createMethod$1(0), + // https://tc39.es/ecma262/#sec-array.prototype.foreach + forEach: createMethod$2(0), // `Array.prototype.map` method - // https://tc39.github.io/ecma262/#sec-array.prototype.map - map: createMethod$1(1), + // https://tc39.es/ecma262/#sec-array.prototype.map + map: createMethod$2(1), // `Array.prototype.filter` method - // https://tc39.github.io/ecma262/#sec-array.prototype.filter - filter: createMethod$1(2), + // https://tc39.es/ecma262/#sec-array.prototype.filter + filter: createMethod$2(2), // `Array.prototype.some` method - // https://tc39.github.io/ecma262/#sec-array.prototype.some - some: createMethod$1(3), + // https://tc39.es/ecma262/#sec-array.prototype.some + some: createMethod$2(3), // `Array.prototype.every` method - // https://tc39.github.io/ecma262/#sec-array.prototype.every - every: createMethod$1(4), + // https://tc39.es/ecma262/#sec-array.prototype.every + every: createMethod$2(4), // `Array.prototype.find` method - // https://tc39.github.io/ecma262/#sec-array.prototype.find - find: createMethod$1(5), + // https://tc39.es/ecma262/#sec-array.prototype.find + find: createMethod$2(5), // `Array.prototype.findIndex` method - // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex - findIndex: createMethod$1(6) + // https://tc39.es/ecma262/#sec-array.prototype.findIndex + findIndex: createMethod$2(6), + // `Array.prototype.filterOut` method + // https://github.com/tc39/proposal-array-filtering + filterOut: createMethod$2(7) }; var $forEach = arrayIteration.forEach; @@ -859,9 +1480,9 @@ var SYMBOL = 'Symbol'; var PROTOTYPE$1 = 'prototype'; var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); - var setInternalState = internalState.set; - var getInternalState = internalState.getterFor(SYMBOL); - var ObjectPrototype = Object[PROTOTYPE$1]; + var setInternalState$2 = internalState.set; + var getInternalState$2 = internalState.getterFor(SYMBOL); + var ObjectPrototype$1 = Object[PROTOTYPE$1]; var $Symbol = global_1.Symbol; var $stringify = getBuiltIn('JSON', 'stringify'); var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f; @@ -883,17 +1504,17 @@ get: function () { return nativeDefineProperty$1(this, 'a', { value: 7 }).a; } })).a != 7; }) ? function (O, P, Attributes) { - var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype, P); - if (ObjectPrototypeDescriptor) delete ObjectPrototype[P]; + var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype$1, P); + if (ObjectPrototypeDescriptor) delete ObjectPrototype$1[P]; nativeDefineProperty$1(O, P, Attributes); - if (ObjectPrototypeDescriptor && O !== ObjectPrototype) { - nativeDefineProperty$1(ObjectPrototype, P, ObjectPrototypeDescriptor); + if (ObjectPrototypeDescriptor && O !== ObjectPrototype$1) { + nativeDefineProperty$1(ObjectPrototype$1, P, ObjectPrototypeDescriptor); } } : nativeDefineProperty$1; var wrap = function (tag, description) { var symbol = AllSymbols[tag] = objectCreate($Symbol[PROTOTYPE$1]); - setInternalState(symbol, { + setInternalState$2(symbol, { type: SYMBOL, tag: tag, description: description @@ -909,7 +1530,7 @@ }; var $defineProperty = function defineProperty(O, P, Attributes) { - if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes); + if (O === ObjectPrototype$1) $defineProperty(ObjectPrototypeSymbols, P, Attributes); anObject(O); var key = toPrimitive(P, true); anObject(Attributes); @@ -941,14 +1562,14 @@ var $propertyIsEnumerable = function propertyIsEnumerable(V) { var P = toPrimitive(V, true); var enumerable = nativePropertyIsEnumerable$1.call(this, P); - if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false; + if (this === ObjectPrototype$1 && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false; return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true; }; var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) { var it = toIndexedObject(O); var key = toPrimitive(P, true); - if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return; + if (it === ObjectPrototype$1 && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return; var descriptor = nativeGetOwnPropertyDescriptor$1(it, key); if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) { descriptor.enumerable = true; @@ -966,11 +1587,11 @@ }; var $getOwnPropertySymbols = function getOwnPropertySymbols(O) { - var IS_OBJECT_PROTOTYPE = O === ObjectPrototype; + var IS_OBJECT_PROTOTYPE = O === ObjectPrototype$1; var names = nativeGetOwnPropertyNames$1(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O)); var result = []; $forEach(names, function (key) { - if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) { + if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype$1, key))) { result.push(AllSymbols[key]); } }); @@ -978,23 +1599,23 @@ }; // `Symbol` constructor - // https://tc39.github.io/ecma262/#sec-symbol-constructor + // https://tc39.es/ecma262/#sec-symbol-constructor if (!nativeSymbol) { $Symbol = function Symbol() { if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor'); var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]); var tag = uid(description); var setter = function (value) { - if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value); + if (this === ObjectPrototype$1) setter.call(ObjectPrototypeSymbols, value); if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false; setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value)); }; - if (descriptors && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter }); + if (descriptors && USE_SETTER) setSymbolDescriptor(ObjectPrototype$1, tag, { configurable: true, set: setter }); return wrap(tag, description); }; redefine($Symbol[PROTOTYPE$1], 'toString', function toString() { - return getInternalState(this).tag; + return getInternalState$2(this).tag; }); redefine($Symbol, 'withoutSetter', function (description) { @@ -1016,11 +1637,11 @@ nativeDefineProperty$1($Symbol[PROTOTYPE$1], 'description', { configurable: true, get: function description() { - return getInternalState(this).description; + return getInternalState$2(this).description; } }); { - redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true }); + redefine(ObjectPrototype$1, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true }); } } } @@ -1035,7 +1656,7 @@ _export({ target: SYMBOL, stat: true, forced: !nativeSymbol }, { // `Symbol.for` method - // https://tc39.github.io/ecma262/#sec-symbol.for + // https://tc39.es/ecma262/#sec-symbol.for 'for': function (key) { var string = String(key); if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string]; @@ -1045,7 +1666,7 @@ return symbol; }, // `Symbol.keyFor` method - // https://tc39.github.io/ecma262/#sec-symbol.keyfor + // https://tc39.es/ecma262/#sec-symbol.keyfor keyFor: function keyFor(sym) { if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol'); if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym]; @@ -1056,25 +1677,25 @@ _export({ target: 'Object', stat: true, forced: !nativeSymbol, sham: !descriptors }, { // `Object.create` method - // https://tc39.github.io/ecma262/#sec-object.create + // https://tc39.es/ecma262/#sec-object.create create: $create, // `Object.defineProperty` method - // https://tc39.github.io/ecma262/#sec-object.defineproperty + // https://tc39.es/ecma262/#sec-object.defineproperty defineProperty: $defineProperty, // `Object.defineProperties` method - // https://tc39.github.io/ecma262/#sec-object.defineproperties + // https://tc39.es/ecma262/#sec-object.defineproperties defineProperties: $defineProperties, // `Object.getOwnPropertyDescriptor` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors + // https://tc39.es/ecma262/#sec-object.getownpropertydescriptors getOwnPropertyDescriptor: $getOwnPropertyDescriptor }); _export({ target: 'Object', stat: true, forced: !nativeSymbol }, { // `Object.getOwnPropertyNames` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertynames + // https://tc39.es/ecma262/#sec-object.getownpropertynames getOwnPropertyNames: $getOwnPropertyNames, // `Object.getOwnPropertySymbols` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols + // https://tc39.es/ecma262/#sec-object.getownpropertysymbols getOwnPropertySymbols: $getOwnPropertySymbols }); @@ -1087,7 +1708,7 @@ }); // `JSON.stringify` method behavior with symbols - // https://tc39.github.io/ecma262/#sec-json.stringify + // https://tc39.es/ecma262/#sec-json.stringify if ($stringify) { var FORCED_JSON_STRINGIFY = !nativeSymbol || fails(function () { var symbol = $Symbol(); @@ -1100,7 +1721,7 @@ }); _export({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, { - // eslint-disable-next-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` stringify: function stringify(it, replacer, space) { var args = [it]; var index = 1; @@ -1119,12 +1740,12 @@ } // `Symbol.prototype[@@toPrimitive]` method - // https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive + // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive if (!$Symbol[PROTOTYPE$1][TO_PRIMITIVE]) { createNonEnumerableProperty($Symbol[PROTOTYPE$1], TO_PRIMITIVE, $Symbol[PROTOTYPE$1].valueOf); } // `Symbol.prototype[@@toStringTag]` property - // https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag + // https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag setToStringTag($Symbol, SYMBOL); hiddenKeys[HIDDEN] = true; @@ -1172,668 +1793,237 @@ }); } - // `Symbol.iterator` well-known symbol - // https://tc39.github.io/ecma262/#sec-symbol.iterator - defineWellKnownSymbol('iterator'); + var arrayBufferNative = typeof ArrayBuffer !== 'undefined' && typeof DataView !== 'undefined'; - var arrayMethodIsStrict = function (METHOD_NAME, argument) { - var method = [][METHOD_NAME]; - return !!method && fails(function () { - // eslint-disable-next-line no-useless-call,no-throw-literal - method.call(null, argument || function () { throw 1; }, 1); - }); + var redefineAll = function (target, src, options) { + for (var key in src) redefine(target, key, src[key], options); + return target; }; - var defineProperty$3 = Object.defineProperty; - var cache = {}; - - var thrower = function (it) { throw it; }; - - var arrayMethodUsesToLength = function (METHOD_NAME, options) { - if (has(cache, METHOD_NAME)) return cache[METHOD_NAME]; - if (!options) options = {}; - var method = [][METHOD_NAME]; - var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false; - var argument0 = has(options, 0) ? options[0] : thrower; - var argument1 = has(options, 1) ? options[1] : undefined; - - return cache[METHOD_NAME] = !!method && !fails(function () { - if (ACCESSORS && !descriptors) return true; - var O = { length: -1 }; - - if (ACCESSORS) defineProperty$3(O, 1, { enumerable: true, get: thrower }); - else O[1] = 1; - - method.call(O, argument0, argument1); - }); + var anInstance = function (it, Constructor, name) { + if (!(it instanceof Constructor)) { + throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation'); + } return it; }; - var $forEach$1 = arrayIteration.forEach; - - - - var STRICT_METHOD = arrayMethodIsStrict('forEach'); - var USES_TO_LENGTH = arrayMethodUsesToLength('forEach'); - - // `Array.prototype.forEach` method implementation - // https://tc39.github.io/ecma262/#sec-array.prototype.foreach - var arrayForEach = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) { - return $forEach$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); - } : [].forEach; - - // `Array.prototype.forEach` method - // https://tc39.github.io/ecma262/#sec-array.prototype.foreach - _export({ target: 'Array', proto: true, forced: [].forEach != arrayForEach }, { - forEach: arrayForEach - }); - - var $indexOf = arrayIncludes.indexOf; - - - - var nativeIndexOf = [].indexOf; + // `ToIndex` abstract operation + // https://tc39.es/ecma262/#sec-toindex + var toIndex = function (it) { + if (it === undefined) return 0; + var number = toInteger(it); + var length = toLength(number); + if (number !== length) throw RangeError('Wrong length or index'); + return length; + }; - var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0; - var STRICT_METHOD$1 = arrayMethodIsStrict('indexOf'); - var USES_TO_LENGTH$1 = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); + // IEEE754 conversions based on https://github.com/feross/ieee754 + var abs = Math.abs; + var pow = Math.pow; + var floor$1 = Math.floor; + var log = Math.log; + var LN2 = Math.LN2; - // `Array.prototype.indexOf` method - // https://tc39.github.io/ecma262/#sec-array.prototype.indexof - _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD$1 || !USES_TO_LENGTH$1 }, { - indexOf: function indexOf(searchElement /* , fromIndex = 0 */) { - return NEGATIVE_ZERO - // convert -0 to +0 - ? nativeIndexOf.apply(this, arguments) || 0 - : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined); + var pack = function (number, mantissaLength, bytes) { + var buffer = new Array(bytes); + var exponentLength = bytes * 8 - mantissaLength - 1; + var eMax = (1 << exponentLength) - 1; + var eBias = eMax >> 1; + var rt = mantissaLength === 23 ? pow(2, -24) - pow(2, -77) : 0; + var sign = number < 0 || number === 0 && 1 / number < 0 ? 1 : 0; + var index = 0; + var exponent, mantissa, c; + number = abs(number); + // eslint-disable-next-line no-self-compare -- NaN check + if (number != number || number === Infinity) { + // eslint-disable-next-line no-self-compare -- NaN check + mantissa = number != number ? 1 : 0; + exponent = eMax; + } else { + exponent = floor$1(log(number) / LN2); + if (number * (c = pow(2, -exponent)) < 1) { + exponent--; + c *= 2; + } + if (exponent + eBias >= 1) { + number += rt / c; + } else { + number += rt * pow(2, 1 - eBias); + } + if (number * c >= 2) { + exponent++; + c /= 2; + } + if (exponent + eBias >= eMax) { + mantissa = 0; + exponent = eMax; + } else if (exponent + eBias >= 1) { + mantissa = (number * c - 1) * pow(2, mantissaLength); + exponent = exponent + eBias; + } else { + mantissa = number * pow(2, eBias - 1) * pow(2, mantissaLength); + exponent = 0; + } } - }); - - // `Array.isArray` method - // https://tc39.github.io/ecma262/#sec-array.isarray - _export({ target: 'Array', stat: true }, { - isArray: isArray - }); - - var UNSCOPABLES = wellKnownSymbol('unscopables'); - var ArrayPrototype = Array.prototype; - - // Array.prototype[@@unscopables] - // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables - if (ArrayPrototype[UNSCOPABLES] == undefined) { - objectDefineProperty.f(ArrayPrototype, UNSCOPABLES, { - configurable: true, - value: objectCreate(null) - }); - } - - // add a key to Array.prototype[@@unscopables] - var addToUnscopables = function (key) { - ArrayPrototype[UNSCOPABLES][key] = true; + for (; mantissaLength >= 8; buffer[index++] = mantissa & 255, mantissa /= 256, mantissaLength -= 8); + exponent = exponent << mantissaLength | mantissa; + exponentLength += mantissaLength; + for (; exponentLength > 0; buffer[index++] = exponent & 255, exponent /= 256, exponentLength -= 8); + buffer[--index] |= sign * 128; + return buffer; }; - var iterators = {}; - - var correctPrototypeGetter = !fails(function () { - function F() { /* empty */ } - F.prototype.constructor = null; - return Object.getPrototypeOf(new F()) !== F.prototype; - }); + var unpack = function (buffer, mantissaLength) { + var bytes = buffer.length; + var exponentLength = bytes * 8 - mantissaLength - 1; + var eMax = (1 << exponentLength) - 1; + var eBias = eMax >> 1; + var nBits = exponentLength - 7; + var index = bytes - 1; + var sign = buffer[index--]; + var exponent = sign & 127; + var mantissa; + sign >>= 7; + for (; nBits > 0; exponent = exponent * 256 + buffer[index], index--, nBits -= 8); + mantissa = exponent & (1 << -nBits) - 1; + exponent >>= -nBits; + nBits += mantissaLength; + for (; nBits > 0; mantissa = mantissa * 256 + buffer[index], index--, nBits -= 8); + if (exponent === 0) { + exponent = 1 - eBias; + } else if (exponent === eMax) { + return mantissa ? NaN : sign ? -Infinity : Infinity; + } else { + mantissa = mantissa + pow(2, mantissaLength); + exponent = exponent - eBias; + } return (sign ? -1 : 1) * mantissa * pow(2, exponent - mantissaLength); + }; - var IE_PROTO$1 = sharedKey('IE_PROTO'); - var ObjectPrototype$1 = Object.prototype; + var ieee754 = { + pack: pack, + unpack: unpack + }; - // `Object.getPrototypeOf` method - // https://tc39.github.io/ecma262/#sec-object.getprototypeof - var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) { - O = toObject(O); - if (has(O, IE_PROTO$1)) return O[IE_PROTO$1]; - if (typeof O.constructor == 'function' && O instanceof O.constructor) { - return O.constructor.prototype; - } return O instanceof Object ? ObjectPrototype$1 : null; + // `Array.prototype.fill` method implementation + // https://tc39.es/ecma262/#sec-array.prototype.fill + var arrayFill = function fill(value /* , start = 0, end = @length */) { + var O = toObject(this); + var length = toLength(O.length); + var argumentsLength = arguments.length; + var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length); + var end = argumentsLength > 2 ? arguments[2] : undefined; + var endPos = end === undefined ? length : toAbsoluteIndex(end, length); + while (endPos > index) O[index++] = value; + return O; }; - var ITERATOR = wellKnownSymbol('iterator'); - var BUGGY_SAFARI_ITERATORS = false; + var getOwnPropertyNames = objectGetOwnPropertyNames.f; + var defineProperty$3 = objectDefineProperty.f; - var returnThis = function () { return this; }; - // `%IteratorPrototype%` object - // https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object - var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; - if ([].keys) { - arrayIterator = [].keys(); - // Safari 8 has buggy iterators w/o `next` - if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true; - else { - PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator)); - if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; - } - } - if (IteratorPrototype == undefined) IteratorPrototype = {}; + var getInternalState$3 = internalState.get; + var setInternalState$3 = internalState.set; + var ARRAY_BUFFER = 'ArrayBuffer'; + var DATA_VIEW = 'DataView'; + var PROTOTYPE$2 = 'prototype'; + var WRONG_LENGTH = 'Wrong length'; + var WRONG_INDEX = 'Wrong index'; + var NativeArrayBuffer = global_1[ARRAY_BUFFER]; + var $ArrayBuffer = NativeArrayBuffer; + var $DataView = global_1[DATA_VIEW]; + var $DataViewPrototype = $DataView && $DataView[PROTOTYPE$2]; + var ObjectPrototype$2 = Object.prototype; + var RangeError$1 = global_1.RangeError; - // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() - if ( !has(IteratorPrototype, ITERATOR)) { - createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis); - } + var packIEEE754 = ieee754.pack; + var unpackIEEE754 = ieee754.unpack; - var iteratorsCore = { - IteratorPrototype: IteratorPrototype, - BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS + var packInt8 = function (number) { + return [number & 0xFF]; }; - var IteratorPrototype$1 = iteratorsCore.IteratorPrototype; + var packInt16 = function (number) { + return [number & 0xFF, number >> 8 & 0xFF]; + }; + var packInt32 = function (number) { + return [number & 0xFF, number >> 8 & 0xFF, number >> 16 & 0xFF, number >> 24 & 0xFF]; + }; + var unpackInt32 = function (buffer) { + return buffer[3] << 24 | buffer[2] << 16 | buffer[1] << 8 | buffer[0]; + }; + var packFloat32 = function (number) { + return packIEEE754(number, 23, 4); + }; + var packFloat64 = function (number) { + return packIEEE754(number, 52, 8); + }; - var returnThis$1 = function () { return this; }; + var addGetter = function (Constructor, key) { + defineProperty$3(Constructor[PROTOTYPE$2], key, { get: function () { return getInternalState$3(this)[key]; } }); + }; - var createIteratorConstructor = function (IteratorConstructor, NAME, next) { - var TO_STRING_TAG = NAME + ' Iterator'; - IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { next: createPropertyDescriptor(1, next) }); - setToStringTag(IteratorConstructor, TO_STRING_TAG, false); - iterators[TO_STRING_TAG] = returnThis$1; - return IteratorConstructor; + var get$1 = function (view, count, index, isLittleEndian) { + var intIndex = toIndex(index); + var store = getInternalState$3(view); + if (intIndex + count > store.byteLength) throw RangeError$1(WRONG_INDEX); + var bytes = getInternalState$3(store.buffer).bytes; + var start = intIndex + store.byteOffset; + var pack = bytes.slice(start, start + count); + return isLittleEndian ? pack : pack.reverse(); }; - var aPossiblePrototype = function (it) { - if (!isObject(it) && it !== null) { - throw TypeError("Can't set " + String(it) + ' as a prototype'); - } return it; + var set$1 = function (view, count, index, conversion, value, isLittleEndian) { + var intIndex = toIndex(index); + var store = getInternalState$3(view); + if (intIndex + count > store.byteLength) throw RangeError$1(WRONG_INDEX); + var bytes = getInternalState$3(store.buffer).bytes; + var start = intIndex + store.byteOffset; + var pack = conversion(+value); + for (var i = 0; i < count; i++) bytes[start + i] = pack[isLittleEndian ? i : count - i - 1]; }; - // `Object.setPrototypeOf` method - // https://tc39.github.io/ecma262/#sec-object.setprototypeof - // Works with __proto__ only. Old v8 can't work with null proto objects. - /* eslint-disable no-proto */ - var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () { - var CORRECT_SETTER = false; - var test = {}; - var setter; - try { - setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set; - setter.call(test, []); - CORRECT_SETTER = test instanceof Array; - } catch (error) { /* empty */ } - return function setPrototypeOf(O, proto) { - anObject(O); - aPossiblePrototype(proto); - if (CORRECT_SETTER) setter.call(O, proto); - else O.__proto__ = proto; - return O; + if (!arrayBufferNative) { + $ArrayBuffer = function ArrayBuffer(length) { + anInstance(this, $ArrayBuffer, ARRAY_BUFFER); + var byteLength = toIndex(length); + setInternalState$3(this, { + bytes: arrayFill.call(new Array(byteLength), 0), + byteLength: byteLength + }); + if (!descriptors) this.byteLength = byteLength; }; - }() : undefined); - - var IteratorPrototype$2 = iteratorsCore.IteratorPrototype; - var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS; - var ITERATOR$1 = wellKnownSymbol('iterator'); - var KEYS = 'keys'; - var VALUES = 'values'; - var ENTRIES = 'entries'; - var returnThis$2 = function () { return this; }; + $DataView = function DataView(buffer, byteOffset, byteLength) { + anInstance(this, $DataView, DATA_VIEW); + anInstance(buffer, $ArrayBuffer, DATA_VIEW); + var bufferLength = getInternalState$3(buffer).byteLength; + var offset = toInteger(byteOffset); + if (offset < 0 || offset > bufferLength) throw RangeError$1('Wrong offset'); + byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength); + if (offset + byteLength > bufferLength) throw RangeError$1(WRONG_LENGTH); + setInternalState$3(this, { + buffer: buffer, + byteLength: byteLength, + byteOffset: offset + }); + if (!descriptors) { + this.buffer = buffer; + this.byteLength = byteLength; + this.byteOffset = offset; + } + }; - var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { - createIteratorConstructor(IteratorConstructor, NAME, next); - - var getIterationMethod = function (KIND) { - if (KIND === DEFAULT && defaultIterator) return defaultIterator; - if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND]; - switch (KIND) { - case KEYS: return function keys() { return new IteratorConstructor(this, KIND); }; - case VALUES: return function values() { return new IteratorConstructor(this, KIND); }; - case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); }; - } return function () { return new IteratorConstructor(this); }; - }; - - var TO_STRING_TAG = NAME + ' Iterator'; - var INCORRECT_VALUES_NAME = false; - var IterablePrototype = Iterable.prototype; - var nativeIterator = IterablePrototype[ITERATOR$1] - || IterablePrototype['@@iterator'] - || DEFAULT && IterablePrototype[DEFAULT]; - var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT); - var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; - var CurrentIteratorPrototype, methods, KEY; - - // fix native - if (anyNativeIterator) { - CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable())); - if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) { - if ( objectGetPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype$2) { - if (objectSetPrototypeOf) { - objectSetPrototypeOf(CurrentIteratorPrototype, IteratorPrototype$2); - } else if (typeof CurrentIteratorPrototype[ITERATOR$1] != 'function') { - createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR$1, returnThis$2); - } - } - // Set @@toStringTag to native iterators - setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true); - } - } - - // fix Array#{values, @@iterator}.name in V8 / FF - if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { - INCORRECT_VALUES_NAME = true; - defaultIterator = function values() { return nativeIterator.call(this); }; - } - - // define iterator - if ( IterablePrototype[ITERATOR$1] !== defaultIterator) { - createNonEnumerableProperty(IterablePrototype, ITERATOR$1, defaultIterator); - } - iterators[NAME] = defaultIterator; - - // export additional methods - if (DEFAULT) { - methods = { - values: getIterationMethod(VALUES), - keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), - entries: getIterationMethod(ENTRIES) - }; - if (FORCED) for (KEY in methods) { - if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { - redefine(IterablePrototype, KEY, methods[KEY]); - } - } else _export({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME }, methods); - } - - return methods; - }; - - var ARRAY_ITERATOR = 'Array Iterator'; - var setInternalState$1 = internalState.set; - var getInternalState$1 = internalState.getterFor(ARRAY_ITERATOR); - - // `Array.prototype.entries` method - // https://tc39.github.io/ecma262/#sec-array.prototype.entries - // `Array.prototype.keys` method - // https://tc39.github.io/ecma262/#sec-array.prototype.keys - // `Array.prototype.values` method - // https://tc39.github.io/ecma262/#sec-array.prototype.values - // `Array.prototype[@@iterator]` method - // https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator - // `CreateArrayIterator` internal method - // https://tc39.github.io/ecma262/#sec-createarrayiterator - var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) { - setInternalState$1(this, { - type: ARRAY_ITERATOR, - target: toIndexedObject(iterated), // target - index: 0, // next index - kind: kind // kind - }); - // `%ArrayIteratorPrototype%.next` method - // https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next - }, function () { - var state = getInternalState$1(this); - var target = state.target; - var kind = state.kind; - var index = state.index++; - if (!target || index >= target.length) { - state.target = undefined; - return { value: undefined, done: true }; - } - if (kind == 'keys') return { value: index, done: false }; - if (kind == 'values') return { value: target[index], done: false }; - return { value: [index, target[index]], done: false }; - }, 'values'); - - // argumentsList[@@iterator] is %ArrayProto_values% - // https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject - // https://tc39.github.io/ecma262/#sec-createmappedargumentsobject - iterators.Arguments = iterators.Array; - - // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables - addToUnscopables('keys'); - addToUnscopables('values'); - addToUnscopables('entries'); - - var nativeJoin = [].join; - - var ES3_STRINGS = indexedObject != Object; - var STRICT_METHOD$2 = arrayMethodIsStrict('join', ','); - - // `Array.prototype.join` method - // https://tc39.github.io/ecma262/#sec-array.prototype.join - _export({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD$2 }, { - join: function join(separator) { - return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator); - } - }); - - var engineUserAgent = getBuiltIn('navigator', 'userAgent') || ''; - - var process$1 = global_1.process; - var versions = process$1 && process$1.versions; - var v8 = versions && versions.v8; - var match, version; - - if (v8) { - match = v8.split('.'); - version = match[0] + match[1]; - } else if (engineUserAgent) { - match = engineUserAgent.match(/Edge\/(\d+)/); - if (!match || match[1] >= 74) { - match = engineUserAgent.match(/Chrome\/(\d+)/); - if (match) version = match[1]; - } - } - - var engineV8Version = version && +version; - - var SPECIES$1 = wellKnownSymbol('species'); - - var arrayMethodHasSpeciesSupport = function (METHOD_NAME) { - // We can't use this feature detection in V8 since it causes - // deoptimization and serious performance degradation - // https://github.com/zloirock/core-js/issues/677 - return engineV8Version >= 51 || !fails(function () { - var array = []; - var constructor = array.constructor = {}; - constructor[SPECIES$1] = function () { - return { foo: 1 }; - }; - return array[METHOD_NAME](Boolean).foo !== 1; - }); - }; - - var $map = arrayIteration.map; - - - - var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map'); - // FF49- issue - var USES_TO_LENGTH$2 = arrayMethodUsesToLength('map'); - - // `Array.prototype.map` method - // https://tc39.github.io/ecma262/#sec-array.prototype.map - // with adding support of @@species - _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH$2 }, { - map: function map(callbackfn /* , thisArg */) { - return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); - } - }); - - var createProperty = function (object, key, value) { - var propertyKey = toPrimitive(key); - if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value)); - else object[propertyKey] = value; - }; - - var HAS_SPECIES_SUPPORT$1 = arrayMethodHasSpeciesSupport('slice'); - var USES_TO_LENGTH$3 = arrayMethodUsesToLength('slice', { ACCESSORS: true, 0: 0, 1: 2 }); - - var SPECIES$2 = wellKnownSymbol('species'); - var nativeSlice = [].slice; - var max$1 = Math.max; - - // `Array.prototype.slice` method - // https://tc39.github.io/ecma262/#sec-array.prototype.slice - // fallback for not array-like ES3 strings and DOM objects - _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$1 || !USES_TO_LENGTH$3 }, { - slice: function slice(start, end) { - var O = toIndexedObject(this); - var length = toLength(O.length); - var k = toAbsoluteIndex(start, length); - var fin = toAbsoluteIndex(end === undefined ? length : end, length); - // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible - var Constructor, result, n; - if (isArray(O)) { - Constructor = O.constructor; - // cross-realm fallback - if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) { - Constructor = undefined; - } else if (isObject(Constructor)) { - Constructor = Constructor[SPECIES$2]; - if (Constructor === null) Constructor = undefined; - } - if (Constructor === Array || Constructor === undefined) { - return nativeSlice.call(O, k, fin); - } - } - result = new (Constructor === undefined ? Array : Constructor)(max$1(fin - k, 0)); - for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); - result.length = n; - return result; - } - }); - - var arrayBufferNative = typeof ArrayBuffer !== 'undefined' && typeof DataView !== 'undefined'; - - var redefineAll = function (target, src, options) { - for (var key in src) redefine(target, key, src[key], options); - return target; - }; - - var anInstance = function (it, Constructor, name) { - if (!(it instanceof Constructor)) { - throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation'); - } return it; - }; - - // `ToIndex` abstract operation - // https://tc39.github.io/ecma262/#sec-toindex - var toIndex = function (it) { - if (it === undefined) return 0; - var number = toInteger(it); - var length = toLength(number); - if (number !== length) throw RangeError('Wrong length or index'); - return length; - }; - - // IEEE754 conversions based on https://github.com/feross/ieee754 - // eslint-disable-next-line no-shadow-restricted-names - var Infinity$1 = 1 / 0; - var abs = Math.abs; - var pow = Math.pow; - var floor$1 = Math.floor; - var log = Math.log; - var LN2 = Math.LN2; - - var pack = function (number, mantissaLength, bytes) { - var buffer = new Array(bytes); - var exponentLength = bytes * 8 - mantissaLength - 1; - var eMax = (1 << exponentLength) - 1; - var eBias = eMax >> 1; - var rt = mantissaLength === 23 ? pow(2, -24) - pow(2, -77) : 0; - var sign = number < 0 || number === 0 && 1 / number < 0 ? 1 : 0; - var index = 0; - var exponent, mantissa, c; - number = abs(number); - // eslint-disable-next-line no-self-compare - if (number != number || number === Infinity$1) { - // eslint-disable-next-line no-self-compare - mantissa = number != number ? 1 : 0; - exponent = eMax; - } else { - exponent = floor$1(log(number) / LN2); - if (number * (c = pow(2, -exponent)) < 1) { - exponent--; - c *= 2; - } - if (exponent + eBias >= 1) { - number += rt / c; - } else { - number += rt * pow(2, 1 - eBias); - } - if (number * c >= 2) { - exponent++; - c /= 2; - } - if (exponent + eBias >= eMax) { - mantissa = 0; - exponent = eMax; - } else if (exponent + eBias >= 1) { - mantissa = (number * c - 1) * pow(2, mantissaLength); - exponent = exponent + eBias; - } else { - mantissa = number * pow(2, eBias - 1) * pow(2, mantissaLength); - exponent = 0; - } - } - for (; mantissaLength >= 8; buffer[index++] = mantissa & 255, mantissa /= 256, mantissaLength -= 8); - exponent = exponent << mantissaLength | mantissa; - exponentLength += mantissaLength; - for (; exponentLength > 0; buffer[index++] = exponent & 255, exponent /= 256, exponentLength -= 8); - buffer[--index] |= sign * 128; - return buffer; - }; - - var unpack = function (buffer, mantissaLength) { - var bytes = buffer.length; - var exponentLength = bytes * 8 - mantissaLength - 1; - var eMax = (1 << exponentLength) - 1; - var eBias = eMax >> 1; - var nBits = exponentLength - 7; - var index = bytes - 1; - var sign = buffer[index--]; - var exponent = sign & 127; - var mantissa; - sign >>= 7; - for (; nBits > 0; exponent = exponent * 256 + buffer[index], index--, nBits -= 8); - mantissa = exponent & (1 << -nBits) - 1; - exponent >>= -nBits; - nBits += mantissaLength; - for (; nBits > 0; mantissa = mantissa * 256 + buffer[index], index--, nBits -= 8); - if (exponent === 0) { - exponent = 1 - eBias; - } else if (exponent === eMax) { - return mantissa ? NaN : sign ? -Infinity$1 : Infinity$1; - } else { - mantissa = mantissa + pow(2, mantissaLength); - exponent = exponent - eBias; - } return (sign ? -1 : 1) * mantissa * pow(2, exponent - mantissaLength); - }; - - var ieee754 = { - pack: pack, - unpack: unpack - }; - - // `Array.prototype.fill` method implementation - // https://tc39.github.io/ecma262/#sec-array.prototype.fill - var arrayFill = function fill(value /* , start = 0, end = @length */) { - var O = toObject(this); - var length = toLength(O.length); - var argumentsLength = arguments.length; - var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length); - var end = argumentsLength > 2 ? arguments[2] : undefined; - var endPos = end === undefined ? length : toAbsoluteIndex(end, length); - while (endPos > index) O[index++] = value; - return O; - }; - - var getOwnPropertyNames = objectGetOwnPropertyNames.f; - var defineProperty$4 = objectDefineProperty.f; - - - - - var getInternalState$2 = internalState.get; - var setInternalState$2 = internalState.set; - var ARRAY_BUFFER = 'ArrayBuffer'; - var DATA_VIEW = 'DataView'; - var PROTOTYPE$2 = 'prototype'; - var WRONG_LENGTH = 'Wrong length'; - var WRONG_INDEX = 'Wrong index'; - var NativeArrayBuffer = global_1[ARRAY_BUFFER]; - var $ArrayBuffer = NativeArrayBuffer; - var $DataView = global_1[DATA_VIEW]; - var $DataViewPrototype = $DataView && $DataView[PROTOTYPE$2]; - var ObjectPrototype$2 = Object.prototype; - var RangeError$1 = global_1.RangeError; - - var packIEEE754 = ieee754.pack; - var unpackIEEE754 = ieee754.unpack; - - var packInt8 = function (number) { - return [number & 0xFF]; - }; - - var packInt16 = function (number) { - return [number & 0xFF, number >> 8 & 0xFF]; - }; - - var packInt32 = function (number) { - return [number & 0xFF, number >> 8 & 0xFF, number >> 16 & 0xFF, number >> 24 & 0xFF]; - }; - - var unpackInt32 = function (buffer) { - return buffer[3] << 24 | buffer[2] << 16 | buffer[1] << 8 | buffer[0]; - }; - - var packFloat32 = function (number) { - return packIEEE754(number, 23, 4); - }; - - var packFloat64 = function (number) { - return packIEEE754(number, 52, 8); - }; - - var addGetter = function (Constructor, key) { - defineProperty$4(Constructor[PROTOTYPE$2], key, { get: function () { return getInternalState$2(this)[key]; } }); - }; - - var get$1 = function (view, count, index, isLittleEndian) { - var intIndex = toIndex(index); - var store = getInternalState$2(view); - if (intIndex + count > store.byteLength) throw RangeError$1(WRONG_INDEX); - var bytes = getInternalState$2(store.buffer).bytes; - var start = intIndex + store.byteOffset; - var pack = bytes.slice(start, start + count); - return isLittleEndian ? pack : pack.reverse(); - }; - - var set$1 = function (view, count, index, conversion, value, isLittleEndian) { - var intIndex = toIndex(index); - var store = getInternalState$2(view); - if (intIndex + count > store.byteLength) throw RangeError$1(WRONG_INDEX); - var bytes = getInternalState$2(store.buffer).bytes; - var start = intIndex + store.byteOffset; - var pack = conversion(+value); - for (var i = 0; i < count; i++) bytes[start + i] = pack[isLittleEndian ? i : count - i - 1]; - }; - - if (!arrayBufferNative) { - $ArrayBuffer = function ArrayBuffer(length) { - anInstance(this, $ArrayBuffer, ARRAY_BUFFER); - var byteLength = toIndex(length); - setInternalState$2(this, { - bytes: arrayFill.call(new Array(byteLength), 0), - byteLength: byteLength - }); - if (!descriptors) this.byteLength = byteLength; - }; - - $DataView = function DataView(buffer, byteOffset, byteLength) { - anInstance(this, $DataView, DATA_VIEW); - anInstance(buffer, $ArrayBuffer, DATA_VIEW); - var bufferLength = getInternalState$2(buffer).byteLength; - var offset = toInteger(byteOffset); - if (offset < 0 || offset > bufferLength) throw RangeError$1('Wrong offset'); - byteLength = byteLength === undefined ? bufferLength - offset : toLength(byteLength); - if (offset + byteLength > bufferLength) throw RangeError$1(WRONG_LENGTH); - setInternalState$2(this, { - buffer: buffer, - byteLength: byteLength, - byteOffset: offset - }); - if (!descriptors) { - this.buffer = buffer; - this.byteLength = byteLength; - this.byteOffset = offset; - } - }; - - if (descriptors) { - addGetter($ArrayBuffer, 'byteLength'); - addGetter($DataView, 'buffer'); - addGetter($DataView, 'byteLength'); - addGetter($DataView, 'byteOffset'); - } + if (descriptors) { + addGetter($ArrayBuffer, 'byteLength'); + addGetter($DataView, 'buffer'); + addGetter($DataView, 'byteLength'); + addGetter($DataView, 'byteOffset'); + } redefineAll($DataView[PROTOTYPE$2], { getInt8: function getInt8(byteOffset) { @@ -1888,16 +2078,18 @@ } }); } else { + /* eslint-disable no-new -- required for testing */ if (!fails(function () { NativeArrayBuffer(1); }) || !fails(function () { - new NativeArrayBuffer(-1); // eslint-disable-line no-new + new NativeArrayBuffer(-1); }) || fails(function () { - new NativeArrayBuffer(); // eslint-disable-line no-new - new NativeArrayBuffer(1.5); // eslint-disable-line no-new - new NativeArrayBuffer(NaN); // eslint-disable-line no-new + new NativeArrayBuffer(); + new NativeArrayBuffer(1.5); + new NativeArrayBuffer(NaN); return NativeArrayBuffer.name != ARRAY_BUFFER; })) { + /* eslint-enable no-new -- required for testing */ $ArrayBuffer = function ArrayBuffer(length) { anInstance(this, $ArrayBuffer); return new NativeArrayBuffer(toIndex(length)); @@ -1939,63 +2131,51 @@ DataView: $DataView }; - var SPECIES$3 = wellKnownSymbol('species'); + // `DataView` constructor + // https://tc39.es/ecma262/#sec-dataview-constructor + _export({ global: true, forced: !arrayBufferNative }, { + DataView: arrayBuffer.DataView + }); - var setSpecies = function (CONSTRUCTOR_NAME) { - var Constructor = getBuiltIn(CONSTRUCTOR_NAME); - var defineProperty = objectDefineProperty.f; + var SPECIES$1 = wellKnownSymbol('species'); - if (descriptors && Constructor && !Constructor[SPECIES$3]) { - defineProperty(Constructor, SPECIES$3, { - configurable: true, - get: function () { return this; } - }); - } + // `SpeciesConstructor` abstract operation + // https://tc39.es/ecma262/#sec-speciesconstructor + var speciesConstructor = function (O, defaultConstructor) { + var C = anObject(O).constructor; + var S; + return C === undefined || (S = anObject(C)[SPECIES$1]) == undefined ? defaultConstructor : aFunction$1(S); }; - var ARRAY_BUFFER$1 = 'ArrayBuffer'; - var ArrayBuffer$1 = arrayBuffer[ARRAY_BUFFER$1]; - var NativeArrayBuffer$1 = global_1[ARRAY_BUFFER$1]; + var ArrayBuffer$1 = arrayBuffer.ArrayBuffer; + var DataView$1 = arrayBuffer.DataView; + var nativeArrayBufferSlice = ArrayBuffer$1.prototype.slice; - // `ArrayBuffer` constructor - // https://tc39.github.io/ecma262/#sec-arraybuffer-constructor - _export({ global: true, forced: NativeArrayBuffer$1 !== ArrayBuffer$1 }, { - ArrayBuffer: ArrayBuffer$1 + var INCORRECT_SLICE = fails(function () { + return !new ArrayBuffer$1(2).slice(1, undefined).byteLength; }); - setSpecies(ARRAY_BUFFER$1); - - var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag'); - var test = {}; - - test[TO_STRING_TAG$1] = 'z'; - - var toStringTagSupport = String(test) === '[object z]'; - - var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag'); - // ES3 wrong here - var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments'; - - // fallback for IE11 Script Access Denied error - var tryGet = function (it, key) { - try { - return it[key]; - } catch (error) { /* empty */ } - }; - - // getting tag from ES6+ `Object.prototype.toString` - var classof = toStringTagSupport ? classofRaw : function (it) { - var O, tag, result; - return it === undefined ? 'Undefined' : it === null ? 'Null' - // @@toStringTag case - : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG$2)) == 'string' ? tag - // builtinTag case - : CORRECT_ARGUMENTS ? classofRaw(O) - // ES3 arguments fallback - : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result; - }; + // `ArrayBuffer.prototype.slice` method + // https://tc39.es/ecma262/#sec-arraybuffer.prototype.slice + _export({ target: 'ArrayBuffer', proto: true, unsafe: true, forced: INCORRECT_SLICE }, { + slice: function slice(start, end) { + if (nativeArrayBufferSlice !== undefined && end === undefined) { + return nativeArrayBufferSlice.call(anObject(this), start); // FF fix + } + var length = anObject(this).byteLength; + var first = toAbsoluteIndex(start, length); + var fin = toAbsoluteIndex(end === undefined ? length : end, length); + var result = new (speciesConstructor(this, ArrayBuffer$1))(toLength(fin - first)); + var viewSource = new DataView$1(this); + var viewTarget = new DataView$1(result); + var index = 0; + while (first < fin) { + viewTarget.setUint8(index++, viewSource.getUint8(first++)); + } return result; + } + }); - var defineProperty$5 = objectDefineProperty.f; + var defineProperty$4 = objectDefineProperty.f; @@ -2010,7 +2190,7 @@ var ObjectPrototype$3 = Object.prototype; var isPrototypeOf = ObjectPrototype$3.isPrototypeOf; - var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag'); + var TO_STRING_TAG$4 = wellKnownSymbol('toStringTag'); var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG'); // Fixing native typed arrays in Opera Presto crashes the browser, see #595 var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferNative && !!objectSetPrototypeOf && classof(global_1.opera) !== 'Opera'; @@ -2029,13 +2209,24 @@ Float64Array: 8 }; + var BigIntArrayConstructorsList = { + BigInt64Array: 8, + BigUint64Array: 8 + }; + var isView = function isView(it) { + if (!isObject(it)) return false; var klass = classof(it); - return klass === 'DataView' || has(TypedArrayConstructorsList, klass); + return klass === 'DataView' + || has(TypedArrayConstructorsList, klass) + || has(BigIntArrayConstructorsList, klass); }; var isTypedArray = function (it) { - return isObject(it) && has(TypedArrayConstructorsList, classof(it)); + if (!isObject(it)) return false; + var klass = classof(it); + return has(TypedArrayConstructorsList, klass) + || has(BigIntArrayConstructorsList, klass); }; var aTypedArray = function (it) { @@ -2099,7 +2290,7 @@ // WebKit bug - typed arrays constructors prototype is Object.prototype if (!NATIVE_ARRAY_BUFFER_VIEWS || typeof TypedArray != 'function' || TypedArray === Function.prototype) { - // eslint-disable-next-line no-shadow + // eslint-disable-next-line no-shadow -- safe TypedArray = function TypedArray() { throw TypeError('Incorrect invocation'); }; @@ -2120,9 +2311,9 @@ objectSetPrototypeOf(Uint8ClampedArrayPrototype, TypedArrayPrototype); } - if (descriptors && !has(TypedArrayPrototype, TO_STRING_TAG$3)) { + if (descriptors && !has(TypedArrayPrototype, TO_STRING_TAG$4)) { TYPED_ARRAY_TAG_REQIRED = true; - defineProperty$5(TypedArrayPrototype, TO_STRING_TAG$3, { get: function () { + defineProperty$4(TypedArrayPrototype, TO_STRING_TAG$4, { get: function () { return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined; } }); for (NAME in TypedArrayConstructorsList) if (global_1[NAME]) { @@ -2146,81 +2337,126 @@ var NATIVE_ARRAY_BUFFER_VIEWS$1 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; // `ArrayBuffer.isView` method - // https://tc39.github.io/ecma262/#sec-arraybuffer.isview + // https://tc39.es/ecma262/#sec-arraybuffer.isview _export({ target: 'ArrayBuffer', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS$1 }, { isView: arrayBufferViewCore.isView }); - var SPECIES$4 = wellKnownSymbol('species'); + var SPECIES$2 = wellKnownSymbol('species'); - // `SpeciesConstructor` abstract operation - // https://tc39.github.io/ecma262/#sec-speciesconstructor - var speciesConstructor = function (O, defaultConstructor) { - var C = anObject(O).constructor; - var S; - return C === undefined || (S = anObject(C)[SPECIES$4]) == undefined ? defaultConstructor : aFunction$1(S); + var setSpecies = function (CONSTRUCTOR_NAME) { + var Constructor = getBuiltIn(CONSTRUCTOR_NAME); + var defineProperty = objectDefineProperty.f; + + if (descriptors && Constructor && !Constructor[SPECIES$2]) { + defineProperty(Constructor, SPECIES$2, { + configurable: true, + get: function () { return this; } + }); + } }; - var ArrayBuffer$2 = arrayBuffer.ArrayBuffer; - var DataView$1 = arrayBuffer.DataView; - var nativeArrayBufferSlice = ArrayBuffer$2.prototype.slice; + var ARRAY_BUFFER$1 = 'ArrayBuffer'; + var ArrayBuffer$2 = arrayBuffer[ARRAY_BUFFER$1]; + var NativeArrayBuffer$1 = global_1[ARRAY_BUFFER$1]; - var INCORRECT_SLICE = fails(function () { - return !new ArrayBuffer$2(2).slice(1, undefined).byteLength; + // `ArrayBuffer` constructor + // https://tc39.es/ecma262/#sec-arraybuffer-constructor + _export({ global: true, forced: NativeArrayBuffer$1 !== ArrayBuffer$2 }, { + ArrayBuffer: ArrayBuffer$2 }); - // `ArrayBuffer.prototype.slice` method - // https://tc39.github.io/ecma262/#sec-arraybuffer.prototype.slice - _export({ target: 'ArrayBuffer', proto: true, unsafe: true, forced: INCORRECT_SLICE }, { - slice: function slice(start, end) { - if (nativeArrayBufferSlice !== undefined && end === undefined) { - return nativeArrayBufferSlice.call(anObject(this), start); // FF fix - } - var length = anObject(this).byteLength; - var first = toAbsoluteIndex(start, length); - var fin = toAbsoluteIndex(end === undefined ? length : end, length); - var result = new (speciesConstructor(this, ArrayBuffer$2))(toLength(fin - first)); - var viewSource = new DataView$1(this); - var viewTarget = new DataView$1(result); - var index = 0; - while (first < fin) { - viewTarget.setUint8(index++, viewSource.getUint8(first++)); - } return result; + setSpecies(ARRAY_BUFFER$1); + + var arrayMethodIsStrict = function (METHOD_NAME, argument) { + var method = [][METHOD_NAME]; + return !!method && fails(function () { + // eslint-disable-next-line no-useless-call,no-throw-literal -- required for testing + method.call(null, argument || function () { throw 1; }, 1); + }); + }; + + var $indexOf = arrayIncludes.indexOf; + + + var nativeIndexOf = [].indexOf; + + var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0; + var STRICT_METHOD = arrayMethodIsStrict('indexOf'); + + // `Array.prototype.indexOf` method + // https://tc39.es/ecma262/#sec-array.prototype.indexof + _export({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD }, { + indexOf: function indexOf(searchElement /* , fromIndex = 0 */) { + return NEGATIVE_ZERO + // convert -0 to +0 + ? nativeIndexOf.apply(this, arguments) || 0 + : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined); } }); - // `DataView` constructor - // https://tc39.github.io/ecma262/#sec-dataview-constructor - _export({ global: true, forced: !arrayBufferNative }, { - DataView: arrayBuffer.DataView + var SPECIES$3 = wellKnownSymbol('species'); + + var arrayMethodHasSpeciesSupport = function (METHOD_NAME) { + // We can't use this feature detection in V8 since it causes + // deoptimization and serious performance degradation + // https://github.com/zloirock/core-js/issues/677 + return engineV8Version >= 51 || !fails(function () { + var array = []; + var constructor = array.constructor = {}; + constructor[SPECIES$3] = function () { + return { foo: 1 }; + }; + return array[METHOD_NAME](Boolean).foo !== 1; + }); + }; + + var $map = arrayIteration.map; + + + var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('map'); + + // `Array.prototype.map` method + // https://tc39.es/ecma262/#sec-array.prototype.map + // with adding support of @@species + _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, { + map: function map(callbackfn /* , thisArg */) { + return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } }); - var defineProperty$6 = objectDefineProperty.f; + var $forEach$1 = arrayIteration.forEach; - var FunctionPrototype = Function.prototype; - var FunctionPrototypeToString = FunctionPrototype.toString; - var nameRE = /^\s*function ([^ (]*)/; - var NAME$1 = 'name'; - // Function instances `.name` property - // https://tc39.github.io/ecma262/#sec-function-instances-name - if (descriptors && !(NAME$1 in FunctionPrototype)) { - defineProperty$6(FunctionPrototype, NAME$1, { - configurable: true, - get: function () { - try { - return FunctionPrototypeToString.call(this).match(nameRE)[1]; - } catch (error) { - return ''; - } - } - }); + var STRICT_METHOD$1 = arrayMethodIsStrict('forEach'); + + // `Array.prototype.forEach` method implementation + // https://tc39.es/ecma262/#sec-array.prototype.foreach + var arrayForEach = !STRICT_METHOD$1 ? function forEach(callbackfn /* , thisArg */) { + return $forEach$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } : [].forEach; + + // `Array.prototype.forEach` method + // https://tc39.es/ecma262/#sec-array.prototype.foreach + _export({ target: 'Array', proto: true, forced: [].forEach != arrayForEach }, { + forEach: arrayForEach + }); + + for (var COLLECTION_NAME$1 in domIterables) { + var Collection$1 = global_1[COLLECTION_NAME$1]; + var CollectionPrototype$1 = Collection$1 && Collection$1.prototype; + // some Chrome versions have non-configurable methods on DOMTokenList + if (CollectionPrototype$1 && CollectionPrototype$1.forEach !== arrayForEach) try { + createNonEnumerableProperty(CollectionPrototype$1, 'forEach', arrayForEach); + } catch (error) { + CollectionPrototype$1.forEach = arrayForEach; + } } - // `Object.create` method - // https://tc39.github.io/ecma262/#sec-object.create - _export({ target: 'Object', stat: true, sham: !descriptors }, { - create: objectCreate + // `Array.isArray` method + // https://tc39.es/ecma262/#sec-array.isarray + _export({ target: 'Array', stat: true }, { + isArray: isArray }); var nativeGetOwnPropertyNames$2 = objectGetOwnPropertyNamesExternal.f; @@ -2228,37 +2464,25 @@ var FAILS_ON_PRIMITIVES = fails(function () { return !Object.getOwnPropertyNames(1); }); // `Object.getOwnPropertyNames` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertynames + // https://tc39.es/ecma262/#sec-object.getownpropertynames _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, { getOwnPropertyNames: nativeGetOwnPropertyNames$2 }); - // `Object.prototype.toString` method implementation - // https://tc39.github.io/ecma262/#sec-object.prototype.tostring - var objectToString = toStringTagSupport ? {}.toString : function toString() { - return '[object ' + classof(this) + ']'; - }; - - // `Object.prototype.toString` method - // https://tc39.github.io/ecma262/#sec-object.prototype.tostring - if (!toStringTagSupport) { - redefine(Object.prototype, 'toString', objectToString, { unsafe: true }); - } - var nativePromiseConstructor = global_1.Promise; - var ITERATOR$2 = wellKnownSymbol('iterator'); + var ITERATOR$3 = wellKnownSymbol('iterator'); var ArrayPrototype$1 = Array.prototype; // check on default Array iterator var isArrayIteratorMethod = function (it) { - return it !== undefined && (iterators.Array === it || ArrayPrototype$1[ITERATOR$2] === it); + return it !== undefined && (iterators.Array === it || ArrayPrototype$1[ITERATOR$3] === it); }; - var ITERATOR$3 = wellKnownSymbol('iterator'); + var ITERATOR$4 = wellKnownSymbol('iterator'); var getIteratorMethod = function (it) { - if (it != undefined) return it[ITERATOR$3] + if (it != undefined) return it[ITERATOR$4] || it['@@iterator'] || iterators[classof(it)]; }; @@ -2322,7 +2546,7 @@ } return new Result(false); }; - var ITERATOR$4 = wellKnownSymbol('iterator'); + var ITERATOR$5 = wellKnownSymbol('iterator'); var SAFE_CLOSING = false; try { @@ -2335,10 +2559,10 @@ SAFE_CLOSING = true; } }; - iteratorWithReturn[ITERATOR$4] = function () { + iteratorWithReturn[ITERATOR$5] = function () { return this; }; - // eslint-disable-next-line no-throw-literal + // eslint-disable-next-line no-throw-literal -- required for testing Array.from(iteratorWithReturn, function () { throw 2; }); } catch (error) { /* empty */ } @@ -2347,7 +2571,7 @@ var ITERATION_SUPPORT = false; try { var object = {}; - object[ITERATOR$4] = function () { + object[ITERATOR$5] = function () { return { next: function () { return { done: ITERATION_SUPPORT = true }; @@ -2361,8 +2585,6 @@ var engineIsIos = /(iphone|ipod|ipad).*applewebkit/i.test(engineUserAgent); - var engineIsNode = classofRaw(global_1.process) == 'process'; - var location$1 = global_1.location; var set$2 = global_1.setImmediate; var clear = global_1.clearImmediate; @@ -2375,7 +2597,7 @@ var defer, channel, port; var run = function (id) { - // eslint-disable-next-line no-prototype-builtins + // eslint-disable-next-line no-prototype-builtins -- safe if (queue.hasOwnProperty(id)) { var fn = queue[id]; delete queue[id]; @@ -2405,7 +2627,7 @@ var i = 1; while (arguments.length > i) args.push(arguments[i++]); queue[++counter] = function () { - // eslint-disable-next-line no-new-func + // eslint-disable-next-line no-new-func -- spec requirement (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args); }; defer(counter); @@ -2463,11 +2685,14 @@ clear: clear }; + var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(engineUserAgent); + var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f; var macrotask = task.set; + var MutationObserver = global_1.MutationObserver || global_1.WebKitMutationObserver; var document$2 = global_1.document; var process$3 = global_1.process; @@ -2498,7 +2723,8 @@ }; // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339 - if (!engineIsIos && !engineIsNode && MutationObserver && document$2) { + // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898 + if (!engineIsIos && !engineIsNode && !engineIsWebosWebkit && MutationObserver && document$2) { toggle = true; node = document$2.createTextNode(''); new MutationObserver(flush).observe(node, { characterData: true }); @@ -2597,10 +2823,10 @@ - var SPECIES$5 = wellKnownSymbol('species'); + var SPECIES$4 = wellKnownSymbol('species'); var PROMISE = 'Promise'; - var getInternalState$3 = internalState.get; - var setInternalState$3 = internalState.set; + var getInternalState$4 = internalState.get; + var setInternalState$4 = internalState.set; var getInternalPromiseState = internalState.getterFor(PROMISE); var PromiseConstructor = nativePromiseConstructor; var TypeError$1 = global_1.TypeError; @@ -2640,7 +2866,7 @@ exec(function () { /* empty */ }, function () { /* empty */ }); }; var constructor = promise.constructor = {}; - constructor[SPECIES$5] = FakePromise; + constructor[SPECIES$4] = FakePromise; return !(promise.then(function () { /* empty */ }) instanceof FakePromise); }); @@ -2798,16 +3024,16 @@ anInstance(this, PromiseConstructor, PROMISE); aFunction$1(executor); Internal.call(this); - var state = getInternalState$3(this); + var state = getInternalState$4(this); try { executor(bind(internalResolve, state), bind(internalReject, state)); } catch (error) { internalReject(state, error); } }; - // eslint-disable-next-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` Internal = function Promise(executor) { - setInternalState$3(this, { + setInternalState$4(this, { type: PROMISE, done: false, notified: false, @@ -2820,7 +3046,7 @@ }; Internal.prototype = redefineAll(PromiseConstructor.prototype, { // `Promise.prototype.then` method - // https://tc39.github.io/ecma262/#sec-promise.prototype.then + // https://tc39.es/ecma262/#sec-promise.prototype.then then: function then(onFulfilled, onRejected) { var state = getInternalPromiseState(this); var reaction = newPromiseCapability$1(speciesConstructor(this, PromiseConstructor)); @@ -2833,14 +3059,14 @@ return reaction.promise; }, // `Promise.prototype.catch` method - // https://tc39.github.io/ecma262/#sec-promise.prototype.catch + // https://tc39.es/ecma262/#sec-promise.prototype.catch 'catch': function (onRejected) { return this.then(undefined, onRejected); } }); OwnPromiseCapability = function () { var promise = new Internal(); - var state = getInternalState$3(promise); + var state = getInternalState$4(promise); this.promise = promise; this.resolve = bind(internalResolve, state); this.reject = bind(internalReject, state); @@ -2865,7 +3091,7 @@ // wrap fetch result if (typeof $fetch == 'function') _export({ global: true, enumerable: true, forced: true }, { - // eslint-disable-next-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` fetch: function fetch(input /* , init */) { return promiseResolve(PromiseConstructor, $fetch.apply(global_1, arguments)); } @@ -2885,7 +3111,7 @@ // statics _export({ target: PROMISE, stat: true, forced: FORCED }, { // `Promise.reject` method - // https://tc39.github.io/ecma262/#sec-promise.reject + // https://tc39.es/ecma262/#sec-promise.reject reject: function reject(r) { var capability = newPromiseCapability$1(this); capability.reject.call(undefined, r); @@ -2895,7 +3121,7 @@ _export({ target: PROMISE, stat: true, forced: FORCED }, { // `Promise.resolve` method - // https://tc39.github.io/ecma262/#sec-promise.resolve + // https://tc39.es/ecma262/#sec-promise.resolve resolve: function resolve(x) { return promiseResolve( this, x); } @@ -2903,7 +3129,7 @@ _export({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, { // `Promise.all` method - // https://tc39.github.io/ecma262/#sec-promise.all + // https://tc39.es/ecma262/#sec-promise.all all: function all(iterable) { var C = this; var capability = newPromiseCapability$1(C); @@ -2932,7 +3158,7 @@ return capability.promise; }, // `Promise.race` method - // https://tc39.github.io/ecma262/#sec-promise.race + // https://tc39.es/ecma262/#sec-promise.race race: function race(iterable) { var C = this; var capability = newPromiseCapability$1(C); @@ -2948,1176 +3174,518 @@ } }); - // `RegExp.prototype.flags` getter implementation - // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags - var regexpFlags = function () { - var that = anObject(this); - var result = ''; - if (that.global) result += 'g'; - if (that.ignoreCase) result += 'i'; - if (that.multiline) result += 'm'; - if (that.dotAll) result += 's'; - if (that.unicode) result += 'u'; - if (that.sticky) result += 'y'; - return result; - }; + /* eslint-disable no-new -- required for testing */ - // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError, - // so we use an intermediate function. - function RE(s, f) { - return RegExp(s, f); - } - var UNSUPPORTED_Y = fails(function () { - // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError - var re = RE('a', 'y'); - re.lastIndex = 2; - return re.exec('abcd') != null; - }); - var BROKEN_CARET = fails(function () { - // https://bugzilla.mozilla.org/show_bug.cgi?id=773687 - var re = RE('^r', 'gy'); - re.lastIndex = 2; - return re.exec('str') != null; + var NATIVE_ARRAY_BUFFER_VIEWS$2 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; + + var ArrayBuffer$3 = global_1.ArrayBuffer; + var Int8Array$2 = global_1.Int8Array; + + var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS$2 || !fails(function () { + Int8Array$2(1); + }) || !fails(function () { + new Int8Array$2(-1); + }) || !checkCorrectnessOfIteration(function (iterable) { + new Int8Array$2(); + new Int8Array$2(null); + new Int8Array$2(1.5); + new Int8Array$2(iterable); + }, true) || fails(function () { + // Safari (11+) bug - a reason why even Safari 13 should load a typed array polyfill + return new Int8Array$2(new ArrayBuffer$3(2), 1, undefined).length !== 1; }); - var regexpStickyHelpers = { - UNSUPPORTED_Y: UNSUPPORTED_Y, - BROKEN_CARET: BROKEN_CARET + var toPositiveInteger = function (it) { + var result = toInteger(it); + if (result < 0) throw RangeError("The argument can't be less than 0"); + return result; }; - var nativeExec = RegExp.prototype.exec; - // This always refers to the native implementation, because the - // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js, - // which loads this file before patching the method. - var nativeReplace = String.prototype.replace; - - var patchedExec = nativeExec; + var toOffset = function (it, BYTES) { + var offset = toPositiveInteger(it); + if (offset % BYTES) throw RangeError('Wrong offset'); + return offset; + }; - var UPDATES_LAST_INDEX_WRONG = (function () { - var re1 = /a/; - var re2 = /b*/g; - nativeExec.call(re1, 'a'); - nativeExec.call(re2, 'a'); - return re1.lastIndex !== 0 || re2.lastIndex !== 0; - })(); + var aTypedArrayConstructor$1 = arrayBufferViewCore.aTypedArrayConstructor; - var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET; + var typedArrayFrom = function from(source /* , mapfn, thisArg */) { + var O = toObject(source); + var argumentsLength = arguments.length; + var mapfn = argumentsLength > 1 ? arguments[1] : undefined; + var mapping = mapfn !== undefined; + var iteratorMethod = getIteratorMethod(O); + var i, length, result, step, iterator, next; + if (iteratorMethod != undefined && !isArrayIteratorMethod(iteratorMethod)) { + iterator = iteratorMethod.call(O); + next = iterator.next; + O = []; + while (!(step = next.call(iterator)).done) { + O.push(step.value); + } + } + if (mapping && argumentsLength > 2) { + mapfn = functionBindContext(mapfn, arguments[2], 2); + } + length = toLength(O.length); + result = new (aTypedArrayConstructor$1(this))(length); + for (i = 0; length > i; i++) { + result[i] = mapping ? mapfn(O[i], i) : O[i]; + } + return result; + }; - // nonparticipating capturing group, copied from es5-shim's String#split patch. - var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined; + // makes subclassing work correct for wrapped built-ins + var inheritIfRequired = function ($this, dummy, Wrapper) { + var NewTarget, NewTargetPrototype; + if ( + // it can work only with native `setPrototypeOf` + objectSetPrototypeOf && + // we haven't completely correct pre-ES6 way for getting `new.target`, so use this + typeof (NewTarget = dummy.constructor) == 'function' && + NewTarget !== Wrapper && + isObject(NewTargetPrototype = NewTarget.prototype) && + NewTargetPrototype !== Wrapper.prototype + ) objectSetPrototypeOf($this, NewTargetPrototype); + return $this; + }; - var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1; + var typedArrayConstructor = createCommonjsModule(function (module) { - if (PATCH) { - patchedExec = function exec(str) { - var re = this; - var lastIndex, reCopy, match, i; - var sticky = UNSUPPORTED_Y$1 && re.sticky; - var flags = regexpFlags.call(re); - var source = re.source; - var charsAdded = 0; - var strCopy = str; - if (sticky) { - flags = flags.replace('y', ''); - if (flags.indexOf('g') === -1) { - flags += 'g'; - } - strCopy = String(str).slice(re.lastIndex); - // Support anchored sticky behavior. - if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) { - source = '(?: ' + source + ')'; - strCopy = ' ' + strCopy; - charsAdded++; - } - // ^(? + rx + ) is needed, in combination with some str slicing, to - // simulate the 'y' flag. - reCopy = new RegExp('^(?:' + source + ')', flags); - } - if (NPCG_INCLUDED) { - reCopy = new RegExp('^' + source + '$(?!\\s)', flags); - } - if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex; - match = nativeExec.call(sticky ? reCopy : re, strCopy); - if (sticky) { - if (match) { - match.input = match.input.slice(charsAdded); - match[0] = match[0].slice(charsAdded); - match.index = re.lastIndex; - re.lastIndex += match[0].length; - } else re.lastIndex = 0; - } else if (UPDATES_LAST_INDEX_WRONG && match) { - re.lastIndex = re.global ? match.index + match[0].length : lastIndex; - } - if (NPCG_INCLUDED && match && match.length > 1) { - // Fix browsers whose `exec` methods don't consistently return `undefined` - // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/ - nativeReplace.call(match[0], reCopy, function () { - for (i = 1; i < arguments.length - 2; i++) { - if (arguments[i] === undefined) match[i] = undefined; - } - }); - } - return match; - }; - } - var regexpExec = patchedExec; - _export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, { - exec: regexpExec - }); - var TO_STRING$1 = 'toString'; - var RegExpPrototype = RegExp.prototype; - var nativeToString = RegExpPrototype[TO_STRING$1]; - var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; }); - // FF44- RegExp#toString has a wrong name - var INCORRECT_NAME = nativeToString.name != TO_STRING$1; - // `RegExp.prototype.toString` method - // https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring - if (NOT_GENERIC || INCORRECT_NAME) { - redefine(RegExp.prototype, TO_STRING$1, function toString() { - var R = anObject(this); - var p = String(R.source); - var rf = R.flags; - var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? regexpFlags.call(R) : rf); - return '/' + p + '/' + f; - }, { unsafe: true }); - } - // `String.prototype.{ codePointAt, at }` methods implementation - var createMethod$2 = function (CONVERT_TO_STRING) { - return function ($this, pos) { - var S = String(requireObjectCoercible($this)); - var position = toInteger(pos); - var size = S.length; - var first, second; - if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; - first = S.charCodeAt(position); - return first < 0xD800 || first > 0xDBFF || position + 1 === size - || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF - ? CONVERT_TO_STRING ? S.charAt(position) : first - : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; - }; - }; - var stringMultibyte = { - // `String.prototype.codePointAt` method - // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat - codeAt: createMethod$2(false), - // `String.prototype.at` method - // https://github.com/mathiasbynens/String.prototype.at - charAt: createMethod$2(true) - }; - var charAt = stringMultibyte.charAt; - var STRING_ITERATOR = 'String Iterator'; - var setInternalState$4 = internalState.set; - var getInternalState$4 = internalState.getterFor(STRING_ITERATOR); + var getOwnPropertyNames = objectGetOwnPropertyNames.f; - // `String.prototype[@@iterator]` method - // https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator - defineIterator(String, 'String', function (iterated) { - setInternalState$4(this, { - type: STRING_ITERATOR, - string: String(iterated), - index: 0 - }); - // `%StringIteratorPrototype%.next` method - // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next - }, function next() { - var state = getInternalState$4(this); - var string = state.string; - var index = state.index; - var point; - if (index >= string.length) return { value: undefined, done: true }; - point = charAt(string, index); - state.index += point.length; - return { value: point, done: false }; - }); + var forEach = arrayIteration.forEach; - // TODO: Remove from `core-js@4` since it's moved to entry points + var getInternalState = internalState.get; + var setInternalState = internalState.set; + var nativeDefineProperty = objectDefineProperty.f; + var nativeGetOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f; + var round = Math.round; + var RangeError = global_1.RangeError; + var ArrayBuffer = arrayBuffer.ArrayBuffer; + var DataView = arrayBuffer.DataView; + var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; + var TYPED_ARRAY_TAG = arrayBufferViewCore.TYPED_ARRAY_TAG; + var TypedArray = arrayBufferViewCore.TypedArray; + var TypedArrayPrototype = arrayBufferViewCore.TypedArrayPrototype; + var aTypedArrayConstructor = arrayBufferViewCore.aTypedArrayConstructor; + var isTypedArray = arrayBufferViewCore.isTypedArray; + var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT'; + var WRONG_LENGTH = 'Wrong length'; + var fromList = function (C, list) { + var index = 0; + var length = list.length; + var result = new (aTypedArrayConstructor(C))(length); + while (length > index) result[index] = list[index++]; + return result; + }; - var SPECIES$6 = wellKnownSymbol('species'); + var addGetter = function (it, key) { + nativeDefineProperty(it, key, { get: function () { + return getInternalState(this)[key]; + } }); + }; - var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () { - // #replace needs built-in support for named groups. - // #match works fine because it just return the exec results, even if it has - // a "grops" property. - var re = /./; - re.exec = function () { - var result = []; - result.groups = { a: '7' }; - return result; - }; - return ''.replace(re, '$') !== '7'; - }); + var isArrayBuffer = function (it) { + var klass; + return it instanceof ArrayBuffer || (klass = classof(it)) == 'ArrayBuffer' || klass == 'SharedArrayBuffer'; + }; - // IE <= 11 replaces $0 with the whole match, as if it was $& - // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0 - var REPLACE_KEEPS_$0 = (function () { - return 'a'.replace(/./, '$0') === '$0'; - })(); + var isTypedArrayIndex = function (target, key) { + return isTypedArray(target) + && typeof key != 'symbol' + && key in target + && String(+key) == String(key); + }; - var REPLACE = wellKnownSymbol('replace'); - // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string - var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () { - if (/./[REPLACE]) { - return /./[REPLACE]('a', '$0') === ''; - } - return false; - })(); + var wrappedGetOwnPropertyDescriptor = function getOwnPropertyDescriptor(target, key) { + return isTypedArrayIndex(target, key = toPrimitive(key, true)) + ? createPropertyDescriptor(2, target[key]) + : nativeGetOwnPropertyDescriptor(target, key); + }; - // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec - // Weex JS has frozen built-in prototypes, so use try / catch wrapper - var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () { - var re = /(?:)/; - var originalExec = re.exec; - re.exec = function () { return originalExec.apply(this, arguments); }; - var result = 'ab'.split(re); - return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b'; - }); + var wrappedDefineProperty = function defineProperty(target, key, descriptor) { + if (isTypedArrayIndex(target, key = toPrimitive(key, true)) + && isObject(descriptor) + && has(descriptor, 'value') + && !has(descriptor, 'get') + && !has(descriptor, 'set') + // TODO: add validation descriptor w/o calling accessors + && !descriptor.configurable + && (!has(descriptor, 'writable') || descriptor.writable) + && (!has(descriptor, 'enumerable') || descriptor.enumerable) + ) { + target[key] = descriptor.value; + return target; + } return nativeDefineProperty(target, key, descriptor); + }; - var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) { - var SYMBOL = wellKnownSymbol(KEY); + if (descriptors) { + if (!NATIVE_ARRAY_BUFFER_VIEWS) { + objectGetOwnPropertyDescriptor.f = wrappedGetOwnPropertyDescriptor; + objectDefineProperty.f = wrappedDefineProperty; + addGetter(TypedArrayPrototype, 'buffer'); + addGetter(TypedArrayPrototype, 'byteOffset'); + addGetter(TypedArrayPrototype, 'byteLength'); + addGetter(TypedArrayPrototype, 'length'); + } - var DELEGATES_TO_SYMBOL = !fails(function () { - // String methods call symbol-named RegEp methods - var O = {}; - O[SYMBOL] = function () { return 7; }; - return ''[KEY](O) != 7; + _export({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, { + getOwnPropertyDescriptor: wrappedGetOwnPropertyDescriptor, + defineProperty: wrappedDefineProperty }); - var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () { - // Symbol-named RegExp methods call .exec - var execCalled = false; - var re = /a/; - - if (KEY === 'split') { - // We can't use real regex here since it causes deoptimization - // and serious performance degradation in V8 - // https://github.com/zloirock/core-js/issues/306 - re = {}; - // RegExp[@@split] doesn't call the regex's exec method, but first creates - // a new one. We need to return the patched regex when creating the new one. - re.constructor = {}; - re.constructor[SPECIES$6] = function () { return re; }; - re.flags = ''; - re[SYMBOL] = /./[SYMBOL]; - } + module.exports = function (TYPE, wrapper, CLAMPED) { + var BYTES = TYPE.match(/\d+$/)[0] / 8; + var CONSTRUCTOR_NAME = TYPE + (CLAMPED ? 'Clamped' : '') + 'Array'; + var GETTER = 'get' + TYPE; + var SETTER = 'set' + TYPE; + var NativeTypedArrayConstructor = global_1[CONSTRUCTOR_NAME]; + var TypedArrayConstructor = NativeTypedArrayConstructor; + var TypedArrayConstructorPrototype = TypedArrayConstructor && TypedArrayConstructor.prototype; + var exported = {}; - re.exec = function () { execCalled = true; return null; }; + var getter = function (that, index) { + var data = getInternalState(that); + return data.view[GETTER](index * BYTES + data.byteOffset, true); + }; - re[SYMBOL](''); - return !execCalled; - }); + var setter = function (that, index, value) { + var data = getInternalState(that); + if (CLAMPED) value = (value = round(value)) < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF; + data.view[SETTER](index * BYTES + data.byteOffset, value, true); + }; - if ( - !DELEGATES_TO_SYMBOL || - !DELEGATES_TO_EXEC || - (KEY === 'replace' && !( - REPLACE_SUPPORTS_NAMED_GROUPS && - REPLACE_KEEPS_$0 && - !REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE - )) || - (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC) - ) { - var nativeRegExpMethod = /./[SYMBOL]; - var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) { - if (regexp.exec === regexpExec) { - if (DELEGATES_TO_SYMBOL && !forceStringMethod) { - // The native String method already delegates to @@method (this - // polyfilled function), leasing to infinite recursion. - // We avoid it by directly calling the native @@method method. - return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) }; - } - return { done: true, value: nativeMethod.call(str, regexp, arg2) }; - } - return { done: false }; - }, { - REPLACE_KEEPS_$0: REPLACE_KEEPS_$0, - REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE - }); - var stringMethod = methods[0]; - var regexMethod = methods[1]; - - redefine(String.prototype, KEY, stringMethod); - redefine(RegExp.prototype, SYMBOL, length == 2 - // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue) - // 21.2.5.11 RegExp.prototype[@@split](string, limit) - ? function (string, arg) { return regexMethod.call(string, this, arg); } - // 21.2.5.6 RegExp.prototype[@@match](string) - // 21.2.5.9 RegExp.prototype[@@search](string) - : function (string) { return regexMethod.call(string, this); } - ); - } + var addElement = function (that, index) { + nativeDefineProperty(that, index, { + get: function () { + return getter(this, index); + }, + set: function (value) { + return setter(this, index, value); + }, + enumerable: true + }); + }; - if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true); - }; + if (!NATIVE_ARRAY_BUFFER_VIEWS) { + TypedArrayConstructor = wrapper(function (that, data, offset, $length) { + anInstance(that, TypedArrayConstructor, CONSTRUCTOR_NAME); + var index = 0; + var byteOffset = 0; + var buffer, byteLength, length; + if (!isObject(data)) { + length = toIndex(data); + byteLength = length * BYTES; + buffer = new ArrayBuffer(byteLength); + } else if (isArrayBuffer(data)) { + buffer = data; + byteOffset = toOffset(offset, BYTES); + var $len = data.byteLength; + if ($length === undefined) { + if ($len % BYTES) throw RangeError(WRONG_LENGTH); + byteLength = $len - byteOffset; + if (byteLength < 0) throw RangeError(WRONG_LENGTH); + } else { + byteLength = toLength($length) * BYTES; + if (byteLength + byteOffset > $len) throw RangeError(WRONG_LENGTH); + } + length = byteLength / BYTES; + } else if (isTypedArray(data)) { + return fromList(TypedArrayConstructor, data); + } else { + return typedArrayFrom.call(TypedArrayConstructor, data); + } + setInternalState(that, { + buffer: buffer, + byteOffset: byteOffset, + byteLength: byteLength, + length: length, + view: new DataView(buffer) + }); + while (index < length) addElement(that, index++); + }); - var charAt$1 = stringMultibyte.charAt; + if (objectSetPrototypeOf) objectSetPrototypeOf(TypedArrayConstructor, TypedArray); + TypedArrayConstructorPrototype = TypedArrayConstructor.prototype = objectCreate(TypedArrayPrototype); + } else if (typedArrayConstructorsRequireWrappers) { + TypedArrayConstructor = wrapper(function (dummy, data, typedArrayOffset, $length) { + anInstance(dummy, TypedArrayConstructor, CONSTRUCTOR_NAME); + return inheritIfRequired(function () { + if (!isObject(data)) return new NativeTypedArrayConstructor(toIndex(data)); + if (isArrayBuffer(data)) return $length !== undefined + ? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES), $length) + : typedArrayOffset !== undefined + ? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES)) + : new NativeTypedArrayConstructor(data); + if (isTypedArray(data)) return fromList(TypedArrayConstructor, data); + return typedArrayFrom.call(TypedArrayConstructor, data); + }(), dummy, TypedArrayConstructor); + }); - // `AdvanceStringIndex` abstract operation - // https://tc39.github.io/ecma262/#sec-advancestringindex - var advanceStringIndex = function (S, index, unicode) { - return index + (unicode ? charAt$1(S, index).length : 1); - }; + if (objectSetPrototypeOf) objectSetPrototypeOf(TypedArrayConstructor, TypedArray); + forEach(getOwnPropertyNames(NativeTypedArrayConstructor), function (key) { + if (!(key in TypedArrayConstructor)) { + createNonEnumerableProperty(TypedArrayConstructor, key, NativeTypedArrayConstructor[key]); + } + }); + TypedArrayConstructor.prototype = TypedArrayConstructorPrototype; + } - // `RegExpExec` abstract operation - // https://tc39.github.io/ecma262/#sec-regexpexec - var regexpExecAbstract = function (R, S) { - var exec = R.exec; - if (typeof exec === 'function') { - var result = exec.call(R, S); - if (typeof result !== 'object') { - throw TypeError('RegExp exec method returned something other than an Object or null'); + if (TypedArrayConstructorPrototype.constructor !== TypedArrayConstructor) { + createNonEnumerableProperty(TypedArrayConstructorPrototype, 'constructor', TypedArrayConstructor); } - return result; - } - if (classofRaw(R) !== 'RegExp') { - throw TypeError('RegExp#exec called on incompatible receiver'); - } + if (TYPED_ARRAY_TAG) { + createNonEnumerableProperty(TypedArrayConstructorPrototype, TYPED_ARRAY_TAG, CONSTRUCTOR_NAME); + } - return regexpExec.call(R, S); - }; + exported[CONSTRUCTOR_NAME] = TypedArrayConstructor; - var max$2 = Math.max; - var min$2 = Math.min; - var floor$2 = Math.floor; - var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d\d?|<[^>]*>)/g; - var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d\d?)/g; + _export({ + global: true, forced: TypedArrayConstructor != NativeTypedArrayConstructor, sham: !NATIVE_ARRAY_BUFFER_VIEWS + }, exported); - var maybeToString = function (it) { - return it === undefined ? it : String(it); - }; + if (!(BYTES_PER_ELEMENT in TypedArrayConstructor)) { + createNonEnumerableProperty(TypedArrayConstructor, BYTES_PER_ELEMENT, BYTES); + } - // @@replace logic - fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) { - var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE; - var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0; - var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0'; + if (!(BYTES_PER_ELEMENT in TypedArrayConstructorPrototype)) { + createNonEnumerableProperty(TypedArrayConstructorPrototype, BYTES_PER_ELEMENT, BYTES); + } - return [ - // `String.prototype.replace` method - // https://tc39.github.io/ecma262/#sec-string.prototype.replace - function replace(searchValue, replaceValue) { - var O = requireObjectCoercible(this); - var replacer = searchValue == undefined ? undefined : searchValue[REPLACE]; - return replacer !== undefined - ? replacer.call(searchValue, O, replaceValue) - : nativeReplace.call(String(O), searchValue, replaceValue); - }, - // `RegExp.prototype[@@replace]` method - // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace - function (regexp, replaceValue) { - if ( - (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) || - (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1) - ) { - var res = maybeCallNative(nativeReplace, regexp, this, replaceValue); - if (res.done) return res.value; - } + setSpecies(CONSTRUCTOR_NAME); + }; + } else module.exports = function () { /* empty */ }; + }); - var rx = anObject(regexp); - var S = String(this); + // `Uint8Array` constructor + // https://tc39.es/ecma262/#sec-typedarray-objects + typedArrayConstructor('Uint8', function (init) { + return function Uint8Array(data, byteOffset, length) { + return init(this, data, byteOffset, length); + }; + }); - var functionalReplace = typeof replaceValue === 'function'; - if (!functionalReplace) replaceValue = String(replaceValue); + var min$2 = Math.min; - var global = rx.global; - if (global) { - var fullUnicode = rx.unicode; - rx.lastIndex = 0; - } - var results = []; - while (true) { - var result = regexpExecAbstract(rx, S); - if (result === null) break; + // `Array.prototype.copyWithin` method implementation + // https://tc39.es/ecma262/#sec-array.prototype.copywithin + var arrayCopyWithin = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) { + var O = toObject(this); + var len = toLength(O.length); + var to = toAbsoluteIndex(target, len); + var from = toAbsoluteIndex(start, len); + var end = arguments.length > 2 ? arguments[2] : undefined; + var count = min$2((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to); + var inc = 1; + if (from < to && to < from + count) { + inc = -1; + from += count - 1; + to += count - 1; + } + while (count-- > 0) { + if (from in O) O[to] = O[from]; + else delete O[to]; + to += inc; + from += inc; + } return O; + }; - results.push(result); - if (!global) break; + var aTypedArray$1 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$1 = arrayBufferViewCore.exportTypedArrayMethod; - var matchStr = String(result[0]); - if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); - } + // `%TypedArray%.prototype.copyWithin` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.copywithin + exportTypedArrayMethod$1('copyWithin', function copyWithin(target, start /* , end */) { + return arrayCopyWithin.call(aTypedArray$1(this), target, start, arguments.length > 2 ? arguments[2] : undefined); + }); - var accumulatedResult = ''; - var nextSourcePosition = 0; - for (var i = 0; i < results.length; i++) { - result = results[i]; + var $every = arrayIteration.every; - var matched = String(result[0]); - var position = max$2(min$2(toInteger(result.index), S.length), 0); - var captures = []; - // NOTE: This is equivalent to - // captures = result.slice(1).map(maybeToString) - // but for some reason `nativeSlice.call(result, 1, result.length)` (called in - // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and - // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it. - for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j])); - var namedCaptures = result.groups; - if (functionalReplace) { - var replacerArgs = [matched].concat(captures, position, S); - if (namedCaptures !== undefined) replacerArgs.push(namedCaptures); - var replacement = String(replaceValue.apply(undefined, replacerArgs)); - } else { - replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue); - } - if (position >= nextSourcePosition) { - accumulatedResult += S.slice(nextSourcePosition, position) + replacement; - nextSourcePosition = position + matched.length; - } - } - return accumulatedResult + S.slice(nextSourcePosition); - } - ]; + var aTypedArray$2 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$2 = arrayBufferViewCore.exportTypedArrayMethod; - // https://tc39.github.io/ecma262/#sec-getsubstitution - function getSubstitution(matched, str, position, captures, namedCaptures, replacement) { - var tailPos = position + matched.length; - var m = captures.length; - var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED; - if (namedCaptures !== undefined) { - namedCaptures = toObject(namedCaptures); - symbols = SUBSTITUTION_SYMBOLS; - } - return nativeReplace.call(replacement, symbols, function (match, ch) { - var capture; - switch (ch.charAt(0)) { - case '$': return '$'; - case '&': return matched; - case '`': return str.slice(0, position); - case "'": return str.slice(tailPos); - case '<': - capture = namedCaptures[ch.slice(1, -1)]; - break; - default: // \d\d? - var n = +ch; - if (n === 0) return match; - if (n > m) { - var f = floor$2(n / 10); - if (f === 0) return match; - if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1); - return match; - } - capture = captures[n - 1]; - } - return capture === undefined ? '' : capture; - }); - } + // `%TypedArray%.prototype.every` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.every + exportTypedArrayMethod$2('every', function every(callbackfn /* , thisArg */) { + return $every(aTypedArray$2(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); }); - var MATCH = wellKnownSymbol('match'); + var aTypedArray$3 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$3 = arrayBufferViewCore.exportTypedArrayMethod; - // `IsRegExp` abstract operation - // https://tc39.github.io/ecma262/#sec-isregexp - var isRegexp = function (it) { - var isRegExp; - return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp'); - }; + // `%TypedArray%.prototype.fill` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.fill + // eslint-disable-next-line no-unused-vars -- required for `.length` + exportTypedArrayMethod$3('fill', function fill(value /* , start, end */) { + return arrayFill.apply(aTypedArray$3(this), arguments); + }); - var arrayPush = [].push; - var min$3 = Math.min; - var MAX_UINT32 = 0xFFFFFFFF; + var aTypedArrayConstructor$2 = arrayBufferViewCore.aTypedArrayConstructor; - // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError - var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); }); - // @@split logic - fixRegexpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) { - var internalSplit; - if ( - 'abbc'.split(/(b)*/)[1] == 'c' || - 'test'.split(/(?:)/, -1).length != 4 || - 'ab'.split(/(?:ab)*/).length != 2 || - '.'.split(/(.?)(.?)/).length != 4 || - '.'.split(/()()/).length > 1 || - ''.split(/.?/).length - ) { - // based on es5-shim implementation, need to rework it - internalSplit = function (separator, limit) { - var string = String(requireObjectCoercible(this)); - var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; - if (lim === 0) return []; - if (separator === undefined) return [string]; - // If `separator` is not a regex, use native split - if (!isRegexp(separator)) { - return nativeSplit.call(string, separator, lim); - } - var output = []; - var flags = (separator.ignoreCase ? 'i' : '') + - (separator.multiline ? 'm' : '') + - (separator.unicode ? 'u' : '') + - (separator.sticky ? 'y' : ''); - var lastLastIndex = 0; - // Make `global` and avoid `lastIndex` issues by working with a copy - var separatorCopy = new RegExp(separator.source, flags + 'g'); - var match, lastIndex, lastLength; - while (match = regexpExec.call(separatorCopy, string)) { - lastIndex = separatorCopy.lastIndex; - if (lastIndex > lastLastIndex) { - output.push(string.slice(lastLastIndex, match.index)); - if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1)); - lastLength = match[0].length; - lastLastIndex = lastIndex; - if (output.length >= lim) break; - } - if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop - } - if (lastLastIndex === string.length) { - if (lastLength || !separatorCopy.test('')) output.push(''); - } else output.push(string.slice(lastLastIndex)); - return output.length > lim ? output.slice(0, lim) : output; - }; - // Chakra, V8 - } else if ('0'.split(undefined, 0).length) { - internalSplit = function (separator, limit) { - return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit); - }; - } else internalSplit = nativeSplit; + var typedArrayFromSpeciesAndList = function (instance, list) { + var C = speciesConstructor(instance, instance.constructor); + var index = 0; + var length = list.length; + var result = new (aTypedArrayConstructor$2(C))(length); + while (length > index) result[index] = list[index++]; + return result; + }; - return [ - // `String.prototype.split` method - // https://tc39.github.io/ecma262/#sec-string.prototype.split - function split(separator, limit) { - var O = requireObjectCoercible(this); - var splitter = separator == undefined ? undefined : separator[SPLIT]; - return splitter !== undefined - ? splitter.call(separator, O, limit) - : internalSplit.call(String(O), separator, limit); - }, - // `RegExp.prototype[@@split]` method - // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split - // - // NOTE: This cannot be properly polyfilled in engines that don't support - // the 'y' flag. - function (regexp, limit) { - var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit); - if (res.done) return res.value; + var $filter = arrayIteration.filter; - var rx = anObject(regexp); - var S = String(this); - var C = speciesConstructor(rx, RegExp); - var unicodeMatching = rx.unicode; - var flags = (rx.ignoreCase ? 'i' : '') + - (rx.multiline ? 'm' : '') + - (rx.unicode ? 'u' : '') + - (SUPPORTS_Y ? 'y' : 'g'); + var aTypedArray$4 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$4 = arrayBufferViewCore.exportTypedArrayMethod; - // ^(? + rx + ) is needed, in combination with some S slicing, to - // simulate the 'y' flag. - var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags); - var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; - if (lim === 0) return []; - if (S.length === 0) return regexpExecAbstract(splitter, S) === null ? [S] : []; - var p = 0; - var q = 0; - var A = []; - while (q < S.length) { - splitter.lastIndex = SUPPORTS_Y ? q : 0; - var z = regexpExecAbstract(splitter, SUPPORTS_Y ? S : S.slice(q)); - var e; - if ( - z === null || - (e = min$3(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p - ) { - q = advanceStringIndex(S, q, unicodeMatching); - } else { - A.push(S.slice(p, q)); - if (A.length === lim) return A; - for (var i = 1; i <= z.length - 1; i++) { - A.push(z[i]); - if (A.length === lim) return A; - } - q = p = e; - } - } - A.push(S.slice(p)); - return A; - } - ]; - }, !SUPPORTS_Y); + // `%TypedArray%.prototype.filter` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.filter + exportTypedArrayMethod$4('filter', function filter(callbackfn /* , thisArg */) { + var list = $filter(aTypedArray$4(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); + return typedArrayFromSpeciesAndList(this, list); + }); - // a string of all valid unicode whitespaces - // eslint-disable-next-line max-len - var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + var $find = arrayIteration.find; - var whitespace = '[' + whitespaces + ']'; - var ltrim = RegExp('^' + whitespace + whitespace + '*'); - var rtrim = RegExp(whitespace + whitespace + '*$'); + var aTypedArray$5 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$5 = arrayBufferViewCore.exportTypedArrayMethod; - // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation - var createMethod$3 = function (TYPE) { - return function ($this) { - var string = String(requireObjectCoercible($this)); - if (TYPE & 1) string = string.replace(ltrim, ''); - if (TYPE & 2) string = string.replace(rtrim, ''); - return string; - }; - }; + // `%TypedArray%.prototype.find` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.find + exportTypedArrayMethod$5('find', function find(predicate /* , thisArg */) { + return $find(aTypedArray$5(this), predicate, arguments.length > 1 ? arguments[1] : undefined); + }); - var stringTrim = { - // `String.prototype.{ trimLeft, trimStart }` methods - // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart - start: createMethod$3(1), - // `String.prototype.{ trimRight, trimEnd }` methods - // https://tc39.github.io/ecma262/#sec-string.prototype.trimend - end: createMethod$3(2), - // `String.prototype.trim` method - // https://tc39.github.io/ecma262/#sec-string.prototype.trim - trim: createMethod$3(3) - }; + var $findIndex = arrayIteration.findIndex; - var non = '\u200B\u0085\u180E'; + var aTypedArray$6 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$6 = arrayBufferViewCore.exportTypedArrayMethod; - // check that a method works with the correct list - // of whitespaces and has a correct name - var stringTrimForced = function (METHOD_NAME) { - return fails(function () { - return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME; - }); - }; + // `%TypedArray%.prototype.findIndex` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.findindex + exportTypedArrayMethod$6('findIndex', function findIndex(predicate /* , thisArg */) { + return $findIndex(aTypedArray$6(this), predicate, arguments.length > 1 ? arguments[1] : undefined); + }); - var $trim = stringTrim.trim; + var $forEach$2 = arrayIteration.forEach; + var aTypedArray$7 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$7 = arrayBufferViewCore.exportTypedArrayMethod; - // `String.prototype.trim` method - // https://tc39.github.io/ecma262/#sec-string.prototype.trim - _export({ target: 'String', proto: true, forced: stringTrimForced('trim') }, { - trim: function trim() { - return $trim(this); - } + // `%TypedArray%.prototype.forEach` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.foreach + exportTypedArrayMethod$7('forEach', function forEach(callbackfn /* , thisArg */) { + $forEach$2(aTypedArray$7(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); }); - /* eslint-disable no-new */ + var $includes = arrayIncludes.includes; + var aTypedArray$8 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$8 = arrayBufferViewCore.exportTypedArrayMethod; + // `%TypedArray%.prototype.includes` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.includes + exportTypedArrayMethod$8('includes', function includes(searchElement /* , fromIndex */) { + return $includes(aTypedArray$8(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); + }); - var NATIVE_ARRAY_BUFFER_VIEWS$2 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; + var $indexOf$1 = arrayIncludes.indexOf; - var ArrayBuffer$3 = global_1.ArrayBuffer; - var Int8Array$2 = global_1.Int8Array; + var aTypedArray$9 = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$9 = arrayBufferViewCore.exportTypedArrayMethod; - var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS$2 || !fails(function () { - Int8Array$2(1); - }) || !fails(function () { - new Int8Array$2(-1); - }) || !checkCorrectnessOfIteration(function (iterable) { - new Int8Array$2(); - new Int8Array$2(null); - new Int8Array$2(1.5); - new Int8Array$2(iterable); - }, true) || fails(function () { - // Safari (11+) bug - a reason why even Safari 13 should load a typed array polyfill - return new Int8Array$2(new ArrayBuffer$3(2), 1, undefined).length !== 1; + // `%TypedArray%.prototype.indexOf` method + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.indexof + exportTypedArrayMethod$9('indexOf', function indexOf(searchElement /* , fromIndex */) { + return $indexOf$1(aTypedArray$9(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); }); - var toPositiveInteger = function (it) { - var result = toInteger(it); - if (result < 0) throw RangeError("The argument can't be less than 0"); - return result; - }; + var ITERATOR$6 = wellKnownSymbol('iterator'); + var Uint8Array$1 = global_1.Uint8Array; + var arrayValues = es_array_iterator.values; + var arrayKeys = es_array_iterator.keys; + var arrayEntries = es_array_iterator.entries; + var aTypedArray$a = arrayBufferViewCore.aTypedArray; + var exportTypedArrayMethod$a = arrayBufferViewCore.exportTypedArrayMethod; + var nativeTypedArrayIterator = Uint8Array$1 && Uint8Array$1.prototype[ITERATOR$6]; - var toOffset = function (it, BYTES) { - var offset = toPositiveInteger(it); - if (offset % BYTES) throw RangeError('Wrong offset'); - return offset; - }; + var CORRECT_ITER_NAME = !!nativeTypedArrayIterator + && (nativeTypedArrayIterator.name == 'values' || nativeTypedArrayIterator.name == undefined); - var aTypedArrayConstructor$1 = arrayBufferViewCore.aTypedArrayConstructor; - - var typedArrayFrom = function from(source /* , mapfn, thisArg */) { - var O = toObject(source); - var argumentsLength = arguments.length; - var mapfn = argumentsLength > 1 ? arguments[1] : undefined; - var mapping = mapfn !== undefined; - var iteratorMethod = getIteratorMethod(O); - var i, length, result, step, iterator, next; - if (iteratorMethod != undefined && !isArrayIteratorMethod(iteratorMethod)) { - iterator = iteratorMethod.call(O); - next = iterator.next; - O = []; - while (!(step = next.call(iterator)).done) { - O.push(step.value); - } - } - if (mapping && argumentsLength > 2) { - mapfn = functionBindContext(mapfn, arguments[2], 2); - } - length = toLength(O.length); - result = new (aTypedArrayConstructor$1(this))(length); - for (i = 0; length > i; i++) { - result[i] = mapping ? mapfn(O[i], i) : O[i]; - } - return result; - }; - - // makes subclassing work correct for wrapped built-ins - var inheritIfRequired = function ($this, dummy, Wrapper) { - var NewTarget, NewTargetPrototype; - if ( - // it can work only with native `setPrototypeOf` - objectSetPrototypeOf && - // we haven't completely correct pre-ES6 way for getting `new.target`, so use this - typeof (NewTarget = dummy.constructor) == 'function' && - NewTarget !== Wrapper && - isObject(NewTargetPrototype = NewTarget.prototype) && - NewTargetPrototype !== Wrapper.prototype - ) objectSetPrototypeOf($this, NewTargetPrototype); - return $this; - }; - - var typedArrayConstructor = createCommonjsModule(function (module) { - - - - - - - - - - - - - - - - - - - var getOwnPropertyNames = objectGetOwnPropertyNames.f; - - var forEach = arrayIteration.forEach; - - - - - - - var getInternalState = internalState.get; - var setInternalState = internalState.set; - var nativeDefineProperty = objectDefineProperty.f; - var nativeGetOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f; - var round = Math.round; - var RangeError = global_1.RangeError; - var ArrayBuffer = arrayBuffer.ArrayBuffer; - var DataView = arrayBuffer.DataView; - var NATIVE_ARRAY_BUFFER_VIEWS = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS; - var TYPED_ARRAY_TAG = arrayBufferViewCore.TYPED_ARRAY_TAG; - var TypedArray = arrayBufferViewCore.TypedArray; - var TypedArrayPrototype = arrayBufferViewCore.TypedArrayPrototype; - var aTypedArrayConstructor = arrayBufferViewCore.aTypedArrayConstructor; - var isTypedArray = arrayBufferViewCore.isTypedArray; - var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT'; - var WRONG_LENGTH = 'Wrong length'; - - var fromList = function (C, list) { - var index = 0; - var length = list.length; - var result = new (aTypedArrayConstructor(C))(length); - while (length > index) result[index] = list[index++]; - return result; - }; - - var addGetter = function (it, key) { - nativeDefineProperty(it, key, { get: function () { - return getInternalState(this)[key]; - } }); - }; - - var isArrayBuffer = function (it) { - var klass; - return it instanceof ArrayBuffer || (klass = classof(it)) == 'ArrayBuffer' || klass == 'SharedArrayBuffer'; - }; - - var isTypedArrayIndex = function (target, key) { - return isTypedArray(target) - && typeof key != 'symbol' - && key in target - && String(+key) == String(key); - }; - - var wrappedGetOwnPropertyDescriptor = function getOwnPropertyDescriptor(target, key) { - return isTypedArrayIndex(target, key = toPrimitive(key, true)) - ? createPropertyDescriptor(2, target[key]) - : nativeGetOwnPropertyDescriptor(target, key); - }; - - var wrappedDefineProperty = function defineProperty(target, key, descriptor) { - if (isTypedArrayIndex(target, key = toPrimitive(key, true)) - && isObject(descriptor) - && has(descriptor, 'value') - && !has(descriptor, 'get') - && !has(descriptor, 'set') - // TODO: add validation descriptor w/o calling accessors - && !descriptor.configurable - && (!has(descriptor, 'writable') || descriptor.writable) - && (!has(descriptor, 'enumerable') || descriptor.enumerable) - ) { - target[key] = descriptor.value; - return target; - } return nativeDefineProperty(target, key, descriptor); - }; - - if (descriptors) { - if (!NATIVE_ARRAY_BUFFER_VIEWS) { - objectGetOwnPropertyDescriptor.f = wrappedGetOwnPropertyDescriptor; - objectDefineProperty.f = wrappedDefineProperty; - addGetter(TypedArrayPrototype, 'buffer'); - addGetter(TypedArrayPrototype, 'byteOffset'); - addGetter(TypedArrayPrototype, 'byteLength'); - addGetter(TypedArrayPrototype, 'length'); - } - - _export({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, { - getOwnPropertyDescriptor: wrappedGetOwnPropertyDescriptor, - defineProperty: wrappedDefineProperty - }); - - module.exports = function (TYPE, wrapper, CLAMPED) { - var BYTES = TYPE.match(/\d+$/)[0] / 8; - var CONSTRUCTOR_NAME = TYPE + (CLAMPED ? 'Clamped' : '') + 'Array'; - var GETTER = 'get' + TYPE; - var SETTER = 'set' + TYPE; - var NativeTypedArrayConstructor = global_1[CONSTRUCTOR_NAME]; - var TypedArrayConstructor = NativeTypedArrayConstructor; - var TypedArrayConstructorPrototype = TypedArrayConstructor && TypedArrayConstructor.prototype; - var exported = {}; - - var getter = function (that, index) { - var data = getInternalState(that); - return data.view[GETTER](index * BYTES + data.byteOffset, true); - }; - - var setter = function (that, index, value) { - var data = getInternalState(that); - if (CLAMPED) value = (value = round(value)) < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF; - data.view[SETTER](index * BYTES + data.byteOffset, value, true); - }; - - var addElement = function (that, index) { - nativeDefineProperty(that, index, { - get: function () { - return getter(this, index); - }, - set: function (value) { - return setter(this, index, value); - }, - enumerable: true - }); - }; - - if (!NATIVE_ARRAY_BUFFER_VIEWS) { - TypedArrayConstructor = wrapper(function (that, data, offset, $length) { - anInstance(that, TypedArrayConstructor, CONSTRUCTOR_NAME); - var index = 0; - var byteOffset = 0; - var buffer, byteLength, length; - if (!isObject(data)) { - length = toIndex(data); - byteLength = length * BYTES; - buffer = new ArrayBuffer(byteLength); - } else if (isArrayBuffer(data)) { - buffer = data; - byteOffset = toOffset(offset, BYTES); - var $len = data.byteLength; - if ($length === undefined) { - if ($len % BYTES) throw RangeError(WRONG_LENGTH); - byteLength = $len - byteOffset; - if (byteLength < 0) throw RangeError(WRONG_LENGTH); - } else { - byteLength = toLength($length) * BYTES; - if (byteLength + byteOffset > $len) throw RangeError(WRONG_LENGTH); - } - length = byteLength / BYTES; - } else if (isTypedArray(data)) { - return fromList(TypedArrayConstructor, data); - } else { - return typedArrayFrom.call(TypedArrayConstructor, data); - } - setInternalState(that, { - buffer: buffer, - byteOffset: byteOffset, - byteLength: byteLength, - length: length, - view: new DataView(buffer) - }); - while (index < length) addElement(that, index++); - }); - - if (objectSetPrototypeOf) objectSetPrototypeOf(TypedArrayConstructor, TypedArray); - TypedArrayConstructorPrototype = TypedArrayConstructor.prototype = objectCreate(TypedArrayPrototype); - } else if (typedArrayConstructorsRequireWrappers) { - TypedArrayConstructor = wrapper(function (dummy, data, typedArrayOffset, $length) { - anInstance(dummy, TypedArrayConstructor, CONSTRUCTOR_NAME); - return inheritIfRequired(function () { - if (!isObject(data)) return new NativeTypedArrayConstructor(toIndex(data)); - if (isArrayBuffer(data)) return $length !== undefined - ? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES), $length) - : typedArrayOffset !== undefined - ? new NativeTypedArrayConstructor(data, toOffset(typedArrayOffset, BYTES)) - : new NativeTypedArrayConstructor(data); - if (isTypedArray(data)) return fromList(TypedArrayConstructor, data); - return typedArrayFrom.call(TypedArrayConstructor, data); - }(), dummy, TypedArrayConstructor); - }); - - if (objectSetPrototypeOf) objectSetPrototypeOf(TypedArrayConstructor, TypedArray); - forEach(getOwnPropertyNames(NativeTypedArrayConstructor), function (key) { - if (!(key in TypedArrayConstructor)) { - createNonEnumerableProperty(TypedArrayConstructor, key, NativeTypedArrayConstructor[key]); - } - }); - TypedArrayConstructor.prototype = TypedArrayConstructorPrototype; - } - - if (TypedArrayConstructorPrototype.constructor !== TypedArrayConstructor) { - createNonEnumerableProperty(TypedArrayConstructorPrototype, 'constructor', TypedArrayConstructor); - } - - if (TYPED_ARRAY_TAG) { - createNonEnumerableProperty(TypedArrayConstructorPrototype, TYPED_ARRAY_TAG, CONSTRUCTOR_NAME); - } - - exported[CONSTRUCTOR_NAME] = TypedArrayConstructor; - - _export({ - global: true, forced: TypedArrayConstructor != NativeTypedArrayConstructor, sham: !NATIVE_ARRAY_BUFFER_VIEWS - }, exported); - - if (!(BYTES_PER_ELEMENT in TypedArrayConstructor)) { - createNonEnumerableProperty(TypedArrayConstructor, BYTES_PER_ELEMENT, BYTES); - } - - if (!(BYTES_PER_ELEMENT in TypedArrayConstructorPrototype)) { - createNonEnumerableProperty(TypedArrayConstructorPrototype, BYTES_PER_ELEMENT, BYTES); - } - - setSpecies(CONSTRUCTOR_NAME); - }; - } else module.exports = function () { /* empty */ }; - }); - - // `Uint8Array` constructor - // https://tc39.github.io/ecma262/#sec-typedarray-objects - typedArrayConstructor('Uint8', function (init) { - return function Uint8Array(data, byteOffset, length) { - return init(this, data, byteOffset, length); - }; - }); - - var min$4 = Math.min; - - // `Array.prototype.copyWithin` method implementation - // https://tc39.github.io/ecma262/#sec-array.prototype.copywithin - var arrayCopyWithin = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) { - var O = toObject(this); - var len = toLength(O.length); - var to = toAbsoluteIndex(target, len); - var from = toAbsoluteIndex(start, len); - var end = arguments.length > 2 ? arguments[2] : undefined; - var count = min$4((end === undefined ? len : toAbsoluteIndex(end, len)) - from, len - to); - var inc = 1; - if (from < to && to < from + count) { - inc = -1; - from += count - 1; - to += count - 1; - } - while (count-- > 0) { - if (from in O) O[to] = O[from]; - else delete O[to]; - to += inc; - from += inc; - } return O; - }; - - var aTypedArray$1 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$1 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.copyWithin` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.copywithin - exportTypedArrayMethod$1('copyWithin', function copyWithin(target, start /* , end */) { - return arrayCopyWithin.call(aTypedArray$1(this), target, start, arguments.length > 2 ? arguments[2] : undefined); - }); - - var $every = arrayIteration.every; - - var aTypedArray$2 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$2 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.every` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.every - exportTypedArrayMethod$2('every', function every(callbackfn /* , thisArg */) { - return $every(aTypedArray$2(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); - }); - - var aTypedArray$3 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$3 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.fill` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.fill - // eslint-disable-next-line no-unused-vars - exportTypedArrayMethod$3('fill', function fill(value /* , start, end */) { - return arrayFill.apply(aTypedArray$3(this), arguments); - }); - - var $filter = arrayIteration.filter; - - - var aTypedArray$4 = arrayBufferViewCore.aTypedArray; - var aTypedArrayConstructor$2 = arrayBufferViewCore.aTypedArrayConstructor; - var exportTypedArrayMethod$4 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.filter` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.filter - exportTypedArrayMethod$4('filter', function filter(callbackfn /* , thisArg */) { - var list = $filter(aTypedArray$4(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); - var C = speciesConstructor(this, this.constructor); - var index = 0; - var length = list.length; - var result = new (aTypedArrayConstructor$2(C))(length); - while (length > index) result[index] = list[index++]; - return result; - }); - - var $find = arrayIteration.find; - - var aTypedArray$5 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$5 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.find` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.find - exportTypedArrayMethod$5('find', function find(predicate /* , thisArg */) { - return $find(aTypedArray$5(this), predicate, arguments.length > 1 ? arguments[1] : undefined); - }); - - var $findIndex = arrayIteration.findIndex; - - var aTypedArray$6 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$6 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.findIndex` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.findindex - exportTypedArrayMethod$6('findIndex', function findIndex(predicate /* , thisArg */) { - return $findIndex(aTypedArray$6(this), predicate, arguments.length > 1 ? arguments[1] : undefined); - }); - - var $forEach$2 = arrayIteration.forEach; - - var aTypedArray$7 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$7 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.forEach` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.foreach - exportTypedArrayMethod$7('forEach', function forEach(callbackfn /* , thisArg */) { - $forEach$2(aTypedArray$7(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); - }); - - var $includes = arrayIncludes.includes; - - var aTypedArray$8 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$8 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.includes` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.includes - exportTypedArrayMethod$8('includes', function includes(searchElement /* , fromIndex */) { - return $includes(aTypedArray$8(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); - }); - - var $indexOf$1 = arrayIncludes.indexOf; - - var aTypedArray$9 = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$9 = arrayBufferViewCore.exportTypedArrayMethod; - - // `%TypedArray%.prototype.indexOf` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.indexof - exportTypedArrayMethod$9('indexOf', function indexOf(searchElement /* , fromIndex */) { - return $indexOf$1(aTypedArray$9(this), searchElement, arguments.length > 1 ? arguments[1] : undefined); - }); - - var ITERATOR$5 = wellKnownSymbol('iterator'); - var Uint8Array$1 = global_1.Uint8Array; - var arrayValues = es_array_iterator.values; - var arrayKeys = es_array_iterator.keys; - var arrayEntries = es_array_iterator.entries; - var aTypedArray$a = arrayBufferViewCore.aTypedArray; - var exportTypedArrayMethod$a = arrayBufferViewCore.exportTypedArrayMethod; - var nativeTypedArrayIterator = Uint8Array$1 && Uint8Array$1.prototype[ITERATOR$5]; - - var CORRECT_ITER_NAME = !!nativeTypedArrayIterator - && (nativeTypedArrayIterator.name == 'values' || nativeTypedArrayIterator.name == undefined); - - var typedArrayValues = function values() { - return arrayValues.call(aTypedArray$a(this)); - }; + var typedArrayValues = function values() { + return arrayValues.call(aTypedArray$a(this)); + }; // `%TypedArray%.prototype.entries` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.entries + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.entries exportTypedArrayMethod$a('entries', function entries() { return arrayEntries.call(aTypedArray$a(this)); }); // `%TypedArray%.prototype.keys` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.keys + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.keys exportTypedArrayMethod$a('keys', function keys() { return arrayKeys.call(aTypedArray$a(this)); }); // `%TypedArray%.prototype.values` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.values + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.values exportTypedArrayMethod$a('values', typedArrayValues, !CORRECT_ITER_NAME); // `%TypedArray%.prototype[@@iterator]` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype-@@iterator - exportTypedArrayMethod$a(ITERATOR$5, typedArrayValues, !CORRECT_ITER_NAME); + // https://tc39.es/ecma262/#sec-%typedarray%.prototype-@@iterator + exportTypedArrayMethod$a(ITERATOR$6, typedArrayValues, !CORRECT_ITER_NAME); var aTypedArray$b = arrayBufferViewCore.aTypedArray; var exportTypedArrayMethod$b = arrayBufferViewCore.exportTypedArrayMethod; var $join = [].join; // `%TypedArray%.prototype.join` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.join - // eslint-disable-next-line no-unused-vars + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.join + // eslint-disable-next-line no-unused-vars -- required for `.length` exportTypedArrayMethod$b('join', function join(separator) { return $join.apply(aTypedArray$b(this), arguments); }); - var min$5 = Math.min; + var min$3 = Math.min; var nativeLastIndexOf = [].lastIndexOf; var NEGATIVE_ZERO$1 = !!nativeLastIndexOf && 1 / [1].lastIndexOf(1, -0) < 0; - var STRICT_METHOD$3 = arrayMethodIsStrict('lastIndexOf'); - // For preventing possible almost infinite loop in non-standard implementations, test the forward version of the method - var USES_TO_LENGTH$4 = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); - var FORCED$1 = NEGATIVE_ZERO$1 || !STRICT_METHOD$3 || !USES_TO_LENGTH$4; + var STRICT_METHOD$2 = arrayMethodIsStrict('lastIndexOf'); + var FORCED$1 = NEGATIVE_ZERO$1 || !STRICT_METHOD$2; // `Array.prototype.lastIndexOf` method implementation - // https://tc39.github.io/ecma262/#sec-array.prototype.lastindexof + // https://tc39.es/ecma262/#sec-array.prototype.lastindexof var arrayLastIndexOf = FORCED$1 ? function lastIndexOf(searchElement /* , fromIndex = @[*-1] */) { // convert -0 to +0 if (NEGATIVE_ZERO$1) return nativeLastIndexOf.apply(this, arguments) || 0; var O = toIndexedObject(this); var length = toLength(O.length); var index = length - 1; - if (arguments.length > 1) index = min$5(index, toInteger(arguments[1])); + if (arguments.length > 1) index = min$3(index, toInteger(arguments[1])); if (index < 0) index = length + index; for (;index >= 0; index--) if (index in O && O[index] === searchElement) return index || 0; return -1; @@ -4127,8 +3695,8 @@ var exportTypedArrayMethod$c = arrayBufferViewCore.exportTypedArrayMethod; // `%TypedArray%.prototype.lastIndexOf` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.lastindexof - // eslint-disable-next-line no-unused-vars + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.lastindexof + // eslint-disable-next-line no-unused-vars -- required for `.length` exportTypedArrayMethod$c('lastIndexOf', function lastIndexOf(searchElement /* , fromIndex */) { return arrayLastIndexOf.apply(aTypedArray$c(this), arguments); }); @@ -4141,7 +3709,7 @@ var exportTypedArrayMethod$d = arrayBufferViewCore.exportTypedArrayMethod; // `%TypedArray%.prototype.map` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.map + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.map exportTypedArrayMethod$d('map', function map(mapfn /* , thisArg */) { return $map$1(aTypedArray$d(this), mapfn, arguments.length > 1 ? arguments[1] : undefined, function (O, length) { return new (aTypedArrayConstructor$3(speciesConstructor(O, O.constructor)))(length); @@ -4149,7 +3717,7 @@ }); // `Array.prototype.{ reduce, reduceRight }` methods implementation - var createMethod$4 = function (IS_RIGHT) { + var createMethod$3 = function (IS_RIGHT) { return function (that, callbackfn, argumentsLength, memo) { aFunction$1(callbackfn); var O = toObject(that); @@ -4177,11 +3745,11 @@ var arrayReduce = { // `Array.prototype.reduce` method - // https://tc39.github.io/ecma262/#sec-array.prototype.reduce - left: createMethod$4(false), + // https://tc39.es/ecma262/#sec-array.prototype.reduce + left: createMethod$3(false), // `Array.prototype.reduceRight` method - // https://tc39.github.io/ecma262/#sec-array.prototype.reduceright - right: createMethod$4(true) + // https://tc39.es/ecma262/#sec-array.prototype.reduceright + right: createMethod$3(true) }; var $reduce = arrayReduce.left; @@ -4190,7 +3758,7 @@ var exportTypedArrayMethod$e = arrayBufferViewCore.exportTypedArrayMethod; // `%TypedArray%.prototype.reduce` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reduce + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduce exportTypedArrayMethod$e('reduce', function reduce(callbackfn /* , initialValue */) { return $reduce(aTypedArray$e(this), callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined); }); @@ -4201,21 +3769,21 @@ var exportTypedArrayMethod$f = arrayBufferViewCore.exportTypedArrayMethod; // `%TypedArray%.prototype.reduceRicht` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reduceright + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduceright exportTypedArrayMethod$f('reduceRight', function reduceRight(callbackfn /* , initialValue */) { return $reduceRight(aTypedArray$f(this), callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined); }); var aTypedArray$g = arrayBufferViewCore.aTypedArray; var exportTypedArrayMethod$g = arrayBufferViewCore.exportTypedArrayMethod; - var floor$3 = Math.floor; + var floor$2 = Math.floor; // `%TypedArray%.prototype.reverse` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reverse + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.reverse exportTypedArrayMethod$g('reverse', function reverse() { var that = this; var length = aTypedArray$g(that).length; - var middle = floor$3(length / 2); + var middle = floor$2(length / 2); var index = 0; var value; while (index < middle) { @@ -4229,12 +3797,12 @@ var exportTypedArrayMethod$h = arrayBufferViewCore.exportTypedArrayMethod; var FORCED$2 = fails(function () { - // eslint-disable-next-line no-undef + /* global Int8Array -- safe */ new Int8Array(1).set({}); }); // `%TypedArray%.prototype.set` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.set + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.set exportTypedArrayMethod$h('set', function set(arrayLike /* , offset */) { aTypedArray$h(this); var offset = toOffset(arguments.length > 1 ? arguments[1] : undefined, 1); @@ -4252,12 +3820,12 @@ var $slice = [].slice; var FORCED$3 = fails(function () { - // eslint-disable-next-line no-undef + /* global Int8Array -- safe */ new Int8Array(1).slice(); }); // `%TypedArray%.prototype.slice` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.slice + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.slice exportTypedArrayMethod$i('slice', function slice(start, end) { var list = $slice.call(aTypedArray$i(this), start, end); var C = speciesConstructor(this, this.constructor); @@ -4274,7 +3842,7 @@ var exportTypedArrayMethod$j = arrayBufferViewCore.exportTypedArrayMethod; // `%TypedArray%.prototype.some` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.some + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.some exportTypedArrayMethod$j('some', function some(callbackfn /* , thisArg */) { return $some(aTypedArray$j(this), callbackfn, arguments.length > 1 ? arguments[1] : undefined); }); @@ -4284,7 +3852,7 @@ var $sort = [].sort; // `%TypedArray%.prototype.sort` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.sort + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort exportTypedArrayMethod$k('sort', function sort(comparefn) { return $sort.call(aTypedArray$k(this), comparefn); }); @@ -4293,7 +3861,7 @@ var exportTypedArrayMethod$l = arrayBufferViewCore.exportTypedArrayMethod; // `%TypedArray%.prototype.subarray` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.subarray + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.subarray exportTypedArrayMethod$l('subarray', function subarray(begin, end) { var O = aTypedArray$l(this); var length = O.length; @@ -4323,7 +3891,7 @@ }); // `%TypedArray%.prototype.toLocaleString` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.tolocalestring + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.tolocalestring exportTypedArrayMethod$m('toLocaleString', function toLocaleString() { return $toLocaleString.apply(TO_LOCALE_STRING_BUG ? $slice$1.call(aTypedArray$m(this)) : aTypedArray$m(this), arguments); }, FORCED$4); @@ -4346,110 +3914,66 @@ var IS_NOT_ARRAY_METHOD = Uint8ArrayPrototype.toString != arrayToString; // `%TypedArray%.prototype.toString` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.tostring + // https://tc39.es/ecma262/#sec-%typedarray%.prototype.tostring exportTypedArrayMethod$n('toString', arrayToString, IS_NOT_ARRAY_METHOD); - // iterable DOM collections - // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods - var domIterables = { - CSSRuleList: 0, - CSSStyleDeclaration: 0, - CSSValueList: 0, - ClientRectList: 0, - DOMRectList: 0, - DOMStringList: 0, - DOMTokenList: 1, - DataTransferItemList: 0, - FileList: 0, - HTMLAllCollection: 0, - HTMLCollection: 0, - HTMLFormElement: 0, - HTMLSelectElement: 0, - MediaList: 0, - MimeTypeArray: 0, - NamedNodeMap: 0, - NodeList: 1, - PaintRequestList: 0, - Plugin: 0, - PluginArray: 0, - SVGLengthList: 0, - SVGNumberList: 0, - SVGPathSegList: 0, - SVGPointList: 0, - SVGStringList: 0, - SVGTransformList: 0, - SourceBufferList: 0, - StyleSheetList: 0, - TextTrackCueList: 0, - TextTrackList: 0, - TouchList: 0 - }; + var nativeJoin = [].join; - for (var COLLECTION_NAME in domIterables) { - var Collection = global_1[COLLECTION_NAME]; - var CollectionPrototype = Collection && Collection.prototype; - // some Chrome versions have non-configurable methods on DOMTokenList - if (CollectionPrototype && CollectionPrototype.forEach !== arrayForEach) try { - createNonEnumerableProperty(CollectionPrototype, 'forEach', arrayForEach); - } catch (error) { - CollectionPrototype.forEach = arrayForEach; + var ES3_STRINGS = indexedObject != Object; + var STRICT_METHOD$3 = arrayMethodIsStrict('join', ','); + + // `Array.prototype.join` method + // https://tc39.es/ecma262/#sec-array.prototype.join + _export({ target: 'Array', proto: true, forced: ES3_STRINGS || !STRICT_METHOD$3 }, { + join: function join(separator) { + return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator); } - } + }); - var ITERATOR$6 = wellKnownSymbol('iterator'); - var TO_STRING_TAG$4 = wellKnownSymbol('toStringTag'); - var ArrayValues = es_array_iterator.values; + var createProperty = function (object, key, value) { + var propertyKey = toPrimitive(key); + if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value)); + else object[propertyKey] = value; + }; - for (var COLLECTION_NAME$1 in domIterables) { - var Collection$1 = global_1[COLLECTION_NAME$1]; - var CollectionPrototype$1 = Collection$1 && Collection$1.prototype; - if (CollectionPrototype$1) { - // some Chrome versions have non-configurable methods on DOMTokenList - if (CollectionPrototype$1[ITERATOR$6] !== ArrayValues) try { - createNonEnumerableProperty(CollectionPrototype$1, ITERATOR$6, ArrayValues); - } catch (error) { - CollectionPrototype$1[ITERATOR$6] = ArrayValues; - } - if (!CollectionPrototype$1[TO_STRING_TAG$4]) { - createNonEnumerableProperty(CollectionPrototype$1, TO_STRING_TAG$4, COLLECTION_NAME$1); - } - if (domIterables[COLLECTION_NAME$1]) for (var METHOD_NAME in es_array_iterator) { - // some Chrome versions have non-configurable methods on DOMTokenList - if (CollectionPrototype$1[METHOD_NAME] !== es_array_iterator[METHOD_NAME]) try { - createNonEnumerableProperty(CollectionPrototype$1, METHOD_NAME, es_array_iterator[METHOD_NAME]); - } catch (error) { - CollectionPrototype$1[METHOD_NAME] = es_array_iterator[METHOD_NAME]; + var HAS_SPECIES_SUPPORT$1 = arrayMethodHasSpeciesSupport('slice'); + + var SPECIES$5 = wellKnownSymbol('species'); + var nativeSlice = [].slice; + var max$1 = Math.max; + + // `Array.prototype.slice` method + // https://tc39.es/ecma262/#sec-array.prototype.slice + // fallback for not array-like ES3 strings and DOM objects + _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$1 }, { + slice: function slice(start, end) { + var O = toIndexedObject(this); + var length = toLength(O.length); + var k = toAbsoluteIndex(start, length); + var fin = toAbsoluteIndex(end === undefined ? length : end, length); + // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible + var Constructor, result, n; + if (isArray(O)) { + Constructor = O.constructor; + // cross-realm fallback + if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) { + Constructor = undefined; + } else if (isObject(Constructor)) { + Constructor = Constructor[SPECIES$5]; + if (Constructor === null) Constructor = undefined; + } + if (Constructor === Array || Constructor === undefined) { + return nativeSlice.call(O, k, fin); } } + result = new (Constructor === undefined ? Array : Constructor)(max$1(fin - k, 0)); + for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); + result.length = n; + return result; } - } + }); - var slice = [].slice; - var MSIE = /MSIE .\./.test(engineUserAgent); // <- dirty ie9- check - - var wrap$1 = function (scheduler) { - return function (handler, timeout /* , ...arguments */) { - var boundArgs = arguments.length > 2; - var args = boundArgs ? slice.call(arguments, 2) : undefined; - return scheduler(boundArgs ? function () { - // eslint-disable-next-line no-new-func - (typeof handler == 'function' ? handler : Function(handler)).apply(this, args); - } : handler, timeout); - }; - }; - - // ie9- setTimeout & setInterval additional parameters fix - // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers - _export({ global: true, bind: true, forced: MSIE }, { - // `setTimeout` method - // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout - setTimeout: wrap$1(global_1.setTimeout), - // `setInterval` method - // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval - setInterval: wrap$1(global_1.setInterval) - }); - - var ITERATOR$7 = wellKnownSymbol('iterator'); + var ITERATOR$7 = wellKnownSymbol('iterator'); var nativeUrl = !fails(function () { var url = new URL('b?a=1&b=2&c=3', 'http://a'); @@ -4480,16 +4004,16 @@ }); var nativeAssign = Object.assign; - var defineProperty$7 = Object.defineProperty; + var defineProperty$5 = Object.defineProperty; // `Object.assign` method - // https://tc39.github.io/ecma262/#sec-object.assign + // https://tc39.es/ecma262/#sec-object.assign var objectAssign = !nativeAssign || fails(function () { // should have correct order of operations (Edge bug) - if (descriptors && nativeAssign({ b: 1 }, nativeAssign(defineProperty$7({}, 'a', { + if (descriptors && nativeAssign({ b: 1 }, nativeAssign(defineProperty$5({}, 'a', { enumerable: true, get: function () { - defineProperty$7(this, 'b', { + defineProperty$5(this, 'b', { value: 3, enumerable: false }); @@ -4498,13 +4022,13 @@ // should work with symbols and should have deterministic property order (V8 bug) var A = {}; var B = {}; - // eslint-disable-next-line no-undef + /* global Symbol -- required for testing */ var symbol = Symbol(); var alphabet = 'abcdefghijklmnopqrst'; A[symbol] = 7; alphabet.split('').forEach(function (chr) { B[chr] = chr; }); return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet; - }) ? function assign(target, source) { // eslint-disable-line no-unused-vars + }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length` var T = toObject(target); var argumentsLength = arguments.length; var index = 1; @@ -4535,7 +4059,7 @@ }; // `Array.from` method implementation - // https://tc39.github.io/ecma262/#sec-array.from + // https://tc39.es/ecma262/#sec-array.from var arrayFrom = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) { var O = toObject(arrayLike); var C = typeof this == 'function' ? this : Array; @@ -4581,7 +4105,7 @@ var regexSeparators = /[.\u3002\uFF0E\uFF61]/g; // RFC 3490 separators var OVERFLOW_ERROR = 'Overflow: input needs wider integers to process'; var baseMinusTMin = base - tMin; - var floor$4 = Math.floor; + var floor$3 = Math.floor; var stringFromCharCode = String.fromCharCode; /** @@ -4630,19 +4154,19 @@ */ var adapt = function (delta, numPoints, firstTime) { var k = 0; - delta = firstTime ? floor$4(delta / damp) : delta >> 1; - delta += floor$4(delta / numPoints); + delta = firstTime ? floor$3(delta / damp) : delta >> 1; + delta += floor$3(delta / numPoints); for (; delta > baseMinusTMin * tMax >> 1; k += base) { - delta = floor$4(delta / baseMinusTMin); + delta = floor$3(delta / baseMinusTMin); } - return floor$4(k + (baseMinusTMin + 1) * delta / (delta + skew)); + return floor$3(k + (baseMinusTMin + 1) * delta / (delta + skew)); }; /** * Converts a string of Unicode symbols (e.g. a domain name label) to a * Punycode string of ASCII-only symbols. */ - // eslint-disable-next-line max-statements + // eslint-disable-next-line max-statements -- TODO var encode = function (input) { var output = []; @@ -4687,7 +4211,7 @@ // Increase `delta` enough to advance the decoder's state to , but guard against overflow. var handledCPCountPlusOne = handledCPCount + 1; - if (m - n > floor$4((maxInt - delta) / handledCPCountPlusOne)) { + if (m - n > floor$3((maxInt - delta) / handledCPCountPlusOne)) { throw RangeError(OVERFLOW_ERROR); } @@ -4708,7 +4232,7 @@ var qMinusT = q - t; var baseMinusT = base - t; output.push(stringFromCharCode(digitToBasic(t + qMinusT % baseMinusT))); - q = floor$4(qMinusT / baseMinusT); + q = floor$3(qMinusT / baseMinusT); } output.push(stringFromCharCode(digitToBasic(q))); @@ -5112,7 +4636,7 @@ var getInternalSearchParamsState = web_urlSearchParams.getState; var setInternalState$6 = internalState.set; var getInternalURLState = internalState.getterFor('URL'); - var floor$5 = Math.floor; + var floor$4 = Math.floor; var pow$1 = Math.pow; var INVALID_AUTHORITY = 'Invalid authority'; @@ -5127,14 +4651,12 @@ var OCT = /^[0-7]+$/; var DEC = /^\d+$/; var HEX = /^[\dA-Fa-f]+$/; - // eslint-disable-next-line no-control-regex - var FORBIDDEN_HOST_CODE_POINT = /[\u0000\u0009\u000A\u000D #%/:?@[\\]]/; - // eslint-disable-next-line no-control-regex - var FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT = /[\u0000\u0009\u000A\u000D #/:?@[\\]]/; - // eslint-disable-next-line no-control-regex + /* eslint-disable no-control-regex -- safe */ + var FORBIDDEN_HOST_CODE_POINT = /[\u0000\t\u000A\u000D #%/:?@[\\]]/; + var FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT = /[\u0000\t\u000A\u000D #/:?@[\\]]/; var LEADING_AND_TRAILING_C0_CONTROL_OR_SPACE = /^[\u0000-\u001F ]+|[\u0000-\u001F ]+$/g; - // eslint-disable-next-line no-control-regex - var TAB_AND_NEW_LINE = /[\u0009\u000A\u000D]/g; + var TAB_AND_NEW_LINE = /[\t\u000A\u000D]/g; + /* eslint-enable no-control-regex -- safe */ var EOF; var parseHost = function (url, input) { @@ -5200,7 +4722,7 @@ return ipv4; }; - // eslint-disable-next-line max-statements + // eslint-disable-next-line max-statements -- TODO var parseIPv6 = function (input) { var address = [0, 0, 0, 0, 0, 0, 0, 0]; var pieceIndex = 0; @@ -5310,7 +4832,7 @@ result = []; for (index = 0; index < 4; index++) { result.unshift(host % 256); - host = floor$5(host / 256); + host = floor$4(host / 256); } return result.join('.'); // ipv6 } else if (typeof host == 'object') { @@ -5422,7 +4944,7 @@ var QUERY = {}; var FRAGMENT = {}; - // eslint-disable-next-line max-statements + // eslint-disable-next-line max-statements -- TODO var parseURL = function (url, input, stateOverride, base) { var state = stateOverride || SCHEME_START; var pointer = 0; @@ -6078,13 +5600,13 @@ var nativeRevokeObjectURL = NativeURL.revokeObjectURL; // `URL.createObjectURL` method // https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL - // eslint-disable-next-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` if (nativeCreateObjectURL) redefine(URLConstructor, 'createObjectURL', function createObjectURL(blob) { return nativeCreateObjectURL.apply(NativeURL, arguments); }); // `URL.revokeObjectURL` method // https://developer.mozilla.org/en-US/docs/Web/API/URL/revokeObjectURL - // eslint-disable-next-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` if (nativeRevokeObjectURL) redefine(URLConstructor, 'revokeObjectURL', function revokeObjectURL(url) { return nativeRevokeObjectURL.apply(NativeURL, arguments); }); @@ -6096,311 +5618,798 @@ URL: URLConstructor }); - function _typeof(obj) { - "@babel/helpers - typeof"; - - if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { - _typeof = function (obj) { - return typeof obj; - }; - } else { - _typeof = function (obj) { - return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; - }; - } + // `RegExp.prototype.flags` getter implementation + // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags + var regexpFlags = function () { + var that = anObject(this); + var result = ''; + if (that.global) result += 'g'; + if (that.ignoreCase) result += 'i'; + if (that.multiline) result += 'm'; + if (that.dotAll) result += 's'; + if (that.unicode) result += 'u'; + if (that.sticky) result += 'y'; + return result; + }; - return _typeof(obj); - } + var TO_STRING$1 = 'toString'; + var RegExpPrototype = RegExp.prototype; + var nativeToString = RegExpPrototype[TO_STRING$1]; - function _classCallCheck(instance, Constructor) { - if (!(instance instanceof Constructor)) { - throw new TypeError("Cannot call a class as a function"); - } - } + var NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; }); + // FF44- RegExp#toString has a wrong name + var INCORRECT_NAME = nativeToString.name != TO_STRING$1; - function _defineProperties(target, props) { - for (var i = 0; i < props.length; i++) { - var descriptor = props[i]; - descriptor.enumerable = descriptor.enumerable || false; - descriptor.configurable = true; - if ("value" in descriptor) descriptor.writable = true; - Object.defineProperty(target, descriptor.key, descriptor); - } + // `RegExp.prototype.toString` method + // https://tc39.es/ecma262/#sec-regexp.prototype.tostring + if (NOT_GENERIC || INCORRECT_NAME) { + redefine(RegExp.prototype, TO_STRING$1, function toString() { + var R = anObject(this); + var p = String(R.source); + var rf = R.flags; + var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? regexpFlags.call(R) : rf); + return '/' + p + '/' + f; + }, { unsafe: true }); } - function _createClass(Constructor, protoProps, staticProps) { - if (protoProps) _defineProperties(Constructor.prototype, protoProps); - if (staticProps) _defineProperties(Constructor, staticProps); - return Constructor; + // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError, + // so we use an intermediate function. + function RE(s, f) { + return RegExp(s, f); } - function _defineProperty(obj, key, value) { - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } + var UNSUPPORTED_Y = fails(function () { + // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError + var re = RE('a', 'y'); + re.lastIndex = 2; + return re.exec('abcd') != null; + }); - return obj; - } + var BROKEN_CARET = fails(function () { + // https://bugzilla.mozilla.org/show_bug.cgi?id=773687 + var re = RE('^r', 'gy'); + re.lastIndex = 2; + return re.exec('str') != null; + }); - function _slicedToArray(arr, i) { - return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); - } + var regexpStickyHelpers = { + UNSUPPORTED_Y: UNSUPPORTED_Y, + BROKEN_CARET: BROKEN_CARET + }; - function _toConsumableArray(arr) { - return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); - } + var nativeExec = RegExp.prototype.exec; + // This always refers to the native implementation, because the + // String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js, + // which loads this file before patching the method. + var nativeReplace = String.prototype.replace; - function _arrayWithoutHoles(arr) { - if (Array.isArray(arr)) return _arrayLikeToArray(arr); - } + var patchedExec = nativeExec; - function _arrayWithHoles(arr) { - if (Array.isArray(arr)) return arr; - } + var UPDATES_LAST_INDEX_WRONG = (function () { + var re1 = /a/; + var re2 = /b*/g; + nativeExec.call(re1, 'a'); + nativeExec.call(re2, 'a'); + return re1.lastIndex !== 0 || re2.lastIndex !== 0; + })(); - function _iterableToArray(iter) { - if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); - } + var UNSUPPORTED_Y$1 = regexpStickyHelpers.UNSUPPORTED_Y || regexpStickyHelpers.BROKEN_CARET; - function _iterableToArrayLimit(arr, i) { - if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; - var _arr = []; - var _n = true; - var _d = false; - var _e = undefined; + // nonparticipating capturing group, copied from es5-shim's String#split patch. + // eslint-disable-next-line regexp/no-assertion-capturing-group, regexp/no-empty-group -- required for testing + var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined; - try { - for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { - _arr.push(_s.value); + var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1; - if (i && _arr.length === i) break; - } - } catch (err) { - _d = true; - _e = err; - } finally { - try { - if (!_n && _i["return"] != null) _i["return"](); - } finally { - if (_d) throw _e; - } - } + if (PATCH) { + patchedExec = function exec(str) { + var re = this; + var lastIndex, reCopy, match, i; + var sticky = UNSUPPORTED_Y$1 && re.sticky; + var flags = regexpFlags.call(re); + var source = re.source; + var charsAdded = 0; + var strCopy = str; - return _arr; - } + if (sticky) { + flags = flags.replace('y', ''); + if (flags.indexOf('g') === -1) { + flags += 'g'; + } - function _unsupportedIterableToArray(o, minLen) { - if (!o) return; - if (typeof o === "string") return _arrayLikeToArray(o, minLen); - var n = Object.prototype.toString.call(o).slice(8, -1); - if (n === "Object" && o.constructor) n = o.constructor.name; - if (n === "Map" || n === "Set") return Array.from(o); - if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); - } + strCopy = String(str).slice(re.lastIndex); + // Support anchored sticky behavior. + if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\n')) { + source = '(?: ' + source + ')'; + strCopy = ' ' + strCopy; + charsAdded++; + } + // ^(? + rx + ) is needed, in combination with some str slicing, to + // simulate the 'y' flag. + reCopy = new RegExp('^(?:' + source + ')', flags); + } - function _arrayLikeToArray(arr, len) { - if (len == null || len > arr.length) len = arr.length; + if (NPCG_INCLUDED) { + reCopy = new RegExp('^' + source + '$(?!\\s)', flags); + } + if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex; - for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; + match = nativeExec.call(sticky ? reCopy : re, strCopy); - return arr2; - } + if (sticky) { + if (match) { + match.input = match.input.slice(charsAdded); + match[0] = match[0].slice(charsAdded); + match.index = re.lastIndex; + re.lastIndex += match[0].length; + } else re.lastIndex = 0; + } else if (UPDATES_LAST_INDEX_WRONG && match) { + re.lastIndex = re.global ? match.index + match[0].length : lastIndex; + } + if (NPCG_INCLUDED && match && match.length > 1) { + // Fix browsers whose `exec` methods don't consistently return `undefined` + // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/ + nativeReplace.call(match[0], reCopy, function () { + for (i = 1; i < arguments.length - 2; i++) { + if (arguments[i] === undefined) match[i] = undefined; + } + }); + } - function _nonIterableSpread() { - throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); + return match; + }; } - function _nonIterableRest() { - throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); - } + var regexpExec = patchedExec; - function _createForOfIteratorHelper(o, allowArrayLike) { - var it; + // `RegExp.prototype.exec` method + // https://tc39.es/ecma262/#sec-regexp.prototype.exec + _export({ target: 'RegExp', proto: true, forced: /./.exec !== regexpExec }, { + exec: regexpExec + }); - if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { - if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { - if (it) o = it; - var i = 0; + // TODO: Remove from `core-js@4` since it's moved to entry points - var F = function () {}; - return { - s: F, - n: function () { - if (i >= o.length) return { - done: true - }; - return { - done: false, - value: o[i++] - }; - }, - e: function (e) { - throw e; - }, - f: F - }; - } - throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); - } - var normalCompletion = true, - didErr = false, - err; - return { - s: function () { - it = o[Symbol.iterator](); - }, - n: function () { - var step = it.next(); - normalCompletion = step.done; - return step; - }, - e: function (e) { - didErr = true; - err = e; - }, - f: function () { - try { - if (!normalCompletion && it.return != null) it.return(); - } finally { - if (didErr) throw err; - } - } - }; - } - var global$1 = typeof globalThis !== 'undefined' && globalThis || typeof self !== 'undefined' && self || typeof global$1 !== 'undefined' && global$1; - var support = { - searchParams: 'URLSearchParams' in global$1, - iterable: 'Symbol' in global$1 && 'iterator' in Symbol, - blob: 'FileReader' in global$1 && 'Blob' in global$1 && function () { - try { - new Blob(); - return true; - } catch (e) { - return false; - } - }(), - formData: 'FormData' in global$1, - arrayBuffer: 'ArrayBuffer' in global$1 - }; - function isDataView(obj) { - return obj && DataView.prototype.isPrototypeOf(obj); - } - if (support.arrayBuffer) { - var viewClasses = ['[object Int8Array]', '[object Uint8Array]', '[object Uint8ClampedArray]', '[object Int16Array]', '[object Uint16Array]', '[object Int32Array]', '[object Uint32Array]', '[object Float32Array]', '[object Float64Array]']; + var SPECIES$6 = wellKnownSymbol('species'); - var isArrayBufferView = ArrayBuffer.isView || function (obj) { - return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1; + var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () { + // #replace needs built-in support for named groups. + // #match works fine because it just return the exec results, even if it has + // a "grops" property. + var re = /./; + re.exec = function () { + var result = []; + result.groups = { a: '7' }; + return result; }; - } + return ''.replace(re, '$') !== '7'; + }); - function normalizeName(name) { - if (typeof name !== 'string') { - name = String(name); - } + // IE <= 11 replaces $0 with the whole match, as if it was $& + // https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0 + var REPLACE_KEEPS_$0 = (function () { + return 'a'.replace(/./, '$0') === '$0'; + })(); - if (/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(name) || name === '') { - throw new TypeError('Invalid character in header field name'); + var REPLACE = wellKnownSymbol('replace'); + // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string + var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () { + if (/./[REPLACE]) { + return /./[REPLACE]('a', '$0') === ''; } + return false; + })(); - return name.toLowerCase(); - } + // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec + // Weex JS has frozen built-in prototypes, so use try / catch wrapper + var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () { + // eslint-disable-next-line regexp/no-empty-group -- required for testing + var re = /(?:)/; + var originalExec = re.exec; + re.exec = function () { return originalExec.apply(this, arguments); }; + var result = 'ab'.split(re); + return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b'; + }); - function normalizeValue(value) { - if (typeof value !== 'string') { - value = String(value); - } + var fixRegexpWellKnownSymbolLogic = function (KEY, length, exec, sham) { + var SYMBOL = wellKnownSymbol(KEY); - return value; - } // Build a destructive iterator for the value list + var DELEGATES_TO_SYMBOL = !fails(function () { + // String methods call symbol-named RegEp methods + var O = {}; + O[SYMBOL] = function () { return 7; }; + return ''[KEY](O) != 7; + }); + var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () { + // Symbol-named RegExp methods call .exec + var execCalled = false; + var re = /a/; - function iteratorFor(items) { - var iterator = { - next: function next() { - var value = items.shift(); - return { - done: value === undefined, - value: value - }; + if (KEY === 'split') { + // We can't use real regex here since it causes deoptimization + // and serious performance degradation in V8 + // https://github.com/zloirock/core-js/issues/306 + re = {}; + // RegExp[@@split] doesn't call the regex's exec method, but first creates + // a new one. We need to return the patched regex when creating the new one. + re.constructor = {}; + re.constructor[SPECIES$6] = function () { return re; }; + re.flags = ''; + re[SYMBOL] = /./[SYMBOL]; } - }; - if (support.iterable) { - iterator[Symbol.iterator] = function () { - return iterator; - }; - } + re.exec = function () { execCalled = true; return null; }; - return iterator; - } + re[SYMBOL](''); + return !execCalled; + }); - function Headers$1(headers) { - this.map = {}; + if ( + !DELEGATES_TO_SYMBOL || + !DELEGATES_TO_EXEC || + (KEY === 'replace' && !( + REPLACE_SUPPORTS_NAMED_GROUPS && + REPLACE_KEEPS_$0 && + !REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE + )) || + (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC) + ) { + var nativeRegExpMethod = /./[SYMBOL]; + var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) { + if (regexp.exec === regexpExec) { + if (DELEGATES_TO_SYMBOL && !forceStringMethod) { + // The native String method already delegates to @@method (this + // polyfilled function), leasing to infinite recursion. + // We avoid it by directly calling the native @@method method. + return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) }; + } + return { done: true, value: nativeMethod.call(str, regexp, arg2) }; + } + return { done: false }; + }, { + REPLACE_KEEPS_$0: REPLACE_KEEPS_$0, + REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE + }); + var stringMethod = methods[0]; + var regexMethod = methods[1]; - if (headers instanceof Headers$1) { - headers.forEach(function (value, name) { - this.append(name, value); - }, this); - } else if (Array.isArray(headers)) { - headers.forEach(function (header) { - this.append(header[0], header[1]); - }, this); - } else if (headers) { - Object.getOwnPropertyNames(headers).forEach(function (name) { - this.append(name, headers[name]); - }, this); + redefine(String.prototype, KEY, stringMethod); + redefine(RegExp.prototype, SYMBOL, length == 2 + // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue) + // 21.2.5.11 RegExp.prototype[@@split](string, limit) + ? function (string, arg) { return regexMethod.call(string, this, arg); } + // 21.2.5.6 RegExp.prototype[@@match](string) + // 21.2.5.9 RegExp.prototype[@@search](string) + : function (string) { return regexMethod.call(string, this); } + ); } - } - - Headers$1.prototype.append = function (name, value) { - name = normalizeName(name); - value = normalizeValue(value); - var oldValue = this.map[name]; - this.map[name] = oldValue ? oldValue + ', ' + value : value; - }; - Headers$1.prototype['delete'] = function (name) { - delete this.map[normalizeName(name)]; + if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true); }; - Headers$1.prototype.get = function (name) { - name = normalizeName(name); - return this.has(name) ? this.map[name] : null; - }; + var charAt$1 = stringMultibyte.charAt; - Headers$1.prototype.has = function (name) { - return this.map.hasOwnProperty(normalizeName(name)); + // `AdvanceStringIndex` abstract operation + // https://tc39.es/ecma262/#sec-advancestringindex + var advanceStringIndex = function (S, index, unicode) { + return index + (unicode ? charAt$1(S, index).length : 1); }; - Headers$1.prototype.set = function (name, value) { - this.map[normalizeName(name)] = normalizeValue(value); + var floor$5 = Math.floor; + var replace$1 = ''.replace; + var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g; + var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g; + + // https://tc39.es/ecma262/#sec-getsubstitution + var getSubstitution = function (matched, str, position, captures, namedCaptures, replacement) { + var tailPos = position + matched.length; + var m = captures.length; + var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED; + if (namedCaptures !== undefined) { + namedCaptures = toObject(namedCaptures); + symbols = SUBSTITUTION_SYMBOLS; + } + return replace$1.call(replacement, symbols, function (match, ch) { + var capture; + switch (ch.charAt(0)) { + case '$': return '$'; + case '&': return matched; + case '`': return str.slice(0, position); + case "'": return str.slice(tailPos); + case '<': + capture = namedCaptures[ch.slice(1, -1)]; + break; + default: // \d\d? + var n = +ch; + if (n === 0) return match; + if (n > m) { + var f = floor$5(n / 10); + if (f === 0) return match; + if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1); + return match; + } + capture = captures[n - 1]; + } + return capture === undefined ? '' : capture; + }); }; - Headers$1.prototype.forEach = function (callback, thisArg) { - for (var name in this.map) { - if (this.map.hasOwnProperty(name)) { - callback.call(thisArg, this.map[name], name, this); + // `RegExpExec` abstract operation + // https://tc39.es/ecma262/#sec-regexpexec + var regexpExecAbstract = function (R, S) { + var exec = R.exec; + if (typeof exec === 'function') { + var result = exec.call(R, S); + if (typeof result !== 'object') { + throw TypeError('RegExp exec method returned something other than an Object or null'); } + return result; + } + + if (classofRaw(R) !== 'RegExp') { + throw TypeError('RegExp#exec called on incompatible receiver'); } + + return regexpExec.call(R, S); }; - Headers$1.prototype.keys = function () { - var items = []; - this.forEach(function (value, name) { - items.push(name); + var max$2 = Math.max; + var min$4 = Math.min; + + var maybeToString = function (it) { + return it === undefined ? it : String(it); + }; + + // @@replace logic + fixRegexpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) { + var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE; + var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0; + var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0'; + + return [ + // `String.prototype.replace` method + // https://tc39.es/ecma262/#sec-string.prototype.replace + function replace(searchValue, replaceValue) { + var O = requireObjectCoercible(this); + var replacer = searchValue == undefined ? undefined : searchValue[REPLACE]; + return replacer !== undefined + ? replacer.call(searchValue, O, replaceValue) + : nativeReplace.call(String(O), searchValue, replaceValue); + }, + // `RegExp.prototype[@@replace]` method + // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace + function (regexp, replaceValue) { + if ( + (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0) || + (typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1) + ) { + var res = maybeCallNative(nativeReplace, regexp, this, replaceValue); + if (res.done) return res.value; + } + + var rx = anObject(regexp); + var S = String(this); + + var functionalReplace = typeof replaceValue === 'function'; + if (!functionalReplace) replaceValue = String(replaceValue); + + var global = rx.global; + if (global) { + var fullUnicode = rx.unicode; + rx.lastIndex = 0; + } + var results = []; + while (true) { + var result = regexpExecAbstract(rx, S); + if (result === null) break; + + results.push(result); + if (!global) break; + + var matchStr = String(result[0]); + if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode); + } + + var accumulatedResult = ''; + var nextSourcePosition = 0; + for (var i = 0; i < results.length; i++) { + result = results[i]; + + var matched = String(result[0]); + var position = max$2(min$4(toInteger(result.index), S.length), 0); + var captures = []; + // NOTE: This is equivalent to + // captures = result.slice(1).map(maybeToString) + // but for some reason `nativeSlice.call(result, 1, result.length)` (called in + // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and + // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it. + for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j])); + var namedCaptures = result.groups; + if (functionalReplace) { + var replacerArgs = [matched].concat(captures, position, S); + if (namedCaptures !== undefined) replacerArgs.push(namedCaptures); + var replacement = String(replaceValue.apply(undefined, replacerArgs)); + } else { + replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue); + } + if (position >= nextSourcePosition) { + accumulatedResult += S.slice(nextSourcePosition, position) + replacement; + nextSourcePosition = position + matched.length; + } + } + return accumulatedResult + S.slice(nextSourcePosition); + } + ]; + }); + + var MATCH = wellKnownSymbol('match'); + + // `IsRegExp` abstract operation + // https://tc39.es/ecma262/#sec-isregexp + var isRegexp = function (it) { + var isRegExp; + return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp'); + }; + + var arrayPush = [].push; + var min$5 = Math.min; + var MAX_UINT32 = 0xFFFFFFFF; + + // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError + var SUPPORTS_Y = !fails(function () { return !RegExp(MAX_UINT32, 'y'); }); + + // @@split logic + fixRegexpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) { + var internalSplit; + if ( + 'abbc'.split(/(b)*/)[1] == 'c' || + // eslint-disable-next-line regexp/no-empty-group -- required for testing + 'test'.split(/(?:)/, -1).length != 4 || + 'ab'.split(/(?:ab)*/).length != 2 || + '.'.split(/(.?)(.?)/).length != 4 || + // eslint-disable-next-line regexp/no-assertion-capturing-group, regexp/no-empty-group -- required for testing + '.'.split(/()()/).length > 1 || + ''.split(/.?/).length + ) { + // based on es5-shim implementation, need to rework it + internalSplit = function (separator, limit) { + var string = String(requireObjectCoercible(this)); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (separator === undefined) return [string]; + // If `separator` is not a regex, use native split + if (!isRegexp(separator)) { + return nativeSplit.call(string, separator, lim); + } + var output = []; + var flags = (separator.ignoreCase ? 'i' : '') + + (separator.multiline ? 'm' : '') + + (separator.unicode ? 'u' : '') + + (separator.sticky ? 'y' : ''); + var lastLastIndex = 0; + // Make `global` and avoid `lastIndex` issues by working with a copy + var separatorCopy = new RegExp(separator.source, flags + 'g'); + var match, lastIndex, lastLength; + while (match = regexpExec.call(separatorCopy, string)) { + lastIndex = separatorCopy.lastIndex; + if (lastIndex > lastLastIndex) { + output.push(string.slice(lastLastIndex, match.index)); + if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1)); + lastLength = match[0].length; + lastLastIndex = lastIndex; + if (output.length >= lim) break; + } + if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop + } + if (lastLastIndex === string.length) { + if (lastLength || !separatorCopy.test('')) output.push(''); + } else output.push(string.slice(lastLastIndex)); + return output.length > lim ? output.slice(0, lim) : output; + }; + // Chakra, V8 + } else if ('0'.split(undefined, 0).length) { + internalSplit = function (separator, limit) { + return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit); + }; + } else internalSplit = nativeSplit; + + return [ + // `String.prototype.split` method + // https://tc39.es/ecma262/#sec-string.prototype.split + function split(separator, limit) { + var O = requireObjectCoercible(this); + var splitter = separator == undefined ? undefined : separator[SPLIT]; + return splitter !== undefined + ? splitter.call(separator, O, limit) + : internalSplit.call(String(O), separator, limit); + }, + // `RegExp.prototype[@@split]` method + // https://tc39.es/ecma262/#sec-regexp.prototype-@@split + // + // NOTE: This cannot be properly polyfilled in engines that don't support + // the 'y' flag. + function (regexp, limit) { + var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit); + if (res.done) return res.value; + + var rx = anObject(regexp); + var S = String(this); + var C = speciesConstructor(rx, RegExp); + + var unicodeMatching = rx.unicode; + var flags = (rx.ignoreCase ? 'i' : '') + + (rx.multiline ? 'm' : '') + + (rx.unicode ? 'u' : '') + + (SUPPORTS_Y ? 'y' : 'g'); + + // ^(? + rx + ) is needed, in combination with some S slicing, to + // simulate the 'y' flag. + var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags); + var lim = limit === undefined ? MAX_UINT32 : limit >>> 0; + if (lim === 0) return []; + if (S.length === 0) return regexpExecAbstract(splitter, S) === null ? [S] : []; + var p = 0; + var q = 0; + var A = []; + while (q < S.length) { + splitter.lastIndex = SUPPORTS_Y ? q : 0; + var z = regexpExecAbstract(splitter, SUPPORTS_Y ? S : S.slice(q)); + var e; + if ( + z === null || + (e = min$5(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p + ) { + q = advanceStringIndex(S, q, unicodeMatching); + } else { + A.push(S.slice(p, q)); + if (A.length === lim) return A; + for (var i = 1; i <= z.length - 1; i++) { + A.push(z[i]); + if (A.length === lim) return A; + } + q = p = e; + } + } + A.push(S.slice(p)); + return A; + } + ]; + }, !SUPPORTS_Y); + + // a string of all valid unicode whitespaces + var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' + + '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + + var whitespace = '[' + whitespaces + ']'; + var ltrim = RegExp('^' + whitespace + whitespace + '*'); + var rtrim = RegExp(whitespace + whitespace + '*$'); + + // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation + var createMethod$4 = function (TYPE) { + return function ($this) { + var string = String(requireObjectCoercible($this)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; + }; + + var stringTrim = { + // `String.prototype.{ trimLeft, trimStart }` methods + // https://tc39.es/ecma262/#sec-string.prototype.trimstart + start: createMethod$4(1), + // `String.prototype.{ trimRight, trimEnd }` methods + // https://tc39.es/ecma262/#sec-string.prototype.trimend + end: createMethod$4(2), + // `String.prototype.trim` method + // https://tc39.es/ecma262/#sec-string.prototype.trim + trim: createMethod$4(3) + }; + + var non = '\u200B\u0085\u180E'; + + // check that a method works with the correct list + // of whitespaces and has a correct name + var stringTrimForced = function (METHOD_NAME) { + return fails(function () { + return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME; + }); + }; + + var $trim = stringTrim.trim; + + + // `String.prototype.trim` method + // https://tc39.es/ecma262/#sec-string.prototype.trim + _export({ target: 'String', proto: true, forced: stringTrimForced('trim') }, { + trim: function trim() { + return $trim(this); + } + }); + + var defineProperty$6 = objectDefineProperty.f; + + var FunctionPrototype = Function.prototype; + var FunctionPrototypeToString = FunctionPrototype.toString; + var nameRE = /^\s*function ([^ (]*)/; + var NAME$1 = 'name'; + + // Function instances `.name` property + // https://tc39.es/ecma262/#sec-function-instances-name + if (descriptors && !(NAME$1 in FunctionPrototype)) { + defineProperty$6(FunctionPrototype, NAME$1, { + configurable: true, + get: function () { + try { + return FunctionPrototypeToString.call(this).match(nameRE)[1]; + } catch (error) { + return ''; + } + } + }); + } + + // `Object.create` method + // https://tc39.es/ecma262/#sec-object.create + _export({ target: 'Object', stat: true, sham: !descriptors }, { + create: objectCreate + }); + + var slice = [].slice; + var MSIE = /MSIE .\./.test(engineUserAgent); // <- dirty ie9- check + + var wrap$1 = function (scheduler) { + return function (handler, timeout /* , ...arguments */) { + var boundArgs = arguments.length > 2; + var args = boundArgs ? slice.call(arguments, 2) : undefined; + return scheduler(boundArgs ? function () { + // eslint-disable-next-line no-new-func -- spec requirement + (typeof handler == 'function' ? handler : Function(handler)).apply(this, args); + } : handler, timeout); + }; + }; + + // ie9- setTimeout & setInterval additional parameters fix + // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers + _export({ global: true, bind: true, forced: MSIE }, { + // `setTimeout` method + // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout + setTimeout: wrap$1(global_1.setTimeout), + // `setInterval` method + // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval + setInterval: wrap$1(global_1.setInterval) + }); + + var global$1 = typeof globalThis !== 'undefined' && globalThis || typeof self !== 'undefined' && self || typeof global$1 !== 'undefined' && global$1; + var support = { + searchParams: 'URLSearchParams' in global$1, + iterable: 'Symbol' in global$1 && 'iterator' in Symbol, + blob: 'FileReader' in global$1 && 'Blob' in global$1 && function () { + try { + new Blob(); + return true; + } catch (e) { + return false; + } + }(), + formData: 'FormData' in global$1, + arrayBuffer: 'ArrayBuffer' in global$1 + }; + + function isDataView(obj) { + return obj && DataView.prototype.isPrototypeOf(obj); + } + + if (support.arrayBuffer) { + var viewClasses = ['[object Int8Array]', '[object Uint8Array]', '[object Uint8ClampedArray]', '[object Int16Array]', '[object Uint16Array]', '[object Int32Array]', '[object Uint32Array]', '[object Float32Array]', '[object Float64Array]']; + + var isArrayBufferView = ArrayBuffer.isView || function (obj) { + return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1; + }; + } + + function normalizeName(name) { + if (typeof name !== 'string') { + name = String(name); + } + + if (/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(name) || name === '') { + throw new TypeError('Invalid character in header field name: "' + name + '"'); + } + + return name.toLowerCase(); + } + + function normalizeValue(value) { + if (typeof value !== 'string') { + value = String(value); + } + + return value; + } // Build a destructive iterator for the value list + + + function iteratorFor(items) { + var iterator = { + next: function next() { + var value = items.shift(); + return { + done: value === undefined, + value: value + }; + } + }; + + if (support.iterable) { + iterator[Symbol.iterator] = function () { + return iterator; + }; + } + + return iterator; + } + + function Headers$1(headers) { + this.map = {}; + + if (headers instanceof Headers$1) { + headers.forEach(function (value, name) { + this.append(name, value); + }, this); + } else if (Array.isArray(headers)) { + headers.forEach(function (header) { + this.append(header[0], header[1]); + }, this); + } else if (headers) { + Object.getOwnPropertyNames(headers).forEach(function (name) { + this.append(name, headers[name]); + }, this); + } + } + + Headers$1.prototype.append = function (name, value) { + name = normalizeName(name); + value = normalizeValue(value); + var oldValue = this.map[name]; + this.map[name] = oldValue ? oldValue + ', ' + value : value; + }; + + Headers$1.prototype['delete'] = function (name) { + delete this.map[normalizeName(name)]; + }; + + Headers$1.prototype.get = function (name) { + name = normalizeName(name); + return this.has(name) ? this.map[name] : null; + }; + + Headers$1.prototype.has = function (name) { + return this.map.hasOwnProperty(normalizeName(name)); + }; + + Headers$1.prototype.set = function (name, value) { + this.map[normalizeName(name)] = normalizeValue(value); + }; + + Headers$1.prototype.forEach = function (callback, thisArg) { + for (var name in this.map) { + if (this.map.hasOwnProperty(name)) { + callback.call(thisArg, this.map[name], name, this); + } + } + }; + + Headers$1.prototype.keys = function () { + var items = []; + this.forEach(function (value, name) { + items.push(name); }); return iteratorFor(items); }; @@ -6725,7 +6734,7 @@ this.type = 'default'; this.status = options.status === undefined ? 200 : options.status; this.ok = this.status >= 200 && this.status < 300; - this.statusText = 'statusText' in options ? options.statusText : ''; + this.statusText = options.statusText === undefined ? '' : '' + options.statusText; this.headers = new Headers$1(options.headers); this.url = options.url || ''; @@ -6884,127 +6893,41 @@ global$1.Response = Response; } - // `Symbol.toStringTag` well-known symbol - // https://tc39.github.io/ecma262/#sec-symbol.tostringtag - defineWellKnownSymbol('toStringTag'); - - var HAS_SPECIES_SUPPORT$2 = arrayMethodHasSpeciesSupport('splice'); - var USES_TO_LENGTH$5 = arrayMethodUsesToLength('splice', { ACCESSORS: true, 0: 0, 1: 2 }); - - var max$3 = Math.max; - var min$6 = Math.min; - var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; - var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded'; - - // `Array.prototype.splice` method - // https://tc39.github.io/ecma262/#sec-array.prototype.splice - // with adding support of @@species - _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$2 || !USES_TO_LENGTH$5 }, { - splice: function splice(start, deleteCount /* , ...items */) { - var O = toObject(this); - var len = toLength(O.length); - var actualStart = toAbsoluteIndex(start, len); - var argumentsLength = arguments.length; - var insertCount, actualDeleteCount, A, k, from, to; - if (argumentsLength === 0) { - insertCount = actualDeleteCount = 0; - } else if (argumentsLength === 1) { - insertCount = 0; - actualDeleteCount = len - actualStart; - } else { - insertCount = argumentsLength - 2; - actualDeleteCount = min$6(max$3(toInteger(deleteCount), 0), len - actualStart); - } - if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) { - throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED); - } - A = arraySpeciesCreate(O, actualDeleteCount); - for (k = 0; k < actualDeleteCount; k++) { - from = actualStart + k; - if (from in O) createProperty(A, k, O[from]); - } - A.length = actualDeleteCount; - if (insertCount < actualDeleteCount) { - for (k = actualStart; k < len - actualDeleteCount; k++) { - from = k + actualDeleteCount; - to = k + insertCount; - if (from in O) O[to] = O[from]; - else delete O[to]; - } - for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1]; - } else if (insertCount > actualDeleteCount) { - for (k = len - actualDeleteCount; k > actualStart; k--) { - from = k + actualDeleteCount - 1; - to = k + insertCount - 1; - if (from in O) O[to] = O[from]; - else delete O[to]; - } - } - for (k = 0; k < insertCount; k++) { - O[k + actualStart] = arguments[k + 2]; - } - O.length = len - actualDeleteCount + insertCount; - return A; - } - }); - - // JSON[@@toStringTag] property - // https://tc39.github.io/ecma262/#sec-json-@@tostringtag - setToStringTag(global_1.JSON, 'JSON', true); - - // Math[@@toStringTag] property - // https://tc39.github.io/ecma262/#sec-math-@@tostringtag - setToStringTag(Math, 'Math', true); - // `Object.defineProperty` method - // https://tc39.github.io/ecma262/#sec-object.defineproperty + // https://tc39.es/ecma262/#sec-object.defineproperty _export({ target: 'Object', stat: true, forced: !descriptors, sham: !descriptors }, { defineProperty: objectDefineProperty.f }); - var nativeGetOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f; - - - var FAILS_ON_PRIMITIVES$1 = fails(function () { nativeGetOwnPropertyDescriptor$2(1); }); - var FORCED$5 = !descriptors || FAILS_ON_PRIMITIVES$1; - - // `Object.getOwnPropertyDescriptor` method - // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor - _export({ target: 'Object', stat: true, forced: FORCED$5, sham: !descriptors }, { - getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) { - return nativeGetOwnPropertyDescriptor$2(toIndexedObject(it), key); - } + // `Object.setPrototypeOf` method + // https://tc39.es/ecma262/#sec-object.setprototypeof + _export({ target: 'Object', stat: true }, { + setPrototypeOf: objectSetPrototypeOf }); - var FAILS_ON_PRIMITIVES$2 = fails(function () { objectGetPrototypeOf(1); }); + var FAILS_ON_PRIMITIVES$1 = fails(function () { objectGetPrototypeOf(1); }); // `Object.getPrototypeOf` method - // https://tc39.github.io/ecma262/#sec-object.getprototypeof - _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$2, sham: !correctPrototypeGetter }, { + // https://tc39.es/ecma262/#sec-object.getprototypeof + _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$1, sham: !correctPrototypeGetter }, { getPrototypeOf: function getPrototypeOf(it) { return objectGetPrototypeOf(toObject(it)); } }); - // `Object.setPrototypeOf` method - // https://tc39.github.io/ecma262/#sec-object.setprototypeof - _export({ target: 'Object', stat: true }, { - setPrototypeOf: objectSetPrototypeOf - }); - var slice$1 = [].slice; var factories = {}; var construct = function (C, argsLength, args) { if (!(argsLength in factories)) { for (var list = [], i = 0; i < argsLength; i++) list[i] = 'a[' + i + ']'; - // eslint-disable-next-line no-new-func + // eslint-disable-next-line no-new-func -- we have no proper alternatives, IE8- only factories[argsLength] = Function('C,a', 'return new C(' + list.join(',') + ')'); } return factories[argsLength](C, args); }; // `Function.prototype.bind` method implementation - // https://tc39.github.io/ecma262/#sec-function.prototype.bind + // https://tc39.es/ecma262/#sec-function.prototype.bind var functionBind = Function.bind || function bind(that /* , ...args */) { var fn = aFunction$1(this); var partArgs = slice$1.call(arguments, 1); @@ -7019,7 +6942,7 @@ var nativeConstruct = getBuiltIn('Reflect', 'construct'); // `Reflect.construct` method - // https://tc39.github.io/ecma262/#sec-reflect.construct + // https://tc39.es/ecma262/#sec-reflect.construct // MS Edge supports only 2 arguments and argumentsList argument is optional // FF Nightly sets third argument as `new.target`, but does not create `this` from it var NEW_TARGET_BUG = fails(function () { @@ -7029,9 +6952,9 @@ var ARGS_BUG = !fails(function () { nativeConstruct(function () { /* empty */ }); }); - var FORCED$6 = NEW_TARGET_BUG || ARGS_BUG; + var FORCED$5 = NEW_TARGET_BUG || ARGS_BUG; - _export({ target: 'Reflect', stat: true, forced: FORCED$6, sham: FORCED$6 }, { + _export({ target: 'Reflect', stat: true, forced: FORCED$5, sham: FORCED$5 }, { construct: function construct(Target, args /* , newTarget */) { aFunction$1(Target); anObject(args); @@ -7060,7 +6983,7 @@ }); // `Reflect.get` method - // https://tc39.github.io/ecma262/#sec-reflect.get + // https://tc39.es/ecma262/#sec-reflect.get function get$2(target, propertyKey /* , receiver */) { var receiver = arguments.length < 3 ? target : arguments[2]; var descriptor, prototype; @@ -7077,9 +7000,94 @@ get: get$2 }); - (function (factory) { - factory(); - })(function () { + var nativeGetOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f; + + + var FAILS_ON_PRIMITIVES$2 = fails(function () { nativeGetOwnPropertyDescriptor$2(1); }); + var FORCED$6 = !descriptors || FAILS_ON_PRIMITIVES$2; + + // `Object.getOwnPropertyDescriptor` method + // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor + _export({ target: 'Object', stat: true, forced: FORCED$6, sham: !descriptors }, { + getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) { + return nativeGetOwnPropertyDescriptor$2(toIndexedObject(it), key); + } + }); + + var HAS_SPECIES_SUPPORT$2 = arrayMethodHasSpeciesSupport('splice'); + + var max$3 = Math.max; + var min$6 = Math.min; + var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; + var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded'; + + // `Array.prototype.splice` method + // https://tc39.es/ecma262/#sec-array.prototype.splice + // with adding support of @@species + _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$2 }, { + splice: function splice(start, deleteCount /* , ...items */) { + var O = toObject(this); + var len = toLength(O.length); + var actualStart = toAbsoluteIndex(start, len); + var argumentsLength = arguments.length; + var insertCount, actualDeleteCount, A, k, from, to; + if (argumentsLength === 0) { + insertCount = actualDeleteCount = 0; + } else if (argumentsLength === 1) { + insertCount = 0; + actualDeleteCount = len - actualStart; + } else { + insertCount = argumentsLength - 2; + actualDeleteCount = min$6(max$3(toInteger(deleteCount), 0), len - actualStart); + } + if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) { + throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED); + } + A = arraySpeciesCreate(O, actualDeleteCount); + for (k = 0; k < actualDeleteCount; k++) { + from = actualStart + k; + if (from in O) createProperty(A, k, O[from]); + } + A.length = actualDeleteCount; + if (insertCount < actualDeleteCount) { + for (k = actualStart; k < len - actualDeleteCount; k++) { + from = k + actualDeleteCount; + to = k + insertCount; + if (from in O) O[to] = O[from]; + else delete O[to]; + } + for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1]; + } else if (insertCount > actualDeleteCount) { + for (k = len - actualDeleteCount; k > actualStart; k--) { + from = k + actualDeleteCount - 1; + to = k + insertCount - 1; + if (from in O) O[to] = O[from]; + else delete O[to]; + } + } + for (k = 0; k < insertCount; k++) { + O[k + actualStart] = arguments[k + 2]; + } + O.length = len - actualDeleteCount + insertCount; + return A; + } + }); + + // `Symbol.toStringTag` well-known symbol + // https://tc39.es/ecma262/#sec-symbol.tostringtag + defineWellKnownSymbol('toStringTag'); + + // Math[@@toStringTag] property + // https://tc39.es/ecma262/#sec-math-@@tostringtag + setToStringTag(Math, 'Math', true); + + // JSON[@@toStringTag] property + // https://tc39.es/ecma262/#sec-json-@@tostringtag + setToStringTag(global_1.JSON, 'JSON', true); + + (function (factory) { + factory(); + })(function () { function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { @@ -7225,12 +7233,15 @@ _createClass(Emitter, [{ key: "addEventListener", - value: function addEventListener(type, callback) { + value: function addEventListener(type, callback, options) { if (!(type in this.listeners)) { this.listeners[type] = []; } - this.listeners[type].push(callback); + this.listeners[type].push({ + callback: callback, + options: options + }); } }, { key: "removeEventListener", @@ -7242,7 +7253,7 @@ var stack = this.listeners[type]; for (var i = 0, l = stack.length; i < l; i++) { - if (stack[i] === callback) { + if (stack[i].callback === callback) { stack.splice(i, 1); return; } @@ -7251,22 +7262,27 @@ }, { key: "dispatchEvent", value: function dispatchEvent(event) { - var _this = this; - if (!(event.type in this.listeners)) { return; } - var debounce = function debounce(callback) { - setTimeout(function () { - return callback.call(_this, event); - }); - }; - var stack = this.listeners[event.type]; + var stackToCall = stack.slice(); - for (var i = 0, l = stack.length; i < l; i++) { - debounce(stack[i]); + for (var i = 0, l = stackToCall.length; i < l; i++) { + var listener = stackToCall[i]; + + try { + listener.callback.call(this, event); + } catch (e) { + Promise.resolve().then(function () { + throw e; + }); + } + + if (listener.options && listener.options.once) { + this.removeEventListener(event.type, listener.callback); + } } return !event.defaultPrevented; @@ -7282,34 +7298,34 @@ var _super = _createSuper(AbortSignal); function AbortSignal() { - var _this2; + var _this; _classCallCheck(this, AbortSignal); - _this2 = _super.call(this); // Some versions of babel does not transpile super() correctly for IE <= 10, if the parent + _this = _super.call(this); // Some versions of babel does not transpile super() correctly for IE <= 10, if the parent // constructor has failed to run, then "this.listeners" will still be undefined and then we call // the parent constructor directly instead as a workaround. For general details, see babel bug: // https://github.com/babel/babel/issues/3041 // This hack was added as a fix for the issue described here: // https://github.com/Financial-Times/polyfill-library/pull/59#issuecomment-477558042 - if (!_this2.listeners) { - Emitter.call(_assertThisInitialized(_this2)); + if (!_this.listeners) { + Emitter.call(_assertThisInitialized(_this)); } // Compared to assignment, Object.defineProperty makes properties non-enumerable by default and // we want Object.keys(new AbortController().signal) to be [] for compat with the native impl - Object.defineProperty(_assertThisInitialized(_this2), 'aborted', { + Object.defineProperty(_assertThisInitialized(_this), 'aborted', { value: false, writable: true, configurable: true }); - Object.defineProperty(_assertThisInitialized(_this2), 'onabort', { + Object.defineProperty(_assertThisInitialized(_this), 'onabort', { value: null, writable: true, configurable: true }); - return _this2; + return _this; } _createClass(AbortSignal, [{ @@ -7611,10 +7627,11 @@ var FORCED$7 = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT; // `Array.prototype.concat` method - // https://tc39.github.io/ecma262/#sec-array.prototype.concat + // https://tc39.es/ecma262/#sec-array.prototype.concat // with adding support of @@isConcatSpreadable and @@species _export({ target: 'Array', proto: true, forced: FORCED$7 }, { - concat: function concat(arg) { // eslint-disable-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` + concat: function concat(arg) { var O = toObject(this); var A = arraySpeciesCreate(O, 0); var n = 0; @@ -7636,7 +7653,7 @@ }); // `Object.assign` method - // https://tc39.github.io/ecma262/#sec-object.assign + // https://tc39.es/ecma262/#sec-object.assign _export({ target: 'Object', stat: true, forced: Object.assign !== objectAssign }, { assign: objectAssign }); @@ -7644,45 +7661,42 @@ var $filter$1 = arrayIteration.filter; - var HAS_SPECIES_SUPPORT$3 = arrayMethodHasSpeciesSupport('filter'); - // Edge 14- issue - var USES_TO_LENGTH$6 = arrayMethodUsesToLength('filter'); // `Array.prototype.filter` method - // https://tc39.github.io/ecma262/#sec-array.prototype.filter + // https://tc39.es/ecma262/#sec-array.prototype.filter // with adding support of @@species - _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$3 || !USES_TO_LENGTH$6 }, { + _export({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT$3 }, { filter: function filter(callbackfn /* , thisArg */) { return $filter$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } }); + var FAILS_ON_PRIMITIVES$3 = fails(function () { objectKeys(1); }); + + // `Object.keys` method + // https://tc39.es/ecma262/#sec-object.keys + _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$3 }, { + keys: function keys(it) { + return objectKeys(toObject(it)); + } + }); + var nativeReverse = [].reverse; var test$1 = [1, 2]; // `Array.prototype.reverse` method - // https://tc39.github.io/ecma262/#sec-array.prototype.reverse + // https://tc39.es/ecma262/#sec-array.prototype.reverse // fix for Safari 12.0 bug // https://bugs.webkit.org/show_bug.cgi?id=188794 _export({ target: 'Array', proto: true, forced: String(test$1) === String(test$1.reverse()) }, { reverse: function reverse() { - // eslint-disable-next-line no-self-assign + // eslint-disable-next-line no-self-assign -- dirty hack if (isArray(this)) this.length = this.length; return nativeReverse.call(this); } }); - var FAILS_ON_PRIMITIVES$3 = fails(function () { objectKeys(1); }); - - // `Object.keys` method - // https://tc39.github.io/ecma262/#sec-object.keys - _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$3 }, { - keys: function keys(it) { - return objectKeys(toObject(it)); - } - }); - var trim = stringTrim.trim; @@ -7690,7 +7704,7 @@ var FORCED$8 = 1 / $parseFloat(whitespaces + '-0') !== -Infinity; // `parseFloat` method - // https://tc39.github.io/ecma262/#sec-parsefloat-string + // https://tc39.es/ecma262/#sec-parsefloat-string var numberParseFloat = FORCED$8 ? function parseFloat(string) { var trimmedString = trim(String(string)); var result = $parseFloat(trimmedString); @@ -7698,7 +7712,7 @@ } : $parseFloat; // `parseFloat` method - // https://tc39.github.io/ecma262/#sec-parsefloat-string + // https://tc39.es/ecma262/#sec-parsefloat-string _export({ global: true, forced: parseFloat != numberParseFloat }, { parseFloat: numberParseFloat }); @@ -8114,14 +8128,14 @@ var FORCED$9 = $parseInt(whitespaces + '08') !== 8 || $parseInt(whitespaces + '0x16') !== 22; // `parseInt` method - // https://tc39.github.io/ecma262/#sec-parseint-string-radix + // https://tc39.es/ecma262/#sec-parseint-string-radix var numberParseInt = FORCED$9 ? function parseInt(string, radix) { var S = trim$1(String(string)); return $parseInt(S, (radix >>> 0) || (hex$1.test(S) ? 16 : 10)); } : $parseInt; // `parseInt` method - // https://tc39.github.io/ecma262/#sec-parseint-string-radix + // https://tc39.es/ecma262/#sec-parseint-string-radix _export({ global: true, forced: parseInt != numberParseInt }, { parseInt: numberParseInt }); @@ -8219,10 +8233,14 @@ ); }; - // eslint-disable-next-line max-len - if (isForced_1(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () { - new NativeConstructor().entries().next(); - })))) { + var REPLACE = isForced_1( + CONSTRUCTOR_NAME, + typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () { + new NativeConstructor().entries().next(); + })) + ); + + if (REPLACE) { // create collection constructor Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER); internalMetadata.REQUIRED = true; @@ -8233,7 +8251,7 @@ // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); }); // most early implementations doesn't supports iterables, most modern - not close it correctly - // eslint-disable-next-line no-new + // eslint-disable-next-line no-new -- required for testing var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); }); // for early implementations -0 and +0 not the same var BUGGY_ZERO = !IS_WEAK && fails(function () { @@ -8277,7 +8295,7 @@ return Constructor; }; - var defineProperty$8 = objectDefineProperty.f; + var defineProperty$7 = objectDefineProperty.f; @@ -8419,7 +8437,7 @@ return define(this, value = value === 0 ? 0 : value, value); } }); - if (descriptors) defineProperty$8(C.prototype, 'size', { + if (descriptors) defineProperty$7(C.prototype, 'size', { get: function () { return getInternalState(this).size; } @@ -8464,7 +8482,7 @@ }; // `Set` constructor - // https://tc39.github.io/ecma262/#sec-set-objects + // https://tc39.es/ecma262/#sec-set-objects var es_set = collection('Set', function (init) { return function Set() { return init(this, arguments.length ? arguments[0] : undefined); }; }, collectionStrong); @@ -8530,7 +8548,7 @@ } // `Symbol.asyncIterator` well-known symbol - // https://tc39.github.io/ecma262/#sec-symbol.asynciterator + // https://tc39.es/ecma262/#sec-symbol.asynciterator defineWellKnownSymbol('asyncIterator'); var runtime_1 = createCommonjsModule(function (module) { @@ -9376,55 +9394,53 @@ var bisectRight = ascendingBisect.right; var bisectCenter = d3_bisector(number).center; - // `Array.prototype.fill` method - // https://tc39.github.io/ecma262/#sec-array.prototype.fill - _export({ target: 'Array', proto: true }, { - fill: arrayFill - }); - - // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables - addToUnscopables('fill'); - var INCORRECT_ITERATION$1 = !checkCorrectnessOfIteration(function (iterable) { Array.from(iterable); }); // `Array.from` method - // https://tc39.github.io/ecma262/#sec-array.from + // https://tc39.es/ecma262/#sec-array.from _export({ target: 'Array', stat: true, forced: INCORRECT_ITERATION$1 }, { from: arrayFrom }); - var $some$1 = arrayIteration.some; + // `Array.prototype.fill` method + // https://tc39.es/ecma262/#sec-array.prototype.fill + _export({ target: 'Array', proto: true }, { + fill: arrayFill + }); + // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables + addToUnscopables('fill'); + + var $some$1 = arrayIteration.some; var STRICT_METHOD$4 = arrayMethodIsStrict('some'); - var USES_TO_LENGTH$7 = arrayMethodUsesToLength('some'); // `Array.prototype.some` method - // https://tc39.github.io/ecma262/#sec-array.prototype.some - _export({ target: 'Array', proto: true, forced: !STRICT_METHOD$4 || !USES_TO_LENGTH$7 }, { + // https://tc39.es/ecma262/#sec-array.prototype.some + _export({ target: 'Array', proto: true, forced: !STRICT_METHOD$4 }, { some: function some(callbackfn /* , thisArg */) { return $some$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } }); + var exportTypedArrayStaticMethod$1 = arrayBufferViewCore.exportTypedArrayStaticMethod; + + + // `%TypedArray%.from` method + // https://tc39.es/ecma262/#sec-%typedarray%.from + exportTypedArrayStaticMethod$1('from', typedArrayFrom, typedArrayConstructorsRequireWrappers); + // `Float64Array` constructor - // https://tc39.github.io/ecma262/#sec-typedarray-objects + // https://tc39.es/ecma262/#sec-typedarray-objects typedArrayConstructor('Float64', function (init) { return function Float64Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); - var exportTypedArrayStaticMethod$1 = arrayBufferViewCore.exportTypedArrayStaticMethod; - - - // `%TypedArray%.from` method - // https://tc39.github.io/ecma262/#sec-%typedarray%.from - exportTypedArrayStaticMethod$1('from', typedArrayFrom, typedArrayConstructorsRequireWrappers); - function d3_descending (a, b) { return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN; } @@ -9491,12 +9507,44 @@ return Adder; }(); + // `Object.defineProperties` method + // https://tc39.es/ecma262/#sec-object.defineproperties + _export({ target: 'Object', stat: true, forced: !descriptors, sham: !descriptors }, { + defineProperties: objectDefineProperties + }); + // `Map` constructor - // https://tc39.github.io/ecma262/#sec-map-objects + // https://tc39.es/ecma262/#sec-map-objects var es_map = collection('Map', function (init) { return function Map() { return init(this, arguments.length ? arguments[0] : undefined); }; }, collectionStrong); + var test$2 = []; + var nativeSort = test$2.sort; + + // IE8- + var FAILS_ON_UNDEFINED = fails(function () { + test$2.sort(undefined); + }); + // V8 bug + var FAILS_ON_NULL = fails(function () { + test$2.sort(null); + }); + // Old WebKit + var STRICT_METHOD$5 = arrayMethodIsStrict('sort'); + + var FORCED$a = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD$5; + + // `Array.prototype.sort` method + // https://tc39.es/ecma262/#sec-array.prototype.sort + _export({ target: 'Array', proto: true, forced: FORCED$a }, { + sort: function sort(comparefn) { + return comparefn === undefined + ? nativeSort.call(toObject(this)) + : nativeSort.call(toObject(this), aFunction$1(comparefn)); + } + }); + var e10 = Math.sqrt(50), e5 = Math.sqrt(10), e2 = Math.sqrt(2); @@ -9772,36 +9820,10 @@ return range; } - var test$2 = []; - var nativeSort = test$2.sort; - - // IE8- - var FAILS_ON_UNDEFINED = fails(function () { - test$2.sort(undefined); - }); - // V8 bug - var FAILS_ON_NULL = fails(function () { - test$2.sort(null); - }); - // Old WebKit - var STRICT_METHOD$5 = arrayMethodIsStrict('sort'); - - var FORCED$a = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD$5; - - // `Array.prototype.sort` method - // https://tc39.github.io/ecma262/#sec-array.prototype.sort - _export({ target: 'Array', proto: true, forced: FORCED$a }, { - sort: function sort(comparefn) { - return comparefn === undefined - ? nativeSort.call(toObject(this)) - : nativeSort.call(toObject(this), aFunction$1(comparefn)); - } - }); - // `SameValue` abstract operation - // https://tc39.github.io/ecma262/#sec-samevalue + // https://tc39.es/ecma262/#sec-samevalue var sameValue = Object.is || function is(x, y) { - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; }; @@ -9814,9 +9836,10 @@ var BUGGY = !!$hypot && $hypot(Infinity, NaN) !== Infinity; // `Math.hypot` method - // https://tc39.github.io/ecma262/#sec-math.hypot + // https://tc39.es/ecma262/#sec-math.hypot _export({ target: 'Math', stat: true, forced: BUGGY }, { - hypot: function hypot(value1, value2) { // eslint-disable-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` + hypot: function hypot(value1, value2) { var sum = 0; var i = 0; var aLen = arguments.length; @@ -9838,14 +9861,14 @@ }); // `Math.sign` method implementation - // https://tc39.github.io/ecma262/#sec-math.sign + // https://tc39.es/ecma262/#sec-math.sign var mathSign = Math.sign || function sign(x) { - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; // `Math.sign` method - // https://tc39.github.io/ecma262/#sec-math.sign + // https://tc39.es/ecma262/#sec-math.sign _export({ target: 'Math', stat: true }, { sign: mathSign }); @@ -12446,13 +12469,11 @@ var $every$1 = arrayIteration.every; - var STRICT_METHOD$6 = arrayMethodIsStrict('every'); - var USES_TO_LENGTH$8 = arrayMethodUsesToLength('every'); // `Array.prototype.every` method - // https://tc39.github.io/ecma262/#sec-array.prototype.every - _export({ target: 'Array', proto: true, forced: !STRICT_METHOD$6 || !USES_TO_LENGTH$8 }, { + // https://tc39.es/ecma262/#sec-array.prototype.every + _export({ target: 'Array', proto: true, forced: !STRICT_METHOD$6 }, { every: function every(callbackfn /* , thisArg */) { return $every$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } @@ -12463,16 +12484,14 @@ - var STRICT_METHOD$7 = arrayMethodIsStrict('reduce'); - var USES_TO_LENGTH$9 = arrayMethodUsesToLength('reduce', { 1: 0 }); // Chrome 80-82 has a critical bug // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982 var CHROME_BUG = !engineIsNode && engineV8Version > 79 && engineV8Version < 83; // `Array.prototype.reduce` method - // https://tc39.github.io/ecma262/#sec-array.prototype.reduce - _export({ target: 'Array', proto: true, forced: !STRICT_METHOD$7 || !USES_TO_LENGTH$9 || CHROME_BUG }, { + // https://tc39.es/ecma262/#sec-array.prototype.reduce + _export({ target: 'Array', proto: true, forced: !STRICT_METHOD$7 || CHROME_BUG }, { reduce: function reduce(callbackfn /* , initialValue */) { return $reduce$1(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined); } @@ -13223,24 +13242,21 @@ var $find$1 = arrayIteration.find; - var FIND = 'find'; var SKIPS_HOLES = true; - var USES_TO_LENGTH$a = arrayMethodUsesToLength(FIND); - // Shouldn't skip holes if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; }); // `Array.prototype.find` method - // https://tc39.github.io/ecma262/#sec-array.prototype.find - _export({ target: 'Array', proto: true, forced: SKIPS_HOLES || !USES_TO_LENGTH$a }, { + // https://tc39.es/ecma262/#sec-array.prototype.find + _export({ target: 'Array', proto: true, forced: SKIPS_HOLES }, { find: function find(callbackfn /* , that = undefined */) { return $find$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } }); - // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables addToUnscopables(FIND); function matcher (selector) { @@ -14182,12 +14198,6 @@ }; }); - // `Object.defineProperties` method - // https://tc39.github.io/ecma262/#sec-object.defineproperties - _export({ target: 'Object', stat: true, forced: !descriptors, sham: !descriptors }, { - defineProperties: objectDefineProperties - }); - function DragEvent(type, _ref) { var sourceEvent = _ref.sourceEvent, subject = _ref.subject, @@ -14459,7 +14469,7 @@ return drag; } - var defineProperty$9 = objectDefineProperty.f; + var defineProperty$8 = objectDefineProperty.f; var getOwnPropertyNames$1 = objectGetOwnPropertyNames.f; @@ -14488,7 +14498,7 @@ }))); // `RegExp` constructor - // https://tc39.github.io/ecma262/#sec-regexp-constructor + // https://tc39.es/ecma262/#sec-regexp-constructor if (FORCED$b) { var RegExpWrapper = function RegExp(pattern, flags) { var thisIsRegExp = this instanceof RegExpWrapper; @@ -14523,7 +14533,7 @@ return result; }; var proxy = function (key) { - key in RegExpWrapper || defineProperty$9(RegExpWrapper, key, { + key in RegExpWrapper || defineProperty$8(RegExpWrapper, key, { configurable: true, get: function () { return NativeRegExp[key]; }, set: function (it) { NativeRegExp[key] = it; } @@ -14537,7 +14547,7 @@ redefine(global_1, 'RegExp', RegExpWrapper); } - // https://tc39.github.io/ecma262/#sec-get-regexp-@@species + // https://tc39.es/ecma262/#sec-get-regexp-@@species setSpecies('RegExp'); function define (constructor, factory, prototype) { @@ -15319,7 +15329,7 @@ } // `Function.prototype.bind` method - // https://tc39.github.io/ecma262/#sec-function.prototype.bind + // https://tc39.es/ecma262/#sec-function.prototype.bind _export({ target: 'Function', proto: true }, { bind: functionBind }); @@ -17003,7 +17013,7 @@ var FAILS_ON_PRIMITIVES$4 = fails(function () { nativeFreeze(1); }); // `Object.freeze` method - // https://tc39.github.io/ecma262/#sec-object.freeze + // https://tc39.es/ecma262/#sec-object.freeze _export({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES$4, sham: !freezing }, { freeze: function freeze(it) { return nativeFreeze && isObject(it) ? nativeFreeze(onFreeze(it)) : it; @@ -17158,14 +17168,14 @@ fixRegexpWellKnownSymbolLogic('match', 1, function (MATCH, nativeMatch, maybeCallNative) { return [ // `String.prototype.match` method - // https://tc39.github.io/ecma262/#sec-string.prototype.match + // https://tc39.es/ecma262/#sec-string.prototype.match function match(regexp) { var O = requireObjectCoercible(this); var matcher = regexp == undefined ? undefined : regexp[MATCH]; return matcher !== undefined ? matcher.call(regexp, O) : new RegExp(regexp)[MATCH](String(O)); }, // `RegExp.prototype[@@match]` method - // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match + // https://tc39.es/ecma262/#sec-regexp.prototype-@@match function (regexp) { var res = maybeCallNative(nativeMatch, regexp, this); if (res.done) return res.value; @@ -19753,17 +19763,17 @@ var objectToArray = { // `Object.entries` method - // https://tc39.github.io/ecma262/#sec-object.entries + // https://tc39.es/ecma262/#sec-object.entries entries: createMethod$5(true), // `Object.values` method - // https://tc39.github.io/ecma262/#sec-object.values + // https://tc39.es/ecma262/#sec-object.values values: createMethod$5(false) }; var $values = objectToArray.values; // `Object.values` method - // https://tc39.github.io/ecma262/#sec-object.values + // https://tc39.es/ecma262/#sec-object.values _export({ target: 'Object', stat: true }, { values: function values(O) { return $values(O); @@ -19948,41 +19958,35 @@ var $findIndex$1 = arrayIteration.findIndex; - var FIND_INDEX = 'findIndex'; var SKIPS_HOLES$1 = true; - var USES_TO_LENGTH$b = arrayMethodUsesToLength(FIND_INDEX); - // Shouldn't skip holes if (FIND_INDEX in []) Array(1)[FIND_INDEX](function () { SKIPS_HOLES$1 = false; }); // `Array.prototype.findIndex` method - // https://tc39.github.io/ecma262/#sec-array.prototype.findindex - _export({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 || !USES_TO_LENGTH$b }, { + // https://tc39.es/ecma262/#sec-array.prototype.findindex + _export({ target: 'Array', proto: true, forced: SKIPS_HOLES$1 }, { findIndex: function findIndex(callbackfn /* , that = undefined */) { return $findIndex$1(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); } }); - // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables addToUnscopables(FIND_INDEX); var $includes$1 = arrayIncludes.includes; - - var USES_TO_LENGTH$c = arrayMethodUsesToLength('indexOf', { ACCESSORS: true, 1: 0 }); - // `Array.prototype.includes` method - // https://tc39.github.io/ecma262/#sec-array.prototype.includes - _export({ target: 'Array', proto: true, forced: !USES_TO_LENGTH$c }, { + // https://tc39.es/ecma262/#sec-array.prototype.includes + _export({ target: 'Array', proto: true }, { includes: function includes(el /* , fromIndex = 0 */) { return $includes$1(this, el, arguments.length > 1 ? arguments[1] : undefined); } }); - // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables addToUnscopables('includes'); var notARegexp = function (it) { @@ -20006,7 +20010,7 @@ }; // `String.prototype.includes` method - // https://tc39.github.io/ecma262/#sec-string.prototype.includes + // https://tc39.es/ecma262/#sec-string.prototype.includes _export({ target: 'String', proto: true, forced: !correctIsRegexpLogic('includes') }, { includes: function includes(searchString /* , position = 0 */) { return !!~String(requireObjectCoercible(this)) @@ -20122,9 +20126,15 @@ return _detected; } + // `Number.MAX_SAFE_INTEGER` constant + // https://tc39.es/ecma262/#sec-number.max_safe_integer + _export({ target: 'Number', stat: true }, { + MAX_SAFE_INTEGER: 0x1FFFFFFFFFFFFF + }); + var getOwnPropertyNames$2 = objectGetOwnPropertyNames.f; var getOwnPropertyDescriptor$3 = objectGetOwnPropertyDescriptor.f; - var defineProperty$a = objectDefineProperty.f; + var defineProperty$9 = objectDefineProperty.f; var trim$2 = stringTrim.trim; var NUMBER = 'Number'; @@ -20135,7 +20145,7 @@ var BROKEN_CLASSOF = classofRaw(objectCreate(NumberPrototype)) == NUMBER; // `ToNumber` abstract operation - // https://tc39.github.io/ecma262/#sec-tonumber + // https://tc39.es/ecma262/#sec-tonumber var toNumber = function (argument) { var it = toPrimitive(argument, false); var first, third, radix, maxCode, digits, length, index, code; @@ -20164,7 +20174,7 @@ }; // `Number` constructor - // https://tc39.github.io/ecma262/#sec-number-constructor + // https://tc39.es/ecma262/#sec-number-constructor if (isForced_1(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) { var NumberWrapper = function Number(value) { var it = arguments.length < 1 ? 0 : value; @@ -20179,10 +20189,12 @@ 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' + // ES2015 (in case, if modules with ES2015 Number statics required before): 'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,' + - 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger' + 'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger,' + + // ESNext + 'fromString,range' ).split(','), j$2 = 0, key$1; keys$3.length > j$2; j$2++) { if (has(NativeNumber, key$1 = keys$3[j$2]) && !has(NumberWrapper, key$1)) { - defineProperty$a(NumberWrapper, key$1, getOwnPropertyDescriptor$3(NativeNumber, key$1)); + defineProperty$9(NumberWrapper, key$1, getOwnPropertyDescriptor$3(NativeNumber, key$1)); } } NumberWrapper.prototype = NumberPrototype; @@ -20190,12 +20202,6 @@ redefine(global_1, NUMBER, NumberWrapper); } - // `Number.MAX_SAFE_INTEGER` constant - // https://tc39.github.io/ecma262/#sec-number.max_safe_integer - _export({ target: 'Number', stat: true }, { - MAX_SAFE_INTEGER: 0x1FFFFFFFFFFFFF - }); - var aesJs = createCommonjsModule(function (module, exports) { /*! MIT License. Copyright 2015-2018 Richard Moore . See LICENSE.txt. */ (function (root) { @@ -22465,7 +22471,7 @@ } // `Array.prototype.lastIndexOf` method - // https://tc39.github.io/ecma262/#sec-array.prototype.lastindexof + // https://tc39.es/ecma262/#sec-array.prototype.lastindexof _export({ target: 'Array', proto: true, forced: arrayLastIndexOf !== [].lastIndexOf }, { lastIndexOf: arrayLastIndexOf }); @@ -28892,7 +28898,7 @@ var UNSUPPORTED_Y$3 = regexpStickyHelpers.UNSUPPORTED_Y; // `RegExp.prototype.flags` getter - // https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags + // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags if (descriptors && (/./g.flags != 'g' || UNSUPPORTED_Y$3)) { objectDefineProperty.f(RegExp.prototype, 'flags', { configurable: true, @@ -31349,7 +31355,7 @@ } // `thisNumberValue` abstract operation - // https://tc39.github.io/ecma262/#sec-thisnumbervalue + // https://tc39.es/ecma262/#sec-thisnumbervalue var thisNumberValue = function (value) { if (typeof value != 'number' && classofRaw(value) != 'Number') { throw TypeError('Incorrect invocation'); @@ -31358,7 +31364,7 @@ }; // `String.prototype.repeat` method implementation - // https://tc39.github.io/ecma262/#sec-string.prototype.repeat + // https://tc39.es/ecma262/#sec-string.prototype.repeat var stringRepeat = ''.repeat || function repeat(count) { var str = String(requireObjectCoercible(this)); var result = ''; @@ -31388,6 +31394,37 @@ } return n; }; + var multiply = function (data, n, c) { + var index = -1; + var c2 = c; + while (++index < 6) { + c2 += n * data[index]; + data[index] = c2 % 1e7; + c2 = floor$6(c2 / 1e7); + } + }; + + var divide = function (data, n) { + var index = 6; + var c = 0; + while (--index >= 0) { + c += data[index]; + data[index] = floor$6(c / n); + c = (c % n) * 1e7; + } + }; + + var dataToString = function (data) { + var index = 6; + var s = ''; + while (--index >= 0) { + if (s !== '' || index === 0 || data[index] !== 0) { + var t = String(data[index]); + s = s === '' ? t : s + stringRepeat.call('0', 7 - t.length) + t; + } + } return s; + }; + var FORCED$c = nativeToFixed && ( 0.00008.toFixed(3) !== '0.000' || 0.9.toFixed(0) !== '1' || @@ -31399,9 +31436,8 @@ }); // `Number.prototype.toFixed` method - // https://tc39.github.io/ecma262/#sec-number.prototype.tofixed + // https://tc39.es/ecma262/#sec-number.prototype.tofixed _export({ target: 'Number', proto: true, forced: FORCED$c }, { - // eslint-disable-next-line max-statements toFixed: function toFixed(fractionDigits) { var number = thisNumberValue(this); var fractDigits = toInteger(fractionDigits); @@ -31410,39 +31446,8 @@ var result = '0'; var e, z, j, k; - var multiply = function (n, c) { - var index = -1; - var c2 = c; - while (++index < 6) { - c2 += n * data[index]; - data[index] = c2 % 1e7; - c2 = floor$6(c2 / 1e7); - } - }; - - var divide = function (n) { - var index = 6; - var c = 0; - while (--index >= 0) { - c += data[index]; - data[index] = floor$6(c / n); - c = (c % n) * 1e7; - } - }; - - var dataToString = function () { - var index = 6; - var s = ''; - while (--index >= 0) { - if (s !== '' || index === 0 || data[index] !== 0) { - var t = String(data[index]); - s = s === '' ? t : s + stringRepeat.call('0', 7 - t.length) + t; - } - } return s; - }; - if (fractDigits < 0 || fractDigits > 20) throw RangeError('Incorrect fraction digits'); - // eslint-disable-next-line no-self-compare + // eslint-disable-next-line no-self-compare -- NaN check if (number != number) return 'NaN'; if (number <= -1e21 || number >= 1e21) return String(number); if (number < 0) { @@ -31455,26 +31460,26 @@ z *= 0x10000000000000; e = 52 - e; if (e > 0) { - multiply(0, z); + multiply(data, 0, z); j = fractDigits; while (j >= 7) { - multiply(1e7, 0); + multiply(data, 1e7, 0); j -= 7; } - multiply(pow$2(10, j, 1), 0); + multiply(data, pow$2(10, j, 1), 0); j = e - 1; while (j >= 23) { - divide(1 << 23); + divide(data, 1 << 23); j -= 23; } - divide(1 << j); - multiply(1, 1); - divide(2); - result = dataToString(); + divide(data, 1 << j); + multiply(data, 1, 1); + divide(data, 2); + result = dataToString(data); } else { - multiply(0, z); - multiply(1 << -e, 0); - result = dataToString() + stringRepeat.call('0', fractDigits); + multiply(data, 0, z); + multiply(data, 1 << -e, 0); + result = dataToString(data) + stringRepeat.call('0', fractDigits); } } if (fractDigits > 0) { @@ -31499,7 +31504,7 @@ }); // `Number.prototype.toPrecision` method - // https://tc39.github.io/ecma262/#sec-number.prototype.toprecision + // https://tc39.es/ecma262/#sec-number.prototype.toprecision _export({ target: 'Number', proto: true, forced: FORCED$d }, { toPrecision: function toPrecision(precision) { return precision === undefined @@ -31832,7 +31837,7 @@ var exp$1 = Math.exp; // `Math.expm1` method implementation - // https://tc39.github.io/ecma262/#sec-math.expm1 + // https://tc39.es/ecma262/#sec-math.expm1 var mathExpm1 = (!nativeExpm1 // Old FF bug || nativeExpm1(10) > 22025.465794806719 || nativeExpm1(10) < 22025.4657948067165168 @@ -31920,10 +31925,10 @@ var stringPad = { // `String.prototype.padStart` method - // https://tc39.github.io/ecma262/#sec-string.prototype.padstart + // https://tc39.es/ecma262/#sec-string.prototype.padstart start: createMethod$6(false), // `String.prototype.padEnd` method - // https://tc39.github.io/ecma262/#sec-string.prototype.padend + // https://tc39.es/ecma262/#sec-string.prototype.padend end: createMethod$6(true) }; @@ -31935,7 +31940,7 @@ var nativeDateToISOString = DatePrototype$1.toISOString; // `Date.prototype.toISOString` method implementation - // https://tc39.github.io/ecma262/#sec-date.prototype.toisostring + // https://tc39.es/ecma262/#sec-date.prototype.toisostring // PhantomJS / old WebKit fails here: var dateToIsoString = (fails(function () { return nativeDateToISOString.call(new Date(-5e13 - 1)) != '0385-07-25T07:06:39.999Z'; @@ -31958,7 +31963,7 @@ } : nativeDateToISOString; // `Date.prototype.toISOString` method - // https://tc39.github.io/ecma262/#sec-date.prototype.toisostring + // https://tc39.es/ecma262/#sec-date.prototype.toisostring // PhantomJS / old WebKit has a broken implementations _export({ target: 'Date', proto: true, forced: Date.prototype.toISOString !== dateToIsoString }, { toISOString: dateToIsoString @@ -33120,7 +33125,7 @@ } // `String.prototype.repeat` method - // https://tc39.github.io/ecma262/#sec-string.prototype.repeat + // https://tc39.es/ecma262/#sec-string.prototype.repeat _export({ target: 'String', proto: true }, { repeat: stringRepeat }); @@ -33700,45 +33705,18 @@ return mode; } - // Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829 - var NON_GENERIC = !!nativePromiseConstructor && fails(function () { - nativePromiseConstructor.prototype['finally'].call({ then: function () { /* empty */ } }, function () { /* empty */ }); - }); - - // `Promise.prototype.finally` method - // https://tc39.github.io/ecma262/#sec-promise.prototype.finally - _export({ target: 'Promise', proto: true, real: true, forced: NON_GENERIC }, { - 'finally': function (onFinally) { - var C = speciesConstructor(this, getBuiltIn('Promise')); - var isFunction = typeof onFinally == 'function'; - return this.then( - isFunction ? function (x) { - return promiseResolve(C, onFinally()).then(function () { return x; }); - } : onFinally, - isFunction ? function (e) { - return promiseResolve(C, onFinally()).then(function () { throw e; }); - } : onFinally - ); - } - }); - - // patch native Promise.prototype for native async functions - if ( typeof nativePromiseConstructor == 'function' && !nativePromiseConstructor.prototype['finally']) { - redefine(nativePromiseConstructor.prototype, 'finally', getBuiltIn('Promise').prototype['finally']); - } - // @@search logic fixRegexpWellKnownSymbolLogic('search', 1, function (SEARCH, nativeSearch, maybeCallNative) { return [ // `String.prototype.search` method - // https://tc39.github.io/ecma262/#sec-string.prototype.search + // https://tc39.es/ecma262/#sec-string.prototype.search function search(regexp) { var O = requireObjectCoercible(this); var searcher = regexp == undefined ? undefined : regexp[SEARCH]; return searcher !== undefined ? searcher.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O)); }, // `RegExp.prototype[@@search]` method - // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search + // https://tc39.es/ecma262/#sec-regexp.prototype-@@search function (regexp) { var res = maybeCallNative(nativeSearch, regexp, this); if (res.done) return res.value; @@ -33755,6 +33733,33 @@ ]; }); + // Safari bug https://bugs.webkit.org/show_bug.cgi?id=200829 + var NON_GENERIC = !!nativePromiseConstructor && fails(function () { + nativePromiseConstructor.prototype['finally'].call({ then: function () { /* empty */ } }, function () { /* empty */ }); + }); + + // `Promise.prototype.finally` method + // https://tc39.es/ecma262/#sec-promise.prototype.finally + _export({ target: 'Promise', proto: true, real: true, forced: NON_GENERIC }, { + 'finally': function (onFinally) { + var C = speciesConstructor(this, getBuiltIn('Promise')); + var isFunction = typeof onFinally == 'function'; + return this.then( + isFunction ? function (x) { + return promiseResolve(C, onFinally()).then(function () { return x; }); + } : onFinally, + isFunction ? function (e) { + return promiseResolve(C, onFinally()).then(function () { throw e; }); + } : onFinally + ); + } + }); + + // patch native Promise.prototype for native async functions + if ( typeof nativePromiseConstructor == 'function' && !nativePromiseConstructor.prototype['finally']) { + redefine(nativePromiseConstructor.prototype, 'finally', getBuiltIn('Promise').prototype['finally']); + } + function quickselect$1(arr, k, left, right, compare) { quickselectStep(arr, k, left || 0, right || arr.length - 1, compare || defaultCompare); } @@ -35333,7 +35338,7 @@ var quot = /"/g; // B.2.3.2.1 CreateHTML(string, tag, attribute, value) - // https://tc39.github.io/ecma262/#sec-createhtml + // https://tc39.es/ecma262/#sec-createhtml var createHtml = function (string, tag, attribute, value) { var S = String(requireObjectCoercible(string)); var p1 = '<' + tag; @@ -35351,77 +35356,13 @@ }; // `String.prototype.link` method - // https://tc39.github.io/ecma262/#sec-string.prototype.link + // https://tc39.es/ecma262/#sec-string.prototype.link _export({ target: 'String', proto: true, forced: stringHtmlForced('link') }, { link: function link(url) { return createHtml(this, 'a', 'href', url); } }); - var getOwnPropertyDescriptor$4 = objectGetOwnPropertyDescriptor.f; - - - - - - - var nativeEndsWith = ''.endsWith; - var min$8 = Math.min; - - var CORRECT_IS_REGEXP_LOGIC = correctIsRegexpLogic('endsWith'); - // https://github.com/zloirock/core-js/pull/702 - var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () { - var descriptor = getOwnPropertyDescriptor$4(String.prototype, 'endsWith'); - return descriptor && !descriptor.writable; - }(); - - // `String.prototype.endsWith` method - // https://tc39.github.io/ecma262/#sec-string.prototype.endswith - _export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, { - endsWith: function endsWith(searchString /* , endPosition = @length */) { - var that = String(requireObjectCoercible(this)); - notARegexp(searchString); - var endPosition = arguments.length > 1 ? arguments[1] : undefined; - var len = toLength(that.length); - var end = endPosition === undefined ? len : min$8(toLength(endPosition), len); - var search = String(searchString); - return nativeEndsWith - ? nativeEndsWith.call(that, search, end) - : that.slice(end - search.length, end) === search; - } - }); - - var getOwnPropertyDescriptor$5 = objectGetOwnPropertyDescriptor.f; - - - - - - - var nativeStartsWith = ''.startsWith; - var min$9 = Math.min; - - var CORRECT_IS_REGEXP_LOGIC$1 = correctIsRegexpLogic('startsWith'); - // https://github.com/zloirock/core-js/pull/702 - var MDN_POLYFILL_BUG$1 = !CORRECT_IS_REGEXP_LOGIC$1 && !!function () { - var descriptor = getOwnPropertyDescriptor$5(String.prototype, 'startsWith'); - return descriptor && !descriptor.writable; - }(); - - // `String.prototype.startsWith` method - // https://tc39.github.io/ecma262/#sec-string.prototype.startswith - _export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_REGEXP_LOGIC$1 }, { - startsWith: function startsWith(searchString /* , position = 0 */) { - var that = String(requireObjectCoercible(this)); - notARegexp(searchString); - var index = toLength(min$9(arguments.length > 1 ? arguments[1] : undefined, that.length)); - var search = String(searchString); - return nativeStartsWith - ? nativeStartsWith.call(that, search, index) - : that.slice(index, index + search.length) === search; - } - }); - var $trimEnd = stringTrim.end; @@ -35432,7 +35373,8 @@ } : ''.trimEnd; // `String.prototype.{ trimEnd, trimRight }` methods - // https://github.com/tc39/ecmascript-string-left-right-trim + // https://tc39.es/ecma262/#sec-string.prototype.trimend + // https://tc39.es/ecma262/#String.prototype.trimright _export({ target: 'String', proto: true, forced: FORCED$e }, { trimEnd: trimEnd, trimRight: trimEnd @@ -35865,7 +35807,7 @@ }; } - var text = cap[0].replace(/^ {4}/gm, ''); + var text = cap[0].replace(/^ {1,4}/gm, ''); return { type: 'code', raw: cap[0], @@ -35896,11 +35838,24 @@ var cap = this.rules.block.heading.exec(src); if (cap) { + var text = cap[2].trim(); // remove trailing #s + + if (/#$/.test(text)) { + var trimmed = rtrim$2(text, '#'); + + if (this.options.pedantic) { + text = trimmed.trim(); + } else if (!trimmed || / $/.test(trimmed)) { + // CommonMark requires space before trailing #s + text = trimmed.trim(); + } + } + return { type: 'heading', raw: cap[0], depth: cap[1].length, - text: cap[2] + text: text }; } } @@ -36009,7 +35964,7 @@ if (i !== l - 1) { bnext = this.rules.block.listItemStart.exec(itemMatch[i + 1]); - if (bnext[1].length > bcurr[0].length || bnext[1].length > 3) { + if (!this.options.pedantic ? bnext[1].length > bcurr[0].length || bnext[1].length > 3 : bnext[1].length > bcurr[1].length) { // nested list itemMatch.splice(i, 2, itemMatch[i] + '\n' + itemMatch[i + 1]); i--; @@ -36053,12 +36008,14 @@ } // Check for task list items - istask = /^\[[ xX]\] /.test(item); - ischecked = undefined; + if (this.options.gfm) { + istask = /^\[[ xX]\] /.test(item); + ischecked = undefined; - if (istask) { - ischecked = item[1] !== ' '; - item = item.replace(/^\[[ xX]\] +/, ''); + if (istask) { + ischecked = item[1] !== ' '; + item = item.replace(/^\[[ xX]\] +/, ''); + } } list.items.push({ @@ -36239,38 +36196,63 @@ var cap = this.rules.inline.link.exec(src); if (cap) { - var lastParenIndex = findClosingBracket$1(cap[2], '()'); + var trimmedUrl = cap[2].trim(); + + if (!this.options.pedantic && /^$/.test(trimmedUrl)) { + return; + } // ending angle bracket cannot be escaped + - if (lastParenIndex > -1) { - var start = cap[0].indexOf('!') === 0 ? 5 : 4; - var linkLen = start + cap[1].length + lastParenIndex; - cap[2] = cap[2].substring(0, lastParenIndex); - cap[0] = cap[0].substring(0, linkLen).trim(); - cap[3] = ''; + var rtrimSlash = rtrim$2(trimmedUrl.slice(0, -1), '\\'); + + if ((trimmedUrl.length - rtrimSlash.length) % 2 === 0) { + return; + } + } else { + // find closing parenthesis + var lastParenIndex = findClosingBracket$1(cap[2], '()'); + + if (lastParenIndex > -1) { + var start = cap[0].indexOf('!') === 0 ? 5 : 4; + var linkLen = start + cap[1].length + lastParenIndex; + cap[2] = cap[2].substring(0, lastParenIndex); + cap[0] = cap[0].substring(0, linkLen).trim(); + cap[3] = ''; + } } var href = cap[2]; var title = ''; if (this.options.pedantic) { + // split pedantic href and title var link = /^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(href); if (link) { href = link[1]; title = link[3]; - } else { - title = ''; } } else { title = cap[3] ? cap[3].slice(1, -1) : ''; } - href = href.trim().replace(/^<([\s\S]*)>$/, '$1'); - var token = outputLink(cap, { + href = href.trim(); + + if (/^$/.test(trimmedUrl)) { + // pedantic allows starting angle bracket without ending angle bracket + href = href.slice(1); + } else { + href = href.slice(1, -1); + } + } + + return outputLink(cap, { href: href ? href.replace(this.rules.inline._escapes, '$1') : href, title: title ? title.replace(this.rules.inline._escapes, '$1') : title }, cap[0]); - return token; } } }, { @@ -36291,8 +36273,7 @@ }; } - var token = outputLink(cap, link, cap[0]); - return token; + return outputLink(cap, link, cap[0]); } } }, { @@ -36353,7 +36334,7 @@ if (cap) { var text = cap[2].replace(/\n/g, ' '); var hasNonSpaceChars = /[^ ]/.test(text); - var hasSpaceCharsOnBothEnds = text.startsWith(' ') && text.endsWith(' '); + var hasSpaceCharsOnBothEnds = /^ /.test(text) && / $/.test(text); if (hasNonSpaceChars && hasSpaceCharsOnBothEnds) { text = text.substring(1, text.length - 1); @@ -36388,7 +36369,7 @@ return { type: 'del', raw: cap[0], - text: cap[1] + text: cap[2] }; } } @@ -36497,11 +36478,11 @@ */ var block = { - newline: /^\n+/, - code: /^( {4}[^\n]+\n*)+/, + newline: /^(?: *(?:\n|$))+/, + code: /^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/, fences: /^ {0,3}(`{3,}(?=[^`\n]*\n)|~{3,})([^\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?:\n+|$)|$)/, hr: /^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\* *){3,})(?:\n+|$)/, - heading: /^ {0,3}(#{1,6}) +([^\n]*?)(?: +#+)? *(?:\n+|$)/, + heading: /^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/, blockquote: /^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/, list: /^( {0,3})(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?! {0,3}bull )\n*|\s*$)/, html: '^ {0,3}(?:' // optional indentation @@ -36520,7 +36501,7 @@ lheading: /^([^\n]+)\n {0,3}(=+|-+) *(?:\n+|$)/, // regex template, placeholders will be replaced according to different paragraph // interruption rules of commonmark and the original markdown spec: - _paragraph: /^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html)[^\n]+)*)/, + _paragraph: /^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html| +\n)[^\n]+)*)/, text: /^[^\n]+/ }; block._label = /(?!\s*\])(?:\\[\[\]]|[^\[\]])+/; @@ -36572,7 +36553,7 @@ html: edit$1('^ *(?:comment *(?:\\n|\\s*$)' + '|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)' // closed tag + '|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))').replace('comment', block._comment).replace(/tag/g, '(?!(?:' + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub' + '|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)' + '\\b)\\w+(?!:|[^\\w\\s@]*@)\\b').getRegex(), def: /^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/, - heading: /^ *(#{1,6}) *([^\n]+?) *(?:#+ *)?(?:\n+|$)/, + heading: /^(#{1,6})(.*)(?:\n+|$)/, fences: noopTest$1, // fences not supported paragraph: edit$1(block.normal._paragraph).replace('hr', block.hr).replace('heading', ' *#{1,6} *[^\n]').replace('lheading', block.lheading).replace('blockquote', ' {0,3}>').replace('|fences', '').replace('|list', '').replace('|html', '').getRegex() @@ -36644,7 +36625,7 @@ inline._attribute = /\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/; inline.tag = edit$1(inline.tag).replace('comment', inline._comment).replace('attribute', inline._attribute).getRegex(); inline._label = /(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/; - inline._href = /<(?:\\[<>]?|[^\s<>\\])*>|[^\s\x00-\x1f]*/; + inline._href = /<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/; inline._title = /"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/; inline.link = edit$1(inline.link).replace('label', inline._label).replace('href', inline._href).replace('title', inline._title).getRegex(); inline.reflink = edit$1(inline.reflink).replace('label', inline._label).getRegex(); @@ -36683,8 +36664,8 @@ _extended_email: /[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/, url: /^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/, _backpedal: /(?:[^?!.,:;*_~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/, - del: /^~+(?=\S)([\s\S]*?\S)~+/, - text: /^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\ 1 && arguments[1] !== undefined ? arguments[1] : []; var top = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true; - src = src.replace(/^ +$/gm, ''); + + if (this.options.pedantic) { + src = src.replace(/^ +$/gm, ''); + } + var token, i, l, lastToken; while (src) { @@ -37032,11 +37017,11 @@ var tokens = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; var inLink = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; var inRawBlock = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; - var prevChar = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : ''; var token; // String with links masked to avoid interference with em and strong var maskedSrc = src; - var match; // Mask out reflinks + var match; + var keepPrevChar, prevChar; // Mask out reflinks if (this.tokens.links) { var links = Object.keys(this.tokens.links); @@ -37056,7 +37041,12 @@ } while (src) { - // escape + if (!keepPrevChar) { + prevChar = ''; + } + + keepPrevChar = false; // escape + if (token = this.tokenizer.escape(src)) { src = src.substring(token.raw.length); tokens.push(token); @@ -37152,6 +37142,7 @@ if (token = this.tokenizer.inlineText(src, inRawBlock, smartypants)) { src = src.substring(token.raw.length); prevChar = token.raw.slice(-1); + keepPrevChar = true; tokens.push(token); continue; } @@ -37171,11 +37162,19 @@ return tokens; } }], [{ - key: "lex", - + key: "rules", + get: function get() { + return { + block: block$1, + inline: inline$1 + }; + } /** * Static Lex Method */ + + }, { + key: "lex", value: function lex(src, options) { var lexer = new Lexer(options); return lexer.lex(src); @@ -37190,14 +37189,6 @@ var lexer = new Lexer(options); return lexer.inlineTokens(src); } - }, { - key: "rules", - get: function get() { - return { - block: block$1, - inline: inline$1 - }; - } }]); return Lexer; @@ -37231,6 +37222,8 @@ } } + _code = _code.replace(/\n$/, '') + '\n'; + if (!lang) { return '
    ' + (escaped ? _code : escape$2(_code, true)) + '
    \n'; } @@ -37385,8 +37378,8 @@ _createClass(TextRenderer, [{ key: "strong", - // no need for block level renderers - value: function strong(text) { + value: // no need for block level renderers + function strong(text) { return text; } }, { @@ -37519,11 +37512,11 @@ _createClass(Parser, [{ key: "parse", - + value: /** * Parse Loop */ - value: function parse(tokens) { + function parse(tokens) { var top = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var out = '', i, @@ -40167,9 +40160,9 @@ }); // `Date.prototype.toJSON` method - // https://tc39.github.io/ecma262/#sec-date.prototype.tojson + // https://tc39.es/ecma262/#sec-date.prototype.tojson _export({ target: 'Date', proto: true, forced: FORCED$f }, { - // eslint-disable-next-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` toJSON: function toJSON(key) { var O = toObject(this); var pv = toPrimitive(O); @@ -40247,6 +40240,40 @@ return root$1.Date.now(); }; + /** Used to match a single whitespace character. */ + var reWhitespace = /\s/; + /** + * Used by `_.trim` and `_.trimEnd` to get the index of the last non-whitespace + * character of `string`. + * + * @private + * @param {string} string The string to inspect. + * @returns {number} Returns the index of the last non-whitespace character. + */ + + function trimmedEndIndex(string) { + var index = string.length; + + while (index-- && reWhitespace.test(string.charAt(index))) {} + + return index; + } + + /** Used to match leading whitespace. */ + + var reTrimStart = /^\s+/; + /** + * The base implementation of `_.trim`. + * + * @private + * @param {string} string The string to trim. + * @returns {string} Returns the trimmed string. + */ + + function baseTrim(string) { + return string ? string.slice(0, trimmedEndIndex(string) + 1).replace(reTrimStart, '') : string; + } + /** Built-in value references. */ var _Symbol = root$1.Symbol; @@ -40397,9 +40424,6 @@ /** Used as references for various `Number` constants. */ var NAN = 0 / 0; - /** Used to match leading and trailing whitespace. */ - - var reTrim = /^\s+|\s+$/g; /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; @@ -40454,7 +40478,7 @@ return value === 0 ? value : +value; } - value = value.replace(reTrim, ''); + value = baseTrim(value); var isBinary = reIsBinary.test(value); return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value; } @@ -45144,3224 +45168,2264 @@ var options = { skipSeen: true }; - return parseXML(xml, function (err, results) { - if (err) { - return callback(err); - } else { - return callback(undefined, results[0]); - } - }, options); - } - }, - // Load the details of the logged-in user - // GET /api/0.6/user/details - userDetails: function userDetails(callback) { - if (_userDetails) { - // retrieve cached - return callback(undefined, _userDetails); - } - - oauth.xhr({ - method: 'GET', - path: '/api/0.6/user/details' - }, wrapcb(this, done, _connectionID)); - - function done(err, xml) { - if (err) { - return callback(err); - } - - var options = { - skipSeen: false - }; - return parseXML(xml, function (err, results) { - if (err) { - return callback(err); - } else { - _userDetails = results[0]; - return callback(undefined, _userDetails); - } - }, options); - } - }, - // Load previous changesets for the logged in user - // GET /api/0.6/changesets?user=#id - userChangesets: function userChangesets(callback) { - if (_userChangesets) { - // retrieve cached - return callback(undefined, _userChangesets); - } - - this.userDetails(wrapcb(this, gotDetails, _connectionID)); - - function gotDetails(err, user) { - if (err) { - return callback(err); - } - - oauth.xhr({ - method: 'GET', - path: '/api/0.6/changesets?user=' + user.id - }, wrapcb(this, done, _connectionID)); - } - - function done(err, xml) { - if (err) { - return callback(err); - } - - _userChangesets = Array.prototype.map.call(xml.getElementsByTagName('changeset'), function (changeset) { - return { - tags: getTags(changeset) - }; - }).filter(function (changeset) { - var comment = changeset.tags.comment; - return comment && comment !== ''; - }); - return callback(undefined, _userChangesets); - } - }, - // Fetch the status of the OSM API - // GET /api/capabilities - status: function status(callback) { - var url = urlroot + '/api/capabilities'; - var errback = wrapcb(this, done, _connectionID); - d3_xml(url).then(function (data) { - errback(null, data); - })["catch"](function (err) { - errback(err.message); - }); - - function done(err, xml) { - if (err) { - // the status is null if no response could be retrieved - return callback(err, null); - } // update blocklists - - - var elements = xml.getElementsByTagName('blacklist'); - var regexes = []; - - for (var i = 0; i < elements.length; i++) { - var regexString = elements[i].getAttribute('regex'); // needs unencode? - - if (regexString) { - try { - var regex = new RegExp(regexString); - regexes.push(regex); - } catch (e) { - /* noop */ - } - } - } - - if (regexes.length) { - _imageryBlocklists = regexes; - } - - if (_rateLimitError) { - return callback(_rateLimitError, 'rateLimited'); - } else { - var waynodes = xml.getElementsByTagName('waynodes'); - var maxWayNodes = waynodes.length && parseInt(waynodes[0].getAttribute('maximum'), 10); - if (maxWayNodes && isFinite(maxWayNodes)) _maxWayNodes = maxWayNodes; - var apiStatus = xml.getElementsByTagName('status'); - var val = apiStatus[0].getAttribute('api'); - return callback(undefined, val); - } - } - }, - // Calls `status` and dispatches an `apiStatusChange` event if the returned - // status differs from the cached status. - reloadApiStatus: function reloadApiStatus() { - // throttle to avoid unnecessary API calls - if (!this.throttledReloadApiStatus) { - var that = this; - this.throttledReloadApiStatus = throttle(function () { - that.status(function (err, status) { - if (status !== _cachedApiStatus) { - _cachedApiStatus = status; - dispatch$6.call('apiStatusChange', that, err, status); - } - }); - }, 500); - } - - this.throttledReloadApiStatus(); - }, - // Returns the maximum number of nodes a single way can have - maxWayNodes: function maxWayNodes() { - return _maxWayNodes; - }, - // Load data (entities) from the API in tiles - // GET /api/0.6/map?bbox= - loadTiles: function loadTiles(projection, callback) { - if (_off) return; // determine the needed tiles to cover the view - - var tiles = tiler$5.zoomExtent([_tileZoom$3, _tileZoom$3]).getTiles(projection); // abort inflight requests that are no longer needed - - var hadRequests = hasInflightRequests(_tileCache); - abortUnwantedRequests$3(_tileCache, tiles); - - if (hadRequests && !hasInflightRequests(_tileCache)) { - dispatch$6.call('loaded'); // stop the spinner - } // issue new requests.. - - - tiles.forEach(function (tile) { - this.loadTile(tile, callback); - }, this); - }, - // Load a single data tile - // GET /api/0.6/map?bbox= - loadTile: function loadTile(tile, callback) { - if (_off) return; - if (_tileCache.loaded[tile.id] || _tileCache.inflight[tile.id]) return; - - if (!hasInflightRequests(_tileCache)) { - dispatch$6.call('loading'); // start the spinner - } - - var path = '/api/0.6/map.json?bbox='; - var options = { - skipSeen: true - }; - _tileCache.inflight[tile.id] = this.loadFromAPI(path + tile.extent.toParam(), tileCallback, options); - - function tileCallback(err, parsed) { - delete _tileCache.inflight[tile.id]; - - if (!err) { - delete _tileCache.toLoad[tile.id]; - _tileCache.loaded[tile.id] = true; - var bbox = tile.extent.bbox(); - bbox.id = tile.id; - - _tileCache.rtree.insert(bbox); - } - - if (callback) { - callback(err, Object.assign({ - data: parsed - }, tile)); - } - - if (!hasInflightRequests(_tileCache)) { - dispatch$6.call('loaded'); // stop the spinner - } - } - }, - isDataLoaded: function isDataLoaded(loc) { - var bbox = { - minX: loc[0], - minY: loc[1], - maxX: loc[0], - maxY: loc[1] - }; - return _tileCache.rtree.collides(bbox); - }, - // load the tile that covers the given `loc` - loadTileAtLoc: function loadTileAtLoc(loc, callback) { - // Back off if the toLoad queue is filling up.. re #6417 - // (Currently `loadTileAtLoc` requests are considered low priority - used by operations to - // let users safely edit geometries which extend to unloaded tiles. We can drop some.) - if (Object.keys(_tileCache.toLoad).length > 50) return; - var k = geoZoomToScale(_tileZoom$3 + 1); - var offset = geoRawMercator().scale(k)(loc); - var projection = geoRawMercator().transform({ - k: k, - x: -offset[0], - y: -offset[1] - }); - var tiles = tiler$5.zoomExtent([_tileZoom$3, _tileZoom$3]).getTiles(projection); - tiles.forEach(function (tile) { - if (_tileCache.toLoad[tile.id] || _tileCache.loaded[tile.id] || _tileCache.inflight[tile.id]) return; - _tileCache.toLoad[tile.id] = true; - this.loadTile(tile, callback); - }, this); - }, - // Load notes from the API in tiles - // GET /api/0.6/notes?bbox= - loadNotes: function loadNotes(projection, noteOptions) { - noteOptions = Object.assign({ - limit: 10000, - closed: 7 - }, noteOptions); - if (_off) return; - var that = this; - var path = '/api/0.6/notes?limit=' + noteOptions.limit + '&closed=' + noteOptions.closed + '&bbox='; - - var throttleLoadUsers = throttle(function () { - var uids = Object.keys(_userCache.toLoad); - if (!uids.length) return; - that.loadUsers(uids, function () {}); // eagerly load user details - }, 750); // determine the needed tiles to cover the view - - - var tiles = tiler$5.zoomExtent([_noteZoom, _noteZoom]).getTiles(projection); // abort inflight requests that are no longer needed - - abortUnwantedRequests$3(_noteCache, tiles); // issue new requests.. - - tiles.forEach(function (tile) { - if (_noteCache.loaded[tile.id] || _noteCache.inflight[tile.id]) return; - var options = { - skipSeen: false - }; - _noteCache.inflight[tile.id] = that.loadFromAPI(path + tile.extent.toParam(), function (err) { - delete _noteCache.inflight[tile.id]; - - if (!err) { - _noteCache.loaded[tile.id] = true; - } - - throttleLoadUsers(); - dispatch$6.call('loadedNotes'); - }, options); - }); - }, - // Create a note - // POST /api/0.6/notes?params - postNoteCreate: function postNoteCreate(note, callback) { - if (!this.authenticated()) { - return callback({ - message: 'Not Authenticated', - status: -3 - }, note); - } - - if (_noteCache.inflightPost[note.id]) { - return callback({ - message: 'Note update already inflight', - status: -2 - }, note); - } - - if (!note.loc[0] || !note.loc[1] || !note.newComment) return; // location & description required - - var comment = note.newComment; - - if (note.newCategory && note.newCategory !== 'None') { - comment += ' #' + note.newCategory; - } - - var path = '/api/0.6/notes?' + utilQsString({ - lon: note.loc[0], - lat: note.loc[1], - text: comment - }); - _noteCache.inflightPost[note.id] = oauth.xhr({ - method: 'POST', - path: path - }, wrapcb(this, done, _connectionID)); - - function done(err, xml) { - delete _noteCache.inflightPost[note.id]; - - if (err) { - return callback(err); - } // we get the updated note back, remove from caches and reparse.. - - - this.removeNote(note); - var options = { - skipSeen: false - }; - return parseXML(xml, function (err, results) { - if (err) { - return callback(err); - } else { - return callback(undefined, results[0]); - } - }, options); - } - }, - // Update a note - // POST /api/0.6/notes/#id/comment?text=comment - // POST /api/0.6/notes/#id/close?text=comment - // POST /api/0.6/notes/#id/reopen?text=comment - postNoteUpdate: function postNoteUpdate(note, newStatus, callback) { - if (!this.authenticated()) { - return callback({ - message: 'Not Authenticated', - status: -3 - }, note); - } - - if (_noteCache.inflightPost[note.id]) { - return callback({ - message: 'Note update already inflight', - status: -2 - }, note); - } - - var action; - - if (note.status !== 'closed' && newStatus === 'closed') { - action = 'close'; - } else if (note.status !== 'open' && newStatus === 'open') { - action = 'reopen'; - } else { - action = 'comment'; - if (!note.newComment) return; // when commenting, comment required - } - - var path = '/api/0.6/notes/' + note.id + '/' + action; - - if (note.newComment) { - path += '?' + utilQsString({ - text: note.newComment - }); - } - - _noteCache.inflightPost[note.id] = oauth.xhr({ - method: 'POST', - path: path - }, wrapcb(this, done, _connectionID)); - - function done(err, xml) { - delete _noteCache.inflightPost[note.id]; - - if (err) { - return callback(err); - } // we get the updated note back, remove from caches and reparse.. - - - this.removeNote(note); // update closed note cache - used to populate `closed:note` changeset tag - - if (action === 'close') { - _noteCache.closed[note.id] = true; - } else if (action === 'reopen') { - delete _noteCache.closed[note.id]; - } - - var options = { - skipSeen: false - }; - return parseXML(xml, function (err, results) { - if (err) { - return callback(err); - } else { - return callback(undefined, results[0]); - } - }, options); - } - }, - "switch": function _switch(options) { - urlroot = options.urlroot; - oauth.options(Object.assign({ - url: urlroot, - loading: authLoading, - done: authDone - }, options)); - this.reset(); - this.userChangesets(function () {}); // eagerly load user details/changesets - - dispatch$6.call('change'); - return this; - }, - toggle: function toggle(val) { - _off = !val; - return this; - }, - isChangesetInflight: function isChangesetInflight() { - return !!_changeset.inflight; - }, - // get/set cached data - // This is used to save/restore the state when entering/exiting the walkthrough - // Also used for testing purposes. - caches: function caches(obj) { - function cloneCache(source) { - var target = {}; - Object.keys(source).forEach(function (k) { - if (k === 'rtree') { - target.rtree = new RBush().fromJSON(source.rtree.toJSON()); // clone rbush - } else if (k === 'note') { - target.note = {}; - Object.keys(source.note).forEach(function (id) { - target.note[id] = osmNote(source.note[id]); // copy notes - }); - } else { - target[k] = JSON.parse(JSON.stringify(source[k])); // clone deep - } - }); - return target; - } - - if (!arguments.length) { - return { - tile: cloneCache(_tileCache), - note: cloneCache(_noteCache), - user: cloneCache(_userCache) - }; - } // access caches directly for testing (e.g., loading notes rtree) - - - if (obj === 'get') { - return { - tile: _tileCache, - note: _noteCache, - user: _userCache - }; - } - - if (obj.tile) { - _tileCache = obj.tile; - _tileCache.inflight = {}; - } - - if (obj.note) { - _noteCache = obj.note; - _noteCache.inflight = {}; - _noteCache.inflightPost = {}; - } - - if (obj.user) { - _userCache = obj.user; - } - - return this; - }, - logout: function logout() { - _userChangesets = undefined; - _userDetails = undefined; - oauth.logout(); - dispatch$6.call('change'); - return this; - }, - authenticated: function authenticated() { - return oauth.authenticated(); - }, - authenticate: function authenticate(callback) { - var that = this; - var cid = _connectionID; - _userChangesets = undefined; - _userDetails = undefined; - - function done(err, res) { - if (err) { - if (callback) callback(err); - return; - } - - if (that.getConnectionId() !== cid) { - if (callback) callback({ - message: 'Connection Switched', - status: -1 - }); - return; - } - - _rateLimitError = undefined; - dispatch$6.call('change'); - if (callback) callback(err, res); - that.userChangesets(function () {}); // eagerly load user details/changesets - } - - return oauth.authenticate(done); - }, - imageryBlocklists: function imageryBlocklists() { - return _imageryBlocklists; - }, - tileZoom: function tileZoom(val) { - if (!arguments.length) return _tileZoom$3; - _tileZoom$3 = val; - return this; - }, - // get all cached notes covering the viewport - notes: function notes(projection) { - var viewport = projection.clipExtent(); - var min = [viewport[0][0], viewport[1][1]]; - var max = [viewport[1][0], viewport[0][1]]; - var bbox = geoExtent(projection.invert(min), projection.invert(max)).bbox(); - return _noteCache.rtree.search(bbox).map(function (d) { - return d.data; - }); - }, - // get a single note from the cache - getNote: function getNote(id) { - return _noteCache.note[id]; - }, - // remove a single note from the cache - removeNote: function removeNote(note) { - if (!(note instanceof osmNote) || !note.id) return; - delete _noteCache.note[note.id]; - updateRtree$3(encodeNoteRtree(note), false); // false = remove - }, - // replace a single note in the cache - replaceNote: function replaceNote(note) { - if (!(note instanceof osmNote) || !note.id) return; - _noteCache.note[note.id] = note; - updateRtree$3(encodeNoteRtree(note), true); // true = replace - - return note; - }, - // Get an array of note IDs closed during this session. - // Used to populate `closed:note` changeset tag - getClosedIDs: function getClosedIDs() { - return Object.keys(_noteCache.closed).sort(); - } - }; - - var _apibase = 'https://wiki.openstreetmap.org/w/api.php'; - var _inflight$1 = {}; - var _wikibaseCache = {}; - var _localeIDs = { - en: false - }; - - var debouncedRequest = debounce(request, 500, { - leading: false - }); - - function request(url, callback) { - if (_inflight$1[url]) return; - var controller = new AbortController(); - _inflight$1[url] = controller; - d3_json(url, { - signal: controller.signal - }).then(function (result) { - delete _inflight$1[url]; - if (callback) callback(null, result); - })["catch"](function (err) { - delete _inflight$1[url]; - if (err.name === 'AbortError') return; - if (callback) callback(err.message); - }); - } - - var serviceOsmWikibase = { - init: function init() { - _inflight$1 = {}; - _wikibaseCache = {}; - _localeIDs = {}; - }, - reset: function reset() { - Object.values(_inflight$1).forEach(function (controller) { - controller.abort(); - }); - _inflight$1 = {}; - }, - - /** - * Get the best value for the property, or undefined if not found - * @param entity object from wikibase - * @param property string e.g. 'P4' for image - * @param langCode string e.g. 'fr' for French - */ - claimToValue: function claimToValue(entity, property, langCode) { - if (!entity.claims[property]) return undefined; - var locale = _localeIDs[langCode]; - var preferredPick, localePick; - entity.claims[property].forEach(function (stmt) { - // If exists, use value limited to the needed language (has a qualifier P26 = locale) - // Or if not found, use the first value with the "preferred" rank - if (!preferredPick && stmt.rank === 'preferred') { - preferredPick = stmt; - } - - if (locale && stmt.qualifiers && stmt.qualifiers.P26 && stmt.qualifiers.P26[0].datavalue.value.id === locale) { - localePick = stmt; - } - }); - var result = localePick || preferredPick; - - if (result) { - var datavalue = result.mainsnak.datavalue; - return datavalue.type === 'wikibase-entityid' ? datavalue.value.id : datavalue.value; - } else { - return undefined; - } - }, - - /** - * Convert monolingual property into a key-value object (language -> value) - * @param entity object from wikibase - * @param property string e.g. 'P31' for monolingual wiki page title - */ - monolingualClaimToValueObj: function monolingualClaimToValueObj(entity, property) { - if (!entity || !entity.claims[property]) return undefined; - return entity.claims[property].reduce(function (acc, obj) { - var value = obj.mainsnak.datavalue.value; - acc[value.language] = value.text; - return acc; - }, {}); - }, - toSitelink: function toSitelink(key, value) { - var result = value ? 'Tag:' + key + '=' + value : 'Key:' + key; - return result.replace(/_/g, ' ').trim(); - }, - // - // Pass params object of the form: - // { - // key: 'string', - // value: 'string', - // langCode: 'string' - // } - // - getEntity: function getEntity(params, callback) { - var doRequest = params.debounce ? debouncedRequest : request; - var that = this; - var titles = []; - var result = {}; - var rtypeSitelink = params.key === 'type' && params.value ? ('Relation:' + params.value).replace(/_/g, ' ').trim() : false; - var keySitelink = params.key ? this.toSitelink(params.key) : false; - var tagSitelink = params.key && params.value ? this.toSitelink(params.key, params.value) : false; - var localeSitelink; - - if (params.langCodes) { - params.langCodes.forEach(function (langCode) { - if (_localeIDs[langCode] === undefined) { - // If this is the first time we are asking about this locale, - // fetch corresponding entity (if it exists), and cache it. - // If there is no such entry, cache `false` value to avoid re-requesting it. - localeSitelink = ('Locale:' + langCode).replace(/_/g, ' ').trim(); - titles.push(localeSitelink); - } - }); - } - - if (rtypeSitelink) { - if (_wikibaseCache[rtypeSitelink]) { - result.rtype = _wikibaseCache[rtypeSitelink]; - } else { - titles.push(rtypeSitelink); - } - } - - if (keySitelink) { - if (_wikibaseCache[keySitelink]) { - result.key = _wikibaseCache[keySitelink]; - } else { - titles.push(keySitelink); - } - } - - if (tagSitelink) { - if (_wikibaseCache[tagSitelink]) { - result.tag = _wikibaseCache[tagSitelink]; - } else { - titles.push(tagSitelink); - } - } - - if (!titles.length) { - // Nothing to do, we already had everything in the cache - return callback(null, result); - } // Requesting just the user language code - // If backend recognizes the code, it will perform proper fallbacks, - // and the result will contain the requested code. If not, all values are returned: - // {"zh-tw":{"value":"...","language":"zh-tw","source-language":"zh-hant"} - // {"pt-br":{"value":"...","language":"pt","for-language":"pt-br"}} - - - var obj = { - action: 'wbgetentities', - sites: 'wiki', - titles: titles.join('|'), - languages: params.langCodes.join('|'), - languagefallback: 1, - origin: '*', - format: 'json' // There is an MW Wikibase API bug https://phabricator.wikimedia.org/T212069 - // We shouldn't use v1 until it gets fixed, but should switch to it afterwards - // formatversion: 2, - - }; - var url = _apibase + '?' + utilQsString(obj); - doRequest(url, function (err, d) { - if (err) { - callback(err); - } else if (!d.success || d.error) { - callback(d.error.messages.map(function (v) { - return v.html['*']; - }).join('
    ')); - } else { - var localeID = false; - Object.values(d.entities).forEach(function (res) { - if (res.missing !== '') { - var title = res.sitelinks.wiki.title; - - if (title === rtypeSitelink) { - _wikibaseCache[rtypeSitelink] = res; - result.rtype = res; - } else if (title === keySitelink) { - _wikibaseCache[keySitelink] = res; - result.key = res; - } else if (title === tagSitelink) { - _wikibaseCache[tagSitelink] = res; - result.tag = res; - } else if (title === localeSitelink) { - localeID = res.id; - } else { - console.log('Unexpected title ' + title); // eslint-disable-line no-console - } - } - }); - - if (localeSitelink) { - // If locale ID is not found, store false to prevent repeated queries - that.addLocale(params.langCodes[0], localeID); - } - - callback(null, result); - } - }); - }, - // - // Pass params object of the form: - // { - // key: 'string', // required - // value: 'string' // optional - // } - // - // Get an result object used to display tag documentation - // { - // title: 'string', - // description: 'string', - // editURL: 'string', - // imageURL: 'string', - // wiki: { title: 'string', text: 'string', url: 'string' } - // } - // - getDocs: function getDocs(params, callback) { - var that = this; - var langCodes = _mainLocalizer.localeCodes().map(function (code) { - return code.toLowerCase(); - }); - params.langCodes = langCodes; - this.getEntity(params, function (err, data) { - if (err) { - callback(err); - return; - } - - var entity = data.rtype || data.tag || data.key; - - if (!entity) { - callback('No entity'); - return; - } - - var i; - var description; - - for (i in langCodes) { - var _code = langCodes[i]; - - if (entity.descriptions[_code] && entity.descriptions[_code].language === _code) { - description = entity.descriptions[_code]; - break; - } - } - - if (!description && Object.values(entity.descriptions).length) description = Object.values(entity.descriptions)[0]; // prepare result - - var result = { - title: entity.title, - description: description ? description.value : '', - descriptionLocaleCode: description ? description.language : '', - editURL: 'https://wiki.openstreetmap.org/wiki/' + entity.title - }; // add image - - if (entity.claims) { - var imageroot; - var image = that.claimToValue(entity, 'P4', langCodes[0]); - - if (image) { - imageroot = 'https://commons.wikimedia.org/w/index.php'; - } else { - image = that.claimToValue(entity, 'P28', langCodes[0]); - - if (image) { - imageroot = 'https://wiki.openstreetmap.org/w/index.php'; - } - } - - if (imageroot && image) { - result.imageURL = imageroot + '?' + utilQsString({ - title: 'Special:Redirect/file/' + image, - width: 400 - }); - } - } // Try to get a wiki page from tag data item first, followed by the corresponding key data item. - // If neither tag nor key data item contain a wiki page in the needed language nor English, - // get the first found wiki page from either the tag or the key item. - - - var rtypeWiki = that.monolingualClaimToValueObj(data.rtype, 'P31'); - var tagWiki = that.monolingualClaimToValueObj(data.tag, 'P31'); - var keyWiki = that.monolingualClaimToValueObj(data.key, 'P31'); - var wikis = [rtypeWiki, tagWiki, keyWiki]; - - for (i in wikis) { - var wiki = wikis[i]; - - for (var j in langCodes) { - var code = langCodes[j]; - var referenceId = langCodes[0].split('-')[0] !== 'en' && code.split('-')[0] === 'en' ? 'inspector.wiki_en_reference' : 'inspector.wiki_reference'; - var info = getWikiInfo(wiki, code, referenceId); - - if (info) { - result.wiki = info; - break; - } - } - - if (result.wiki) break; - } - - callback(null, result); // Helper method to get wiki info if a given language exists - - function getWikiInfo(wiki, langCode, tKey) { - if (wiki && wiki[langCode]) { - return { - title: wiki[langCode], - text: tKey, - url: 'https://wiki.openstreetmap.org/wiki/' + wiki[langCode] - }; - } - } - }); - }, - addLocale: function addLocale(langCode, qid) { - // Makes it easier to unit test - _localeIDs[langCode] = qid; - }, - apibase: function apibase(val) { - if (!arguments.length) return _apibase; - _apibase = val; - return this; - } - }; - - var jsonpCache = {}; - window.jsonpCache = jsonpCache; - function jsonpRequest(url, callback) { - var request = { - abort: function abort() {} - }; - - if (window.JSONP_FIX) { - if (window.JSONP_DELAY === 0) { - callback(window.JSONP_FIX); - } else { - var t = window.setTimeout(function () { - callback(window.JSONP_FIX); - }, window.JSONP_DELAY || 0); - - request.abort = function () { - window.clearTimeout(t); - }; + return parseXML(xml, function (err, results) { + if (err) { + return callback(err); + } else { + return callback(undefined, results[0]); + } + }, options); + } + }, + // Load the details of the logged-in user + // GET /api/0.6/user/details + userDetails: function userDetails(callback) { + if (_userDetails) { + // retrieve cached + return callback(undefined, _userDetails); } - return request; - } + oauth.xhr({ + method: 'GET', + path: '/api/0.6/user/details' + }, wrapcb(this, done, _connectionID)); - function rand() { - var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; - var c = ''; - var i = -1; + function done(err, xml) { + if (err) { + return callback(err); + } - while (++i < 15) { - c += chars.charAt(Math.floor(Math.random() * 52)); + var options = { + skipSeen: false + }; + return parseXML(xml, function (err, results) { + if (err) { + return callback(err); + } else { + _userDetails = results[0]; + return callback(undefined, _userDetails); + } + }, options); + } + }, + // Load previous changesets for the logged in user + // GET /api/0.6/changesets?user=#id + userChangesets: function userChangesets(callback) { + if (_userChangesets) { + // retrieve cached + return callback(undefined, _userChangesets); } - return c; - } - - function create(url) { - var e = url.match(/callback=(\w+)/); - var c = e ? e[1] : rand(); + this.userDetails(wrapcb(this, gotDetails, _connectionID)); - jsonpCache[c] = function (data) { - if (jsonpCache[c]) { - callback(data); + function gotDetails(err, user) { + if (err) { + return callback(err); } - finalize(); - }; - - function finalize() { - delete jsonpCache[c]; - script.remove(); + oauth.xhr({ + method: 'GET', + path: '/api/0.6/changesets?user=' + user.id + }, wrapcb(this, done, _connectionID)); } - request.abort = finalize; - return 'jsonpCache.' + c; - } - - var cb = create(url); - var script = select('head').append('script').attr('type', 'text/javascript').attr('src', url.replace(/(\{|%7B)callback(\}|%7D)/, cb)); - return request; - } - - var bubbleApi = 'https://dev.virtualearth.net/mapcontrol/HumanScaleServices/GetBubbles.ashx?'; - var streetsideImagesApi = 'https://t.ssl.ak.tiles.virtualearth.net/tiles/'; - var bubbleAppKey = 'AuftgJsO0Xs8Ts4M1xZUQJQXJNsvmh3IV8DkNieCiy3tCwCUMq76-WpkrBtNAuEm'; - var pannellumViewerCSS = 'pannellum-streetside/pannellum.css'; - var pannellumViewerJS = 'pannellum-streetside/pannellum.js'; - var maxResults$2 = 2000; - var tileZoom$2 = 16.5; - var tiler$6 = utilTiler().zoomExtent([tileZoom$2, tileZoom$2]).skipNullIsland(true); - var dispatch$7 = dispatch('loadedImages', 'viewerChanged'); - var minHfov = 10; // zoom in degrees: 20, 10, 5 + function done(err, xml) { + if (err) { + return callback(err); + } - var maxHfov = 90; // zoom out degrees + _userChangesets = Array.prototype.map.call(xml.getElementsByTagName('changeset'), function (changeset) { + return { + tags: getTags(changeset) + }; + }).filter(function (changeset) { + var comment = changeset.tags.comment; + return comment && comment !== ''; + }); + return callback(undefined, _userChangesets); + } + }, + // Fetch the status of the OSM API + // GET /api/capabilities + status: function status(callback) { + var url = urlroot + '/api/capabilities'; + var errback = wrapcb(this, done, _connectionID); + d3_xml(url).then(function (data) { + errback(null, data); + })["catch"](function (err) { + errback(err.message); + }); - var defaultHfov = 45; - var _hires = false; - var _resolution = 512; // higher numbers are slower - 512, 1024, 2048, 4096 + function done(err, xml) { + if (err) { + // the status is null if no response could be retrieved + return callback(err, null); + } // update blocklists - var _currScene = 0; - var _ssCache; + var elements = xml.getElementsByTagName('blacklist'); + var regexes = []; - var _pannellumViewer; + for (var i = 0; i < elements.length; i++) { + var regexString = elements[i].getAttribute('regex'); // needs unencode? - var _sceneOptions = { - showFullscreenCtrl: false, - autoLoad: true, - compass: true, - yaw: 0, - minHfov: minHfov, - maxHfov: maxHfov, - hfov: defaultHfov, - type: 'cubemap', - cubeMap: [] - }; + if (regexString) { + try { + var regex = new RegExp(regexString); + regexes.push(regex); + } catch (e) { + /* noop */ + } + } + } - var _loadViewerPromise$2; - /** - * abortRequest(). - */ + if (regexes.length) { + _imageryBlocklists = regexes; + } + if (_rateLimitError) { + return callback(_rateLimitError, 'rateLimited'); + } else { + var waynodes = xml.getElementsByTagName('waynodes'); + var maxWayNodes = waynodes.length && parseInt(waynodes[0].getAttribute('maximum'), 10); + if (maxWayNodes && isFinite(maxWayNodes)) _maxWayNodes = maxWayNodes; + var apiStatus = xml.getElementsByTagName('status'); + var val = apiStatus[0].getAttribute('api'); + return callback(undefined, val); + } + } + }, + // Calls `status` and dispatches an `apiStatusChange` event if the returned + // status differs from the cached status. + reloadApiStatus: function reloadApiStatus() { + // throttle to avoid unnecessary API calls + if (!this.throttledReloadApiStatus) { + var that = this; + this.throttledReloadApiStatus = throttle(function () { + that.status(function (err, status) { + if (status !== _cachedApiStatus) { + _cachedApiStatus = status; + dispatch$6.call('apiStatusChange', that, err, status); + } + }); + }, 500); + } - function abortRequest$6(i) { - i.abort(); - } - /** - * localeTimeStamp(). - */ + this.throttledReloadApiStatus(); + }, + // Returns the maximum number of nodes a single way can have + maxWayNodes: function maxWayNodes() { + return _maxWayNodes; + }, + // Load data (entities) from the API in tiles + // GET /api/0.6/map?bbox= + loadTiles: function loadTiles(projection, callback) { + if (_off) return; // determine the needed tiles to cover the view + var tiles = tiler$5.zoomExtent([_tileZoom$3, _tileZoom$3]).getTiles(projection); // abort inflight requests that are no longer needed - function localeTimestamp(s) { - if (!s) return null; - var options = { - day: 'numeric', - month: 'short', - year: 'numeric' - }; - var d = new Date(s); - if (isNaN(d.getTime())) return null; - return d.toLocaleString(_mainLocalizer.localeCode(), options); - } - /** - * loadTiles() wraps the process of generating tiles and then fetching image points for each tile. - */ + var hadRequests = hasInflightRequests(_tileCache); + abortUnwantedRequests$3(_tileCache, tiles); + if (hadRequests && !hasInflightRequests(_tileCache)) { + dispatch$6.call('loaded'); // stop the spinner + } // issue new requests.. - function loadTiles$2(which, url, projection, margin) { - var tiles = tiler$6.margin(margin).getTiles(projection); // abort inflight requests that are no longer needed - var cache = _ssCache[which]; - Object.keys(cache.inflight).forEach(function (k) { - var wanted = tiles.find(function (tile) { - return k.indexOf(tile.id + ',') === 0; - }); + tiles.forEach(function (tile) { + this.loadTile(tile, callback); + }, this); + }, + // Load a single data tile + // GET /api/0.6/map?bbox= + loadTile: function loadTile(tile, callback) { + if (_off) return; + if (_tileCache.loaded[tile.id] || _tileCache.inflight[tile.id]) return; - if (!wanted) { - abortRequest$6(cache.inflight[k]); - delete cache.inflight[k]; + if (!hasInflightRequests(_tileCache)) { + dispatch$6.call('loading'); // start the spinner } - }); - tiles.forEach(function (tile) { - return loadNextTilePage$2(which, url, tile); - }); - } - /** - * loadNextTilePage() load data for the next tile page in line. - */ + var path = '/api/0.6/map.json?bbox='; + var options = { + skipSeen: true + }; + _tileCache.inflight[tile.id] = this.loadFromAPI(path + tile.extent.toParam(), tileCallback, options); - function loadNextTilePage$2(which, url, tile) { - var cache = _ssCache[which]; - var nextPage = cache.nextPage[tile.id] || 0; - var id = tile.id + ',' + String(nextPage); - if (cache.loaded[id] || cache.inflight[id]) return; - cache.inflight[id] = getBubbles(url, tile, function (bubbles) { - cache.loaded[id] = true; - delete cache.inflight[id]; - if (!bubbles) return; // [].shift() removes the first element, some statistics info, not a bubble point - - bubbles.shift(); - var features = bubbles.map(function (bubble) { - if (cache.points[bubble.id]) return null; // skip duplicates + function tileCallback(err, parsed) { + delete _tileCache.inflight[tile.id]; - var loc = [bubble.lo, bubble.la]; - var d = { - loc: loc, - key: bubble.id, - ca: bubble.he, - captured_at: bubble.cd, - captured_by: 'microsoft', - // nbn: bubble.nbn, - // pbn: bubble.pbn, - // ad: bubble.ad, - // rn: bubble.rn, - pr: bubble.pr, - // previous - ne: bubble.ne, - // next - pano: true, - sequenceKey: null - }; - cache.points[bubble.id] = d; // a sequence starts here + if (!err) { + delete _tileCache.toLoad[tile.id]; + _tileCache.loaded[tile.id] = true; + var bbox = tile.extent.bbox(); + bbox.id = tile.id; - if (bubble.pr === undefined) { - cache.leaders.push(bubble.id); + _tileCache.rtree.insert(bbox); } - return { - minX: loc[0], - minY: loc[1], - maxX: loc[0], - maxY: loc[1], - data: d - }; - }).filter(Boolean); - cache.rtree.load(features); - connectSequences(); + if (callback) { + callback(err, Object.assign({ + data: parsed + }, tile)); + } - if (which === 'bubbles') { - dispatch$7.call('loadedImages'); + if (!hasInflightRequests(_tileCache)) { + dispatch$6.call('loaded'); // stop the spinner + } } - }); - } // call this sometimes to connect the bubbles into sequences - - - function connectSequences() { - var cache = _ssCache.bubbles; - var keepLeaders = []; - - for (var i = 0; i < cache.leaders.length; i++) { - var bubble = cache.points[cache.leaders[i]]; - var seen = {}; // try to make a sequence.. use the key of the leader bubble. - - var sequence = { - key: bubble.key, - bubbles: [] + }, + isDataLoaded: function isDataLoaded(loc) { + var bbox = { + minX: loc[0], + minY: loc[1], + maxX: loc[0], + maxY: loc[1] }; - var complete = false; - - do { - sequence.bubbles.push(bubble); - seen[bubble.key] = true; + return _tileCache.rtree.collides(bbox); + }, + // load the tile that covers the given `loc` + loadTileAtLoc: function loadTileAtLoc(loc, callback) { + // Back off if the toLoad queue is filling up.. re #6417 + // (Currently `loadTileAtLoc` requests are considered low priority - used by operations to + // let users safely edit geometries which extend to unloaded tiles. We can drop some.) + if (Object.keys(_tileCache.toLoad).length > 50) return; + var k = geoZoomToScale(_tileZoom$3 + 1); + var offset = geoRawMercator().scale(k)(loc); + var projection = geoRawMercator().transform({ + k: k, + x: -offset[0], + y: -offset[1] + }); + var tiles = tiler$5.zoomExtent([_tileZoom$3, _tileZoom$3]).getTiles(projection); + tiles.forEach(function (tile) { + if (_tileCache.toLoad[tile.id] || _tileCache.loaded[tile.id] || _tileCache.inflight[tile.id]) return; + _tileCache.toLoad[tile.id] = true; + this.loadTile(tile, callback); + }, this); + }, + // Load notes from the API in tiles + // GET /api/0.6/notes?bbox= + loadNotes: function loadNotes(projection, noteOptions) { + noteOptions = Object.assign({ + limit: 10000, + closed: 7 + }, noteOptions); + if (_off) return; + var that = this; + var path = '/api/0.6/notes?limit=' + noteOptions.limit + '&closed=' + noteOptions.closed + '&bbox='; - if (bubble.ne === undefined) { - complete = true; - } else { - bubble = cache.points[bubble.ne]; // advance to next - } - } while (bubble && !seen[bubble.key] && !complete); + var throttleLoadUsers = throttle(function () { + var uids = Object.keys(_userCache.toLoad); + if (!uids.length) return; + that.loadUsers(uids, function () {}); // eagerly load user details + }, 750); // determine the needed tiles to cover the view - if (complete) { - _ssCache.sequences[sequence.key] = sequence; // assign bubbles to the sequence - for (var j = 0; j < sequence.bubbles.length; j++) { - sequence.bubbles[j].sequenceKey = sequence.key; - } // create a GeoJSON LineString + var tiles = tiler$5.zoomExtent([_noteZoom, _noteZoom]).getTiles(projection); // abort inflight requests that are no longer needed + abortUnwantedRequests$3(_noteCache, tiles); // issue new requests.. - sequence.geojson = { - type: 'LineString', - properties: { - captured_at: sequence.bubbles[0] ? sequence.bubbles[0].captured_at : null, - captured_by: sequence.bubbles[0] ? sequence.bubbles[0].captured_by : null, - key: sequence.key - }, - coordinates: sequence.bubbles.map(function (d) { - return d.loc; - }) + tiles.forEach(function (tile) { + if (_noteCache.loaded[tile.id] || _noteCache.inflight[tile.id]) return; + var options = { + skipSeen: false }; - } else { - keepLeaders.push(cache.leaders[i]); + _noteCache.inflight[tile.id] = that.loadFromAPI(path + tile.extent.toParam(), function (err) { + delete _noteCache.inflight[tile.id]; + + if (!err) { + _noteCache.loaded[tile.id] = true; + } + + throttleLoadUsers(); + dispatch$6.call('loadedNotes'); + }, options); + }); + }, + // Create a note + // POST /api/0.6/notes?params + postNoteCreate: function postNoteCreate(note, callback) { + if (!this.authenticated()) { + return callback({ + message: 'Not Authenticated', + status: -3 + }, note); } - } // couldn't complete these, save for later + if (_noteCache.inflightPost[note.id]) { + return callback({ + message: 'Note update already inflight', + status: -2 + }, note); + } - cache.leaders = keepLeaders; - } - /** - * getBubbles() handles the request to the server for a tile extent of 'bubbles' (streetside image locations). - */ + if (!note.loc[0] || !note.loc[1] || !note.newComment) return; // location & description required + var comment = note.newComment; - function getBubbles(url, tile, callback) { - var rect = tile.extent.rectangle(); - var urlForRequest = url + utilQsString({ - n: rect[3], - s: rect[1], - e: rect[2], - w: rect[0], - c: maxResults$2, - appkey: bubbleAppKey, - jsCallback: '{callback}' - }); - return jsonpRequest(urlForRequest, function (data) { - if (!data || data.error) { - callback(null); - } else { - callback(data); + if (note.newCategory && note.newCategory !== 'None') { + comment += ' #' + note.newCategory; } - }); - } // partition viewport into higher zoom tiles + var path = '/api/0.6/notes?' + utilQsString({ + lon: note.loc[0], + lat: note.loc[1], + text: comment + }); + _noteCache.inflightPost[note.id] = oauth.xhr({ + method: 'POST', + path: path + }, wrapcb(this, done, _connectionID)); - function partitionViewport$2(projection) { - var z = geoScaleToZoom(projection.scale()); - var z2 = Math.ceil(z * 2) / 2 + 2.5; // round to next 0.5 and add 2.5 + function done(err, xml) { + delete _noteCache.inflightPost[note.id]; - var tiler = utilTiler().zoomExtent([z2, z2]); - return tiler.getTiles(projection).map(function (tile) { - return tile.extent; - }); - } // no more than `limit` results per partition. + if (err) { + return callback(err); + } // we get the updated note back, remove from caches and reparse.. - function searchLimited$2(limit, projection, rtree) { - limit = limit || 5; - return partitionViewport$2(projection).reduce(function (result, extent) { - var found = rtree.search(extent.bbox()).slice(0, limit).map(function (d) { - return d.data; - }); - return found.length ? result.concat(found) : result; - }, []); - } - /** - * loadImage() - */ + this.removeNote(note); + var options = { + skipSeen: false + }; + return parseXML(xml, function (err, results) { + if (err) { + return callback(err); + } else { + return callback(undefined, results[0]); + } + }, options); + } + }, + // Update a note + // POST /api/0.6/notes/#id/comment?text=comment + // POST /api/0.6/notes/#id/close?text=comment + // POST /api/0.6/notes/#id/reopen?text=comment + postNoteUpdate: function postNoteUpdate(note, newStatus, callback) { + if (!this.authenticated()) { + return callback({ + message: 'Not Authenticated', + status: -3 + }, note); + } + + if (_noteCache.inflightPost[note.id]) { + return callback({ + message: 'Note update already inflight', + status: -2 + }, note); + } + var action; - function loadImage(imgInfo) { - return new Promise(function (resolve) { - var img = new Image(); + if (note.status !== 'closed' && newStatus === 'closed') { + action = 'close'; + } else if (note.status !== 'open' && newStatus === 'open') { + action = 'reopen'; + } else { + action = 'comment'; + if (!note.newComment) return; // when commenting, comment required + } - img.onload = function () { - var canvas = document.getElementById('ideditor-canvas' + imgInfo.face); - var ctx = canvas.getContext('2d'); - ctx.drawImage(img, imgInfo.x, imgInfo.y); - resolve({ - imgInfo: imgInfo, - status: 'ok' - }); - }; + var path = '/api/0.6/notes/' + note.id + '/' + action; - img.onerror = function () { - resolve({ - data: imgInfo, - status: 'error' + if (note.newComment) { + path += '?' + utilQsString({ + text: note.newComment }); - }; - - img.setAttribute('crossorigin', ''); - img.src = imgInfo.url; - }); - } - /** - * loadCanvas() - */ + } + _noteCache.inflightPost[note.id] = oauth.xhr({ + method: 'POST', + path: path + }, wrapcb(this, done, _connectionID)); - function loadCanvas(imageGroup) { - return Promise.all(imageGroup.map(loadImage)).then(function (data) { - var canvas = document.getElementById('ideditor-canvas' + data[0].imgInfo.face); - var which = { - '01': 0, - '02': 1, - '03': 2, - '10': 3, - '11': 4, - '12': 5 - }; - var face = data[0].imgInfo.face; - _sceneOptions.cubeMap[which[face]] = canvas.toDataURL('image/jpeg', 1.0); - return { - status: 'loadCanvas for face ' + data[0].imgInfo.face + 'ok' - }; - }); - } - /** - * loadFaces() - */ + function done(err, xml) { + delete _noteCache.inflightPost[note.id]; + if (err) { + return callback(err); + } // we get the updated note back, remove from caches and reparse.. - function loadFaces(faceGroup) { - return Promise.all(faceGroup.map(loadCanvas)).then(function () { - return { - status: 'loadFaces done' - }; - }); - } - function setupCanvas(selection, reset) { - if (reset) { - selection.selectAll('#ideditor-stitcher-canvases').remove(); - } // Add the Streetside working canvases. These are used for 'stitching', or combining, - // multiple images for each of the six faces, before passing to the Pannellum control as DataUrls + this.removeNote(note); // update closed note cache - used to populate `closed:note` changeset tag + if (action === 'close') { + _noteCache.closed[note.id] = true; + } else if (action === 'reopen') { + delete _noteCache.closed[note.id]; + } - selection.selectAll('#ideditor-stitcher-canvases').data([0]).enter().append('div').attr('id', 'ideditor-stitcher-canvases').attr('display', 'none').selectAll('canvas').data(['canvas01', 'canvas02', 'canvas03', 'canvas10', 'canvas11', 'canvas12']).enter().append('canvas').attr('id', function (d) { - return 'ideditor-' + d; - }).attr('width', _resolution).attr('height', _resolution); - } + var options = { + skipSeen: false + }; + return parseXML(xml, function (err, results) { + if (err) { + return callback(err); + } else { + return callback(undefined, results[0]); + } + }, options); + } + }, + "switch": function _switch(options) { + urlroot = options.urlroot; + oauth.options(Object.assign({ + url: urlroot, + loading: authLoading, + done: authDone + }, options)); + this.reset(); + this.userChangesets(function () {}); // eagerly load user details/changesets - function qkToXY(qk) { - var x = 0; - var y = 0; - var scale = 256; + dispatch$6.call('change'); + return this; + }, + toggle: function toggle(val) { + _off = !val; + return this; + }, + isChangesetInflight: function isChangesetInflight() { + return !!_changeset.inflight; + }, + // get/set cached data + // This is used to save/restore the state when entering/exiting the walkthrough + // Also used for testing purposes. + caches: function caches(obj) { + function cloneCache(source) { + var target = {}; + Object.keys(source).forEach(function (k) { + if (k === 'rtree') { + target.rtree = new RBush().fromJSON(source.rtree.toJSON()); // clone rbush + } else if (k === 'note') { + target.note = {}; + Object.keys(source.note).forEach(function (id) { + target.note[id] = osmNote(source.note[id]); // copy notes + }); + } else { + target[k] = JSON.parse(JSON.stringify(source[k])); // clone deep + } + }); + return target; + } - for (var i = qk.length; i > 0; i--) { - var key = qk[i - 1]; - x += +(key === '1' || key === '3') * scale; - y += +(key === '2' || key === '3') * scale; - scale *= 2; - } + if (!arguments.length) { + return { + tile: cloneCache(_tileCache), + note: cloneCache(_noteCache), + user: cloneCache(_userCache) + }; + } // access caches directly for testing (e.g., loading notes rtree) - return [x, y]; - } - function getQuadKeys() { - var dim = _resolution / 256; - var quadKeys; + if (obj === 'get') { + return { + tile: _tileCache, + note: _noteCache, + user: _userCache + }; + } - if (dim === 16) { - quadKeys = ['0000', '0001', '0010', '0011', '0100', '0101', '0110', '0111', '1000', '1001', '1010', '1011', '1100', '1101', '1110', '1111', '0002', '0003', '0012', '0013', '0102', '0103', '0112', '0113', '1002', '1003', '1012', '1013', '1102', '1103', '1112', '1113', '0020', '0021', '0030', '0031', '0120', '0121', '0130', '0131', '1020', '1021', '1030', '1031', '1120', '1121', '1130', '1131', '0022', '0023', '0032', '0033', '0122', '0123', '0132', '0133', '1022', '1023', '1032', '1033', '1122', '1123', '1132', '1133', '0200', '0201', '0210', '0211', '0300', '0301', '0310', '0311', '1200', '1201', '1210', '1211', '1300', '1301', '1310', '1311', '0202', '0203', '0212', '0213', '0302', '0303', '0312', '0313', '1202', '1203', '1212', '1213', '1302', '1303', '1312', '1313', '0220', '0221', '0230', '0231', '0320', '0321', '0330', '0331', '1220', '1221', '1230', '1231', '1320', '1321', '1330', '1331', '0222', '0223', '0232', '0233', '0322', '0323', '0332', '0333', '1222', '1223', '1232', '1233', '1322', '1323', '1332', '1333', '2000', '2001', '2010', '2011', '2100', '2101', '2110', '2111', '3000', '3001', '3010', '3011', '3100', '3101', '3110', '3111', '2002', '2003', '2012', '2013', '2102', '2103', '2112', '2113', '3002', '3003', '3012', '3013', '3102', '3103', '3112', '3113', '2020', '2021', '2030', '2031', '2120', '2121', '2130', '2131', '3020', '3021', '3030', '3031', '3120', '3121', '3130', '3131', '2022', '2023', '2032', '2033', '2122', '2123', '2132', '2133', '3022', '3023', '3032', '3033', '3122', '3123', '3132', '3133', '2200', '2201', '2210', '2211', '2300', '2301', '2310', '2311', '3200', '3201', '3210', '3211', '3300', '3301', '3310', '3311', '2202', '2203', '2212', '2213', '2302', '2303', '2312', '2313', '3202', '3203', '3212', '3213', '3302', '3303', '3312', '3313', '2220', '2221', '2230', '2231', '2320', '2321', '2330', '2331', '3220', '3221', '3230', '3231', '3320', '3321', '3330', '3331', '2222', '2223', '2232', '2233', '2322', '2323', '2332', '2333', '3222', '3223', '3232', '3233', '3322', '3323', '3332', '3333']; - } else if (dim === 8) { - quadKeys = ['000', '001', '010', '011', '100', '101', '110', '111', '002', '003', '012', '013', '102', '103', '112', '113', '020', '021', '030', '031', '120', '121', '130', '131', '022', '023', '032', '033', '122', '123', '132', '133', '200', '201', '210', '211', '300', '301', '310', '311', '202', '203', '212', '213', '302', '303', '312', '313', '220', '221', '230', '231', '320', '321', '330', '331', '222', '223', '232', '233', '322', '323', '332', '333']; - } else if (dim === 4) { - quadKeys = ['00', '01', '10', '11', '02', '03', '12', '13', '20', '21', '30', '31', '22', '23', '32', '33']; - } else { - // dim === 2 - quadKeys = ['0', '1', '2', '3']; - } + if (obj.tile) { + _tileCache = obj.tile; + _tileCache.inflight = {}; + } - return quadKeys; - } + if (obj.note) { + _noteCache = obj.note; + _noteCache.inflight = {}; + _noteCache.inflightPost = {}; + } - var serviceStreetside = { - /** - * init() initialize streetside. - */ - init: function init() { - if (!_ssCache) { - this.reset(); + if (obj.user) { + _userCache = obj.user; } - this.event = utilRebind(this, dispatch$7, 'on'); + return this; + }, + logout: function logout() { + _userChangesets = undefined; + _userDetails = undefined; + oauth.logout(); + dispatch$6.call('change'); + return this; + }, + authenticated: function authenticated() { + return oauth.authenticated(); }, + authenticate: function authenticate(callback) { + var that = this; + var cid = _connectionID; + _userChangesets = undefined; + _userDetails = undefined; - /** - * reset() reset the cache. - */ - reset: function reset() { - if (_ssCache) { - Object.values(_ssCache.bubbles.inflight).forEach(abortRequest$6); + function done(err, res) { + if (err) { + if (callback) callback(err); + return; + } + + if (that.getConnectionId() !== cid) { + if (callback) callback({ + message: 'Connection Switched', + status: -1 + }); + return; + } + + _rateLimitError = undefined; + dispatch$6.call('change'); + if (callback) callback(err, res); + that.userChangesets(function () {}); // eagerly load user details/changesets } - _ssCache = { - bubbles: { - inflight: {}, - loaded: {}, - nextPage: {}, - rtree: new RBush(), - points: {}, - leaders: [] - }, - sequences: {} - }; + return oauth.authenticate(done); }, - - /** - * bubbles() - */ - bubbles: function bubbles(projection) { - var limit = 5; - return searchLimited$2(limit, projection, _ssCache.bubbles.rtree); + imageryBlocklists: function imageryBlocklists() { + return _imageryBlocklists; }, - cachedImage: function cachedImage(imageKey) { - return _ssCache.bubbles.points[imageKey]; + tileZoom: function tileZoom(val) { + if (!arguments.length) return _tileZoom$3; + _tileZoom$3 = val; + return this; }, - sequences: function sequences(projection) { + // get all cached notes covering the viewport + notes: function notes(projection) { var viewport = projection.clipExtent(); var min = [viewport[0][0], viewport[1][1]]; var max = [viewport[1][0], viewport[0][1]]; var bbox = geoExtent(projection.invert(min), projection.invert(max)).bbox(); - var seen = {}; - var results = []; // all sequences for bubbles in viewport - - _ssCache.bubbles.rtree.search(bbox).forEach(function (d) { - var key = d.data.sequenceKey; - - if (key && !seen[key]) { - seen[key] = true; - results.push(_ssCache.sequences[key].geojson); - } + return _noteCache.rtree.search(bbox).map(function (d) { + return d.data; }); - - return results; }, - - /** - * loadBubbles() - */ - loadBubbles: function loadBubbles(projection, margin) { - // by default: request 2 nearby tiles so we can connect sequences. - if (margin === undefined) margin = 2; - loadTiles$2('bubbles', bubbleApi, projection, margin); + // get a single note from the cache + getNote: function getNote(id) { + return _noteCache.note[id]; }, - viewer: function viewer() { - return _pannellumViewer; + // remove a single note from the cache + removeNote: function removeNote(note) { + if (!(note instanceof osmNote) || !note.id) return; + delete _noteCache.note[note.id]; + updateRtree$3(encodeNoteRtree(note), false); // false = remove }, - initViewer: function initViewer() { - if (!window.pannellum) return; - if (_pannellumViewer) return; - _currScene += 1; - - var sceneID = _currScene.toString(); + // replace a single note in the cache + replaceNote: function replaceNote(note) { + if (!(note instanceof osmNote) || !note.id) return; + _noteCache.note[note.id] = note; + updateRtree$3(encodeNoteRtree(note), true); // true = replace - var options = { - 'default': { - firstScene: sceneID - }, - scenes: {} - }; - options.scenes[sceneID] = _sceneOptions; - _pannellumViewer = window.pannellum.viewer('ideditor-viewer-streetside', options); + return note; }, - ensureViewerLoaded: function ensureViewerLoaded(context) { - if (_loadViewerPromise$2) return _loadViewerPromise$2; // create ms-wrapper, a photo wrapper class - - var wrap = context.container().select('.photoviewer').selectAll('.ms-wrapper').data([0]); // inject ms-wrapper into the photoviewer div - // (used by all to house each custom photo viewer) - - var wrapEnter = wrap.enter().append('div').attr('class', 'photo-wrapper ms-wrapper').classed('hide', true); - var that = this; - var pointerPrefix = 'PointerEvent' in window ? 'pointer' : 'mouse'; // inject div to support streetside viewer (pannellum) and attribution line - - wrapEnter.append('div').attr('id', 'ideditor-viewer-streetside').on(pointerPrefix + 'down.streetside', function () { - select(window).on(pointerPrefix + 'move.streetside', function () { - dispatch$7.call('viewerChanged'); - }, true); - }).on(pointerPrefix + 'up.streetside pointercancel.streetside', function () { - select(window).on(pointerPrefix + 'move.streetside', null); // continue dispatching events for a few seconds, in case viewer has inertia. + // Get an array of note IDs closed during this session. + // Used to populate `closed:note` changeset tag + getClosedIDs: function getClosedIDs() { + return Object.keys(_noteCache.closed).sort(); + } + }; - var t = timer(function (elapsed) { - dispatch$7.call('viewerChanged'); + var _apibase = 'https://wiki.openstreetmap.org/w/api.php'; + var _inflight$1 = {}; + var _wikibaseCache = {}; + var _localeIDs = { + en: false + }; - if (elapsed > 2000) { - t.stop(); - } - }); - }).append('div').attr('class', 'photo-attribution fillD'); - var controlsEnter = wrapEnter.append('div').attr('class', 'photo-controls-wrap').append('div').attr('class', 'photo-controls'); - controlsEnter.append('button').on('click.back', step(-1)).html('◄'); - controlsEnter.append('button').on('click.forward', step(1)).html('►'); // create working canvas for stitching together images + var debouncedRequest = debounce(request, 500, { + leading: false + }); - wrap = wrap.merge(wrapEnter).call(setupCanvas, true); // Register viewer resize handler + function request(url, callback) { + if (_inflight$1[url]) return; + var controller = new AbortController(); + _inflight$1[url] = controller; + d3_json(url, { + signal: controller.signal + }).then(function (result) { + delete _inflight$1[url]; + if (callback) callback(null, result); + })["catch"](function (err) { + delete _inflight$1[url]; + if (err.name === 'AbortError') return; + if (callback) callback(err.message); + }); + } - context.ui().photoviewer.on('resize.streetside', function () { - if (_pannellumViewer) { - _pannellumViewer.resize(); - } + var serviceOsmWikibase = { + init: function init() { + _inflight$1 = {}; + _wikibaseCache = {}; + _localeIDs = {}; + }, + reset: function reset() { + Object.values(_inflight$1).forEach(function (controller) { + controller.abort(); }); - _loadViewerPromise$2 = new Promise(function (resolve, reject) { - var loadedCount = 0; + _inflight$1 = {}; + }, - function loaded() { - loadedCount += 1; // wait until both files are loaded + /** + * Get the best value for the property, or undefined if not found + * @param entity object from wikibase + * @param property string e.g. 'P4' for image + * @param langCode string e.g. 'fr' for French + */ + claimToValue: function claimToValue(entity, property, langCode) { + if (!entity.claims[property]) return undefined; + var locale = _localeIDs[langCode]; + var preferredPick, localePick; + entity.claims[property].forEach(function (stmt) { + // If exists, use value limited to the needed language (has a qualifier P26 = locale) + // Or if not found, use the first value with the "preferred" rank + if (!preferredPick && stmt.rank === 'preferred') { + preferredPick = stmt; + } - if (loadedCount === 2) resolve(); + if (locale && stmt.qualifiers && stmt.qualifiers.P26 && stmt.qualifiers.P26[0].datavalue.value.id === locale) { + localePick = stmt; } + }); + var result = localePick || preferredPick; - var head = select('head'); // load streetside pannellum viewer css + if (result) { + var datavalue = result.mainsnak.datavalue; + return datavalue.type === 'wikibase-entityid' ? datavalue.value.id : datavalue.value; + } else { + return undefined; + } + }, - head.selectAll('#ideditor-streetside-viewercss').data([0]).enter().append('link').attr('id', 'ideditor-streetside-viewercss').attr('rel', 'stylesheet').attr('crossorigin', 'anonymous').attr('href', context.asset(pannellumViewerCSS)).on('load.serviceStreetside', loaded).on('error.serviceStreetside', function () { - reject(); - }); // load streetside pannellum viewer js + /** + * Convert monolingual property into a key-value object (language -> value) + * @param entity object from wikibase + * @param property string e.g. 'P31' for monolingual wiki page title + */ + monolingualClaimToValueObj: function monolingualClaimToValueObj(entity, property) { + if (!entity || !entity.claims[property]) return undefined; + return entity.claims[property].reduce(function (acc, obj) { + var value = obj.mainsnak.datavalue.value; + acc[value.language] = value.text; + return acc; + }, {}); + }, + toSitelink: function toSitelink(key, value) { + var result = value ? 'Tag:' + key + '=' + value : 'Key:' + key; + return result.replace(/_/g, ' ').trim(); + }, + // + // Pass params object of the form: + // { + // key: 'string', + // value: 'string', + // langCode: 'string' + // } + // + getEntity: function getEntity(params, callback) { + var doRequest = params.debounce ? debouncedRequest : request; + var that = this; + var titles = []; + var result = {}; + var rtypeSitelink = params.key === 'type' && params.value ? ('Relation:' + params.value).replace(/_/g, ' ').trim() : false; + var keySitelink = params.key ? this.toSitelink(params.key) : false; + var tagSitelink = params.key && params.value ? this.toSitelink(params.key, params.value) : false; + var localeSitelink; - head.selectAll('#ideditor-streetside-viewerjs').data([0]).enter().append('script').attr('id', 'ideditor-streetside-viewerjs').attr('crossorigin', 'anonymous').attr('src', context.asset(pannellumViewerJS)).on('load.serviceStreetside', loaded).on('error.serviceStreetside', function () { - reject(); + if (params.langCodes) { + params.langCodes.forEach(function (langCode) { + if (_localeIDs[langCode] === undefined) { + // If this is the first time we are asking about this locale, + // fetch corresponding entity (if it exists), and cache it. + // If there is no such entry, cache `false` value to avoid re-requesting it. + localeSitelink = ('Locale:' + langCode).replace(/_/g, ' ').trim(); + titles.push(localeSitelink); + } }); - })["catch"](function () { - _loadViewerPromise$2 = null; - }); - return _loadViewerPromise$2; - - function step(stepBy) { - return function () { - var viewer = context.container().select('.photoviewer'); - var selected = viewer.empty() ? undefined : viewer.datum(); - if (!selected) return; - var nextID = stepBy === 1 ? selected.ne : selected.pr; + } - var yaw = _pannellumViewer.getYaw(); + if (rtypeSitelink) { + if (_wikibaseCache[rtypeSitelink]) { + result.rtype = _wikibaseCache[rtypeSitelink]; + } else { + titles.push(rtypeSitelink); + } + } - var ca = selected.ca + yaw; - var origin = selected.loc; // construct a search trapezoid pointing out from current bubble + if (keySitelink) { + if (_wikibaseCache[keySitelink]) { + result.key = _wikibaseCache[keySitelink]; + } else { + titles.push(keySitelink); + } + } - var meters = 35; - var p1 = [origin[0] + geoMetersToLon(meters / 5, origin[1]), origin[1]]; - var p2 = [origin[0] + geoMetersToLon(meters / 2, origin[1]), origin[1] + geoMetersToLat(meters)]; - var p3 = [origin[0] - geoMetersToLon(meters / 2, origin[1]), origin[1] + geoMetersToLat(meters)]; - var p4 = [origin[0] - geoMetersToLon(meters / 5, origin[1]), origin[1]]; - var poly = [p1, p2, p3, p4, p1]; // rotate it to face forward/backward + if (tagSitelink) { + if (_wikibaseCache[tagSitelink]) { + result.tag = _wikibaseCache[tagSitelink]; + } else { + titles.push(tagSitelink); + } + } - var angle = (stepBy === 1 ? ca : ca + 180) * (Math.PI / 180); - poly = geoRotate(poly, -angle, origin); - var extent = poly.reduce(function (extent, point) { - return extent.extend(geoExtent(point)); - }, geoExtent()); // find nearest other bubble in the search polygon + if (!titles.length) { + // Nothing to do, we already had everything in the cache + return callback(null, result); + } // Requesting just the user language code + // If backend recognizes the code, it will perform proper fallbacks, + // and the result will contain the requested code. If not, all values are returned: + // {"zh-tw":{"value":"...","language":"zh-tw","source-language":"zh-hant"} + // {"pt-br":{"value":"...","language":"pt","for-language":"pt-br"}} - var minDist = Infinity; - _ssCache.bubbles.rtree.search(extent.bbox()).forEach(function (d) { - if (d.data.key === selected.key) return; - if (!geoPointInPolygon(d.data.loc, poly)) return; - var dist = geoVecLength(d.data.loc, selected.loc); - var theta = selected.ca - d.data.ca; - var minTheta = Math.min(Math.abs(theta), 360 - Math.abs(theta)); + var obj = { + action: 'wbgetentities', + sites: 'wiki', + titles: titles.join('|'), + languages: params.langCodes.join('|'), + languagefallback: 1, + origin: '*', + format: 'json' // There is an MW Wikibase API bug https://phabricator.wikimedia.org/T212069 + // We shouldn't use v1 until it gets fixed, but should switch to it afterwards + // formatversion: 2, - if (minTheta > 20) { - dist += 5; // penalize distance if camera angles don't match - } + }; + var url = _apibase + '?' + utilQsString(obj); + doRequest(url, function (err, d) { + if (err) { + callback(err); + } else if (!d.success || d.error) { + callback(d.error.messages.map(function (v) { + return v.html['*']; + }).join('
    ')); + } else { + var localeID = false; + Object.values(d.entities).forEach(function (res) { + if (res.missing !== '') { + var title = res.sitelinks.wiki.title; - if (dist < minDist) { - nextID = d.data.key; - minDist = dist; + if (title === rtypeSitelink) { + _wikibaseCache[rtypeSitelink] = res; + result.rtype = res; + } else if (title === keySitelink) { + _wikibaseCache[keySitelink] = res; + result.key = res; + } else if (title === tagSitelink) { + _wikibaseCache[tagSitelink] = res; + result.tag = res; + } else if (title === localeSitelink) { + localeID = res.id; + } else { + console.log('Unexpected title ' + title); // eslint-disable-line no-console + } } }); - var nextBubble = nextID && that.cachedImage(nextID); - if (!nextBubble) return; - context.map().centerEase(nextBubble.loc); - that.selectImage(context, nextBubble.key).yaw(yaw).showViewer(context); - }; - } - }, - yaw: function yaw(_yaw) { - if (typeof _yaw !== 'number') return _yaw; - _sceneOptions.yaw = _yaw; - return this; + if (localeSitelink) { + // If locale ID is not found, store false to prevent repeated queries + that.addLocale(params.langCodes[0], localeID); + } + + callback(null, result); + } + }); }, + // + // Pass params object of the form: + // { + // key: 'string', // required + // value: 'string' // optional + // } + // + // Get an result object used to display tag documentation + // { + // title: 'string', + // description: 'string', + // editURL: 'string', + // imageURL: 'string', + // wiki: { title: 'string', text: 'string', url: 'string' } + // } + // + getDocs: function getDocs(params, callback) { + var that = this; + var langCodes = _mainLocalizer.localeCodes().map(function (code) { + return code.toLowerCase(); + }); + params.langCodes = langCodes; + this.getEntity(params, function (err, data) { + if (err) { + callback(err); + return; + } - /** - * showViewer() - */ - showViewer: function showViewer(context) { - var wrap = context.container().select('.photoviewer').classed('hide', false); - var isHidden = wrap.selectAll('.photo-wrapper.ms-wrapper.hide').size(); + var entity = data.rtype || data.tag || data.key; - if (isHidden) { - wrap.selectAll('.photo-wrapper:not(.ms-wrapper)').classed('hide', true); - wrap.selectAll('.photo-wrapper.ms-wrapper').classed('hide', false); - } + if (!entity) { + callback('No entity'); + return; + } - return this; - }, + var i; + var description; - /** - * hideViewer() - */ - hideViewer: function hideViewer(context) { - var viewer = context.container().select('.photoviewer'); - if (!viewer.empty()) viewer.datum(null); - viewer.classed('hide', true).selectAll('.photo-wrapper').classed('hide', true); - context.container().selectAll('.viewfield-group, .sequence, .icon-sign').classed('currentView', false); - this.updateUrlImage(null); - return this.setStyles(context, null, true); - }, + for (i in langCodes) { + var _code = langCodes[i]; - /** - * selectImage(). - */ - selectImage: function selectImage(context, key) { - var that = this; - var d = this.cachedImage(key); - var viewer = context.container().select('.photoviewer'); - if (!viewer.empty()) viewer.datum(d); - this.setStyles(context, null, true); - var wrap = context.container().select('.photoviewer .ms-wrapper'); - var attribution = wrap.selectAll('.photo-attribution').html(''); - wrap.selectAll('.pnlm-load-box') // display "loading.." - .style('display', 'block'); - if (!d) return this; - this.updateUrlImage(key); - _sceneOptions.northOffset = d.ca; - var line1 = attribution.append('div').attr('class', 'attribution-row'); - var hiresDomId = utilUniqueDomId('streetside-hires'); // Add hires checkbox + if (entity.descriptions[_code] && entity.descriptions[_code].language === _code) { + description = entity.descriptions[_code]; + break; + } + } - var label = line1.append('label').attr('for', hiresDomId).attr('class', 'streetside-hires'); - label.append('input').attr('type', 'checkbox').attr('id', hiresDomId).property('checked', _hires).on('click', function (d3_event) { - d3_event.stopPropagation(); - _hires = !_hires; - _resolution = _hires ? 1024 : 512; - wrap.call(setupCanvas, true); - var viewstate = { - yaw: _pannellumViewer.getYaw(), - pitch: _pannellumViewer.getPitch(), - hfov: _pannellumViewer.getHfov() - }; - _sceneOptions = Object.assign(_sceneOptions, viewstate); - that.selectImage(context, d.key).showViewer(context); - }); - label.append('span').html(_t.html('streetside.hires')); - var captureInfo = line1.append('div').attr('class', 'attribution-capture-info'); // Add capture date + if (!description && Object.values(entity.descriptions).length) description = Object.values(entity.descriptions)[0]; // prepare result - if (d.captured_by) { - var yyyy = new Date().getFullYear(); - captureInfo.append('a').attr('class', 'captured_by').attr('target', '_blank').attr('href', 'https://www.microsoft.com/en-us/maps/streetside').html('©' + yyyy + ' Microsoft'); - captureInfo.append('span').html('|'); - } + var result = { + title: entity.title, + description: description ? description.value : '', + descriptionLocaleCode: description ? description.language : '', + editURL: 'https://wiki.openstreetmap.org/wiki/' + entity.title + }; // add image - if (d.captured_at) { - captureInfo.append('span').attr('class', 'captured_at').html(localeTimestamp(d.captured_at)); - } // Add image links + if (entity.claims) { + var imageroot; + var image = that.claimToValue(entity, 'P4', langCodes[0]); + if (image) { + imageroot = 'https://commons.wikimedia.org/w/index.php'; + } else { + image = that.claimToValue(entity, 'P28', langCodes[0]); - var line2 = attribution.append('div').attr('class', 'attribution-row'); - line2.append('a').attr('class', 'image-view-link').attr('target', '_blank').attr('href', 'https://www.bing.com/maps?cp=' + d.loc[1] + '~' + d.loc[0] + '&lvl=17&dir=' + d.ca + '&style=x&v=2&sV=1').html(_t.html('streetside.view_on_bing')); - line2.append('a').attr('class', 'image-report-link').attr('target', '_blank').attr('href', 'https://www.bing.com/maps/privacyreport/streetsideprivacyreport?bubbleid=' + encodeURIComponent(d.key) + '&focus=photo&lat=' + d.loc[1] + '&lng=' + d.loc[0] + '&z=17').html(_t.html('streetside.report')); - var bubbleIdQuadKey = d.key.toString(4); - var paddingNeeded = 16 - bubbleIdQuadKey.length; + if (image) { + imageroot = 'https://wiki.openstreetmap.org/w/index.php'; + } + } - for (var i = 0; i < paddingNeeded; i++) { - bubbleIdQuadKey = '0' + bubbleIdQuadKey; - } + if (imageroot && image) { + result.imageURL = imageroot + '?' + utilQsString({ + title: 'Special:Redirect/file/' + image, + width: 400 + }); + } + } // Try to get a wiki page from tag data item first, followed by the corresponding key data item. + // If neither tag nor key data item contain a wiki page in the needed language nor English, + // get the first found wiki page from either the tag or the key item. - var imgUrlPrefix = streetsideImagesApi + 'hs' + bubbleIdQuadKey; - var imgUrlSuffix = '.jpg?g=6338&n=z'; // Cubemap face code order matters here: front=01, right=02, back=03, left=10, up=11, down=12 - var faceKeys = ['01', '02', '03', '10', '11', '12']; // Map images to cube faces + var rtypeWiki = that.monolingualClaimToValueObj(data.rtype, 'P31'); + var tagWiki = that.monolingualClaimToValueObj(data.tag, 'P31'); + var keyWiki = that.monolingualClaimToValueObj(data.key, 'P31'); + var wikis = [rtypeWiki, tagWiki, keyWiki]; - var quadKeys = getQuadKeys(); - var faces = faceKeys.map(function (faceKey) { - return quadKeys.map(function (quadKey) { - var xy = qkToXY(quadKey); - return { - face: faceKey, - url: imgUrlPrefix + faceKey + quadKey + imgUrlSuffix, - x: xy[0], - y: xy[1] - }; - }); - }); - loadFaces(faces).then(function () { - if (!_pannellumViewer) { - that.initViewer(); - } else { - // make a new scene - _currScene += 1; + for (i in wikis) { + var wiki = wikis[i]; - var sceneID = _currScene.toString(); + for (var j in langCodes) { + var code = langCodes[j]; + var referenceId = langCodes[0].split('-')[0] !== 'en' && code.split('-')[0] === 'en' ? 'inspector.wiki_en_reference' : 'inspector.wiki_reference'; + var info = getWikiInfo(wiki, code, referenceId); - _pannellumViewer.addScene(sceneID, _sceneOptions).loadScene(sceneID); // remove previous scene + if (info) { + result.wiki = info; + break; + } + } + if (result.wiki) break; + } - if (_currScene > 2) { - sceneID = (_currScene - 1).toString(); + callback(null, result); // Helper method to get wiki info if a given language exists - _pannellumViewer.removeScene(sceneID); + function getWikiInfo(wiki, langCode, tKey) { + if (wiki && wiki[langCode]) { + return { + title: wiki[langCode], + text: tKey, + url: 'https://wiki.openstreetmap.org/wiki/' + wiki[langCode] + }; } } }); - return this; }, - getSequenceKeyForBubble: function getSequenceKeyForBubble(d) { - return d && d.sequenceKey; + addLocale: function addLocale(langCode, qid) { + // Makes it easier to unit test + _localeIDs[langCode] = qid; }, - // Updates the currently highlighted sequence and selected bubble. - // Reset is only necessary when interacting with the viewport because - // this implicitly changes the currently selected bubble/sequence - setStyles: function setStyles(context, hovered, reset) { - if (reset) { - // reset all layers - context.container().selectAll('.viewfield-group').classed('highlighted', false).classed('hovered', false).classed('currentView', false); - context.container().selectAll('.sequence').classed('highlighted', false).classed('currentView', false); - } - - var hoveredBubbleKey = hovered && hovered.key; - var hoveredSequenceKey = this.getSequenceKeyForBubble(hovered); - var hoveredSequence = hoveredSequenceKey && _ssCache.sequences[hoveredSequenceKey]; - var hoveredBubbleKeys = hoveredSequence && hoveredSequence.bubbles.map(function (d) { - return d.key; - }) || []; - var viewer = context.container().select('.photoviewer'); - var selected = viewer.empty() ? undefined : viewer.datum(); - var selectedBubbleKey = selected && selected.key; - var selectedSequenceKey = this.getSequenceKeyForBubble(selected); - var selectedSequence = selectedSequenceKey && _ssCache.sequences[selectedSequenceKey]; - var selectedBubbleKeys = selectedSequence && selectedSequence.bubbles.map(function (d) { - return d.key; - }) || []; // highlight sibling viewfields on either the selected or the hovered sequences - - var highlightedBubbleKeys = utilArrayUnion(hoveredBubbleKeys, selectedBubbleKeys); - context.container().selectAll('.layer-streetside-images .viewfield-group').classed('highlighted', function (d) { - return highlightedBubbleKeys.indexOf(d.key) !== -1; - }).classed('hovered', function (d) { - return d.key === hoveredBubbleKey; - }).classed('currentView', function (d) { - return d.key === selectedBubbleKey; - }); - context.container().selectAll('.layer-streetside-images .sequence').classed('highlighted', function (d) { - return d.properties.key === hoveredSequenceKey; - }).classed('currentView', function (d) { - return d.properties.key === selectedSequenceKey; - }); // update viewfields if needed + apibase: function apibase(val) { + if (!arguments.length) return _apibase; + _apibase = val; + return this; + } + }; - context.container().selectAll('.viewfield-group .viewfield').attr('d', viewfieldPath); + var jsonpCache = {}; + window.jsonpCache = jsonpCache; + function jsonpRequest(url, callback) { + var request = { + abort: function abort() {} + }; - function viewfieldPath() { - var d = this.parentNode.__data__; + if (window.JSONP_FIX) { + if (window.JSONP_DELAY === 0) { + callback(window.JSONP_FIX); + } else { + var t = window.setTimeout(function () { + callback(window.JSONP_FIX); + }, window.JSONP_DELAY || 0); - if (d.pano && d.key !== selectedBubbleKey) { - return 'M 8,13 m -10,0 a 10,10 0 1,0 20,0 a 10,10 0 1,0 -20,0'; - } else { - return 'M 6,9 C 8,8.4 8,8.4 10,9 L 16,-2 C 12,-5 4,-5 0,-2 z'; - } + request.abort = function () { + window.clearTimeout(t); + }; } - return this; - }, - updateUrlImage: function updateUrlImage(imageKey) { - if (!window.mocha) { - var hash = utilStringQs(window.location.hash); + return request; + } - if (imageKey) { - hash.photo = 'streetside/' + imageKey; - } else { - delete hash.photo; - } + function rand() { + var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + var c = ''; + var i = -1; - window.location.replace('#' + utilQsString(hash, true)); + while (++i < 15) { + c += chars.charAt(Math.floor(Math.random() * 52)); } - }, - - /** - * cache(). - */ - cache: function cache() { - return _ssCache; - } - }; - - var _apibase$1 = 'https://taginfo.openstreetmap.org/api/4/'; - var _inflight$2 = {}; - var _popularKeys = {}; - var _taginfoCache = {}; - var tag_sorts = { - point: 'count_nodes', - vertex: 'count_nodes', - area: 'count_ways', - line: 'count_ways' - }; - var tag_sort_members = { - point: 'count_node_members', - vertex: 'count_node_members', - area: 'count_way_members', - line: 'count_way_members', - relation: 'count_relation_members' - }; - var tag_filters = { - point: 'nodes', - vertex: 'nodes', - area: 'ways', - line: 'ways' - }; - var tag_members_fractions = { - point: 'count_node_members_fraction', - vertex: 'count_node_members_fraction', - area: 'count_way_members_fraction', - line: 'count_way_members_fraction', - relation: 'count_relation_members_fraction' - }; - function sets(params, n, o) { - if (params.geometry && o[params.geometry]) { - params[n] = o[params.geometry]; + return c; } - return params; - } - - function setFilter(params) { - return sets(params, 'filter', tag_filters); - } + function create(url) { + var e = url.match(/callback=(\w+)/); + var c = e ? e[1] : rand(); - function setSort(params) { - return sets(params, 'sortname', tag_sorts); - } + jsonpCache[c] = function (data) { + if (jsonpCache[c]) { + callback(data); + } - function setSortMembers(params) { - return sets(params, 'sortname', tag_sort_members); - } + finalize(); + }; - function clean(params) { - return utilObjectOmit(params, ['geometry', 'debounce']); - } + function finalize() { + delete jsonpCache[c]; + script.remove(); + } - function filterKeys(type) { - var count_type = type ? 'count_' + type : 'count_all'; - return function (d) { - return parseFloat(d[count_type]) > 2500 || d.in_wiki; - }; - } + request.abort = finalize; + return 'jsonpCache.' + c; + } - function filterMultikeys(prefix) { - return function (d) { - // d.key begins with prefix, and d.key contains no additional ':'s - var re = new RegExp('^' + prefix + '(.*)$'); - var matches = d.key.match(re) || []; - return matches.length === 2 && matches[1].indexOf(':') === -1; - }; + var cb = create(url); + var script = select('head').append('script').attr('type', 'text/javascript').attr('src', url.replace(/(\{|%7B)callback(\}|%7D)/, cb)); + return request; } - function filterValues(allowUpperCase) { - return function (d) { - if (d.value.match(/[;,]/) !== null) return false; // exclude some punctuation + var bubbleApi = 'https://dev.virtualearth.net/mapcontrol/HumanScaleServices/GetBubbles.ashx?'; + var streetsideImagesApi = 'https://t.ssl.ak.tiles.virtualearth.net/tiles/'; + var bubbleAppKey = 'AuftgJsO0Xs8Ts4M1xZUQJQXJNsvmh3IV8DkNieCiy3tCwCUMq76-WpkrBtNAuEm'; + var pannellumViewerCSS = 'pannellum-streetside/pannellum.css'; + var pannellumViewerJS = 'pannellum-streetside/pannellum.js'; + var maxResults$2 = 2000; + var tileZoom$2 = 16.5; + var tiler$6 = utilTiler().zoomExtent([tileZoom$2, tileZoom$2]).skipNullIsland(true); + var dispatch$7 = dispatch('loadedImages', 'viewerChanged'); + var minHfov = 10; // zoom in degrees: 20, 10, 5 - if (!allowUpperCase && d.value.match(/[A-Z*]/) !== null) return false; // exclude uppercase letters + var maxHfov = 90; // zoom out degrees - return parseFloat(d.fraction) > 0.0; - }; - } + var defaultHfov = 45; + var _hires = false; + var _resolution = 512; // higher numbers are slower - 512, 1024, 2048, 4096 - function filterRoles(geometry) { - return function (d) { - if (d.role === '') return false; // exclude empty role + var _currScene = 0; - if (d.role.match(/[A-Z*;,]/) !== null) return false; // exclude uppercase letters and some punctuation + var _ssCache; - return parseFloat(d[tag_members_fractions[geometry]]) > 0.0; - }; - } + var _pannellumViewer; - function valKey(d) { - return { - value: d.key, - title: d.key - }; - } + var _sceneOptions = { + showFullscreenCtrl: false, + autoLoad: true, + compass: true, + yaw: 0, + minHfov: minHfov, + maxHfov: maxHfov, + hfov: defaultHfov, + type: 'cubemap', + cubeMap: [] + }; - function valKeyDescription(d) { - var obj = { - value: d.value, - title: d.description || d.value - }; + var _loadViewerPromise$2; + /** + * abortRequest(). + */ - if (d.count) { - obj.count = d.count; - } - return obj; + function abortRequest$6(i) { + i.abort(); } + /** + * localeTimeStamp(). + */ - function roleKey(d) { - return { - value: d.role, - title: d.role + + function localeTimestamp(s) { + if (!s) return null; + var options = { + day: 'numeric', + month: 'short', + year: 'numeric' }; - } // sort keys with ':' lower than keys without ':' + var d = new Date(s); + if (isNaN(d.getTime())) return null; + return d.toLocaleString(_mainLocalizer.localeCode(), options); + } + /** + * loadTiles() wraps the process of generating tiles and then fetching image points for each tile. + */ - function sortKeys(a, b) { - return a.key.indexOf(':') === -1 && b.key.indexOf(':') !== -1 ? -1 : a.key.indexOf(':') !== -1 && b.key.indexOf(':') === -1 ? 1 : 0; - } + function loadTiles$2(which, url, projection, margin) { + var tiles = tiler$6.margin(margin).getTiles(projection); // abort inflight requests that are no longer needed - var debouncedRequest$1 = debounce(request$1, 300, { - leading: false - }); + var cache = _ssCache[which]; + Object.keys(cache.inflight).forEach(function (k) { + var wanted = tiles.find(function (tile) { + return k.indexOf(tile.id + ',') === 0; + }); - function request$1(url, params, exactMatch, callback, loaded) { - if (_inflight$2[url]) return; - if (checkCache(url, params, exactMatch, callback)) return; - var controller = new AbortController(); - _inflight$2[url] = controller; - d3_json(url, { - signal: controller.signal - }).then(function (result) { - delete _inflight$2[url]; - if (loaded) loaded(null, result); - })["catch"](function (err) { - delete _inflight$2[url]; - if (err.name === 'AbortError') return; - if (loaded) loaded(err.message); + if (!wanted) { + abortRequest$6(cache.inflight[k]); + delete cache.inflight[k]; + } + }); + tiles.forEach(function (tile) { + return loadNextTilePage$2(which, url, tile); }); } + /** + * loadNextTilePage() load data for the next tile page in line. + */ - function checkCache(url, params, exactMatch, callback) { - var rp = params.rp || 25; - var testQuery = params.query || ''; - var testUrl = url; - - do { - var hit = _taginfoCache[testUrl]; // exact match, or shorter match yielding fewer than max results (rp) - if (hit && (url === testUrl || hit.length < rp)) { - callback(null, hit); - return true; - } // don't try to shorten the query + function loadNextTilePage$2(which, url, tile) { + var cache = _ssCache[which]; + var nextPage = cache.nextPage[tile.id] || 0; + var id = tile.id + ',' + String(nextPage); + if (cache.loaded[id] || cache.inflight[id]) return; + cache.inflight[id] = getBubbles(url, tile, function (bubbles) { + cache.loaded[id] = true; + delete cache.inflight[id]; + if (!bubbles) return; // [].shift() removes the first element, some statistics info, not a bubble point + bubbles.shift(); + var features = bubbles.map(function (bubble) { + if (cache.points[bubble.id]) return null; // skip duplicates - if (exactMatch || !testQuery.length) return false; // do shorten the query to see if we already have a cached result - // that has returned fewer than max results (rp) + var loc = [bubble.lo, bubble.la]; + var d = { + loc: loc, + key: bubble.id, + ca: bubble.he, + captured_at: bubble.cd, + captured_by: 'microsoft', + // nbn: bubble.nbn, + // pbn: bubble.pbn, + // ad: bubble.ad, + // rn: bubble.rn, + pr: bubble.pr, + // previous + ne: bubble.ne, + // next + pano: true, + sequenceKey: null + }; + cache.points[bubble.id] = d; // a sequence starts here - testQuery = testQuery.slice(0, -1); - testUrl = url.replace(/&query=(.*?)&/, '&query=' + testQuery + '&'); - } while (testQuery.length >= 0); + if (bubble.pr === undefined) { + cache.leaders.push(bubble.id); + } - return false; - } + return { + minX: loc[0], + minY: loc[1], + maxX: loc[0], + maxY: loc[1], + data: d + }; + }).filter(Boolean); + cache.rtree.load(features); + connectSequences(); - var serviceTaginfo = { - init: function init() { - _inflight$2 = {}; - _taginfoCache = {}; - _popularKeys = { - // manually exclude some keys – #5377, #7485 - postal_code: true, - full_name: true, - loc_name: true, - reg_name: true, - short_name: true, - sorting_name: true, - artist_name: true, - nat_name: true, - long_name: true, - 'bridge:name': true - }; // Fetch popular keys. We'll exclude these from `values` - // lookups because they stress taginfo, and they aren't likely - // to yield meaningful autocomplete results.. see #3955 + if (which === 'bubbles') { + dispatch$7.call('loadedImages'); + } + }); + } // call this sometimes to connect the bubbles into sequences - var params = { - rp: 100, - sortname: 'values_all', - sortorder: 'desc', - page: 1, - debounce: false, - lang: _mainLocalizer.languageCode() - }; - this.keys(params, function (err, data) { - if (err) return; - data.forEach(function (d) { - if (d.value === 'opening_hours') return; // exception - _popularKeys[d.value] = true; - }); - }); - }, - reset: function reset() { - Object.values(_inflight$2).forEach(function (controller) { - controller.abort(); - }); - _inflight$2 = {}; - }, - keys: function keys(params, callback) { - var doRequest = params.debounce ? debouncedRequest$1 : request$1; - params = clean(setSort(params)); - params = Object.assign({ - rp: 10, - sortname: 'count_all', - sortorder: 'desc', - page: 1, - lang: _mainLocalizer.languageCode() - }, params); - var url = _apibase$1 + 'keys/all?' + utilQsString(params); - doRequest(url, params, false, callback, function (err, d) { - if (err) { - callback(err); - } else { - var f = filterKeys(params.filter); - var result = d.data.filter(f).sort(sortKeys).map(valKey); - _taginfoCache[url] = result; - callback(null, result); - } - }); - }, - multikeys: function multikeys(params, callback) { - var doRequest = params.debounce ? debouncedRequest$1 : request$1; - params = clean(setSort(params)); - params = Object.assign({ - rp: 25, - sortname: 'count_all', - sortorder: 'desc', - page: 1, - lang: _mainLocalizer.languageCode() - }, params); - var prefix = params.query; - var url = _apibase$1 + 'keys/all?' + utilQsString(params); - doRequest(url, params, true, callback, function (err, d) { - if (err) { - callback(err); - } else { - var f = filterMultikeys(prefix); - var result = d.data.filter(f).map(valKey); - _taginfoCache[url] = result; - callback(null, result); - } - }); - }, - values: function values(params, callback) { - // Exclude popular keys from values lookups.. see #3955 - var key = params.key; + function connectSequences() { + var cache = _ssCache.bubbles; + var keepLeaders = []; - if (key && _popularKeys[key]) { - callback(null, []); - return; - } + for (var i = 0; i < cache.leaders.length; i++) { + var bubble = cache.points[cache.leaders[i]]; + var seen = {}; // try to make a sequence.. use the key of the leader bubble. - var doRequest = params.debounce ? debouncedRequest$1 : request$1; - params = clean(setSort(setFilter(params))); - params = Object.assign({ - rp: 25, - sortname: 'count_all', - sortorder: 'desc', - page: 1, - lang: _mainLocalizer.languageCode() - }, params); - var url = _apibase$1 + 'key/values?' + utilQsString(params); - doRequest(url, params, false, callback, function (err, d) { - if (err) { - callback(err); - } else { - // In most cases we prefer taginfo value results with lowercase letters. - // A few OSM keys expect values to contain uppercase values (see #3377). - // This is not an exhaustive list (e.g. `name` also has uppercase values) - // but these are the fields where taginfo value lookup is most useful. - var re = /network|taxon|genus|species|brand|grape_variety|royal_cypher|listed_status|booth|rating|stars|:output|_hours|_times|_ref|manufacturer|country|target|brewery/; - var allowUpperCase = re.test(params.key); - var f = filterValues(allowUpperCase); - var result = d.data.filter(f).map(valKeyDescription); - _taginfoCache[url] = result; - callback(null, result); - } - }); - }, - roles: function roles(params, callback) { - var doRequest = params.debounce ? debouncedRequest$1 : request$1; - var geometry = params.geometry; - params = clean(setSortMembers(params)); - params = Object.assign({ - rp: 25, - sortname: 'count_all_members', - sortorder: 'desc', - page: 1, - lang: _mainLocalizer.languageCode() - }, params); - var url = _apibase$1 + 'relation/roles?' + utilQsString(params); - doRequest(url, params, true, callback, function (err, d) { - if (err) { - callback(err); - } else { - var f = filterRoles(geometry); - var result = d.data.filter(f).map(roleKey); - _taginfoCache[url] = result; - callback(null, result); - } - }); - }, - docs: function docs(params, callback) { - var doRequest = params.debounce ? debouncedRequest$1 : request$1; - params = clean(setSort(params)); - var path = 'key/wiki_pages?'; + var sequence = { + key: bubble.key, + bubbles: [] + }; + var complete = false; - if (params.value) { - path = 'tag/wiki_pages?'; - } else if (params.rtype) { - path = 'relation/wiki_pages?'; - } + do { + sequence.bubbles.push(bubble); + seen[bubble.key] = true; - var url = _apibase$1 + path + utilQsString(params); - doRequest(url, params, true, callback, function (err, d) { - if (err) { - callback(err); + if (bubble.ne === undefined) { + complete = true; } else { - _taginfoCache[url] = d.data; - callback(null, d.data); + bubble = cache.points[bubble.ne]; // advance to next } - }); - }, - apibase: function apibase(_) { - if (!arguments.length) return _apibase$1; - _apibase$1 = _; - return this; - } - }; - - var helpers$1 = createCommonjsModule(function (module, exports) { - - Object.defineProperty(exports, "__esModule", { - value: true - }); - /** - * @module helpers - */ + } while (bubble && !seen[bubble.key] && !complete); - /** - * Earth Radius used with the Harvesine formula and approximates using a spherical (non-ellipsoid) Earth. - * - * @memberof helpers - * @type {number} - */ + if (complete) { + _ssCache.sequences[sequence.key] = sequence; // assign bubbles to the sequence - exports.earthRadius = 6371008.8; - /** - * Unit of measurement factors using a spherical (non-ellipsoid) earth radius. - * - * @memberof helpers - * @type {Object} - */ + for (var j = 0; j < sequence.bubbles.length; j++) { + sequence.bubbles[j].sequenceKey = sequence.key; + } // create a GeoJSON LineString - exports.factors = { - centimeters: exports.earthRadius * 100, - centimetres: exports.earthRadius * 100, - degrees: exports.earthRadius / 111325, - feet: exports.earthRadius * 3.28084, - inches: exports.earthRadius * 39.370, - kilometers: exports.earthRadius / 1000, - kilometres: exports.earthRadius / 1000, - meters: exports.earthRadius, - metres: exports.earthRadius, - miles: exports.earthRadius / 1609.344, - millimeters: exports.earthRadius * 1000, - millimetres: exports.earthRadius * 1000, - nauticalmiles: exports.earthRadius / 1852, - radians: 1, - yards: exports.earthRadius / 1.0936 - }; - /** - * Units of measurement factors based on 1 meter. - * - * @memberof helpers - * @type {Object} - */ - exports.unitsFactors = { - centimeters: 100, - centimetres: 100, - degrees: 1 / 111325, - feet: 3.28084, - inches: 39.370, - kilometers: 1 / 1000, - kilometres: 1 / 1000, - meters: 1, - metres: 1, - miles: 1 / 1609.344, - millimeters: 1000, - millimetres: 1000, - nauticalmiles: 1 / 1852, - radians: 1 / exports.earthRadius, - yards: 1 / 1.0936 - }; - /** - * Area of measurement factors based on 1 square meter. - * - * @memberof helpers - * @type {Object} - */ + sequence.geojson = { + type: 'LineString', + properties: { + captured_at: sequence.bubbles[0] ? sequence.bubbles[0].captured_at : null, + captured_by: sequence.bubbles[0] ? sequence.bubbles[0].captured_by : null, + key: sequence.key + }, + coordinates: sequence.bubbles.map(function (d) { + return d.loc; + }) + }; + } else { + keepLeaders.push(cache.leaders[i]); + } + } // couldn't complete these, save for later - exports.areaFactors = { - acres: 0.000247105, - centimeters: 10000, - centimetres: 10000, - feet: 10.763910417, - inches: 1550.003100006, - kilometers: 0.000001, - kilometres: 0.000001, - meters: 1, - metres: 1, - miles: 3.86e-7, - millimeters: 1000000, - millimetres: 1000000, - yards: 1.195990046 - }; - /** - * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}. - * - * @name feature - * @param {Geometry} geometry input geometry - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a GeoJSON Feature - * @example - * var geometry = { - * "type": "Point", - * "coordinates": [110, 50] - * }; - * - * var feature = turf.feature(geometry); - * - * //=feature - */ - function feature(geom, properties, options) { - if (options === void 0) { - options = {}; - } + cache.leaders = keepLeaders; + } + /** + * getBubbles() handles the request to the server for a tile extent of 'bubbles' (streetside image locations). + */ - var feat = { - type: "Feature" - }; - if (options.id === 0 || options.id) { - feat.id = options.id; + function getBubbles(url, tile, callback) { + var rect = tile.extent.rectangle(); + var urlForRequest = url + utilQsString({ + n: rect[3], + s: rect[1], + e: rect[2], + w: rect[0], + c: maxResults$2, + appkey: bubbleAppKey, + jsCallback: '{callback}' + }); + return jsonpRequest(urlForRequest, function (data) { + if (!data || data.error) { + callback(null); + } else { + callback(data); } + }); + } // partition viewport into higher zoom tiles - if (options.bbox) { - feat.bbox = options.bbox; - } - feat.properties = properties || {}; - feat.geometry = geom; - return feat; - } + function partitionViewport$2(projection) { + var z = geoScaleToZoom(projection.scale()); + var z2 = Math.ceil(z * 2) / 2 + 2.5; // round to next 0.5 and add 2.5 - exports.feature = feature; - /** - * Creates a GeoJSON {@link Geometry} from a Geometry string type & coordinates. - * For GeometryCollection type use `helpers.geometryCollection` - * - * @name geometry - * @param {string} type Geometry Type - * @param {Array} coordinates Coordinates - * @param {Object} [options={}] Optional Parameters - * @returns {Geometry} a GeoJSON Geometry - * @example - * var type = "Point"; - * var coordinates = [110, 50]; - * var geometry = turf.geometry(type, coordinates); - * // => geometry - */ + var tiler = utilTiler().zoomExtent([z2, z2]); + return tiler.getTiles(projection).map(function (tile) { + return tile.extent; + }); + } // no more than `limit` results per partition. - function geometry(type, coordinates, options) { - switch (type) { - case "Point": - return point(coordinates).geometry; + function searchLimited$2(limit, projection, rtree) { + limit = limit || 5; + return partitionViewport$2(projection).reduce(function (result, extent) { + var found = rtree.search(extent.bbox()).slice(0, limit).map(function (d) { + return d.data; + }); + return found.length ? result.concat(found) : result; + }, []); + } + /** + * loadImage() + */ - case "LineString": - return lineString(coordinates).geometry; - case "Polygon": - return polygon(coordinates).geometry; + function loadImage(imgInfo) { + return new Promise(function (resolve) { + var img = new Image(); - case "MultiPoint": - return multiPoint(coordinates).geometry; + img.onload = function () { + var canvas = document.getElementById('ideditor-canvas' + imgInfo.face); + var ctx = canvas.getContext('2d'); + ctx.drawImage(img, imgInfo.x, imgInfo.y); + resolve({ + imgInfo: imgInfo, + status: 'ok' + }); + }; - case "MultiLineString": - return multiLineString(coordinates).geometry; + img.onerror = function () { + resolve({ + data: imgInfo, + status: 'error' + }); + }; - case "MultiPolygon": - return multiPolygon(coordinates).geometry; + img.setAttribute('crossorigin', ''); + img.src = imgInfo.url; + }); + } + /** + * loadCanvas() + */ - default: - throw new Error(type + " is invalid"); - } - } - exports.geometry = geometry; - /** - * Creates a {@link Point} {@link Feature} from a Position. - * - * @name point - * @param {Array} coordinates longitude, latitude position (each in decimal degrees) - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a Point feature - * @example - * var point = turf.point([-75.343, 39.984]); - * - * //=point - */ + function loadCanvas(imageGroup) { + return Promise.all(imageGroup.map(loadImage)).then(function (data) { + var canvas = document.getElementById('ideditor-canvas' + data[0].imgInfo.face); + var which = { + '01': 0, + '02': 1, + '03': 2, + '10': 3, + '11': 4, + '12': 5 + }; + var face = data[0].imgInfo.face; + _sceneOptions.cubeMap[which[face]] = canvas.toDataURL('image/jpeg', 1.0); + return { + status: 'loadCanvas for face ' + data[0].imgInfo.face + 'ok' + }; + }); + } + /** + * loadFaces() + */ - function point(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } - var geom = { - type: "Point", - coordinates: coordinates + function loadFaces(faceGroup) { + return Promise.all(faceGroup.map(loadCanvas)).then(function () { + return { + status: 'loadFaces done' }; - return feature(geom, properties, options); - } - - exports.point = point; - /** - * Creates a {@link Point} {@link FeatureCollection} from an Array of Point coordinates. - * - * @name points - * @param {Array>} coordinates an array of Points - * @param {Object} [properties={}] Translate these properties to each Feature - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] - * associated with the FeatureCollection - * @param {string|number} [options.id] Identifier associated with the FeatureCollection - * @returns {FeatureCollection} Point Feature - * @example - * var points = turf.points([ - * [-75, 39], - * [-80, 45], - * [-78, 50] - * ]); - * - * //=points - */ + }); + } - function points(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } + function setupCanvas(selection, reset) { + if (reset) { + selection.selectAll('#ideditor-stitcher-canvases').remove(); + } // Add the Streetside working canvases. These are used for 'stitching', or combining, + // multiple images for each of the six faces, before passing to the Pannellum control as DataUrls - return featureCollection(coordinates.map(function (coords) { - return point(coords, properties); - }), options); - } - exports.points = points; - /** - * Creates a {@link Polygon} {@link Feature} from an Array of LinearRings. - * - * @name polygon - * @param {Array>>} coordinates an array of LinearRings - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} Polygon Feature - * @example - * var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' }); - * - * //=polygon - */ + selection.selectAll('#ideditor-stitcher-canvases').data([0]).enter().append('div').attr('id', 'ideditor-stitcher-canvases').attr('display', 'none').selectAll('canvas').data(['canvas01', 'canvas02', 'canvas03', 'canvas10', 'canvas11', 'canvas12']).enter().append('canvas').attr('id', function (d) { + return 'ideditor-' + d; + }).attr('width', _resolution).attr('height', _resolution); + } - function polygon(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } + function qkToXY(qk) { + var x = 0; + var y = 0; + var scale = 256; - for (var _i = 0, coordinates_1 = coordinates; _i < coordinates_1.length; _i++) { - var ring = coordinates_1[_i]; + for (var i = qk.length; i > 0; i--) { + var key = qk[i - 1]; + x += +(key === '1' || key === '3') * scale; + y += +(key === '2' || key === '3') * scale; + scale *= 2; + } - if (ring.length < 4) { - throw new Error("Each LinearRing of a Polygon must have 4 or more Positions."); - } + return [x, y]; + } - for (var j = 0; j < ring[ring.length - 1].length; j++) { - // Check if first point of Polygon contains two numbers - if (ring[ring.length - 1][j] !== ring[0][j]) { - throw new Error("First and last Position are not equivalent."); - } - } - } + function getQuadKeys() { + var dim = _resolution / 256; + var quadKeys; - var geom = { - type: "Polygon", - coordinates: coordinates - }; - return feature(geom, properties, options); + if (dim === 16) { + quadKeys = ['0000', '0001', '0010', '0011', '0100', '0101', '0110', '0111', '1000', '1001', '1010', '1011', '1100', '1101', '1110', '1111', '0002', '0003', '0012', '0013', '0102', '0103', '0112', '0113', '1002', '1003', '1012', '1013', '1102', '1103', '1112', '1113', '0020', '0021', '0030', '0031', '0120', '0121', '0130', '0131', '1020', '1021', '1030', '1031', '1120', '1121', '1130', '1131', '0022', '0023', '0032', '0033', '0122', '0123', '0132', '0133', '1022', '1023', '1032', '1033', '1122', '1123', '1132', '1133', '0200', '0201', '0210', '0211', '0300', '0301', '0310', '0311', '1200', '1201', '1210', '1211', '1300', '1301', '1310', '1311', '0202', '0203', '0212', '0213', '0302', '0303', '0312', '0313', '1202', '1203', '1212', '1213', '1302', '1303', '1312', '1313', '0220', '0221', '0230', '0231', '0320', '0321', '0330', '0331', '1220', '1221', '1230', '1231', '1320', '1321', '1330', '1331', '0222', '0223', '0232', '0233', '0322', '0323', '0332', '0333', '1222', '1223', '1232', '1233', '1322', '1323', '1332', '1333', '2000', '2001', '2010', '2011', '2100', '2101', '2110', '2111', '3000', '3001', '3010', '3011', '3100', '3101', '3110', '3111', '2002', '2003', '2012', '2013', '2102', '2103', '2112', '2113', '3002', '3003', '3012', '3013', '3102', '3103', '3112', '3113', '2020', '2021', '2030', '2031', '2120', '2121', '2130', '2131', '3020', '3021', '3030', '3031', '3120', '3121', '3130', '3131', '2022', '2023', '2032', '2033', '2122', '2123', '2132', '2133', '3022', '3023', '3032', '3033', '3122', '3123', '3132', '3133', '2200', '2201', '2210', '2211', '2300', '2301', '2310', '2311', '3200', '3201', '3210', '3211', '3300', '3301', '3310', '3311', '2202', '2203', '2212', '2213', '2302', '2303', '2312', '2313', '3202', '3203', '3212', '3213', '3302', '3303', '3312', '3313', '2220', '2221', '2230', '2231', '2320', '2321', '2330', '2331', '3220', '3221', '3230', '3231', '3320', '3321', '3330', '3331', '2222', '2223', '2232', '2233', '2322', '2323', '2332', '2333', '3222', '3223', '3232', '3233', '3322', '3323', '3332', '3333']; + } else if (dim === 8) { + quadKeys = ['000', '001', '010', '011', '100', '101', '110', '111', '002', '003', '012', '013', '102', '103', '112', '113', '020', '021', '030', '031', '120', '121', '130', '131', '022', '023', '032', '033', '122', '123', '132', '133', '200', '201', '210', '211', '300', '301', '310', '311', '202', '203', '212', '213', '302', '303', '312', '313', '220', '221', '230', '231', '320', '321', '330', '331', '222', '223', '232', '233', '322', '323', '332', '333']; + } else if (dim === 4) { + quadKeys = ['00', '01', '10', '11', '02', '03', '12', '13', '20', '21', '30', '31', '22', '23', '32', '33']; + } else { + // dim === 2 + quadKeys = ['0', '1', '2', '3']; } - exports.polygon = polygon; + return quadKeys; + } + + var serviceStreetside = { /** - * Creates a {@link Polygon} {@link FeatureCollection} from an Array of Polygon coordinates. - * - * @name polygons - * @param {Array>>>} coordinates an array of Polygon coordinates - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the FeatureCollection - * @returns {FeatureCollection} Polygon FeatureCollection - * @example - * var polygons = turf.polygons([ - * [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], - * [[[-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42]]], - * ]); - * - * //=polygons + * init() initialize streetside. */ - - function polygons(coordinates, properties, options) { - if (options === void 0) { - options = {}; + init: function init() { + if (!_ssCache) { + this.reset(); } - return featureCollection(coordinates.map(function (coords) { - return polygon(coords, properties); - }), options); - } + this.event = utilRebind(this, dispatch$7, 'on'); + }, - exports.polygons = polygons; /** - * Creates a {@link LineString} {@link Feature} from an Array of Positions. - * - * @name lineString - * @param {Array>} coordinates an array of Positions - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} LineString Feature - * @example - * var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'}); - * var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'}); - * - * //=linestring1 - * //=linestring2 + * reset() reset the cache. */ - - function lineString(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } - - if (coordinates.length < 2) { - throw new Error("coordinates must be an array of two or more positions"); + reset: function reset() { + if (_ssCache) { + Object.values(_ssCache.bubbles.inflight).forEach(abortRequest$6); } - var geom = { - type: "LineString", - coordinates: coordinates + _ssCache = { + bubbles: { + inflight: {}, + loaded: {}, + nextPage: {}, + rtree: new RBush(), + points: {}, + leaders: [] + }, + sequences: {} }; - return feature(geom, properties, options); - } + }, - exports.lineString = lineString; /** - * Creates a {@link LineString} {@link FeatureCollection} from an Array of LineString coordinates. - * - * @name lineStrings - * @param {Array>>} coordinates an array of LinearRings - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] - * associated with the FeatureCollection - * @param {string|number} [options.id] Identifier associated with the FeatureCollection - * @returns {FeatureCollection} LineString FeatureCollection - * @example - * var linestrings = turf.lineStrings([ - * [[-24, 63], [-23, 60], [-25, 65], [-20, 69]], - * [[-14, 43], [-13, 40], [-15, 45], [-10, 49]] - * ]); - * - * //=linestrings + * bubbles() */ + bubbles: function bubbles(projection) { + var limit = 5; + return searchLimited$2(limit, projection, _ssCache.bubbles.rtree); + }, + cachedImage: function cachedImage(imageKey) { + return _ssCache.bubbles.points[imageKey]; + }, + sequences: function sequences(projection) { + var viewport = projection.clipExtent(); + var min = [viewport[0][0], viewport[1][1]]; + var max = [viewport[1][0], viewport[0][1]]; + var bbox = geoExtent(projection.invert(min), projection.invert(max)).bbox(); + var seen = {}; + var results = []; // all sequences for bubbles in viewport - function lineStrings(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } + _ssCache.bubbles.rtree.search(bbox).forEach(function (d) { + var key = d.data.sequenceKey; - return featureCollection(coordinates.map(function (coords) { - return lineString(coords, properties); - }), options); - } + if (key && !seen[key]) { + seen[key] = true; + results.push(_ssCache.sequences[key].geojson); + } + }); + + return results; + }, - exports.lineStrings = lineStrings; /** - * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}. - * - * @name featureCollection - * @param {Feature[]} features input features - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {FeatureCollection} FeatureCollection of Features - * @example - * var locationA = turf.point([-75.343, 39.984], {name: 'Location A'}); - * var locationB = turf.point([-75.833, 39.284], {name: 'Location B'}); - * var locationC = turf.point([-75.534, 39.123], {name: 'Location C'}); - * - * var collection = turf.featureCollection([ - * locationA, - * locationB, - * locationC - * ]); - * - * //=collection + * loadBubbles() */ + loadBubbles: function loadBubbles(projection, margin) { + // by default: request 2 nearby tiles so we can connect sequences. + if (margin === undefined) margin = 2; + loadTiles$2('bubbles', bubbleApi, projection, margin); + }, + viewer: function viewer() { + return _pannellumViewer; + }, + initViewer: function initViewer() { + if (!window.pannellum) return; + if (_pannellumViewer) return; + _currScene += 1; - function featureCollection(features, options) { - if (options === void 0) { - options = {}; - } + var sceneID = _currScene.toString(); - var fc = { - type: "FeatureCollection" + var options = { + 'default': { + firstScene: sceneID + }, + scenes: {} }; + options.scenes[sceneID] = _sceneOptions; + _pannellumViewer = window.pannellum.viewer('ideditor-viewer-streetside', options); + }, + ensureViewerLoaded: function ensureViewerLoaded(context) { + if (_loadViewerPromise$2) return _loadViewerPromise$2; // create ms-wrapper, a photo wrapper class - if (options.id) { - fc.id = options.id; - } - - if (options.bbox) { - fc.bbox = options.bbox; - } + var wrap = context.container().select('.photoviewer').selectAll('.ms-wrapper').data([0]); // inject ms-wrapper into the photoviewer div + // (used by all to house each custom photo viewer) - fc.features = features; - return fc; - } + var wrapEnter = wrap.enter().append('div').attr('class', 'photo-wrapper ms-wrapper').classed('hide', true); + var that = this; + var pointerPrefix = 'PointerEvent' in window ? 'pointer' : 'mouse'; // inject div to support streetside viewer (pannellum) and attribution line - exports.featureCollection = featureCollection; - /** - * Creates a {@link Feature} based on a - * coordinate array. Properties can be added optionally. - * - * @name multiLineString - * @param {Array>>} coordinates an array of LineStrings - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a MultiLineString feature - * @throws {Error} if no coordinates are passed - * @example - * var multiLine = turf.multiLineString([[[0,0],[10,10]]]); - * - * //=multiLine - */ + wrapEnter.append('div').attr('id', 'ideditor-viewer-streetside').on(pointerPrefix + 'down.streetside', function () { + select(window).on(pointerPrefix + 'move.streetside', function () { + dispatch$7.call('viewerChanged'); + }, true); + }).on(pointerPrefix + 'up.streetside pointercancel.streetside', function () { + select(window).on(pointerPrefix + 'move.streetside', null); // continue dispatching events for a few seconds, in case viewer has inertia. - function multiLineString(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } + var t = timer(function (elapsed) { + dispatch$7.call('viewerChanged'); - var geom = { - type: "MultiLineString", - coordinates: coordinates - }; - return feature(geom, properties, options); - } + if (elapsed > 2000) { + t.stop(); + } + }); + }).append('div').attr('class', 'photo-attribution fillD'); + var controlsEnter = wrapEnter.append('div').attr('class', 'photo-controls-wrap').append('div').attr('class', 'photo-controls'); + controlsEnter.append('button').on('click.back', step(-1)).html('◄'); + controlsEnter.append('button').on('click.forward', step(1)).html('►'); // create working canvas for stitching together images - exports.multiLineString = multiLineString; - /** - * Creates a {@link Feature} based on a - * coordinate array. Properties can be added optionally. - * - * @name multiPoint - * @param {Array>} coordinates an array of Positions - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a MultiPoint feature - * @throws {Error} if no coordinates are passed - * @example - * var multiPt = turf.multiPoint([[0,0],[10,10]]); - * - * //=multiPt - */ + wrap = wrap.merge(wrapEnter).call(setupCanvas, true); // Register viewer resize handler - function multiPoint(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } + context.ui().photoviewer.on('resize.streetside', function () { + if (_pannellumViewer) { + _pannellumViewer.resize(); + } + }); + _loadViewerPromise$2 = new Promise(function (resolve, reject) { + var loadedCount = 0; - var geom = { - type: "MultiPoint", - coordinates: coordinates - }; - return feature(geom, properties, options); - } + function loaded() { + loadedCount += 1; // wait until both files are loaded - exports.multiPoint = multiPoint; - /** - * Creates a {@link Feature} based on a - * coordinate array. Properties can be added optionally. - * - * @name multiPolygon - * @param {Array>>>} coordinates an array of Polygons - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a multipolygon feature - * @throws {Error} if no coordinates are passed - * @example - * var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); - * - * //=multiPoly - * - */ + if (loadedCount === 2) resolve(); + } - function multiPolygon(coordinates, properties, options) { - if (options === void 0) { - options = {}; - } + var head = select('head'); // load streetside pannellum viewer css - var geom = { - type: "MultiPolygon", - coordinates: coordinates - }; - return feature(geom, properties, options); - } + head.selectAll('#ideditor-streetside-viewercss').data([0]).enter().append('link').attr('id', 'ideditor-streetside-viewercss').attr('rel', 'stylesheet').attr('crossorigin', 'anonymous').attr('href', context.asset(pannellumViewerCSS)).on('load.serviceStreetside', loaded).on('error.serviceStreetside', function () { + reject(); + }); // load streetside pannellum viewer js - exports.multiPolygon = multiPolygon; - /** - * Creates a {@link Feature} based on a - * coordinate array. Properties can be added optionally. - * - * @name geometryCollection - * @param {Array} geometries an array of GeoJSON Geometries - * @param {Object} [properties={}] an Object of key-value pairs to add as properties - * @param {Object} [options={}] Optional Parameters - * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature - * @param {string|number} [options.id] Identifier associated with the Feature - * @returns {Feature} a GeoJSON GeometryCollection Feature - * @example - * var pt = turf.geometry("Point", [100, 0]); - * var line = turf.geometry("LineString", [[101, 0], [102, 1]]); - * var collection = turf.geometryCollection([pt, line]); - * - * // => collection - */ + head.selectAll('#ideditor-streetside-viewerjs').data([0]).enter().append('script').attr('id', 'ideditor-streetside-viewerjs').attr('crossorigin', 'anonymous').attr('src', context.asset(pannellumViewerJS)).on('load.serviceStreetside', loaded).on('error.serviceStreetside', function () { + reject(); + }); + })["catch"](function () { + _loadViewerPromise$2 = null; + }); + return _loadViewerPromise$2; - function geometryCollection(geometries, properties, options) { - if (options === void 0) { - options = {}; - } + function step(stepBy) { + return function () { + var viewer = context.container().select('.photoviewer'); + var selected = viewer.empty() ? undefined : viewer.datum(); + if (!selected) return; + var nextID = stepBy === 1 ? selected.ne : selected.pr; - var geom = { - type: "GeometryCollection", - geometries: geometries - }; - return feature(geom, properties, options); - } + var yaw = _pannellumViewer.getYaw(); - exports.geometryCollection = geometryCollection; - /** - * Round number to precision - * - * @param {number} num Number - * @param {number} [precision=0] Precision - * @returns {number} rounded number - * @example - * turf.round(120.4321) - * //=120 - * - * turf.round(120.4321, 2) - * //=120.43 - */ + var ca = selected.ca + yaw; + var origin = selected.loc; // construct a search trapezoid pointing out from current bubble - function round(num, precision) { - if (precision === void 0) { - precision = 0; - } + var meters = 35; + var p1 = [origin[0] + geoMetersToLon(meters / 5, origin[1]), origin[1]]; + var p2 = [origin[0] + geoMetersToLon(meters / 2, origin[1]), origin[1] + geoMetersToLat(meters)]; + var p3 = [origin[0] - geoMetersToLon(meters / 2, origin[1]), origin[1] + geoMetersToLat(meters)]; + var p4 = [origin[0] - geoMetersToLon(meters / 5, origin[1]), origin[1]]; + var poly = [p1, p2, p3, p4, p1]; // rotate it to face forward/backward - if (precision && !(precision >= 0)) { - throw new Error("precision must be a positive number"); - } + var angle = (stepBy === 1 ? ca : ca + 180) * (Math.PI / 180); + poly = geoRotate(poly, -angle, origin); + var extent = poly.reduce(function (extent, point) { + return extent.extend(geoExtent(point)); + }, geoExtent()); // find nearest other bubble in the search polygon - var multiplier = Math.pow(10, precision || 0); - return Math.round(num * multiplier) / multiplier; - } + var minDist = Infinity; - exports.round = round; - /** - * Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit. - * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet - * - * @name radiansToLength - * @param {number} radians in radians across the sphere - * @param {string} [units="kilometers"] can be degrees, radians, miles, or kilometers inches, yards, metres, - * meters, kilometres, kilometers. - * @returns {number} distance - */ + _ssCache.bubbles.rtree.search(extent.bbox()).forEach(function (d) { + if (d.data.key === selected.key) return; + if (!geoPointInPolygon(d.data.loc, poly)) return; + var dist = geoVecLength(d.data.loc, selected.loc); + var theta = selected.ca - d.data.ca; + var minTheta = Math.min(Math.abs(theta), 360 - Math.abs(theta)); - function radiansToLength(radians, units) { - if (units === void 0) { - units = "kilometers"; - } + if (minTheta > 20) { + dist += 5; // penalize distance if camera angles don't match + } - var factor = exports.factors[units]; + if (dist < minDist) { + nextID = d.data.key; + minDist = dist; + } + }); - if (!factor) { - throw new Error(units + " units is invalid"); + var nextBubble = nextID && that.cachedImage(nextID); + if (!nextBubble) return; + context.map().centerEase(nextBubble.loc); + that.selectImage(context, nextBubble.key).yaw(yaw).showViewer(context); + }; } + }, + yaw: function yaw(_yaw) { + if (typeof _yaw !== 'number') return _yaw; + _sceneOptions.yaw = _yaw; + return this; + }, - return radians * factor; - } - - exports.radiansToLength = radiansToLength; /** - * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians - * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet - * - * @name lengthToRadians - * @param {number} distance in real units - * @param {string} [units="kilometers"] can be degrees, radians, miles, or kilometers inches, yards, metres, - * meters, kilometres, kilometers. - * @returns {number} radians + * showViewer() */ + showViewer: function showViewer(context) { + var wrap = context.container().select('.photoviewer').classed('hide', false); + var isHidden = wrap.selectAll('.photo-wrapper.ms-wrapper.hide').size(); - function lengthToRadians(distance, units) { - if (units === void 0) { - units = "kilometers"; - } - - var factor = exports.factors[units]; - - if (!factor) { - throw new Error(units + " units is invalid"); + if (isHidden) { + wrap.selectAll('.photo-wrapper:not(.ms-wrapper)').classed('hide', true); + wrap.selectAll('.photo-wrapper.ms-wrapper').classed('hide', false); } - return distance / factor; - } + return this; + }, - exports.lengthToRadians = lengthToRadians; /** - * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees - * Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet - * - * @name lengthToDegrees - * @param {number} distance in real units - * @param {string} [units="kilometers"] can be degrees, radians, miles, or kilometers inches, yards, metres, - * meters, kilometres, kilometers. - * @returns {number} degrees + * hideViewer() */ + hideViewer: function hideViewer(context) { + var viewer = context.container().select('.photoviewer'); + if (!viewer.empty()) viewer.datum(null); + viewer.classed('hide', true).selectAll('.photo-wrapper').classed('hide', true); + context.container().selectAll('.viewfield-group, .sequence, .icon-sign').classed('currentView', false); + this.updateUrlImage(null); + return this.setStyles(context, null, true); + }, - function lengthToDegrees(distance, units) { - return radiansToDegrees(lengthToRadians(distance, units)); - } - - exports.lengthToDegrees = lengthToDegrees; /** - * Converts any bearing angle from the north line direction (positive clockwise) - * and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line - * - * @name bearingToAzimuth - * @param {number} bearing angle, between -180 and +180 degrees - * @returns {number} angle between 0 and 360 degrees + * selectImage(). */ + selectImage: function selectImage(context, key) { + var that = this; + var d = this.cachedImage(key); + var viewer = context.container().select('.photoviewer'); + if (!viewer.empty()) viewer.datum(d); + this.setStyles(context, null, true); + var wrap = context.container().select('.photoviewer .ms-wrapper'); + var attribution = wrap.selectAll('.photo-attribution').html(''); + wrap.selectAll('.pnlm-load-box') // display "loading.." + .style('display', 'block'); + if (!d) return this; + this.updateUrlImage(key); + _sceneOptions.northOffset = d.ca; + var line1 = attribution.append('div').attr('class', 'attribution-row'); + var hiresDomId = utilUniqueDomId('streetside-hires'); // Add hires checkbox - function bearingToAzimuth(bearing) { - var angle = bearing % 360; + var label = line1.append('label').attr('for', hiresDomId).attr('class', 'streetside-hires'); + label.append('input').attr('type', 'checkbox').attr('id', hiresDomId).property('checked', _hires).on('click', function (d3_event) { + d3_event.stopPropagation(); + _hires = !_hires; + _resolution = _hires ? 1024 : 512; + wrap.call(setupCanvas, true); + var viewstate = { + yaw: _pannellumViewer.getYaw(), + pitch: _pannellumViewer.getPitch(), + hfov: _pannellumViewer.getHfov() + }; + _sceneOptions = Object.assign(_sceneOptions, viewstate); + that.selectImage(context, d.key).showViewer(context); + }); + label.append('span').html(_t.html('streetside.hires')); + var captureInfo = line1.append('div').attr('class', 'attribution-capture-info'); // Add capture date - if (angle < 0) { - angle += 360; + if (d.captured_by) { + var yyyy = new Date().getFullYear(); + captureInfo.append('a').attr('class', 'captured_by').attr('target', '_blank').attr('href', 'https://www.microsoft.com/en-us/maps/streetside').html('©' + yyyy + ' Microsoft'); + captureInfo.append('span').html('|'); } - return angle; - } - - exports.bearingToAzimuth = bearingToAzimuth; - /** - * Converts an angle in radians to degrees - * - * @name radiansToDegrees - * @param {number} radians angle in radians - * @returns {number} degrees between 0 and 360 degrees - */ + if (d.captured_at) { + captureInfo.append('span').attr('class', 'captured_at').html(localeTimestamp(d.captured_at)); + } // Add image links - function radiansToDegrees(radians) { - var degrees = radians % (2 * Math.PI); - return degrees * 180 / Math.PI; - } - exports.radiansToDegrees = radiansToDegrees; - /** - * Converts an angle in degrees to radians - * - * @name degreesToRadians - * @param {number} degrees angle between 0 and 360 degrees - * @returns {number} angle in radians - */ + var line2 = attribution.append('div').attr('class', 'attribution-row'); + line2.append('a').attr('class', 'image-view-link').attr('target', '_blank').attr('href', 'https://www.bing.com/maps?cp=' + d.loc[1] + '~' + d.loc[0] + '&lvl=17&dir=' + d.ca + '&style=x&v=2&sV=1').html(_t.html('streetside.view_on_bing')); + line2.append('a').attr('class', 'image-report-link').attr('target', '_blank').attr('href', 'https://www.bing.com/maps/privacyreport/streetsideprivacyreport?bubbleid=' + encodeURIComponent(d.key) + '&focus=photo&lat=' + d.loc[1] + '&lng=' + d.loc[0] + '&z=17').html(_t.html('streetside.report')); + var bubbleIdQuadKey = d.key.toString(4); + var paddingNeeded = 16 - bubbleIdQuadKey.length; - function degreesToRadians(degrees) { - var radians = degrees % 360; - return radians * Math.PI / 180; - } + for (var i = 0; i < paddingNeeded; i++) { + bubbleIdQuadKey = '0' + bubbleIdQuadKey; + } - exports.degreesToRadians = degreesToRadians; - /** - * Converts a length to the requested unit. - * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet - * - * @param {number} length to be converted - * @param {Units} [originalUnit="kilometers"] of the length - * @param {Units} [finalUnit="kilometers"] returned unit - * @returns {number} the converted length - */ + var imgUrlPrefix = streetsideImagesApi + 'hs' + bubbleIdQuadKey; + var imgUrlSuffix = '.jpg?g=6338&n=z'; // Cubemap face code order matters here: front=01, right=02, back=03, left=10, up=11, down=12 - function convertLength(length, originalUnit, finalUnit) { - if (originalUnit === void 0) { - originalUnit = "kilometers"; - } + var faceKeys = ['01', '02', '03', '10', '11', '12']; // Map images to cube faces - if (finalUnit === void 0) { - finalUnit = "kilometers"; - } + var quadKeys = getQuadKeys(); + var faces = faceKeys.map(function (faceKey) { + return quadKeys.map(function (quadKey) { + var xy = qkToXY(quadKey); + return { + face: faceKey, + url: imgUrlPrefix + faceKey + quadKey + imgUrlSuffix, + x: xy[0], + y: xy[1] + }; + }); + }); + loadFaces(faces).then(function () { + if (!_pannellumViewer) { + that.initViewer(); + } else { + // make a new scene + _currScene += 1; - if (!(length >= 0)) { - throw new Error("length must be a positive number"); - } + var sceneID = _currScene.toString(); - return radiansToLength(lengthToRadians(length, originalUnit), finalUnit); - } + _pannellumViewer.addScene(sceneID, _sceneOptions).loadScene(sceneID); // remove previous scene - exports.convertLength = convertLength; - /** - * Converts a area to the requested unit. - * Valid units: kilometers, kilometres, meters, metres, centimetres, millimeters, acres, miles, yards, feet, inches - * @param {number} area to be converted - * @param {Units} [originalUnit="meters"] of the distance - * @param {Units} [finalUnit="kilometers"] returned unit - * @returns {number} the converted distance - */ - function convertArea(area, originalUnit, finalUnit) { - if (originalUnit === void 0) { - originalUnit = "meters"; - } + if (_currScene > 2) { + sceneID = (_currScene - 1).toString(); - if (finalUnit === void 0) { - finalUnit = "kilometers"; + _pannellumViewer.removeScene(sceneID); + } + } + }); + return this; + }, + getSequenceKeyForBubble: function getSequenceKeyForBubble(d) { + return d && d.sequenceKey; + }, + // Updates the currently highlighted sequence and selected bubble. + // Reset is only necessary when interacting with the viewport because + // this implicitly changes the currently selected bubble/sequence + setStyles: function setStyles(context, hovered, reset) { + if (reset) { + // reset all layers + context.container().selectAll('.viewfield-group').classed('highlighted', false).classed('hovered', false).classed('currentView', false); + context.container().selectAll('.sequence').classed('highlighted', false).classed('currentView', false); } - if (!(area >= 0)) { - throw new Error("area must be a positive number"); - } + var hoveredBubbleKey = hovered && hovered.key; + var hoveredSequenceKey = this.getSequenceKeyForBubble(hovered); + var hoveredSequence = hoveredSequenceKey && _ssCache.sequences[hoveredSequenceKey]; + var hoveredBubbleKeys = hoveredSequence && hoveredSequence.bubbles.map(function (d) { + return d.key; + }) || []; + var viewer = context.container().select('.photoviewer'); + var selected = viewer.empty() ? undefined : viewer.datum(); + var selectedBubbleKey = selected && selected.key; + var selectedSequenceKey = this.getSequenceKeyForBubble(selected); + var selectedSequence = selectedSequenceKey && _ssCache.sequences[selectedSequenceKey]; + var selectedBubbleKeys = selectedSequence && selectedSequence.bubbles.map(function (d) { + return d.key; + }) || []; // highlight sibling viewfields on either the selected or the hovered sequences - var startFactor = exports.areaFactors[originalUnit]; + var highlightedBubbleKeys = utilArrayUnion(hoveredBubbleKeys, selectedBubbleKeys); + context.container().selectAll('.layer-streetside-images .viewfield-group').classed('highlighted', function (d) { + return highlightedBubbleKeys.indexOf(d.key) !== -1; + }).classed('hovered', function (d) { + return d.key === hoveredBubbleKey; + }).classed('currentView', function (d) { + return d.key === selectedBubbleKey; + }); + context.container().selectAll('.layer-streetside-images .sequence').classed('highlighted', function (d) { + return d.properties.key === hoveredSequenceKey; + }).classed('currentView', function (d) { + return d.properties.key === selectedSequenceKey; + }); // update viewfields if needed - if (!startFactor) { - throw new Error("invalid original units"); - } + context.container().selectAll('.viewfield-group .viewfield').attr('d', viewfieldPath); - var finalFactor = exports.areaFactors[finalUnit]; + function viewfieldPath() { + var d = this.parentNode.__data__; - if (!finalFactor) { - throw new Error("invalid final units"); + if (d.pano && d.key !== selectedBubbleKey) { + return 'M 8,13 m -10,0 a 10,10 0 1,0 20,0 a 10,10 0 1,0 -20,0'; + } else { + return 'M 6,9 C 8,8.4 8,8.4 10,9 L 16,-2 C 12,-5 4,-5 0,-2 z'; + } } - return area / startFactor * finalFactor; - } + return this; + }, + updateUrlImage: function updateUrlImage(imageKey) { + if (!window.mocha) { + var hash = utilStringQs(window.location.hash); - exports.convertArea = convertArea; - /** - * isNumber - * - * @param {*} num Number to validate - * @returns {boolean} true/false - * @example - * turf.isNumber(123) - * //=true - * turf.isNumber('foo') - * //=false - */ + if (imageKey) { + hash.photo = 'streetside/' + imageKey; + } else { + delete hash.photo; + } - function isNumber(num) { - return !isNaN(num) && num !== null && !Array.isArray(num) && !/^\s*$/.test(num); - } + window.location.replace('#' + utilQsString(hash, true)); + } + }, - exports.isNumber = isNumber; /** - * isObject - * - * @param {*} input variable to validate - * @returns {boolean} true/false - * @example - * turf.isObject({elevation: 10}) - * //=true - * turf.isObject('foo') - * //=false + * cache(). */ - - function isObject(input) { - return !!input && input.constructor === Object; + cache: function cache() { + return _ssCache; } + }; - exports.isObject = isObject; - /** - * Validate BBox - * - * @private - * @param {Array} bbox BBox to validate - * @returns {void} - * @throws Error if BBox is not valid - * @example - * validateBBox([-180, -40, 110, 50]) - * //=OK - * validateBBox([-180, -40]) - * //=Error - * validateBBox('Foo') - * //=Error - * validateBBox(5) - * //=Error - * validateBBox(null) - * //=Error - * validateBBox(undefined) - * //=Error - */ + var _apibase$1 = 'https://taginfo.openstreetmap.org/api/4/'; + var _inflight$2 = {}; + var _popularKeys = {}; + var _taginfoCache = {}; + var tag_sorts = { + point: 'count_nodes', + vertex: 'count_nodes', + area: 'count_ways', + line: 'count_ways' + }; + var tag_sort_members = { + point: 'count_node_members', + vertex: 'count_node_members', + area: 'count_way_members', + line: 'count_way_members', + relation: 'count_relation_members' + }; + var tag_filters = { + point: 'nodes', + vertex: 'nodes', + area: 'ways', + line: 'ways' + }; + var tag_members_fractions = { + point: 'count_node_members_fraction', + vertex: 'count_node_members_fraction', + area: 'count_way_members_fraction', + line: 'count_way_members_fraction', + relation: 'count_relation_members_fraction' + }; - function validateBBox(bbox) { - if (!bbox) { - throw new Error("bbox is required"); - } + function sets(params, n, o) { + if (params.geometry && o[params.geometry]) { + params[n] = o[params.geometry]; + } - if (!Array.isArray(bbox)) { - throw new Error("bbox must be an Array"); - } + return params; + } - if (bbox.length !== 4 && bbox.length !== 6) { - throw new Error("bbox must be an Array of 4 or 6 numbers"); - } + function setFilter(params) { + return sets(params, 'filter', tag_filters); + } - bbox.forEach(function (num) { - if (!isNumber(num)) { - throw new Error("bbox must only contain numbers"); - } - }); - } + function setSort(params) { + return sets(params, 'sortname', tag_sorts); + } - exports.validateBBox = validateBBox; - /** - * Validate Id - * - * @private - * @param {string|number} id Id to validate - * @returns {void} - * @throws Error if Id is not valid - * @example - * validateId([-180, -40, 110, 50]) - * //=Error - * validateId([-180, -40]) - * //=Error - * validateId('Foo') - * //=OK - * validateId(5) - * //=OK - * validateId(null) - * //=Error - * validateId(undefined) - * //=Error - */ + function setSortMembers(params) { + return sets(params, 'sortname', tag_sort_members); + } - function validateId(id) { - if (!id) { - throw new Error("id is required"); - } + function clean(params) { + return utilObjectOmit(params, ['geometry', 'debounce']); + } - if (["string", "number"].indexOf(_typeof(id)) === -1) { - throw new Error("id must be a number or a string"); - } - } + function filterKeys(type) { + var count_type = type ? 'count_' + type : 'count_all'; + return function (d) { + return parseFloat(d[count_type]) > 2500 || d.in_wiki; + }; + } - exports.validateId = validateId; // Deprecated methods + function filterMultikeys(prefix) { + return function (d) { + // d.key begins with prefix, and d.key contains no additional ':'s + var re = new RegExp('^' + prefix + '(.*)$'); + var matches = d.key.match(re) || []; + return matches.length === 2 && matches[1].indexOf(':') === -1; + }; + } - function radians2degrees() { - throw new Error("method has been renamed to `radiansToDegrees`"); - } + function filterValues(allowUpperCase) { + return function (d) { + if (d.value.match(/[;,]/) !== null) return false; // exclude some punctuation - exports.radians2degrees = radians2degrees; + if (!allowUpperCase && d.value.match(/[A-Z*]/) !== null) return false; // exclude uppercase letters - function degrees2radians() { - throw new Error("method has been renamed to `degreesToRadians`"); - } + return parseFloat(d.fraction) > 0.0; + }; + } - exports.degrees2radians = degrees2radians; + function filterRoles(geometry) { + return function (d) { + if (d.role === '') return false; // exclude empty role - function distanceToDegrees() { - throw new Error("method has been renamed to `lengthToDegrees`"); - } + if (d.role.match(/[A-Z*;,]/) !== null) return false; // exclude uppercase letters and some punctuation - exports.distanceToDegrees = distanceToDegrees; + return parseFloat(d[tag_members_fractions[geometry]]) > 0.0; + }; + } - function distanceToRadians() { - throw new Error("method has been renamed to `lengthToRadians`"); - } + function valKey(d) { + return { + value: d.key, + title: d.key + }; + } - exports.distanceToRadians = distanceToRadians; + function valKeyDescription(d) { + var obj = { + value: d.value, + title: d.description || d.value + }; - function radiansToDistance() { - throw new Error("method has been renamed to `radiansToLength`"); + if (d.count) { + obj.count = d.count; } - exports.radiansToDistance = radiansToDistance; + return obj; + } - function bearingToAngle() { - throw new Error("method has been renamed to `bearingToAzimuth`"); - } + function roleKey(d) { + return { + value: d.role, + title: d.role + }; + } // sort keys with ':' lower than keys without ':' - exports.bearingToAngle = bearingToAngle; - function convertDistance() { - throw new Error("method has been renamed to `convertLength`"); - } + function sortKeys(a, b) { + return a.key.indexOf(':') === -1 && b.key.indexOf(':') !== -1 ? -1 : a.key.indexOf(':') !== -1 && b.key.indexOf(':') === -1 ? 1 : 0; + } - exports.convertDistance = convertDistance; + var debouncedRequest$1 = debounce(request$1, 300, { + leading: false }); - var invariant = createCommonjsModule(function (module, exports) { - - Object.defineProperty(exports, "__esModule", { - value: true + function request$1(url, params, exactMatch, callback, loaded) { + if (_inflight$2[url]) return; + if (checkCache(url, params, exactMatch, callback)) return; + var controller = new AbortController(); + _inflight$2[url] = controller; + d3_json(url, { + signal: controller.signal + }).then(function (result) { + delete _inflight$2[url]; + if (loaded) loaded(null, result); + })["catch"](function (err) { + delete _inflight$2[url]; + if (err.name === 'AbortError') return; + if (loaded) loaded(err.message); }); - /** - * Unwrap a coordinate from a Point Feature, Geometry or a single coordinate. - * - * @name getCoord - * @param {Array|Geometry|Feature} coord GeoJSON Point or an Array of numbers - * @returns {Array} coordinates - * @example - * var pt = turf.point([10, 10]); - * - * var coord = turf.getCoord(pt); - * //= [10, 10] - */ + } - function getCoord(coord) { - if (!coord) { - throw new Error("coord is required"); - } + function checkCache(url, params, exactMatch, callback) { + var rp = params.rp || 25; + var testQuery = params.query || ''; + var testUrl = url; - if (!Array.isArray(coord)) { - if (coord.type === "Feature" && coord.geometry !== null && coord.geometry.type === "Point") { - return coord.geometry.coordinates; - } + do { + var hit = _taginfoCache[testUrl]; // exact match, or shorter match yielding fewer than max results (rp) - if (coord.type === "Point") { - return coord.coordinates; - } - } + if (hit && (url === testUrl || hit.length < rp)) { + callback(null, hit); + return true; + } // don't try to shorten the query - if (Array.isArray(coord) && coord.length >= 2 && !Array.isArray(coord[0]) && !Array.isArray(coord[1])) { - return coord; - } - throw new Error("coord must be GeoJSON Point or an Array of numbers"); - } + if (exactMatch || !testQuery.length) return false; // do shorten the query to see if we already have a cached result + // that has returned fewer than max results (rp) - exports.getCoord = getCoord; - /** - * Unwrap coordinates from a Feature, Geometry Object or an Array - * - * @name getCoords - * @param {Array|Geometry|Feature} coords Feature, Geometry Object or an Array - * @returns {Array} coordinates - * @example - * var poly = turf.polygon([[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]); - * - * var coords = turf.getCoords(poly); - * //= [[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]] - */ + testQuery = testQuery.slice(0, -1); + testUrl = url.replace(/&query=(.*?)&/, '&query=' + testQuery + '&'); + } while (testQuery.length >= 0); - function getCoords(coords) { - if (Array.isArray(coords)) { - return coords; - } // Feature + return false; + } + + var serviceTaginfo = { + init: function init() { + _inflight$2 = {}; + _taginfoCache = {}; + _popularKeys = { + // manually exclude some keys – #5377, #7485 + postal_code: true, + full_name: true, + loc_name: true, + reg_name: true, + short_name: true, + sorting_name: true, + artist_name: true, + nat_name: true, + long_name: true, + 'bridge:name': true + }; // Fetch popular keys. We'll exclude these from `values` + // lookups because they stress taginfo, and they aren't likely + // to yield meaningful autocomplete results.. see #3955 + var params = { + rp: 100, + sortname: 'values_all', + sortorder: 'desc', + page: 1, + debounce: false, + lang: _mainLocalizer.languageCode() + }; + this.keys(params, function (err, data) { + if (err) return; + data.forEach(function (d) { + if (d.value === 'opening_hours') return; // exception - if (coords.type === "Feature") { - if (coords.geometry !== null) { - return coords.geometry.coordinates; + _popularKeys[d.value] = true; + }); + }); + }, + reset: function reset() { + Object.values(_inflight$2).forEach(function (controller) { + controller.abort(); + }); + _inflight$2 = {}; + }, + keys: function keys(params, callback) { + var doRequest = params.debounce ? debouncedRequest$1 : request$1; + params = clean(setSort(params)); + params = Object.assign({ + rp: 10, + sortname: 'count_all', + sortorder: 'desc', + page: 1, + lang: _mainLocalizer.languageCode() + }, params); + var url = _apibase$1 + 'keys/all?' + utilQsString(params); + doRequest(url, params, false, callback, function (err, d) { + if (err) { + callback(err); + } else { + var f = filterKeys(params.filter); + var result = d.data.filter(f).sort(sortKeys).map(valKey); + _taginfoCache[url] = result; + callback(null, result); } - } else { - // Geometry - if (coords.coordinates) { - return coords.coordinates; + }); + }, + multikeys: function multikeys(params, callback) { + var doRequest = params.debounce ? debouncedRequest$1 : request$1; + params = clean(setSort(params)); + params = Object.assign({ + rp: 25, + sortname: 'count_all', + sortorder: 'desc', + page: 1, + lang: _mainLocalizer.languageCode() + }, params); + var prefix = params.query; + var url = _apibase$1 + 'keys/all?' + utilQsString(params); + doRequest(url, params, true, callback, function (err, d) { + if (err) { + callback(err); + } else { + var f = filterMultikeys(prefix); + var result = d.data.filter(f).map(valKey); + _taginfoCache[url] = result; + callback(null, result); } - } - - throw new Error("coords must be GeoJSON Feature, Geometry Object or an Array"); - } - - exports.getCoords = getCoords; - /** - * Checks if coordinates contains a number - * - * @name containsNumber - * @param {Array} coordinates GeoJSON Coordinates - * @returns {boolean} true if Array contains a number - */ + }); + }, + values: function values(params, callback) { + // Exclude popular keys from values lookups.. see #3955 + var key = params.key; - function containsNumber(coordinates) { - if (coordinates.length > 1 && helpers$1.isNumber(coordinates[0]) && helpers$1.isNumber(coordinates[1])) { - return true; + if (key && _popularKeys[key]) { + callback(null, []); + return; } - if (Array.isArray(coordinates[0]) && coordinates[0].length) { - return containsNumber(coordinates[0]); + var doRequest = params.debounce ? debouncedRequest$1 : request$1; + params = clean(setSort(setFilter(params))); + params = Object.assign({ + rp: 25, + sortname: 'count_all', + sortorder: 'desc', + page: 1, + lang: _mainLocalizer.languageCode() + }, params); + var url = _apibase$1 + 'key/values?' + utilQsString(params); + doRequest(url, params, false, callback, function (err, d) { + if (err) { + callback(err); + } else { + // In most cases we prefer taginfo value results with lowercase letters. + // A few OSM keys expect values to contain uppercase values (see #3377). + // This is not an exhaustive list (e.g. `name` also has uppercase values) + // but these are the fields where taginfo value lookup is most useful. + var re = /network|taxon|genus|species|brand|grape_variety|royal_cypher|listed_status|booth|rating|stars|:output|_hours|_times|_ref|manufacturer|country|target|brewery/; + var allowUpperCase = re.test(params.key); + var f = filterValues(allowUpperCase); + var result = d.data.filter(f).map(valKeyDescription); + _taginfoCache[url] = result; + callback(null, result); + } + }); + }, + roles: function roles(params, callback) { + var doRequest = params.debounce ? debouncedRequest$1 : request$1; + var geometry = params.geometry; + params = clean(setSortMembers(params)); + params = Object.assign({ + rp: 25, + sortname: 'count_all_members', + sortorder: 'desc', + page: 1, + lang: _mainLocalizer.languageCode() + }, params); + var url = _apibase$1 + 'relation/roles?' + utilQsString(params); + doRequest(url, params, true, callback, function (err, d) { + if (err) { + callback(err); + } else { + var f = filterRoles(geometry); + var result = d.data.filter(f).map(roleKey); + _taginfoCache[url] = result; + callback(null, result); + } + }); + }, + docs: function docs(params, callback) { + var doRequest = params.debounce ? debouncedRequest$1 : request$1; + params = clean(setSort(params)); + var path = 'key/wiki_pages?'; + + if (params.value) { + path = 'tag/wiki_pages?'; + } else if (params.rtype) { + path = 'relation/wiki_pages?'; } - throw new Error("coordinates must only contain numbers"); + var url = _apibase$1 + path + utilQsString(params); + doRequest(url, params, true, callback, function (err, d) { + if (err) { + callback(err); + } else { + _taginfoCache[url] = d.data; + callback(null, d.data); + } + }); + }, + apibase: function apibase(_) { + if (!arguments.length) return _apibase$1; + _apibase$1 = _; + return this; } + }; - exports.containsNumber = containsNumber; - /** - * Enforce expectations about types of GeoJSON objects for Turf. - * - * @name geojsonType - * @param {GeoJSON} value any GeoJSON object - * @param {string} type expected GeoJSON type - * @param {string} name name of calling function - * @throws {Error} if value is not the expected type. - */ - - function geojsonType(value, type, name) { - if (!type || !name) { - throw new Error("type and name required"); - } + /** + * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}. + * + * @name feature + * @param {Geometry} geometry input geometry + * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @param {Object} [options={}] Optional Parameters + * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {string|number} [options.id] Identifier associated with the Feature + * @returns {Feature} a GeoJSON Feature + * @example + * var geometry = { + * "type": "Point", + * "coordinates": [110, 50] + * }; + * + * var feature = turf.feature(geometry); + * + * //=feature + */ - if (!value || value.type !== type) { - throw new Error("Invalid input to " + name + ": must be a " + type + ", given " + value.type); - } + function feature(geom, properties, options) { + if (options === void 0) { + options = {}; } - exports.geojsonType = geojsonType; - /** - * Enforce expectations about types of {@link Feature} inputs for Turf. - * Internally this uses {@link geojsonType} to judge geometry types. - * - * @name featureOf - * @param {Feature} feature a feature with an expected geometry type - * @param {string} type expected GeoJSON type - * @param {string} name name of calling function - * @throws {Error} error if value is not the expected type. - */ + var feat = { + type: "Feature" + }; - function featureOf(feature, type, name) { - if (!feature) { - throw new Error("No feature passed"); - } + if (options.id === 0 || options.id) { + feat.id = options.id; + } - if (!name) { - throw new Error(".featureOf() requires a name"); - } + if (options.bbox) { + feat.bbox = options.bbox; + } - if (!feature || feature.type !== "Feature" || !feature.geometry) { - throw new Error("Invalid input to " + name + ", Feature with geometry required"); - } + feat.properties = properties || {}; + feat.geometry = geom; + return feat; + } + /** + * Creates a {@link Polygon} {@link Feature} from an Array of LinearRings. + * + * @name polygon + * @param {Array>>} coordinates an array of LinearRings + * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @param {Object} [options={}] Optional Parameters + * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {string|number} [options.id] Identifier associated with the Feature + * @returns {Feature} Polygon Feature + * @example + * var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' }); + * + * //=polygon + */ - if (!feature.geometry || feature.geometry.type !== type) { - throw new Error("Invalid input to " + name + ": must be a " + type + ", given " + feature.geometry.type); - } + function polygon(coordinates, properties, options) { + if (options === void 0) { + options = {}; } - exports.featureOf = featureOf; - /** - * Enforce expectations about types of {@link FeatureCollection} inputs for Turf. - * Internally this uses {@link geojsonType} to judge geometry types. - * - * @name collectionOf - * @param {FeatureCollection} featureCollection a FeatureCollection for which features will be judged - * @param {string} type expected GeoJSON type - * @param {string} name name of calling function - * @throws {Error} if value is not the expected type. - */ - - function collectionOf(featureCollection, type, name) { - if (!featureCollection) { - throw new Error("No featureCollection passed"); - } + for (var _i = 0, coordinates_1 = coordinates; _i < coordinates_1.length; _i++) { + var ring = coordinates_1[_i]; - if (!name) { - throw new Error(".collectionOf() requires a name"); + if (ring.length < 4) { + throw new Error("Each LinearRing of a Polygon must have 4 or more Positions."); } - if (!featureCollection || featureCollection.type !== "FeatureCollection") { - throw new Error("Invalid input to " + name + ", FeatureCollection required"); + for (var j = 0; j < ring[ring.length - 1].length; j++) { + // Check if first point of Polygon contains two numbers + if (ring[ring.length - 1][j] !== ring[0][j]) { + throw new Error("First and last Position are not equivalent."); + } } + } - for (var _i = 0, _a = featureCollection.features; _i < _a.length; _i++) { - var feature = _a[_i]; - - if (!feature || feature.type !== "Feature" || !feature.geometry) { - throw new Error("Invalid input to " + name + ", Feature with geometry required"); - } + var geom = { + type: "Polygon", + coordinates: coordinates + }; + return feature(geom, properties, options); + } + /** + * Creates a {@link LineString} {@link Feature} from an Array of Positions. + * + * @name lineString + * @param {Array>} coordinates an array of Positions + * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @param {Object} [options={}] Optional Parameters + * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {string|number} [options.id] Identifier associated with the Feature + * @returns {Feature} LineString Feature + * @example + * var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'}); + * var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'}); + * + * //=linestring1 + * //=linestring2 + */ - if (!feature.geometry || feature.geometry.type !== type) { - throw new Error("Invalid input to " + name + ": must be a " + type + ", given " + feature.geometry.type); - } - } + function lineString(coordinates, properties, options) { + if (options === void 0) { + options = {}; } - exports.collectionOf = collectionOf; - /** - * Get Geometry from Feature or Geometry Object - * - * @param {Feature|Geometry} geojson GeoJSON Feature or Geometry Object - * @returns {Geometry|null} GeoJSON Geometry Object - * @throws {Error} if geojson is not a Feature or Geometry Object - * @example - * var point = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [110, 40] - * } - * } - * var geom = turf.getGeom(point) - * //={"type": "Point", "coordinates": [110, 40]} - */ + if (coordinates.length < 2) { + throw new Error("coordinates must be an array of two or more positions"); + } - function getGeom(geojson) { - if (geojson.type === "Feature") { - return geojson.geometry; - } + var geom = { + type: "LineString", + coordinates: coordinates + }; + return feature(geom, properties, options); + } + /** + * Creates a {@link Feature} based on a + * coordinate array. Properties can be added optionally. + * + * @name multiLineString + * @param {Array>>} coordinates an array of LineStrings + * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @param {Object} [options={}] Optional Parameters + * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {string|number} [options.id] Identifier associated with the Feature + * @returns {Feature} a MultiLineString feature + * @throws {Error} if no coordinates are passed + * @example + * var multiLine = turf.multiLineString([[[0,0],[10,10]]]); + * + * //=multiLine + */ - return geojson; + function multiLineString(coordinates, properties, options) { + if (options === void 0) { + options = {}; } - exports.getGeom = getGeom; - /** - * Get GeoJSON object's type, Geometry type is prioritize. - * - * @param {GeoJSON} geojson GeoJSON object - * @param {string} [name="geojson"] name of the variable to display in error message - * @returns {string} GeoJSON type - * @example - * var point = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [110, 40] - * } - * } - * var geom = turf.getType(point) - * //="Point" - */ + var geom = { + type: "MultiLineString", + coordinates: coordinates + }; + return feature(geom, properties, options); + } + /** + * Creates a {@link Feature} based on a + * coordinate array. Properties can be added optionally. + * + * @name multiPolygon + * @param {Array>>>} coordinates an array of Polygons + * @param {Object} [properties={}] an Object of key-value pairs to add as properties + * @param {Object} [options={}] Optional Parameters + * @param {Array} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature + * @param {string|number} [options.id] Identifier associated with the Feature + * @returns {Feature} a multipolygon feature + * @throws {Error} if no coordinates are passed + * @example + * var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); + * + * //=multiPoly + * + */ - function getType(geojson, name) { - if (geojson.type === "FeatureCollection") { - return "FeatureCollection"; - } + function multiPolygon(coordinates, properties, options) { + if (options === void 0) { + options = {}; + } - if (geojson.type === "GeometryCollection") { - return "GeometryCollection"; - } + var geom = { + type: "MultiPolygon", + coordinates: coordinates + }; + return feature(geom, properties, options); + } - if (geojson.type === "Feature" && geojson.geometry !== null) { - return geojson.geometry.type; - } + /** + * Get Geometry from Feature or Geometry Object + * + * @param {Feature|Geometry} geojson GeoJSON Feature or Geometry Object + * @returns {Geometry|null} GeoJSON Geometry Object + * @throws {Error} if geojson is not a Feature or Geometry Object + * @example + * var point = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [110, 40] + * } + * } + * var geom = turf.getGeom(point) + * //={"type": "Point", "coordinates": [110, 40]} + */ - return geojson.type; + function getGeom(geojson) { + if (geojson.type === "Feature") { + return geojson.geometry; } - exports.getType = getType; - }); + return geojson; + } - var lineclip_1 = lineclip; - var _default = lineclip; - lineclip.polyline = lineclip; - lineclip.polygon = polygonclip; // Cohen-Sutherland line clippign algorithm, adapted to efficiently + // Cohen-Sutherland line clippign algorithm, adapted to efficiently // handle polylines rather than just segments - function lineclip(points, bbox, result) { var len = points.length, codeA = bitCode(points[0], bbox), @@ -48418,7 +47482,6 @@ return result; } // Sutherland-Hodgeman polygon clipping algorithm - function polygonclip(points, bbox) { var result, edge, prev, prevInside, i, p, inside; // clip against each side of the clip rectangle @@ -48445,13 +47508,12 @@ return result; } // intersect a segment against one of the 4 lines that make up the bbox - function intersect(a, b, edge, bbox) { - return edge & 8 ? [a[0] + (b[0] - a[0]) * (bbox[3] - a[1]) / (b[1] - a[1]), bbox[3]] : // top - edge & 4 ? [a[0] + (b[0] - a[0]) * (bbox[1] - a[1]) / (b[1] - a[1]), bbox[1]] : // bottom - edge & 2 ? [bbox[2], a[1] + (b[1] - a[1]) * (bbox[2] - a[0]) / (b[0] - a[0])] : // right - edge & 1 ? [bbox[0], a[1] + (b[1] - a[1]) * (bbox[0] - a[0]) / (b[0] - a[0])] : // left - null; + return edge & 8 ? [a[0] + (b[0] - a[0]) * (bbox[3] - a[1]) / (b[1] - a[1]), bbox[3]] // top + : edge & 4 ? [a[0] + (b[0] - a[0]) * (bbox[1] - a[1]) / (b[1] - a[1]), bbox[1]] // bottom + : edge & 2 ? [bbox[2], a[1] + (b[1] - a[1]) * (bbox[2] - a[0]) / (b[0] - a[0])] // right + : edge & 1 ? [bbox[0], a[1] + (b[1] - a[1]) * (bbox[0] - a[0]) / (b[0] - a[0])] // left + : null; } // bit code reflects the point position relative to the bbox: // left mid right // top 1001 1000 1010 @@ -48469,107 +47531,84 @@ return code; } - lineclip_1["default"] = _default; - - var bboxClip_1 = createCommonjsModule(function (module, exports) { - - var __importStar = commonjsGlobal && commonjsGlobal.__importStar || function (mod) { - if (mod && mod.__esModule) return mod; - var result = {}; - if (mod != null) for (var k in mod) { - if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; - } - result["default"] = mod; - return result; - }; - - Object.defineProperty(exports, "__esModule", { - value: true - }); - - var lineclip = __importStar(lineclip_1); - /** - * Takes a {@link Feature} and a bbox and clips the feature to the bbox using - * [lineclip](https://github.com/mapbox/lineclip). - * May result in degenerate edges when clipping Polygons. - * - * @name bboxClip - * @param {Feature} feature feature to clip to the bbox - * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order - * @returns {Feature} clipped Feature - * @example - * var bbox = [0, 0, 10, 10]; - * var poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]); - * - * var clipped = turf.bboxClip(poly, bbox); - * - * //addToMap - * var addToMap = [bbox, poly, clipped] - */ + /** + * Takes a {@link Feature} and a bbox and clips the feature to the bbox using + * [lineclip](https://github.com/mapbox/lineclip). + * May result in degenerate edges when clipping Polygons. + * + * @name bboxClip + * @param {Feature} feature feature to clip to the bbox + * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order + * @returns {Feature} clipped Feature + * @example + * var bbox = [0, 0, 10, 10]; + * var poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]); + * + * var clipped = turf.bboxClip(poly, bbox); + * + * //addToMap + * var addToMap = [bbox, poly, clipped] + */ - function bboxClip(feature, bbox) { - var geom = invariant.getGeom(feature); - var type = geom.type; - var properties = feature.type === "Feature" ? feature.properties : {}; - var coords = geom.coordinates; + function bboxClip(feature, bbox) { + var geom = getGeom(feature); + var type = geom.type; + var properties = feature.type === "Feature" ? feature.properties : {}; + var coords = geom.coordinates; - switch (type) { - case "LineString": - case "MultiLineString": - var lines_1 = []; + switch (type) { + case "LineString": + case "MultiLineString": + var lines_1 = []; - if (type === "LineString") { - coords = [coords]; - } + if (type === "LineString") { + coords = [coords]; + } - coords.forEach(function (line) { - lineclip.polyline(line, bbox, lines_1); - }); + coords.forEach(function (line) { + lineclip(line, bbox, lines_1); + }); - if (lines_1.length === 1) { - return helpers$1.lineString(lines_1[0], properties); - } + if (lines_1.length === 1) { + return lineString(lines_1[0], properties); + } - return helpers$1.multiLineString(lines_1, properties); + return multiLineString(lines_1, properties); - case "Polygon": - return helpers$1.polygon(clipPolygon(coords, bbox), properties); + case "Polygon": + return polygon(clipPolygon(coords, bbox), properties); - case "MultiPolygon": - return helpers$1.multiPolygon(coords.map(function (poly) { - return clipPolygon(poly, bbox); - }), properties); + case "MultiPolygon": + return multiPolygon(coords.map(function (poly) { + return clipPolygon(poly, bbox); + }), properties); - default: - throw new Error("geometry " + type + " not supported"); - } + default: + throw new Error("geometry " + type + " not supported"); } + } - exports["default"] = bboxClip; - - function clipPolygon(rings, bbox) { - var outRings = []; + function clipPolygon(rings, bbox) { + var outRings = []; - for (var _i = 0, rings_1 = rings; _i < rings_1.length; _i++) { - var ring = rings_1[_i]; - var clipped = lineclip.polygon(ring, bbox); + for (var _i = 0, rings_1 = rings; _i < rings_1.length; _i++) { + var ring = rings_1[_i]; + var clipped = polygonclip(ring, bbox); - if (clipped.length > 0) { - if (clipped[0][0] !== clipped[clipped.length - 1][0] || clipped[0][1] !== clipped[clipped.length - 1][1]) { - clipped.push(clipped[0]); - } + if (clipped.length > 0) { + if (clipped[0][0] !== clipped[clipped.length - 1][0] || clipped[0][1] !== clipped[clipped.length - 1][1]) { + clipped.push(clipped[0]); + } - if (clipped.length >= 4) { - outRings.push(clipped); - } + if (clipped.length >= 4) { + outRings.push(clipped); } } - - return outRings; } - }); - var turf_bboxClip = /*@__PURE__*/getDefaultExportFromCjs(bboxClip_1); + + return outRings; + } var fastJsonStableStringify = function fastJsonStableStringify(data, opts) { if (!opts) opts = {}; @@ -49548,6 +48587,11 @@ * @return {Boolean} */ + }, { + key: "inResult", + get: function get() { + return this.resultTransition !== 0; + } }, { key: "clone", value: function clone() { @@ -49560,11 +48604,6 @@ copy.otherInOut = this.otherInOut; return copy; } - }, { - key: "inResult", - get: function get() { - return this.resultTransition !== 0; - } }]); return SweepEvent; @@ -50512,7 +49551,7 @@ } var tinyqueue = TinyQueue; - var _default$1 = TinyQueue; + var _default = TinyQueue; function TinyQueue(data, compare) { if (!(this instanceof TinyQueue)) return new TinyQueue(data, compare); @@ -50594,10 +49633,10 @@ data[pos] = item; } }; - tinyqueue["default"] = _default$1; + tinyqueue["default"] = _default; var max$5 = Math.max; - var min$a = Math.min; + var min$8 = Math.min; var contourId = 0; function processPolygon(contourOrHole, isSubject, depth, Q, bbox, isExteriorRing) { @@ -50629,8 +49668,8 @@ var x = s1[0], y = s1[1]; - bbox[0] = min$a(bbox[0], x); - bbox[1] = min$a(bbox[1], y); + bbox[0] = min$8(bbox[0], x); + bbox[1] = min$8(bbox[1], y); bbox[2] = max$5(bbox[2], x); bbox[3] = max$5(bbox[3], y); // Pushing it so the queue is sorted from left to right, // with object on the left having the highest priority. @@ -52219,7 +51258,7 @@ var isClipped = false; // Clip to tile bounds if (geometry.type === 'MultiPolygon') { - var featureClip = turf_bboxClip(feature, tile.extent.rectangle()); + var featureClip = bboxClip(feature, tile.extent.rectangle()); if (!fastDeepEqual(feature.geometry, featureClip.geometry)) { // feature = featureClip; @@ -62249,9 +61288,10 @@ var INCORRECT_LENGTH = !!nativeFromCodePoint && nativeFromCodePoint.length != 1; // `String.fromCodePoint` method - // https://tc39.github.io/ecma262/#sec-string.fromcodepoint + // https://tc39.es/ecma262/#sec-string.fromcodepoint _export({ target: 'String', stat: true, forced: INCORRECT_LENGTH }, { - fromCodePoint: function fromCodePoint(x) { // eslint-disable-line no-unused-vars + // eslint-disable-next-line no-unused-vars -- required for `.length` + fromCodePoint: function fromCodePoint(x) { var elements = []; var length = arguments.length; var i = 0; @@ -62333,7 +61373,7 @@ }); var rbush_1 = rbush; - var _default$2 = rbush; + var _default$1 = rbush; function rbush(maxEntries, format) { if (!(this instanceof rbush)) return new rbush(maxEntries, format); // max entries in a node is 9 by default; min node fill is 40% for best performance @@ -62834,9 +61874,9 @@ stack.push(left, mid, mid, right); } } - rbush_1["default"] = _default$2; + rbush_1["default"] = _default$1; - var lineclip_1$1 = lineclip$1; + var lineclip_1 = lineclip$1; lineclip$1.polyline = lineclip$1; lineclip$1.polygon = polygonclip$1; // Cohen-Sutherland line clippign algorithm, adapted to efficiently // handle polylines rather than just segments @@ -63015,7 +62055,7 @@ if (insidePolygon(polygon, bboxCenter)) return true; for (var i = 0; i < polygon.length; i++) { - if (lineclip_1$1(polygon[i], bbox).length > 0) return true; + if (lineclip_1(polygon[i], bbox).length > 0) return true; } return false; @@ -63288,7 +62328,7 @@ return featureForID(query); } - function feature(query, opts) { + function feature$1(query, opts) { if (_typeof(query) === 'object') { return featureForLoc(query, opts); } @@ -63296,7 +62336,7 @@ return featureForID(query); } function iso1A2Code(query, opts) { - var match = feature(query, opts); + var match = feature$1(query, opts); if (!match) return null; return match.properties.iso1A2 || null; } @@ -64868,7 +63908,7 @@ }); // `Math.sinh` method - // https://tc39.github.io/ecma262/#sec-math.sinh + // https://tc39.es/ecma262/#sec-math.sinh // V8 near Chromium 38 has a problem with very small numbers _export({ target: 'Math', stat: true, forced: FORCED$g }, { sinh: function sinh(x) { @@ -83508,6 +82548,37 @@ return featureList; } + var getOwnPropertyDescriptor$4 = objectGetOwnPropertyDescriptor.f; + + + + + + + var nativeStartsWith = ''.startsWith; + var min$9 = Math.min; + + var CORRECT_IS_REGEXP_LOGIC = correctIsRegexpLogic('startsWith'); + // https://github.com/zloirock/core-js/pull/702 + var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () { + var descriptor = getOwnPropertyDescriptor$4(String.prototype, 'startsWith'); + return descriptor && !descriptor.writable; + }(); + + // `String.prototype.startsWith` method + // https://tc39.es/ecma262/#sec-string.prototype.startswith + _export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, { + startsWith: function startsWith(searchString /* , position = 0 */) { + var that = String(requireObjectCoercible(this)); + notARegexp(searchString); + var index = toLength(min$9(arguments.length > 1 ? arguments[1] : undefined, that.length)); + var search = String(searchString); + return nativeStartsWith + ? nativeStartsWith.call(that, search, index) + : that.slice(index, index + search.length) === search; + } + }); + function uiSectionEntityIssues(context) { var _entityIDs = []; var _issues = []; @@ -87157,6 +86228,39 @@ return utilRebind(textarea, dispatch$1, 'on'); } + var getOwnPropertyDescriptor$5 = objectGetOwnPropertyDescriptor.f; + + + + + + + var nativeEndsWith = ''.endsWith; + var min$a = Math.min; + + var CORRECT_IS_REGEXP_LOGIC$1 = correctIsRegexpLogic('endsWith'); + // https://github.com/zloirock/core-js/pull/702 + var MDN_POLYFILL_BUG$1 = !CORRECT_IS_REGEXP_LOGIC$1 && !!function () { + var descriptor = getOwnPropertyDescriptor$5(String.prototype, 'endsWith'); + return descriptor && !descriptor.writable; + }(); + + // `String.prototype.endsWith` method + // https://tc39.es/ecma262/#sec-string.prototype.endswith + _export({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG$1 && !CORRECT_IS_REGEXP_LOGIC$1 }, { + endsWith: function endsWith(searchString /* , endPosition = @length */) { + var that = String(requireObjectCoercible(this)); + notARegexp(searchString); + var endPosition = arguments.length > 1 ? arguments[1] : undefined; + var len = toLength(that.length); + var end = endPosition === undefined ? len : min$a(toLength(endPosition), len); + var search = String(searchString); + return nativeEndsWith + ? nativeEndsWith.call(that, search, end) + : that.slice(end - search.length, end) === search; + } + }); + function uiFieldWikidata(field, context) { var wikidata = services.wikidata; var dispatch$1 = dispatch('change'); @@ -91457,13 +90561,13 @@ var globalIsFinite = global_1.isFinite; // `Number.isFinite` method - // https://tc39.github.io/ecma262/#sec-number.isfinite + // https://tc39.es/ecma262/#sec-number.isfinite var numberIsFinite = Number.isFinite || function isFinite(it) { return typeof it == 'number' && globalIsFinite(it); }; // `Number.isFinite` method - // https://tc39.github.io/ecma262/#sec-number.isfinite + // https://tc39.es/ecma262/#sec-number.isfinite _export({ target: 'Number', stat: true }, { isFinite: numberIsFinite }); var RADIUS = 6378137; @@ -91588,25 +90692,7 @@ ring: ring }; - function toRadians(angleInDegrees) { - return angleInDegrees * Math.PI / 180; - } - - function toDegrees(angleInRadians) { - return angleInRadians * 180 / Math.PI; - } - - function offset(c1, distance, bearing) { - var lat1 = toRadians(c1[1]); - var lon1 = toRadians(c1[0]); - var dByR = distance / 6378137; // distance divided by 6378137 (radius of the earth) wgs84 - - var lat = Math.asin(Math.sin(lat1) * Math.cos(dByR) + Math.cos(lat1) * Math.sin(dByR) * Math.cos(bearing)); - var lon = lon1 + Math.atan2(Math.sin(bearing) * Math.sin(dByR) * Math.cos(lat1), Math.cos(dByR) - Math.sin(lat1) * Math.sin(lat)); - return [toDegrees(lon), toDegrees(lat)]; - } - - function validateCenter(center) { + var validateCenter_1 = function validateCenter(center) { var validCenterLengths = [2, 3]; if (!Array.isArray(center) || !validCenterLengths.includes(center.length)) { @@ -91628,9 +90714,13 @@ if (lat > 90 || lat < -90) { throw new Error("ERROR! Latitude has to be between -90 and 90 but was ".concat(lat)); } - } + }; + + var validateCenter = { + validateCenter: validateCenter_1 + }; - function validateRadius(radius) { + var validateRadius_1 = function validateRadius(radius) { if (typeof radius !== "number") { throw new Error("ERROR! Radius has to be a positive number but was: ".concat(_typeof(radius))); } @@ -91638,39 +90728,124 @@ if (radius <= 0) { throw new Error("ERROR! Radius has to be a positive number but was: ".concat(radius)); } - } + }; + + var validateRadius = { + validateRadius: validateRadius_1 + }; - function validateNumberOfSegments(numberOfSegments) { - if (typeof numberOfSegments !== "number" && numberOfSegments !== undefined) { - throw new Error("ERROR! Number of segments has to be a number but was: ".concat(_typeof(numberOfSegments))); + var validateNumberOfEdges_1 = function validateNumberOfEdges(numberOfEdges) { + if (typeof numberOfEdges !== "number") { + var ARGUMENT_TYPE = Array.isArray(numberOfEdges) ? "array" : _typeof(numberOfEdges); + throw new Error("ERROR! Number of edges has to be a number but was: ".concat(ARGUMENT_TYPE)); } - if (numberOfSegments < 3) { - throw new Error("ERROR! Number of segments has to be at least 3 but was: ".concat(numberOfSegments)); + if (numberOfEdges < 3) { + throw new Error("ERROR! Number of edges has to be at least 3 but was: ".concat(numberOfEdges)); } - } + }; + + var validateNumberOfEdges = { + validateNumberOfEdges: validateNumberOfEdges_1 + }; + + var validateEarthRadius_1 = function validateEarthRadius(earthRadius) { + if (typeof earthRadius !== "number") { + var ARGUMENT_TYPE = Array.isArray(earthRadius) ? "array" : _typeof(earthRadius); + throw new Error("ERROR! Earth radius has to be a number but was: ".concat(ARGUMENT_TYPE)); + } + + if (earthRadius <= 0) { + throw new Error("ERROR! Earth radius has to be a positive number but was: ".concat(earthRadius)); + } + }; + + var validateEarthRadius = { + validateEarthRadius: validateEarthRadius_1 + }; + + var validateBearing_1 = function validateBearing(bearing) { + if (typeof bearing !== "number") { + var ARGUMENT_TYPE = Array.isArray(bearing) ? "array" : _typeof(bearing); + throw new Error("ERROR! Bearing has to be a number but was: ".concat(ARGUMENT_TYPE)); + } + }; + + var validateBearing = { + validateBearing: validateBearing_1 + }; + + var validateCenter$1 = validateCenter.validateCenter; + var validateRadius$1 = validateRadius.validateRadius; + var validateNumberOfEdges$1 = validateNumberOfEdges.validateNumberOfEdges; + var validateEarthRadius$1 = validateEarthRadius.validateEarthRadius; + var validateBearing$1 = validateBearing.validateBearing; function validateInput(_ref) { var center = _ref.center, radius = _ref.radius, - numberOfSegments = _ref.numberOfSegments; - validateCenter(center); - validateRadius(radius); - validateNumberOfSegments(numberOfSegments); + numberOfEdges = _ref.numberOfEdges, + earthRadius = _ref.earthRadius, + bearing = _ref.bearing; + validateCenter$1(center); + validateRadius$1(radius); + validateNumberOfEdges$1(numberOfEdges); + validateEarthRadius$1(earthRadius); + validateBearing$1(bearing); + } + + var validateCenter_1$1 = validateCenter$1; + var validateRadius_1$1 = validateRadius$1; + var validateNumberOfEdges_1$1 = validateNumberOfEdges$1; + var validateEarthRadius_1$1 = validateEarthRadius$1; + var validateBearing_1$1 = validateBearing$1; + var validateInput_1 = validateInput; + var inputValidation = { + validateCenter: validateCenter_1$1, + validateRadius: validateRadius_1$1, + validateNumberOfEdges: validateNumberOfEdges_1$1, + validateEarthRadius: validateEarthRadius_1$1, + validateBearing: validateBearing_1$1, + validateInput: validateInput_1 + }; + + var validateInput$1 = inputValidation.validateInput; + var defaultEarthRadius = 6378137; // equatorial Earth radius + + function toRadians(angleInDegrees) { + return angleInDegrees * Math.PI / 180; + } + + function toDegrees(angleInRadians) { + return angleInRadians * 180 / Math.PI; + } + + function offset(c1, distance, earthRadius, bearing) { + var lat1 = toRadians(c1[1]); + var lon1 = toRadians(c1[0]); + var dByR = distance / earthRadius; + var lat = Math.asin(Math.sin(lat1) * Math.cos(dByR) + Math.cos(lat1) * Math.sin(dByR) * Math.cos(bearing)); + var lon = lon1 + Math.atan2(Math.sin(bearing) * Math.sin(dByR) * Math.cos(lat1), Math.cos(dByR) - Math.sin(lat1) * Math.sin(lat)); + return [toDegrees(lon), toDegrees(lat)]; } - var circleToPolygon = function circleToPolygon(center, radius, numberOfSegments) { - var n = numberOfSegments ? numberOfSegments : 32; // validateInput() throws error on invalid input and do nothing on valid input + var circleToPolygon = function circleToPolygon(center, radius, options) { + var n = getNumberOfEdges(options); + var earthRadius = getEarthRadius(options); + var bearing = getBearing(options); // validateInput() throws error on invalid input and do nothing on valid input - validateInput({ + validateInput$1({ center: center, radius: radius, - numberOfSegments: numberOfSegments + numberOfEdges: n, + earthRadius: earthRadius, + bearing: bearing }); + var start = toRadians(bearing); var coordinates = []; for (var i = 0; i < n; ++i) { - coordinates.push(offset(center, radius, 2 * Math.PI * -i / n)); + coordinates.push(offset(center, radius, earthRadius, start + 2 * Math.PI * -i / n)); } coordinates.push(coordinates[0]); @@ -91680,29 +90855,70 @@ }; }; + function getNumberOfEdges(options) { + if (options === undefined) { + return 32; + } else if (isObjectNotArray(options)) { + var numberOfEdges = options.numberOfEdges; + return numberOfEdges === undefined ? 32 : numberOfEdges; + } + + return options; + } + + function getEarthRadius(options) { + if (options === undefined) { + return defaultEarthRadius; + } else if (isObjectNotArray(options)) { + var earthRadius = options.earthRadius; + return earthRadius === undefined ? defaultEarthRadius : earthRadius; + } + + return defaultEarthRadius; + } + + function getBearing(options) { + if (options === undefined) { + return 0; + } else if (isObjectNotArray(options)) { + var bearing = options.bearing; + return bearing === undefined ? 0 : bearing; + } + + return 0; + } + + function isObjectNotArray(argument) { + return _typeof(argument) === "object" && !Array.isArray(argument); + } + // `Number.EPSILON` constant - // https://tc39.github.io/ecma262/#sec-number.epsilon + // https://tc39.es/ecma262/#sec-number.epsilon _export({ target: 'Number', stat: true }, { EPSILON: Math.pow(2, -52) }); /** - * splaytree v3.0.1 + * splaytree v3.1.0 * Fast Splay tree for Node and browser * * @author Alexander Milevski * @license MIT * @preserve */ - var Node$1 = function Node(key, data) { - _classCallCheck(this, Node); - - this.next = null; - this.key = key; - this.data = data; - this.left = null; - this.right = null; - }; + var Node$1 = + /** @class */ + function () { + function Node(key, data) { + this.next = null; + this.key = key; + this.data = data; + this.left = null; + this.right = null; + } + + return Node; + }(); /* follows "An implementation of top-down splaying" * by D. Sleator March 1992 */ @@ -91746,12 +90962,12 @@ if (t.right === null) break; //if (i > t.right.key) { if (comparator(i, t.right.key) > 0) { - var _y = t.right; + var y = t.right; /* rotate left */ - t.right = _y.left; - _y.left = t; - t = _y; + t.right = y.left; + y.left = t; + t = y; if (t.right === null) break; } @@ -91772,7 +90988,7 @@ return t; } - function _insert(i, data, t, comparator) { + function insert(i, data, t, comparator) { var node = new Node$1(i, data); if (t === null) { @@ -91796,7 +91012,7 @@ return node; } - function _split(key, v, comparator) { + function split$2(key, v, comparator) { var left = null; var right = null; @@ -91838,18 +91054,20 @@ function printRow(root, prefix, isTail, out, printNode) { if (root) { - out("".concat(prefix).concat(isTail ? '└── ' : '├── ').concat(printNode(root), "\n")); + out("" + prefix + (isTail ? '└── ' : '├── ') + printNode(root) + "\n"); var indent = prefix + (isTail ? ' ' : '│ '); if (root.left) printRow(root.left, indent, false, out, printNode); if (root.right) printRow(root.right, indent, true, out, printNode); } } - var Tree = /*#__PURE__*/function () { - function Tree() { - var comparator = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : DEFAULT_COMPARE$1; - - _classCallCheck(this, Tree); + var Tree = + /** @class */ + function () { + function Tree(comparator) { + if (comparator === void 0) { + comparator = DEFAULT_COMPARE$1; + } this._root = null; this._size = 0; @@ -91860,437 +91078,429 @@ */ - _createClass(Tree, [{ - key: "insert", - value: function insert(key, data) { - this._size++; - return this._root = _insert(key, data, this._root, this._comparator); - } - /** - * Adds a key, if it is not present in the tree - */ + Tree.prototype.insert = function (key, data) { + this._size++; + return this._root = insert(key, data, this._root, this._comparator); + }; + /** + * Adds a key, if it is not present in the tree + */ - }, { - key: "add", - value: function add(key, data) { - var node = new Node$1(key, data); - if (this._root === null) { - node.left = node.right = null; - this._size++; - this._root = node; - } + Tree.prototype.add = function (key, data) { + var node = new Node$1(key, data); - var comparator = this._comparator; - var t = splay(key, this._root, comparator); - var cmp = comparator(key, t.key); - if (cmp === 0) this._root = t;else { - if (cmp < 0) { - node.left = t.left; - node.right = t; - t.left = null; - } else if (cmp > 0) { - node.right = t.right; - node.left = t; - t.right = null; - } + if (this._root === null) { + node.left = node.right = null; + this._size++; + this._root = node; + } - this._size++; - this._root = node; + var comparator = this._comparator; + var t = splay(key, this._root, comparator); + var cmp = comparator(key, t.key); + if (cmp === 0) this._root = t;else { + if (cmp < 0) { + node.left = t.left; + node.right = t; + t.left = null; + } else if (cmp > 0) { + node.right = t.right; + node.left = t; + t.right = null; } - return this._root; - } - /** - * @param {Key} key - * @return {Node|null} - */ - }, { - key: "remove", - value: function remove(key) { - this._root = this._remove(key, this._root, this._comparator); + this._size++; + this._root = node; } - /** - * Deletes i from the tree if it's there - */ + return this._root; + }; + /** + * @param {Key} key + * @return {Node|null} + */ - }, { - key: "_remove", - value: function _remove(i, t, comparator) { - var x; - if (t === null) return null; - t = splay(i, t, comparator); - var cmp = comparator(i, t.key); - - if (cmp === 0) { - /* found it */ - if (t.left === null) { - x = t.right; - } else { - x = splay(i, t.left, comparator); - x.right = t.right; - } - this._size--; - return x; + Tree.prototype.remove = function (key) { + this._root = this._remove(key, this._root, this._comparator); + }; + /** + * Deletes i from the tree if it's there + */ + + + Tree.prototype._remove = function (i, t, comparator) { + var x; + if (t === null) return null; + t = splay(i, t, comparator); + var cmp = comparator(i, t.key); + + if (cmp === 0) { + /* found it */ + if (t.left === null) { + x = t.right; + } else { + x = splay(i, t.left, comparator); + x.right = t.right; } - return t; - /* It wasn't there */ + this._size--; + return x; } - /** - * Removes and returns the node with smallest key - */ - }, { - key: "pop", - value: function pop() { - var node = this._root; + return t; + /* It wasn't there */ + }; + /** + * Removes and returns the node with smallest key + */ - if (node) { - while (node.left) { - node = node.left; - } - this._root = splay(node.key, this._root, this._comparator); - this._root = this._remove(node.key, this._root, this._comparator); - return { - key: node.key, - data: node.data - }; + Tree.prototype.pop = function () { + var node = this._root; + + if (node) { + while (node.left) { + node = node.left; } - return null; + this._root = splay(node.key, this._root, this._comparator); + this._root = this._remove(node.key, this._root, this._comparator); + return { + key: node.key, + data: node.data + }; } - /** - * Find without splaying - */ - }, { - key: "findStatic", - value: function findStatic(key) { - var current = this._root; - var compare = this._comparator; + return null; + }; + /** + * Find without splaying + */ - while (current) { - var cmp = compare(key, current.key); - if (cmp === 0) return current;else if (cmp < 0) current = current.left;else current = current.right; - } - return null; + Tree.prototype.findStatic = function (key) { + var current = this._root; + var compare = this._comparator; + + while (current) { + var cmp = compare(key, current.key); + if (cmp === 0) return current;else if (cmp < 0) current = current.left;else current = current.right; } - }, { - key: "find", - value: function find(key) { - if (this._root) { - this._root = splay(key, this._root, this._comparator); - if (this._comparator(key, this._root.key) !== 0) return null; - } - return this._root; + return null; + }; + + Tree.prototype.find = function (key) { + if (this._root) { + this._root = splay(key, this._root, this._comparator); + if (this._comparator(key, this._root.key) !== 0) return null; } - }, { - key: "contains", - value: function contains(key) { - var current = this._root; - var compare = this._comparator; - while (current) { - var cmp = compare(key, current.key); - if (cmp === 0) return true;else if (cmp < 0) current = current.left;else current = current.right; - } + return this._root; + }; - return false; + Tree.prototype.contains = function (key) { + var current = this._root; + var compare = this._comparator; + + while (current) { + var cmp = compare(key, current.key); + if (cmp === 0) return true;else if (cmp < 0) current = current.left;else current = current.right; } - }, { - key: "forEach", - value: function forEach(visitor, ctx) { - var current = this._root; - var Q = []; - /* Initialize stack s */ - var done = false; + return false; + }; - while (!done) { - if (current !== null) { - Q.push(current); - current = current.left; - } else { - if (Q.length !== 0) { - current = Q.pop(); - visitor.call(ctx, current); - current = current.right; - } else done = true; - } - } + Tree.prototype.forEach = function (visitor, ctx) { + var current = this._root; + var Q = []; + /* Initialize stack s */ - return this; + var done = false; + + while (!done) { + if (current !== null) { + Q.push(current); + current = current.left; + } else { + if (Q.length !== 0) { + current = Q.pop(); + visitor.call(ctx, current); + current = current.right; + } else done = true; + } } - /** - * Walk key range from `low` to `high`. Stops if `fn` returns a value. - */ - }, { - key: "range", - value: function range(low, high, fn, ctx) { - var Q = []; - var compare = this._comparator; - var node = this._root; - var cmp; + return this; + }; + /** + * Walk key range from `low` to `high`. Stops if `fn` returns a value. + */ - while (Q.length !== 0 || node) { - if (node) { - Q.push(node); - node = node.left; - } else { - node = Q.pop(); - cmp = compare(node.key, high); - if (cmp > 0) { - break; - } else if (compare(node.key, low) >= 0) { - if (fn.call(ctx, node)) return this; // stop if smth is returned - } + Tree.prototype.range = function (low, high, fn, ctx) { + var Q = []; + var compare = this._comparator; + var node = this._root; + var cmp; - node = node.right; + while (Q.length !== 0 || node) { + if (node) { + Q.push(node); + node = node.left; + } else { + node = Q.pop(); + cmp = compare(node.key, high); + + if (cmp > 0) { + break; + } else if (compare(node.key, low) >= 0) { + if (fn.call(ctx, node)) return this; // stop if smth is returned } - } - return this; + node = node.right; + } } - /** - * Returns array of keys - */ - }, { - key: "keys", - value: function keys() { - var keys = []; - this.forEach(function (_ref) { - var key = _ref.key; - return keys.push(key); - }); - return keys; - } - /** - * Returns array of all the data in the nodes - */ + return this; + }; + /** + * Returns array of keys + */ - }, { - key: "values", - value: function values() { - var values = []; - this.forEach(function (_ref2) { - var data = _ref2.data; - return values.push(data); - }); - return values; - } - }, { - key: "min", - value: function min() { - if (this._root) return this.minNode(this._root).key; - return null; + + Tree.prototype.keys = function () { + var keys = []; + this.forEach(function (_a) { + var key = _a.key; + return keys.push(key); + }); + return keys; + }; + /** + * Returns array of all the data in the nodes + */ + + + Tree.prototype.values = function () { + var values = []; + this.forEach(function (_a) { + var data = _a.data; + return values.push(data); + }); + return values; + }; + + Tree.prototype.min = function () { + if (this._root) return this.minNode(this._root).key; + return null; + }; + + Tree.prototype.max = function () { + if (this._root) return this.maxNode(this._root).key; + return null; + }; + + Tree.prototype.minNode = function (t) { + if (t === void 0) { + t = this._root; } - }, { - key: "max", - value: function max() { - if (this._root) return this.maxNode(this._root).key; - return null; + + if (t) while (t.left) { + t = t.left; } - }, { - key: "minNode", - value: function minNode() { - var t = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._root; - if (t) while (t.left) { - t = t.left; - } - return t; + return t; + }; + + Tree.prototype.maxNode = function (t) { + if (t === void 0) { + t = this._root; } - }, { - key: "maxNode", - value: function maxNode() { - var t = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this._root; - if (t) while (t.right) { - t = t.right; - } - return t; + + if (t) while (t.right) { + t = t.right; } - /** - * Returns node at given index - */ + return t; + }; + /** + * Returns node at given index + */ - }, { - key: "at", - value: function at(index) { - var current = this._root; - var done = false; - var i = 0; - var Q = []; - while (!done) { - if (current) { - Q.push(current); - current = current.left; - } else { - if (Q.length > 0) { - current = Q.pop(); - if (i === index) return current; - i++; - current = current.right; - } else done = true; - } - } + Tree.prototype.at = function (index) { + var current = this._root; + var done = false; + var i = 0; + var Q = []; - return null; + while (!done) { + if (current) { + Q.push(current); + current = current.left; + } else { + if (Q.length > 0) { + current = Q.pop(); + if (i === index) return current; + i++; + current = current.right; + } else done = true; + } } - }, { - key: "next", - value: function next(d) { - var root = this._root; - var successor = null; - if (d.right) { - successor = d.right; - - while (successor.left) { - successor = successor.left; - } + return null; + }; - return successor; - } + Tree.prototype.next = function (d) { + var root = this._root; + var successor = null; - var comparator = this._comparator; + if (d.right) { + successor = d.right; - while (root) { - var cmp = comparator(d.key, root.key); - if (cmp === 0) break;else if (cmp < 0) { - successor = root; - root = root.left; - } else root = root.right; + while (successor.left) { + successor = successor.left; } return successor; } - }, { - key: "prev", - value: function prev(d) { - var root = this._root; - var predecessor = null; - if (d.left !== null) { - predecessor = d.left; + var comparator = this._comparator; - while (predecessor.right) { - predecessor = predecessor.right; - } + while (root) { + var cmp = comparator(d.key, root.key); + if (cmp === 0) break;else if (cmp < 0) { + successor = root; + root = root.left; + } else root = root.right; + } - return predecessor; - } + return successor; + }; - var comparator = this._comparator; + Tree.prototype.prev = function (d) { + var root = this._root; + var predecessor = null; - while (root) { - var cmp = comparator(d.key, root.key); - if (cmp === 0) break;else if (cmp < 0) root = root.left;else { - predecessor = root; - root = root.right; - } + if (d.left !== null) { + predecessor = d.left; + + while (predecessor.right) { + predecessor = predecessor.right; } return predecessor; } - }, { - key: "clear", - value: function clear() { - this._root = null; - this._size = 0; - return this; - } - }, { - key: "toList", - value: function toList() { - return _toList(this._root); + + var comparator = this._comparator; + + while (root) { + var cmp = comparator(d.key, root.key); + if (cmp === 0) break;else if (cmp < 0) root = root.left;else { + predecessor = root; + root = root.right; + } } - /** - * Bulk-load items. Both array have to be same size - */ - }, { - key: "load", - value: function load(keys) { - var values = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; - var presort = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; - var size = keys.length; - var comparator = this._comparator; // sort if needed + return predecessor; + }; - if (presort) sort$1(keys, values, 0, size - 1, comparator); + Tree.prototype.clear = function () { + this._root = null; + this._size = 0; + return this; + }; - if (this._root === null) { - // empty tree - this._root = loadRecursive$1(keys, values, 0, size); - this._size = size; - } else { - // that re-builds the whole tree from two in-order traversals - var mergedList = mergeLists(this.toList(), createList(keys, values), comparator); - size = this._size + size; - this._root = sortedListToBST({ - head: mergedList - }, 0, size); - } + Tree.prototype.toList = function () { + return toList(this._root); + }; + /** + * Bulk-load items. Both array have to be same size + */ - return this; - } - }, { - key: "isEmpty", - value: function isEmpty() { - return this._root === null; + + Tree.prototype.load = function (keys, values, presort) { + if (values === void 0) { + values = []; } - }, { - key: "toString", - value: function toString() { - var printNode = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : function (n) { - return String(n.key); - }; - var out = []; - printRow(this._root, '', true, function (v) { - return out.push(v); - }, printNode); - return out.join(''); + + if (presort === void 0) { + presort = false; } - }, { - key: "update", - value: function update(key, newKey, newData) { - var comparator = this._comparator; - var _split2 = _split(key, this._root, comparator), - left = _split2.left, - right = _split2.right; + var size = keys.length; + var comparator = this._comparator; // sort if needed - if (comparator(key, newKey) < 0) { - right = _insert(newKey, newData, right, comparator); - } else { - left = _insert(newKey, newData, left, comparator); - } + if (presort) sort$1(keys, values, 0, size - 1, comparator); - this._root = merge$4(left, right, comparator); - } - }, { - key: "split", - value: function split(key) { - return _split(key, this._root, this._comparator); + if (this._root === null) { + // empty tree + this._root = loadRecursive$1(keys, values, 0, size); + this._size = size; + } else { + // that re-builds the whole tree from two in-order traversals + var mergedList = mergeLists(this.toList(), createList(keys, values), comparator); + size = this._size + size; + this._root = sortedListToBST({ + head: mergedList + }, 0, size); } - }, { - key: "size", + + return this; + }; + + Tree.prototype.isEmpty = function () { + return this._root === null; + }; + + Object.defineProperty(Tree.prototype, "size", { get: function get() { return this._size; - } - }, { - key: "root", + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(Tree.prototype, "root", { get: function get() { return this._root; + }, + enumerable: true, + configurable: true + }); + + Tree.prototype.toString = function (printNode) { + if (printNode === void 0) { + printNode = function printNode(n) { + return String(n.key); + }; } - }]); + + var out = []; + printRow(this._root, '', true, function (v) { + return out.push(v); + }, printNode); + return out.join(''); + }; + + Tree.prototype.update = function (key, newKey, newData) { + var comparator = this._comparator; + + var _a = split$2(key, this._root, comparator), + left = _a.left, + right = _a.right; + + if (comparator(key, newKey) < 0) { + right = insert(newKey, newData, right, comparator); + } else { + left = insert(newKey, newData, left, comparator); + } + + this._root = merge$4(left, right, comparator); + }; + + Tree.prototype.split = function (key) { + return split$2(key, this._root, this._comparator); + }; return Tree; }(); @@ -92323,7 +91533,7 @@ return head.next; } - function _toList(root) { + function toList(root) { var current = root; var Q = []; var done = false; @@ -94499,7 +93709,7 @@ var jsonStringifyPrettyCompact = stringify; - var _default$3 = /*#__PURE__*/function () { + var _default$2 = /*#__PURE__*/function () { // constructor // // `fc` Optional FeatureCollection of known features @@ -94560,7 +93770,7 @@ } // Replace CountryCoder world geometry to be a polygon covering the world. - var world = _cloneDeep(feature('Q2')); + var world = _cloneDeep(feature$1('Q2')); world.geometry = { type: 'Polygon', @@ -94612,12 +93822,12 @@ } } else if (typeof location === 'string' || typeof location === 'number') { // a country-coder value? - var feature$1 = feature(location); + var feature = feature$1(location); - if (feature$1) { + if (feature) { // Use wikidata QID as the identifier, since that seems to be the one // property that everything in CountryCoder is guaranteed to have. - var _id2 = feature$1.properties.wikidata; + var _id2 = feature.properties.wikidata; return { type: 'countrycoder', location: location, @@ -94667,7 +93877,7 @@ var PRECISION = 3; var area = Math.PI * RADIUS * RADIUS / 1e6; // m² to km² - var feature$1 = this._cache[id] = geojsonPrecision({ + var feature = this._cache[id] = geojsonPrecision({ type: 'Feature', id: id, properties: { @@ -94677,10 +93887,10 @@ geometry: circleToPolygon(location, RADIUS, EDGES) }, PRECISION); return Object.assign(valid, { - feature: feature$1 + feature: feature }); // a .geojson filename? } else if (valid.type === 'geojson') ; else if (valid.type === 'countrycoder') { - var _feature = _cloneDeep(feature(id)); + var _feature = _cloneDeep(feature$1(id)); var props = _feature.properties; // -> This block of code is weird and requires some explanation. <- // CountryCoder includes higher level features which are made up of members. @@ -94956,7 +94166,7 @@ return Promise.all([data.get('oci_resources'), data.get('oci_features')]).then(function (vals) { if (_oci) return _oci; var ociResources = vals[0].resources; - var loco = new _default$3(vals[1]); + var loco = new _default$2(vals[1]); var ociFeatures = {}; Object.values(ociResources).forEach(function (resource) { var feature = loco.resolveLocationSet(resource.locationSet).feature; @@ -98301,7 +97511,7 @@ var _deferred = new Set(); - context.version = '2.19.5'; + context.version = '2.19.6'; context.privacyVersion = '20200407'; // iD will alter the hash so cache the parameters intended to setup the session context.initialHashParams = window.location.hash ? utilStringQs(window.location.hash) : {}; diff --git a/vendor/assets/iD/iD/data/imagery.min.json b/vendor/assets/iD/iD/data/imagery.min.json index 681d8eea3..12e802c26 100644 --- a/vendor/assets/iD/iD/data/imagery.min.json +++ b/vendor/assets/iD/iD/data/imagery.min.json @@ -1 +1 @@ -[{"id":"South_Africa-CapeTown-Aerial-2018","name":"2018 Aerial Imagery from the City of Cape Town","type":"tms","template":"https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2018_Feb/MapServer/WMTS/tile/1.0.0/Aerial_Photography_Cached_AP_2018_Feb/default/default028mm/{zoom}/{x}/{y}","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[1,11],"polygon":[[[18.35572,-34.06348],[18.30856,-34.14988],[18.33655,-34.18764],[18.39162,-34.31413],[18.44973,-34.35206],[18.46768,-34.36437],[18.50723,-34.36336],[18.49749,-34.34603],[18.47559,-34.3287],[18.47589,-34.30558],[18.48776,-34.23493],[18.46646,-34.19971],[18.44151,-34.17606],[18.45764,-34.13225],[18.51574,-34.10278],[18.65052,-34.07582],[18.71958,-34.07728],[18.78742,-34.09416],[18.85527,-34.1604],[18.8218,-34.17223],[18.81328,-34.18481],[18.8148,-34.20343],[18.8361,-34.23815],[18.84401,-34.24142],[18.84736,-34.26053],[18.83458,-34.26506],[18.83214,-34.28391],[18.87808,-34.27637],[18.99369,-34.16342],[19.01316,-34.08207],[19.01225,-34.05334],[18.99186,-34.01981],[18.95292,-33.99282],[18.91003,-33.99207],[18.89603,-34.01855],[18.80355,-34.0193],[18.80324,-34.03746],[18.78651,-34.03721],[18.7859,-34.01981],[18.764,-34.0193],[18.76339,-33.8421],[18.79868,-33.84202],[18.7986,-33.81936],[18.82271,-33.8193],[18.82246,-33.74478],[18.8423,-33.74473],[18.84223,-33.72326],[18.82944,-33.72329],[18.82938,-33.70408],[18.80702,-33.70413],[18.80694,-33.67957],[18.81842,-33.67955],[18.81836,-33.66202],[18.82923,-33.662],[18.82913,-33.63214],[18.7506,-33.63232],[18.75072,-33.66656],[18.70223,-33.66667],[18.70217,-33.64934],[18.67759,-33.6494],[18.67747,-33.61367],[18.66782,-33.61369],[18.66773,-33.58722],[18.62376,-33.58733],[18.62373,-33.57749],[18.59163,-33.57756],[18.59161,-33.56929],[18.58033,-33.56932],[18.5803,-33.56088],[18.59158,-33.56086],[18.59151,-33.54227],[18.58072,-33.5423],[18.58066,-33.52366],[18.57027,-33.52368],[18.57024,-33.51513],[18.54757,-33.51519],[18.5476,-33.524],[18.52671,-33.52405],[18.52658,-33.4876],[18.51639,-33.48763],[18.51633,-33.47028],[18.42782,-33.47049],[18.42794,-33.5038],[18.3618,-33.50396],[18.36186,-33.52233],[18.30611,-33.52247],[18.3062,-33.54803],[18.30685,-33.57209],[18.32668,-33.58017],[18.36546,-33.62072],[18.4044,-33.65061],[18.42326,-33.69339],[18.42721,-33.72882],[18.4333,-33.77284],[18.45946,-33.82138],[18.48076,-33.8517],[18.47985,-33.88303],[18.46585,-33.89944],[18.4552,-33.90399],[18.43269,-33.89389],[18.39831,-33.8949],[18.37458,-33.90752],[18.36576,-33.93378],[18.36637,-33.96104],[18.34994,-33.97769],[18.33138,-33.99081],[18.32469,-34.02006],[18.30126,-34.02435],[18.30278,-34.04956],[18.32895,-34.06544],[18.35572,-34.06348]]],"terms_url":"http://odp.capetown.gov.za/datasets/aerial-imagery","terms_text":"City of Cape Town Aerial","best":true,"description":"City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance."},{"id":"ACT2017","name":"ACTmapi Imagery 2017","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2017mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2017-05-01T00:00:00.000Z","startDate":"2017-05-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[149.085,-35.1171],[149.1509,-35.1157],[149.1509,-35.1335],[149.1736,-35.1335],[149.1739,-35.1512],[149.1957,-35.1512],[149.1962,-35.1689],[149.2177,-35.1683],[149.2192,-35.2048],[149.241,-35.2043],[149.2419,-35.2223],[149.2632,-35.2222],[149.2644,-35.2575],[149.3085,-35.2571],[149.309,-35.2751],[149.3531,-35.2742],[149.3536,-35.2921],[149.3974,-35.2917],[149.3988,-35.3452],[149.3777,-35.3457],[149.3772,-35.3641],[149.3341,-35.3648],[149.3385,-35.5451],[149.1624,-35.5487],[149.1727,-35.9271],[149.0175,-35.9294],[149.0172,-35.9113],[148.9506,-35.9125],[148.9499,-35.8946],[148.9277,-35.8949],[148.9272,-35.8768],[148.9053,-35.8768],[148.9042,-35.8586],[148.8826,-35.859],[148.8805,-35.7695],[148.8361,-35.7698],[148.8359,-35.7521],[148.8138,-35.7524],[148.8131,-35.7343],[148.7909,-35.7347],[148.7911,-35.7167],[148.7688,-35.7167],[148.7617,-35.3924],[148.7839,-35.3921],[148.7822,-35.3022],[148.8041,-35.302],[148.8033,-35.2836],[148.8474,-35.2832],[148.8469,-35.2652],[148.8689,-35.2643],[148.8687,-35.2466],[148.9128,-35.246],[148.9123,-35.2282],[148.9341,-35.228],[148.9329,-35.1919],[148.999,-35.1904],[148.9986,-35.1724],[149.0206,-35.172],[149.0204,-35.154],[149.0637,-35.1532],[149.0635,-35.1355],[149.0857,-35.1348],[149.085,-35.1171]]],"terms_url":"https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548","terms_text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT2018","name":"ACTmapi Imagery 2018","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2018mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2018-03-19T00:00:00.000Z","startDate":"2018-03-19T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[149.2695,-35.4381],[149.2669,-35.348],[149.3329,-35.3468],[149.3334,-35.3648],[149.3774,-35.364],[149.3769,-35.3459],[149.3989,-35.3455],[149.3984,-35.3275],[149.4094,-35.3273],[149.4088,-35.3092],[149.3978,-35.3095],[149.3973,-35.2914],[149.3533,-35.2923],[149.3528,-35.2743],[149.3089,-35.2751],[149.3084,-35.2571],[149.2644,-35.2579],[149.2634,-35.2219],[149.2415,-35.2223],[149.241,-35.2043],[149.219,-35.2047],[149.218,-35.1687],[149.1961,-35.1691],[149.1956,-35.151],[149.1737,-35.1514],[149.1732,-35.1334],[149.1512,-35.1338],[149.1508,-35.1158],[149.085,-35.1169],[149.0854,-35.135],[149.0635,-35.1353],[149.0639,-35.1534],[149.0201,-35.1541],[149.0205,-35.1721],[148.9985,-35.1725],[148.999,-35.1905],[148.9331,-35.1916],[148.934,-35.2276],[148.912,-35.228],[148.9124,-35.246],[148.8685,-35.2467],[148.8689,-35.2647],[148.8469,-35.265],[148.8473,-35.2831],[148.8034,-35.2837],[148.8038,-35.3018],[148.7818,-35.3021],[148.7838,-35.3922],[148.8058,-35.3919],[148.8086,-35.5181],[148.7976,-35.5182],[148.7994,-35.5993],[148.8766,-35.5982],[148.8747,-35.517],[148.8527,-35.5174],[148.8508,-35.4363],[148.8398,-35.4364],[148.8388,-35.3914],[149.0039,-35.3888],[149.0048,-35.4248],[149.0268,-35.4244],[149.0277,-35.4605],[149.0497,-35.4601],[149.0511,-35.5142],[149.1613,-35.5122],[149.1594,-35.4402],[149.2695,-35.4381]]],"terms_text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT2019","name":"ACTmapi Imagery Feb 2019","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2019mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2019-02-09T00:00:00.000Z","startDate":"2019-02-09T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[149.04053,-35.09056],[149.20498,-35.08747],[149.20618,-35.1237],[149.24944,-35.12314],[149.2515,-35.19499],[149.29596,-35.19429],[149.29716,-35.23861],[149.34111,-35.23847],[149.34196,-35.27435],[149.42986,-35.27253],[149.43226,-35.36288],[149.42127,-35.36316],[149.42179,-35.37239],[149.3224,-35.37435],[149.3224,-35.36498],[149.30042,-35.36512],[149.30094,-35.37435],[149.28995,-35.37449],[149.29201,-35.4376],[149.15932,-35.44039],[149.16121,-35.51197],[149.03984,-35.51448],[149.03984,-35.47829],[148.99504,-35.4794],[148.99315,-35.37995],[149.00396,-35.37981],[149.0007,-35.26272],[148.95641,-35.26286],[148.95435,-35.16399],[148.99864,-35.16342],[148.99796,-35.12721],[149.04156,-35.12665],[149.04053,-35.09056]]],"terms_url":"http://actmapi.act.gov.au/terms.html","terms_text":"Aerial Imagery from ACTMapi ©ACT Government","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT202001","name":"ACTmapi Imagery Jan 2020","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery202001mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2020-01-21T00:00:00.000Z","startDate":"2020-01-21T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[149.01888,-35.55033],[149.01874,-35.54169],[149.02979,-35.54152],[149.02911,-35.51456],[148.9849,-35.51532],[148.98051,-35.33506],[148.93611,-35.33576],[148.93142,-35.12826],[149.01972,-35.12661],[149.01913,-35.10016],[149.02959,-35.09987],[149.02982,-35.09083],[149.23791,-35.08675],[149.23815,-35.10483],[149.22757,-35.10541],[149.22888,-35.15974],[149.27261,-35.15838],[149.27404,-35.19432],[149.3173,-35.19374],[149.31991,-35.23005],[149.32918,-35.22947],[149.33013,-35.2386],[149.36293,-35.23763],[149.36531,-35.27334],[149.45206,-35.27237],[149.45396,-35.37224],[149.41047,-35.37243],[149.41213,-35.40809],[149.36745,-35.40964],[149.36792,-35.43636],[149.32419,-35.43694],[149.32562,-35.47412],[149.2372,-35.47431],[149.23886,-35.50237],[149.22817,-35.50218],[149.22793,-35.5105],[149.1842,-35.51205],[149.18443,-35.54764],[149.01888,-35.55033]]],"terms_url":"http://actmapi.act.gov.au/terms.html","terms_text":"Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd","best":true,"icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT201906","name":"ACTmapi Imagery Jun 2019","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery201906mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2019-06-19T00:00:00.000Z","startDate":"2019-06-19T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[148.97478,-35.10074],[149.22712,-35.09632],[149.22811,-35.13237],[149.24983,-35.13198],[149.25025,-35.14107],[149.27223,-35.14062],[149.27416,-35.21263],[149.31806,-35.21184],[149.31905,-35.248],[149.40694,-35.24632],[149.40805,-35.28227],[149.45191,-35.28129],[149.45509,-35.38044],[149.41089,-35.38135],[149.41166,-35.39927],[149.40042,-35.39955],[149.40093,-35.41752],[149.31287,-35.41934],[149.3139,-35.44634],[149.2697,-35.44718],[149.2709,-35.48325],[149.22678,-35.48402],[149.22772,-35.52007],[149.18378,-35.52084],[149.18464,-35.55709],[149.01855,-35.55974],[149.01701,-35.48807],[148.97324,-35.48863],[148.97203,-35.44333],[148.98319,-35.44333],[148.9807,-35.34419],[148.93676,-35.34461],[148.93187,-35.13753],[148.97581,-35.1369],[148.97478,-35.10074]]],"terms_url":"http://actmapi.act.gov.au/terms.html","terms_text":"Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"AGRI-black_and_white-2.5m","name":"AGRI black-and-white 2.5m","type":"tms","template":"https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png","endDate":"2011-01-01T00:00:00.000Z","startDate":"2006-01-01T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[112.28778,-28.78459],[112.71488,-31.13894],[114.11263,-34.17829],[113.60788,-37.39012],[117.17992,-37.45179],[119.31538,-37.42096],[121.72262,-36.70839],[123.81925,-35.76893],[125.9547,-34.3066],[127.97368,-33.7274],[130.07031,-33.24166],[130.10913,-33.8887],[131.00214,-34.04971],[131.0798,-34.72257],[132.28342,-35.39],[134.18591,-35.61126],[133.8753,-37.1119],[134.8459,-37.6365],[139.7769,-37.82075],[139.93223,-39.4283],[141.6017,-39.8767],[142.3783,-39.36829],[142.3783,-40.64702],[142.49478,-42.07487],[144.009,-44.06013],[147.23161,-44.03222],[149.05645,-42.53431],[149.52237,-40.99959],[149.9494,-40.85292],[150.8036,-38.09627],[151.81313,-38.12682],[156.20052,-22.66771],[156.20052,-20.10109],[156.62761,-17.41763],[155.26869,-17.19521],[154.14272,-19.51662],[153.5215,-18.34139],[153.05558,-16.5636],[152.78379,-15.25677],[152.27905,-13.4135],[151.3472,-12.39177],[149.48354,-12.05024],[146.9598,-9.99241],[135.9719,-9.99241],[130.3032,-10.33636],[128.09016,-12.16414],[125.91588,-12.31591],[124.3239,-11.86033],[122.03323,-11.97429],[118.26706,-16.9353],[115.93747,-19.11357],[114.0738,-21.11863],[113.49141,-22.59603],[112.28778,-28.78459]]],"terms_url":"https://data.gov.au/dataset/agri-the-australian-geographic-reference-image","terms_text":"AGRI, Geoscience Australia"},{"id":"AIV_DHMV_II_HILL_25cm","name":"AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m","type":"wms","template":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?LAYERS=DHMV_II_HILL_25cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AIV_DHMV_II_SVF_25cm","name":"AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m","type":"wms","template":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?LAYERS=DHMV_II_SVF_25cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AGIV10cm","name":"AIV Flanders 2013-2015 aerial imagery 10cm","type":"wms","template":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?LAYERS=OGWRGB13_15VL&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AGIVFlandersGRB","name":"AIV Flanders GRB","type":"tms","template":"https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,21],"polygon":[[[4.40434,50.78177],[4.45538,50.79328],[4.40268,50.8961],[4.331,50.90094],[4.27142,50.82002],[4.30648,50.81244],[4.36348,50.77251],[4.40434,50.78177],[4.43104,50.73831],[4.31859,50.72022],[4.29031,50.69402],[4.14853,50.72834],[3.95877,50.68947],[3.9097,50.69245],[3.89113,50.74333],[3.77568,50.74789],[3.75857,50.78045],[3.67752,50.77062],[3.64047,50.72242],[3.54139,50.73377],[3.54062,50.76307],[3.46005,50.76556],[3.3522,50.70614],[3.30562,50.75466],[3.17839,50.75609],[3.15329,50.78564],[3.02008,50.77312],[2.99943,50.81035],[2.91648,50.75356],[2.85476,50.75745],[2.86521,50.70565],[2.78473,50.7369],[2.713,50.81534],[2.63518,50.8129],[2.59909,50.85306],[2.59031,50.91893],[2.63262,50.94575],[2.57372,51.00842],[2.54165,51.09345],[3.15582,51.32714],[3.18307,51.37128],[3.23443,51.34669],[3.36356,51.37228],[3.38101,51.27446],[3.44201,51.24313],[3.52759,51.24604],[3.51511,51.28753],[3.58984,51.30577],[3.7783,51.26235],[3.79088,51.21429],[3.92412,51.21938],[4.16613,51.2929],[4.26163,51.37647],[4.42065,51.36473],[4.39108,51.45149],[4.54747,51.48571],[4.53541,51.42303],[4.64953,51.42758],[4.76359,51.5088],[4.84188,51.48074],[4.8383,51.42174],[4.89366,51.41698],[4.92785,51.39544],[5.02894,51.48789],[5.08018,51.46948],[5.10202,51.42892],[5.07117,51.3935],[5.13109,51.35137],[5.13448,51.31547],[5.20031,51.32172],[5.24189,51.30534],[5.23036,51.26436],[5.34828,51.27492],[5.41741,51.26229],[5.4863,51.30197],[5.5556,51.26986],[5.56045,51.22233],[5.76027,51.18505],[5.85578,51.14463],[5.75909,51.03588],[5.72665,50.91307],[5.64522,50.8372],[5.68732,50.804],[5.47863,50.72352],[5.41196,50.72368],[5.38908,50.74775],[5.30912,50.71802],[5.16984,50.72257],[5.16508,50.6957],[5.05642,50.71567],[5.00339,50.76594],[4.92545,50.74275],[4.90869,50.76968],[4.83106,50.77028],[4.76014,50.80544],[4.64309,50.79755],[4.65486,50.7552],[4.62021,50.74348],[4.59727,50.76359],[4.52399,50.72724],[4.49455,50.75679],[4.43104,50.73831],[4.40434,50.78177]],[[5.67393,50.75373],[5.88438,50.70114],[5.94172,50.76524],[5.76662,50.78761],[5.67393,50.75373]],[[4.91171,51.43492],[4.93711,51.42614],[4.95891,51.45471],[4.92801,51.46049],[4.91171,51.43492]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AGIV","name":"AIV Flanders most recent aerial imagery","type":"tms","template":"https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,21],"polygon":[[[4.7737,50.79368],[4.8379,50.75916],[4.92511,50.73483],[4.98862,50.76264],[5.036,50.73527],[5.0645,50.69875],[5.1644,50.69005],[5.19393,50.71179],[5.3086,50.71245],[5.36422,50.74396],[5.43391,50.70766],[5.54378,50.74396],[5.61141,50.73527],[5.71166,50.73505],[5.77105,50.74092],[5.81946,50.70484],[5.89568,50.70614],[5.9204,50.72831],[5.91971,50.74504],[5.89843,50.77675],[5.81569,50.76351],[5.77517,50.79216],[5.69552,50.79737],[5.69072,50.82319],[5.66325,50.82904],[5.65467,50.86481],[5.72368,50.9012],[5.77174,50.95443],[5.75114,50.97368],[5.78273,51.00048],[5.78032,51.0523],[5.80848,51.05338],[5.80951,51.07668],[5.84315,51.09372],[5.84418,51.1101],[5.82599,51.11851],[5.86959,51.14953],[5.8277,51.17365],[5.792,51.16891],[5.7738,51.19344],[5.666,51.1928],[5.64059,51.21065],[5.5709,51.22829],[5.56231,51.27535],[5.49811,51.30605],[5.47099,51.30219],[5.45794,51.2893],[5.43048,51.28823],[5.41434,51.27363],[5.36593,51.282],[5.33641,51.28265],[5.32577,51.26718],[5.24337,51.27406],[5.24989,51.31335],[5.20972,51.32794],[5.14174,51.31914],[5.14209,51.35367],[5.08647,51.39482],[5.11565,51.43615],[5.08853,51.47508],[5.05214,51.47636],[5.04561,51.4939],[5.02364,51.4939],[5.01609,51.48663],[4.82966,51.48663],[4.83001,51.50009],[4.76855,51.51099],[4.74727,51.50394],[4.658,51.4492],[4.65663,51.43144],[4.53956,51.43379],[4.55466,51.48171],[4.5296,51.48748],[4.46368,51.48235],[4.37167,51.45562],[4.37751,51.40553],[4.4139,51.37511],[4.39776,51.36118],[4.34798,51.36675],[4.34627,51.38497],[4.20344,51.38111],[4.2213,51.3511],[4.15641,51.29832],[4.05101,51.25193],[4.00638,51.25279],[3.95144,51.22205],[3.88484,51.22936],[3.81926,51.21797],[3.80038,51.22872],[3.80107,51.26074],[3.74442,51.28007],[3.63593,51.29746],[3.58615,51.31378],[3.5065,51.28308],[3.51371,51.25021],[3.43921,51.25064],[3.39766,51.27513],[3.37329,51.31678],[3.39114,51.34274],[3.3623,51.37961],[3.24283,51.35474],[3.20266,51.37039],[3.15631,51.35196],[3.14223,51.33051],[2.53318,51.09092],[2.56476,50.9968],[2.61832,50.9527],[2.57781,50.91852],[2.5936,50.88431],[2.58948,50.85051],[2.6245,50.80757],[2.71033,50.8054],[2.78449,50.71853],[2.87375,50.69983],[2.86483,50.74765],[2.92525,50.75156],[2.97263,50.77024],[2.97332,50.79889],[3.00078,50.79759],[3.01383,50.76676],[3.09863,50.76611],[3.13537,50.78196],[3.16832,50.75004],[3.30428,50.74613],[3.31561,50.71484],[3.3678,50.70179],[3.44848,50.75091],[3.53293,50.75156],[3.53328,50.72549],[3.63902,50.7131],[3.69086,50.7672],[3.75163,50.76177],[3.7712,50.73874],[3.87729,50.73983],[3.87969,50.70418],[3.9202,50.68352],[3.99951,50.682],[4.06749,50.68961],[4.16018,50.72049],[4.17632,50.70331],[4.24739,50.68222],[4.31708,50.69418],[4.31846,50.70962],[4.38403,50.71027],[4.38437,50.72353],[4.47226,50.74743],[4.52617,50.71853],[4.55226,50.73766],[4.64908,50.73722],[4.6532,50.78717],[4.72426,50.78218],[4.73731,50.79585],[4.7737,50.79368]]],"terms_text":"© agentschap Informatie Vlaanderen","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"ARA_Bushfires_2020","name":"ARA Bushfires 2020","type":"tms","template":"https://cogeoxyz.b-cdn.net/46b53084a82973a36c0f57a1d5446c605d00ed851f11a6f5ca7c75db/{zoom}/{x}/{y}.jpg","endDate":"2020-02-06T00:00:00.000Z","startDate":"2020-01-08T00:00:00.000Z","zoomExtent":[14,22],"polygon":[[[138.94746,-35.00283],[138.92407,-34.99305],[138.92517,-34.99001],[138.92695,-34.98968],[138.93336,-34.99052],[138.93811,-34.98634],[138.93688,-34.98205],[138.9365,-34.97941],[138.92935,-34.97259],[138.91302,-34.97015],[138.89699,-34.97178],[138.89712,-34.96186],[138.90229,-34.96106],[138.9154,-34.96132],[138.93356,-34.96413],[138.93841,-34.96659],[138.94461,-34.97268],[138.94909,-34.98091],[138.94935,-34.98242],[138.94858,-34.98799],[138.94491,-34.99168],[138.94645,-34.99515],[138.94748,-34.99817],[138.94684,-34.99989],[138.94746,-35.00283]],[[136.80219,-35.83855],[136.87205,-35.82317],[136.85377,-35.77702],[136.78811,-35.79025],[136.80219,-35.83855]],[[136.95745,-35.71934],[137.00204,-35.71903],[137.00187,-35.74846],[136.9575,-35.74871],[136.95745,-35.71934]],[[138.86929,-34.9703],[138.85127,-34.96485],[138.85981,-34.95272],[138.86187,-34.94748],[138.85504,-34.94751],[138.85414,-34.94428],[138.85564,-34.94002],[138.85749,-34.89269],[138.85105,-34.8917],[138.84886,-34.88755],[138.85049,-34.87653],[138.85547,-34.87294],[138.85972,-34.8747],[138.8838,-34.85167],[138.88654,-34.84625],[138.89787,-34.83864],[138.90512,-34.83998],[138.90547,-34.8299],[138.91083,-34.82624],[138.92276,-34.82783],[138.92186,-34.85297],[138.91723,-34.85319],[138.91568,-34.87945],[138.91384,-34.886],[138.90083,-34.88688],[138.89946,-34.8922],[138.87517,-34.89322],[138.87573,-34.91212],[138.87405,-34.92465],[138.88032,-34.9213],[138.88195,-34.91817],[138.89216,-34.92194],[138.87929,-34.94783],[138.87324,-34.96383],[138.86929,-34.9703]],[[136.57493,-35.92881],[136.57699,-35.93493],[136.57836,-35.94186],[136.5801,-35.94541],[136.58881,-35.94872],[136.5925,-35.94855],[136.59795,-35.94671],[136.59999,-35.94138],[136.60649,-35.94315],[136.61422,-35.93886],[136.6137,-35.93333],[136.64409,-35.91311],[136.64975,-35.91446],[136.65409,-35.91446],[136.65507,-35.91196],[136.65512,-35.90535],[136.64975,-35.89725],[136.63774,-35.89385],[136.6213,-35.89691],[136.61645,-35.89976],[136.6137,-35.90459],[136.57493,-35.92881]],[[137.46304,-35.73005],[137.46169,-35.71908],[137.46353,-35.71788],[137.46478,-35.7114],[137.47006,-35.70903],[137.47924,-35.708],[137.49261,-35.70345],[137.49263,-35.70826],[137.49598,-35.70741],[137.49799,-35.7153],[137.46304,-35.73005]],[[136.63555,-35.9581],[136.63593,-35.96252],[136.64666,-35.96429],[136.67765,-35.96283],[136.69859,-35.96338],[136.72224,-35.96213],[136.74356,-35.96245],[136.74417,-35.96338],[136.75352,-35.96318],[136.75408,-35.96199],[136.76691,-35.96182],[136.76674,-35.95661],[136.76446,-35.95414],[136.75979,-35.95529],[136.75635,-35.95508],[136.75356,-35.95331],[136.75283,-35.94977],[136.75052,-35.94827],[136.74631,-35.94938],[136.7179,-35.94928],[136.70769,-35.94886],[136.70533,-35.94994],[136.7037,-35.9515],[136.70318,-35.95355],[136.69704,-35.95515],[136.68486,-35.95543],[136.6831,-35.95772],[136.67263,-35.95734],[136.65314,-35.95817],[136.65061,-35.95897],[136.64366,-35.95814],[136.63555,-35.9581]]],"terms_url":"https://www.airborneresearch.org.au/","terms_text":"ARA - Airborne Research Australia","best":true,"icon":"https://static.wixstatic.com/media/a40742_9e0c1ee9ed0743a8bbf73b2fe6613802.gif"},{"id":"CRAIG-Auvergne-2013","name":"Auvergne 2013 25cm CRAIG","type":"wms","template":"https://tiles.craig.fr/ortho/service?LAYERS=ortho_2013&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[2.94012,44.63388],[2.99719,44.63393],[2.99717,44.64734],[3.01597,44.64735],[3.01593,44.67412],[3.03495,44.67413],[3.0349,44.70152],[3.05363,44.70154],[3.05357,44.7419],[3.07233,44.74191],[3.07222,44.80917],[3.09216,44.80919],[3.09214,44.82213],[3.13014,44.82216],[3.13005,44.87707],[3.14856,44.87709],[3.14858,44.8637],[3.16823,44.86371],[3.16825,44.85003],[3.2064,44.85006],[3.20638,44.86284],[3.24395,44.86287],[3.24393,44.87679],[3.26315,44.87681],[3.26308,44.91752],[3.32004,44.91757],[3.32002,44.93033],[3.33908,44.93035],[3.33906,44.9442],[3.377,44.94423],[3.37702,44.93029],[3.39603,44.9303],[3.39612,44.87627],[3.41483,44.87629],[3.41489,44.83553],[3.43334,44.83554],[3.43338,44.80828],[3.45255,44.80829],[3.45258,44.79463],[3.50893,44.79468],[3.5089,44.80815],[3.60426,44.80823],[3.60422,44.83482],[3.62361,44.83484],[3.62357,44.86166],[3.64248,44.86167],[3.64255,44.8211],[3.66101,44.82112],[3.66103,44.80777],[3.6993,44.8078],[3.69928,44.82099],[3.73611,44.82102],[3.73618,44.77971],[3.77511,44.77974],[3.77515,44.75223],[3.81184,44.75226],[3.81186,44.7392],[3.83118,44.73922],[3.83121,44.72468],[3.88782,44.72472],[3.8878,44.73818],[3.92563,44.73821],[3.9256,44.75167],[3.94541,44.75168],[3.94537,44.77847],[3.96437,44.77848],[3.96435,44.79193],[4.00332,44.79196],[4.0033,44.80526],[4.02169,44.80527],[4.02167,44.81857],[4.05965,44.8186],[4.05961,44.84492],[4.07981,44.84494],[4.07979,44.85735],[4.17388,44.85743],[4.17386,44.87055],[4.19326,44.87056],[4.19323,44.88427],[4.21404,44.88429],[4.214,44.91002],[4.23241,44.91004],[4.23237,44.93731],[4.27155,44.93734],[4.27153,44.9503],[4.32887,44.95034],[4.32878,45.00367],[4.34893,45.00368],[4.3489,45.01707],[4.40608,45.01711],[4.40599,45.071],[4.38847,45.07099],[4.38845,45.0846],[4.40794,45.08461],[4.40792,45.09663],[4.48436,45.09669],[4.48429,45.13705],[4.46636,45.13703],[4.46634,45.1502],[4.48645,45.15022],[4.4864,45.17724],[4.50655,45.17726],[4.50644,45.24501],[4.48813,45.24499],[4.48811,45.25921],[4.46986,45.25919],[4.46984,45.27298],[4.45088,45.27297],[4.45086,45.28642],[4.39368,45.28637],[4.39363,45.31352],[4.37509,45.3135],[4.37507,45.32741],[4.39507,45.32742],[4.39503,45.35458],[4.37679,45.35457],[4.37676,45.36855],[4.35766,45.36853],[4.35763,45.38234],[4.28146,45.38227],[4.28143,45.39688],[4.24446,45.39685],[4.24443,45.41079],[4.14812,45.41071],[4.14814,45.39807],[4.12919,45.39805],[4.12921,45.38409],[4.09021,45.38406],[4.09024,45.37121],[4.01355,45.37115],[4.01353,45.3861],[3.91709,45.38602],[3.91707,45.39974],[3.93757,45.39975],[3.93755,45.41311],[3.97528,45.41315],[3.97526,45.42621],[3.99537,45.42622],[3.9957,45.52096],[3.97778,45.52094],[3.97769,45.57439],[3.95818,45.57437],[3.95815,45.58837],[3.9396,45.58835],[3.93958,45.60262],[3.92023,45.60261],[3.9202,45.61646],[3.88189,45.61643],[3.88185,45.64328],[3.84413,45.64325],[3.84411,45.65709],[3.82617,45.65707],[3.82612,45.68389],[3.80722,45.68387],[3.80713,45.73758],[3.78821,45.73756],[3.78819,45.7518],[3.76885,45.75178],[3.7688,45.77897],[3.75072,45.77895],[3.75058,45.86066],[3.76967,45.86067],[3.76958,45.91433],[3.75166,45.91432],[3.75164,45.92809],[3.7329,45.92807],[3.73285,45.95472],[3.81018,45.95478],[3.81016,45.96823],[3.8496,45.96826],[3.84951,46.02162],[3.83188,46.0216],[3.83179,46.07591],[3.8505,46.07592],[3.85046,46.10295],[3.83247,46.10294],[3.83234,46.18456],[3.81422,46.18455],[3.81415,46.22442],[3.83369,46.22444],[3.83366,46.2381],[3.85289,46.23812],[3.85287,46.25147],[3.89314,46.25151],[3.89312,46.26447],[3.91306,46.26448],[3.91303,46.27793],[3.95189,46.27796],[3.95187,46.29082],[3.97152,46.29084],[3.9715,46.30369],[4.0105,46.30373],[4.01048,46.31776],[4.02983,46.31778],[4.02978,46.34428],[4.0116,46.34427],[4.01146,46.42534],[4.03153,46.42536],[4.03146,46.4658],[4.01324,46.46578],[4.01322,46.47938],[3.99437,46.47936],[3.99435,46.49361],[3.9746,46.4936],[3.97457,46.50753],[3.87754,46.50745],[3.8775,46.53478],[3.85836,46.53476],[3.85833,46.54832],[3.81869,46.54828],[3.81871,46.53553],[3.79924,46.53552],[3.79922,46.54907],[3.76104,46.54904],[3.76092,46.61681],[3.74233,46.61679],[3.74228,46.64396],[3.72286,46.64395],[3.72281,46.67104],[3.70387,46.67102],[3.70385,46.68467],[3.68411,46.68466],[3.68406,46.712],[3.66484,46.71198],[3.66479,46.73904],[3.64576,46.73902],[3.64572,46.76634],[3.62575,46.76632],[3.62573,46.77971],[3.56723,46.77966],[3.56725,46.76631],[3.54715,46.76629],[3.54719,46.73928],[3.52716,46.73927],[3.52723,46.6989],[3.48774,46.69887],[3.48776,46.68594],[3.46796,46.68593],[3.46794,46.69941],[3.46792,46.71279],[3.44865,46.71278],[3.44863,46.72679],[3.35043,46.72671],[3.35048,46.6999],[3.33039,46.69988],[3.33034,46.7272],[3.23272,46.72712],[3.23274,46.71351],[3.2129,46.7135],[3.21293,46.70013],[3.17354,46.7001],[3.1735,46.72751],[3.15412,46.72749],[3.1541,46.74073],[3.11478,46.7407],[3.11475,46.75428],[3.07534,46.75424],[3.0753,46.78135],[3.05597,46.78134],[3.05592,46.80831],[2.99704,46.80826],[2.99702,46.82196],[2.93794,46.82191],[2.93797,46.80826],[2.89866,46.80823],[2.89869,46.79424],[2.87899,46.79422],[2.87901,46.78104],[2.85942,46.78103],[2.85944,46.76771],[2.84004,46.76769],[2.84007,46.75447],[2.7414,46.75439],[2.74138,46.76682],[2.70234,46.76679],[2.70236,46.75389],[2.68266,46.75387],[2.68268,46.74048],[2.66349,46.74046],[2.66351,46.7259],[2.64342,46.72588],[2.64344,46.71309],[2.62414,46.71308],[2.62417,46.69981],[2.60397,46.69979],[2.60399,46.68584],[2.56512,46.68581],[2.56515,46.67261],[2.54593,46.6726],[2.546,46.63215],[2.56592,46.63217],[2.56595,46.61811],[2.54564,46.61809],[2.54569,46.59072],[2.56642,46.59074],[2.56644,46.57754],[2.5855,46.57756],[2.58552,46.56472],[2.56613,46.5647],[2.56616,46.55062],[2.46828,46.55055],[2.4683,46.53582],[2.33212,46.53571],[2.33217,46.50886],[2.31265,46.50884],[2.31267,46.49534],[2.29288,46.49533],[2.2929,46.48182],[2.27487,46.4818],[2.27492,46.45442],[2.25539,46.4544],[2.25553,46.37349],[2.27595,46.37351],[2.27604,46.32087],[2.31456,46.32091],[2.31458,46.30704],[2.35371,46.30707],[2.35373,46.29297],[2.39384,46.293],[2.39389,46.26729],[2.45157,46.26733],[2.4516,46.25349],[2.47094,46.25351],[2.47098,46.22656],[2.49151,46.22657],[2.49155,46.19933],[2.51088,46.19934],[2.51093,46.17278],[2.53117,46.1728],[2.53138,46.05135],[2.55163,46.05137],[2.55166,46.03777],[2.57056,46.03778],[2.57068,45.96994],[2.55144,45.96993],[2.55146,45.95662],[2.53226,45.9566],[2.53228,45.94301],[2.51307,45.94299],[2.51313,45.90203],[2.47494,45.902],[2.47496,45.88882],[2.43619,45.88879],[2.43622,45.87533],[2.41721,45.87531],[2.41725,45.84794],[2.37847,45.84791],[2.3785,45.83397],[2.35952,45.83396],[2.35956,45.80708],[2.37873,45.8071],[2.37875,45.79358],[2.3987,45.79359],[2.39872,45.78035],[2.41825,45.78036],[2.41832,45.74],[2.45722,45.74003],[2.45724,45.7267],[2.47589,45.72671],[2.47591,45.71324],[2.49533,45.71325],[2.49542,45.65913],[2.45769,45.6591],[2.45776,45.61834],[2.43912,45.61833],[2.43919,45.57766],[2.4585,45.57768],[2.45855,45.55053],[2.47809,45.55055],[2.47811,45.53725],[2.49755,45.53726],[2.49759,45.51068],[2.47855,45.51066],[2.47864,45.45613],[2.45978,45.45612],[2.45987,45.40176],[2.42249,45.40173],[2.42247,45.41528],[2.40232,45.41527],[2.40229,45.42882],[2.3256,45.42876],[2.32567,45.38796],[2.34562,45.38798],[2.34566,45.36111],[2.32626,45.36109],[2.32628,45.34721],[2.30738,45.3472],[2.3074,45.3336],[2.28811,45.33358],[2.28813,45.32082],[2.26963,45.3208],[2.26966,45.30621],[2.25066,45.3062],[2.25068,45.29251],[2.23169,45.2925],[2.23171,45.27924],[2.213,45.27922],[2.21305,45.25204],[2.19374,45.25202],[2.19376,45.23811],[2.17561,45.2381],[2.17574,45.15768],[2.15735,45.15767],[2.15744,45.10295],[2.12024,45.10292],[2.12026,45.08955],[2.10067,45.08953],[2.10069,45.07544],[2.08246,45.07543],[2.08255,45.0216],[2.10255,45.02161],[2.1026,44.99445],[2.04574,44.99441],[2.04585,44.92753],[2.06578,44.92755],[2.06589,44.85969],[2.0857,44.8597],[2.08572,44.84581],[2.10556,44.84583],[2.1056,44.81933],[2.12474,44.81934],[2.12477,44.80551],[2.14351,44.80553],[2.14355,44.7786],[2.12561,44.77858],[2.1257,44.72427],[2.10665,44.72426],[2.10671,44.68423],[2.12634,44.68424],[2.12636,44.67074],[2.14598,44.67075],[2.14607,44.61644],[2.18396,44.61648],[2.18398,44.60378],[2.24042,44.60383],[2.24037,44.63095],[2.25948,44.63097],[2.25946,44.64493],[2.31668,44.64498],[2.3167,44.63088],[2.33615,44.6309],[2.33617,44.61758],[2.37242,44.61761],[2.3724,44.63158],[2.41105,44.63161],[2.41107,44.61907],[2.44922,44.61911],[2.4492,44.63232],[2.50486,44.63237],[2.50481,44.65976],[2.52461,44.65977],[2.52457,44.68717],[2.54225,44.68719],[2.54223,44.70122],[2.58071,44.70125],[2.5806,44.76834],[2.61769,44.76837],[2.61762,44.80884],[2.63676,44.80885],[2.63669,44.84929],[2.67331,44.84933],[2.67329,44.86252],[2.69338,44.86253],[2.69333,44.88943],[2.73052,44.88946],[2.73048,44.91645],[2.74992,44.91646],[2.75005,44.83647],[2.80733,44.83652],[2.80731,44.8491],[2.82638,44.84912],[2.8264,44.83628],[2.8457,44.8363],[2.84577,44.79571],[2.86422,44.79573],[2.86426,44.76865],[2.88399,44.76866],[2.88403,44.74197],[2.90203,44.74198],[2.90214,44.67432],[2.92198,44.67434],[2.92202,44.6473],[2.9401,44.64731],[2.94012,44.63388]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","terms_text":"Orthophotographie CRAIG/Sintegra/IGN 2013"},{"id":"CRAIG-Auvergne-2016_mirror1","name":"Auvergne 2016 25cm CRAIG","type":"wms","template":"https://tiles.craig.fr/ortho/service?LAYERS=ortho_2016&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[2.49389,46.66829],[2.71362,46.84141],[3.64746,46.80758],[4.04846,46.48327],[4.03747,46.24825],[4.46044,46.25965],[4.4934,46.14559],[4.38354,46.09229],[4.45495,45.69084],[4.76257,45.57176],[4.81201,45.34443],[4.22424,44.84419],[3.86169,44.696],[3.37829,44.80523],[3.33435,44.89091],[3.18054,44.82471],[3.03222,44.60612],[2.92785,44.60221],[2.71911,44.85198],[2.51037,44.60221],[2.12585,44.58265],[2.005,44.97257],[2.30712,45.46784],[2.43347,45.44087],[2.41149,45.72919],[2.34558,45.82402],[2.54882,45.97979],[2.46093,46.22166],[2.21374,46.33935],[2.27828,46.53903],[2.54882,46.56642],[2.49389,46.66829]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","terms_text":"CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016"},{"id":"BANO","name":"BANO","type":"tms","template":"https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat","terms_text":"Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL","description":"French address registry or Base Adresses Nationale Ouverte","overlay":true},{"id":"lu.geoportail.opendata.basemap","name":"Basemap geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png","endDate":"2010-07-20T00:00:00.000Z","startDate":"2013-07-19T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"basemap.at","name":"basemap.at","type":"tms","template":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png","zoomExtent":[0,19],"polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"https://basemap.at","terms_text":"basemap.at","description":"Basemap of Austria, based on government data.","icon":"https://www.basemap.at/images/logo_basemap.jpg"},{"id":"basemap.at-orthofoto","name":"basemap.at Orthofoto","type":"tms","template":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg","zoomExtent":[0,19],"polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"https://basemap.at","terms_text":"basemap.at","best":true,"description":"Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.","icon":"https://www.basemap.at/images/logo_basemap.jpg"},{"id":"basemap.at-overlay","name":"basemap.at Overlay","type":"tms","template":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmapoverlay/normal/google3857/{zoom}/{y}/{x}.png","zoomExtent":[0,19],"polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"https://basemap.at","terms_text":"basemap.at","description":"Annotation overlay provided by basemap.at.","icon":"https://www.basemap.at/images/logo_basemap.jpg","overlay":true},{"id":"bavaria-80cm","name":"Bavaria (80 cm)","type":"wms","template":"https://geoservices.bayern.de/wms/v2/ogc_dop80_oa.cgi?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=by_dop80c&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[7,18],"polygon":[[[10.12359,50.56846],[10.14286,50.55078],[10.20281,50.55742],[10.25205,50.51796],[10.32698,50.49345],[10.41048,50.41848],[10.60317,50.33109],[10.62244,50.2271],[10.72521,50.21066],[10.72949,50.24765],[10.85153,50.24354],[10.71879,50.32015],[10.71236,50.36524],[10.85581,50.39664],[10.93717,50.39664],[10.99069,50.36661],[11.12772,50.36661],[11.1791,50.31332],[11.16197,50.29417],[11.24119,50.2928],[11.24975,50.37344],[11.24119,50.47982],[11.35895,50.5234],[11.43816,50.50979],[11.44244,50.48936],[11.42532,50.4771],[11.42532,50.44166],[11.48955,50.42257],[11.49169,50.39801],[11.51952,50.39801],[11.52594,50.37617],[11.59874,50.40347],[11.63727,50.38845],[11.79357,50.4212],[11.83639,50.39255],[11.92203,50.42802],[11.98626,50.38709],[11.98412,50.35705],[12.04835,50.33109],[12.09331,50.32972],[12.1297,50.29828],[12.14041,50.27228],[12.10615,50.25586],[12.11258,50.23532],[12.14897,50.23669],[12.19822,50.20107],[12.22391,50.16406],[12.20464,50.14348],[12.20678,50.10779],[12.24318,50.09955],[12.27743,50.07208],[12.49367,49.98543],[12.49796,49.94136],[12.55576,49.92206],[12.54934,49.86827],[12.48083,49.78817],[12.41018,49.75775],[12.46156,49.70655],[12.5472,49.68023],[12.58788,49.55261],[12.65425,49.53455],[12.66281,49.43302],[12.75274,49.41073],[12.7977,49.34661],[12.90475,49.35638],[12.99681,49.33685],[13.05462,49.27543],[13.13169,49.21952],[13.19164,49.14395],[13.2366,49.12153],[13.29655,49.12293],[13.37148,49.08088],[13.4143,49.02897],[13.4143,48.97981],[13.57916,48.96997],[13.63483,48.94326],[13.67765,48.88698],[13.73759,48.89261],[13.7847,48.83346],[13.84036,48.77423],[13.81681,48.70646],[13.84464,48.70081],[13.8425,48.60038],[13.76543,48.5423],[13.75258,48.50401],[13.67122,48.50543],[13.64339,48.54371],[13.45712,48.5508],[13.45712,48.41598],[13.40574,48.36053],[13.2837,48.27511],[13.09315,48.26941],[12.95827,48.19097],[12.87691,48.18526],[12.772,48.09382],[12.86407,48.01368],[12.89832,47.95492],[12.94543,47.95636],[12.99681,47.88461],[13.01394,47.83434],[12.93472,47.7322],[13.0589,47.72499],[13.11885,47.63851],[13.06532,47.56922],[13.05676,47.47379],[13.00323,47.45208],[12.76772,47.55044],[12.76986,47.63274],[12.73989,47.67312],[12.6671,47.67024],[12.57503,47.6212],[12.48083,47.61975],[12.41446,47.67024],[12.24318,47.67745],[12.2132,47.69186],[12.19179,47.68177],[12.2132,47.66591],[12.21106,47.60388],[12.17467,47.59521],[12.13827,47.60388],[11.89205,47.60388],[11.85137,47.57933],[11.63942,47.58222],[11.59445,47.54899],[11.59017,47.51285],[11.51738,47.49839],[11.4403,47.50417],[11.39534,47.47524],[11.42746,47.44484],[11.3461,47.44339],[11.27973,47.39559],[11.21336,47.38834],[11.24761,47.43181],[11.10203,47.39269],[10.965,47.38979],[10.97785,47.43615],[10.9179,47.47524],[10.8708,47.47524],[10.85581,47.49405],[10.90077,47.5143],[10.87294,47.53598],[10.81085,47.51285],[10.64385,47.54899],[10.59461,47.55477],[10.57962,47.52876],[10.46187,47.54032],[10.46615,47.48392],[10.48756,47.47813],[10.48756,47.41298],[10.45973,47.40283],[10.45973,47.37529],[10.41048,47.37384],[10.40834,47.34339],[10.32056,47.28678],[10.28202,47.27806],[10.28416,47.26208],[10.14714,47.26208],[10.1921,47.30275],[10.19424,47.37384],[10.16641,47.37384],[10.16641,47.34629],[10.10004,47.34339],[10.0615,47.36369],[10.06792,47.41877],[10.09361,47.42601],[10.09576,47.44194],[9.978,47.48537],[9.95659,47.52731],[9.8945,47.52876],[9.85596,47.50851],[9.81743,47.54465],[9.82171,47.57644],[9.77461,47.58222],[9.73821,47.52586],[9.67398,47.53454],[9.58406,47.56488],[9.63972,47.60532],[9.7168,47.60388],[9.85596,47.676],[9.978,47.65582],[10.02938,47.68177],[10.10004,47.66735],[10.13215,47.676],[10.14286,47.70195],[10.0615,47.7725],[10.11288,47.8099],[10.08291,47.85302],[10.1086,47.90902],[10.07649,47.96496],[10.13001,48.02084],[10.13429,48.10669],[10.10004,48.12813],[10.05508,48.26228],[9.96944,48.36765],[10.03153,48.42593],[10.02938,48.46144],[10.12359,48.47705],[10.15356,48.4515],[10.23492,48.51252],[10.31628,48.51678],[10.29915,48.61878],[10.24563,48.6683],[10.27346,48.70646],[10.3698,48.68385],[10.43189,48.69939],[10.45116,48.72765],[10.40192,48.746],[10.44046,48.84896],[10.43403,48.95873],[10.33769,49.02055],[10.24991,49.03599],[10.24991,49.07387],[10.20066,49.10331],[10.25205,49.13274],[10.12359,49.19714],[10.11931,49.26285],[10.15142,49.28939],[10.10432,49.34522],[10.14072,49.39401],[10.1086,49.44555],[10.11074,49.50537],[10.0722,49.53316],[10.01654,49.47616],[9.92662,49.47894],[9.92448,49.55678],[9.89878,49.58177],[9.85596,49.53872],[9.80672,49.55678],[9.86667,49.60675],[9.85382,49.6442],[9.81743,49.66083],[9.83455,49.68993],[9.79602,49.72039],[9.75748,49.70793],[9.74035,49.68577],[9.70609,49.71624],[9.67826,49.71624],[9.68254,49.68854],[9.62045,49.69131],[9.64615,49.78955],[9.55836,49.77434],[9.57121,49.73561],[9.50698,49.75222],[9.49199,49.77987],[9.46844,49.76051],[9.42562,49.77849],[9.40421,49.76466],[9.33356,49.7702],[9.32928,49.73423],[9.4085,49.72593],[9.42776,49.69824],[9.41492,49.6442],[9.38066,49.63865],[9.35925,49.64974],[9.33998,49.63727],[9.31215,49.64836],[9.27789,49.62617],[9.28432,49.60814],[9.2415,49.57483],[9.09805,49.57205],[9.06594,49.60814],[9.10019,49.65113],[9.09163,49.6927],[9.13017,49.71208],[9.13873,49.74253],[9.10876,49.75637],[9.13659,49.79093],[9.10019,49.78955],[9.07236,49.82824],[9.03596,49.83514],[9.01669,50.02671],[8.96317,50.03084],[8.95674,50.05971],[9.00171,50.0707],[9.02097,50.11054],[9.1216,50.12289],[9.15586,50.11328],[9.19654,50.11878],[9.18583,50.13525],[9.23507,50.1476],[9.37638,50.12701],[9.4085,50.0817],[9.52197,50.09543],[9.50484,50.14211],[9.53267,50.16406],[9.48985,50.16954],[9.49413,50.24354],[9.61403,50.22163],[9.66541,50.23532],[9.63544,50.24901],[9.66756,50.27228],[9.74249,50.30922],[9.72964,50.35841],[9.77032,50.42939],[9.86881,50.40074],[9.91805,50.40893],[10.03581,50.47982],[10.03795,50.51115],[10.12359,50.56846]]],"terms_url":"https://www.ldbv.bayern.de/","terms_text":"Bayerische Vermessungsverwaltung","best":true},{"id":"Bayonne_2016","name":"Bayonne 2016","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bayonne_2016/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-1.51199,43.53909],[-1.50478,43.44095],[-1.4986,43.43996],[-1.48865,43.44046],[-1.47835,43.44719],[-1.46771,43.45716],[-1.46118,43.4579],[-1.45466,43.46463],[-1.44231,43.46693],[-1.41895,43.48755],[-1.40797,43.49004],[-1.4035,43.49752],[-1.40419,43.50449],[-1.42513,43.52466],[-1.44539,43.5264],[-1.44917,43.53835],[-1.45569,43.54233],[-1.47388,43.54954],[-1.4835,43.54929],[-1.50444,43.53909],[-1.51199,43.53909]]],"terms_text":"Ville de Bayonne, Communauté d'Agglomtération Pays Basque - 2016"},{"id":"route500hydro","name":"BD Carthage","type":"tms","template":"https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png","zoomExtent":[6,20],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence","terms_text":"Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL","description":"Réseau hydrographique: cours et plans d'eau et POI","overlay":true},{"id":"fr.ign.bdortho","name":"BDOrtho IGN","type":"tms","template":"https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg","zoomExtent":[2,21],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]],[[-61.27501,14.90218],[-60.72368,14.90101],[-60.72489,14.36686],[-61.27622,14.36803],[-61.27501,14.90218]],[[-61.92802,16.58618],[-61.92686,15.7394],[-60.88128,15.74072],[-60.88243,16.5875],[-61.92802,16.58618]],[[-53.89344,6.004],[-52.46522,5.4465],[-51.52039,4.51072],[-51.53687,4.11633],[-52.2345,3.10213],[-52.641,2.25162],[-52.92664,2.07597],[-53.72864,2.21869],[-54.20106,2.03205],[-54.8053,2.27358],[-54.31092,2.80589],[-54.31641,3.20085],[-54.12415,3.46408],[-54.12964,3.59567],[-54.42078,4.00127],[-54.58008,4.95962],[-53.89344,6.004]],[[55.08816,-20.77935],[55.95959,-20.77281],[55.96576,-21.49],[55.09434,-21.49651],[55.08816,-20.77935]],[[44.92054,-12.57363],[45.34826,-12.57029],[45.35274,-13.1163],[44.92502,-13.11963],[44.92054,-12.57363]],[[-178.57728,-14.70582],[-178.42568,-14.00334],[-176.34156,-12.83858],[-175.71534,-12.9189],[-175.91858,-13.58726],[-177.84638,-14.64983],[-178.57728,-14.70582]]],"terms_url":"https://openstreetmap.fr/bdortho","terms_text":"BDOrtho IGN","best":true,"icon":"http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png"},{"id":"Benin_cotonou_pleiade_2016","name":"Benin: Cotonou Pleiade 2016","type":"tms","template":"https://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[2.31954,6.55745],[2.33645,6.56024],[2.36377,6.56211],[2.36738,6.56068],[2.37777,6.5494],[2.37779,6.53485],[2.36994,6.49332],[2.37038,6.45527],[2.36958,6.45269],[2.36188,6.44177],[2.35392,6.40545],[2.36749,6.4015],[2.39526,6.40072],[2.40128,6.40374],[2.40588,6.40341],[2.42046,6.39383],[2.42485,6.39794],[2.42949,6.39887],[2.43625,6.39628],[2.43958,6.40042],[2.44439,6.40189],[2.45376,6.39899],[2.47145,6.39632],[2.48162,6.39106],[2.49453,6.3874],[2.50893,6.38888],[2.50719,6.39229],[2.5012,6.39162],[2.4963,6.39521],[2.4951,6.40123],[2.49543,6.40401],[2.4983,6.41022],[2.50191,6.41282],[2.51087,6.41321],[2.52219,6.40849],[2.53352,6.40517],[2.5381,6.40961],[2.54111,6.4109],[2.54651,6.41099],[2.54654,6.40651],[2.57639,6.40724],[2.57642,6.41177],[2.58576,6.41196],[2.58868,6.41095],[2.60877,6.39414],[2.6257,6.39488],[2.64555,6.39729],[2.65039,6.39339],[2.65367,6.36823],[2.64312,6.36659],[2.61251,6.36289],[2.56868,6.3607],[2.54683,6.36055],[2.54687,6.35546],[2.50207,6.35461],[2.47064,6.35596],[2.46777,6.35203],[2.46423,6.3502],[2.45254,6.35006],[2.45113,6.34813],[2.44737,6.34629],[2.43757,6.34654],[2.43298,6.33841],[2.43016,6.33707],[2.42245,6.33707],[2.39236,6.34115],[2.39315,6.34115],[2.36528,6.34445],[2.35386,6.3453],[2.34377,6.34458],[2.34094,6.34534],[2.31086,6.36567],[2.28435,6.37465],[2.28147,6.37762],[2.27599,6.39517],[2.27612,6.3982],[2.31529,6.49261],[2.3158,6.55307],[2.31954,6.55745]],[[1.69563,6.25076],[1.7001,6.24712],[1.70418,6.24697],[1.75875,6.25836],[1.77079,6.25995],[1.81712,6.27161],[1.84457,6.27657],[1.85768,6.27945],[1.88843,6.28326],[1.90482,6.28595],[1.90618,6.29435],[1.90083,6.29721],[1.89881,6.29954],[1.89404,6.30085],[1.89048,6.2997],[1.88748,6.29636],[1.88344,6.29622],[1.8697,6.29227],[1.8564,6.29198],[1.85207,6.28675],[1.84991,6.28906],[1.84691,6.29203],[1.84353,6.29333],[1.84041,6.29315],[1.83627,6.29129],[1.8341,6.28733],[1.83417,6.2852],[1.8323,6.28456],[1.82786,6.28644],[1.82182,6.29084],[1.81563,6.28998],[1.81211,6.29143],[1.80758,6.29571],[1.80472,6.29693],[1.80074,6.2971],[1.79776,6.29612],[1.79625,6.29492],[1.7949,6.28965],[1.79641,6.28608],[1.80098,6.28338],[1.79567,6.28013],[1.79156,6.28174],[1.78499,6.28122],[1.78092,6.27753],[1.77588,6.2755],[1.76745,6.27696],[1.75653,6.27496],[1.74833,6.27239],[1.74762,6.27726],[1.74572,6.27938],[1.73948,6.27985],[1.7368,6.27761],[1.73572,6.27892],[1.72902,6.27911],[1.72435,6.27422],[1.72449,6.26786],[1.72556,6.26683],[1.69934,6.26159],[1.69573,6.25726],[1.69563,6.25076]]],"best":true},{"id":"Berlin-2011","name":"Berlin aerial photography 2011","type":"wms","template":"https://fbinter.stadt-berlin.de/fb/wms/senstadt/k_luftbild2011_20?LAYERS=0&STYLES=default&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[13.48699,52.68076],[13.52584,52.65196],[13.5299,52.64437],[13.54209,52.60921],[13.58109,52.58134],[13.59674,52.55936],[13.63477,52.55121],[13.66547,52.52854],[13.67199,52.50379],[13.65806,52.50372],[13.65796,52.49324],[13.7547,52.4565],[13.76644,52.43884],[13.76627,52.42973],[13.74494,52.39909],[13.65235,52.33133],[13.6417,52.33103],[13.62609,52.35491],[13.59432,52.37455],[13.53198,52.38376],[13.51948,52.39236],[13.48536,52.39227],[13.43552,52.38016],[13.42885,52.37401],[13.38689,52.37388],[13.38642,52.38667],[13.36857,52.38728],[13.37045,52.39349],[13.33968,52.40887],[13.31243,52.39775],[13.30557,52.40452],[13.23622,52.40342],[13.18886,52.40417],[13.17719,52.39067],[13.14859,52.38971],[13.14868,52.38421],[13.11889,52.38385],[13.11935,52.40025],[13.10487,52.40723],[13.07371,52.40668],[13.07367,52.41403],[13.10516,52.47897],[13.11685,52.47881],[13.112,52.55915],[13.11865,52.59156],[13.15251,52.60489],[13.16282,52.60462],[13.21264,52.6321],[13.22139,52.63215],[13.27292,52.66444],[13.31376,52.66442],[13.32714,52.64692],[13.36783,52.6468],[13.39158,52.65382],[13.42728,52.6549],[13.47594,52.68122],[13.48699,52.68076]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2011","description":"Digitale Orthophotos für das gesamte Berliner Stadtgebiet mit einer Bodenauflösung von 0,20 m im Blattschnitt 2 km x 2 km."},{"id":"Berlin-2014","name":"Berlin aerial photography 2014","type":"tms","template":"https://tiles.codefor.de/berlin-2014/{zoom}/{x}/{y}.png","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.19746,52.64206],[13.25639,52.64285],[13.2558,52.66101],[13.31391,52.66185],[13.31476,52.64353],[13.37431,52.64462],[13.37386,52.66269],[13.4026,52.663],[13.40332,52.64501],[13.4334,52.64555],[13.43227,52.68001],[13.49082,52.68111],[13.49147,52.66428],[13.52092,52.66457],[13.5216,52.6465],[13.55096,52.6469],[13.55147,52.62938],[13.52219,52.62898],[13.52335,52.59248],[13.58263,52.59329],[13.58307,52.57535],[13.61246,52.57582],[13.61324,52.55784],[13.64268,52.55813],[13.64296,52.5401],[13.67253,52.54048],[13.67375,52.50475],[13.64413,52.5045],[13.64476,52.48608],[13.7037,52.48683],[13.70415,52.46901],[13.73362,52.4692],[13.73399,52.45121],[13.76358,52.45156],[13.76447,52.40209],[13.73546,52.39753],[13.73611,52.37963],[13.70678,52.37935],[13.70731,52.36136],[13.67785,52.36104],[13.67898,52.33017],[13.62102,52.32946],[13.61999,52.36033],[13.59046,52.36007],[13.5901,52.37806],[13.53116,52.37735],[13.53064,52.39525],[13.47168,52.39459],[13.47149,52.4125],[13.44101,52.41219],[13.44257,52.37604],[13.35487,52.37498],[13.35427,52.39306],[13.23667,52.39114],[13.23609,52.40922],[13.17635,52.40836],[13.17752,52.39029],[13.14791,52.38987],[13.14876,52.37459],[13.11971,52.37422],[13.11941,52.38955],[13.08981,52.38899],[13.08938,52.40707],[13.0618,52.40662],[13.06075,52.42408],[13.08842,52.42449],[13.086,52.47853],[13.11546,52.47896],[13.11462,52.49695],[13.1441,52.49729],[13.14332,52.5157],[13.1137,52.51528],[13.11077,52.6047],[13.19862,52.6062],[13.19746,52.64206]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2014"},{"id":"Berlin-2015","name":"Berlin aerial photography 2015","type":"tms","template":"https://tiles.codefor.de/berlin-2015/{zoom}/{x}/{y}.png","endDate":"2015-08-03T00:00:00.000Z","startDate":"2015-08-02T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.11068,52.59538],[13.13975,52.60527],[13.18355,52.61488],[13.21262,52.63315],[13.24167,52.64282],[13.256,52.65201],[13.27004,52.67021],[13.31368,52.67072],[13.32914,52.66204],[13.32948,52.6529],[13.43284,52.65414],[13.44733,52.6816],[13.50561,52.68244],[13.50654,52.65531],[13.53605,52.65572],[13.5376,52.61991],[13.52229,52.61977],[13.52304,52.60165],[13.59776,52.58469],[13.59865,52.55769],[13.62817,52.55805],[13.64303,52.5492],[13.65813,52.54042],[13.67312,52.53144],[13.67356,52.51358],[13.65913,52.51344],[13.65998,52.48643],[13.68931,52.48687],[13.73386,52.46933],[13.73405,52.46034],[13.76362,52.46068],[13.76431,52.42464],[13.74941,52.42474],[13.75045,52.39778],[13.73585,52.39762],[13.70661,52.37944],[13.707,52.3614],[13.67782,52.36125],[13.66405,52.33395],[13.62073,52.33337],[13.62031,52.36042],[13.58986,52.3781],[13.53149,52.37748],[13.53133,52.38641],[13.44223,52.38484],[13.42813,52.3667],[13.38464,52.3662],[13.35432,52.39301],[13.29537,52.39209],[13.29531,52.40103],[13.19171,52.39957],[13.19222,52.39056],[13.14774,52.38996],[13.14839,52.38095],[13.11964,52.38041],[13.0744,52.40683],[13.07392,52.42426],[13.10275,52.43374],[13.10123,52.47874],[13.11558,52.47897],[13.11068,52.59538]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2015"},{"id":"Berlin-2016","name":"Berlin aerial photography 2016","type":"tms","template":"https://tiles.codefor.de/berlin-2016/{zoom}/{x}/{y}.png","endDate":"2016-04-03T00:00:00.000Z","startDate":"2016-04-02T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2016"},{"id":"Berlin-2016-infrared","name":"Berlin aerial photography 2016 (infrared)","type":"tms","template":"https://tiles.codefor.de/berlin-2016i/{zoom}/{x}/{y}.png","endDate":"2016-04-03T00:00:00.000Z","startDate":"2016-04-02T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale Color-Infrarot-Orthophotos 2016"},{"id":"Berlin-2017","name":"Berlin aerial photography 2017","type":"tms","template":"https://tiles.codefor.de/berlin-2017/{zoom}/{x}/{y}.png","endDate":"2017-03-28T00:00:00.000Z","startDate":"2017-03-27T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2017"},{"id":"Berlin-2018","name":"Berlin aerial photography 2018","type":"tms","template":"https://tiles.codefor.de/berlin-2018/{zoom}/{x}/{y}.png","endDate":"2018-04-07T00:00:00.000Z","startDate":"2018-03-19T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2018"},{"id":"Berlin-2019","name":"Berlin aerial photography 2019","type":"tms","template":"https://tiles.codefor.de/berlin-2019/{zoom}/{x}/{y}.png","endDate":"2019-04-06T00:00:00.000Z","startDate":"2019-04-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2019 (DOP20RGB)","best":true},{"id":"Bing","name":"Bing aerial imagery","type":"bing","template":"https://www.bing.com/maps","zoomExtent":[1,22],"default":true,"description":"Satellite and aerial imagery.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/Bing.png"},{"id":"Bologna-Orthophoto-2017","name":"Bologna ortofoto 2017","type":"tms","template":"https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[11.22962,44.53077],[11.23184,44.52461],[11.24123,44.52167],[11.23251,44.50893],[11.23572,44.50323],[11.25009,44.50116],[11.24765,44.49644],[11.25708,44.49765],[11.25653,44.49294],[11.29461,44.48981],[11.29676,44.4857],[11.28807,44.47586],[11.29226,44.4609],[11.28447,44.45459],[11.28228,44.42572],[11.29347,44.4276],[11.29254,44.43377],[11.31339,44.42103],[11.32504,44.42274],[11.33695,44.42772],[11.33765,44.43167],[11.3315,44.43273],[11.33453,44.43867],[11.34466,44.43594],[11.34498,44.44093],[11.36235,44.45099],[11.37312,44.44935],[11.37498,44.45897],[11.39499,44.46368],[11.4011,44.46122],[11.39464,44.46803],[11.41577,44.48376],[11.42559,44.4845],[11.42717,44.48921],[11.41727,44.4906],[11.43363,44.51312],[11.42692,44.51532],[11.43034,44.5196],[11.42466,44.51959],[11.41987,44.52934],[11.4143,44.52564],[11.40739,44.52851],[11.41487,44.53999],[11.38871,44.54145],[11.39082,44.54553],[11.36474,44.55253],[11.36414,44.55609],[11.3573,44.5519],[11.34375,44.55333],[11.33589,44.54299],[11.33145,44.54734],[11.31349,44.54722],[11.30929,44.5295],[11.29104,44.53581],[11.28179,44.54851],[11.26911,44.53248],[11.25118,44.55578],[11.24499,44.55569],[11.22962,44.53077]]],"terms_url":"http://dati.comune.bologna.it/node/3449","terms_text":"© Comune di Bologna cc-by 4.0 ODbL compliant","best":true},{"id":"Bonvillars-2013","name":"Bonvillars Orthophoto 2013","type":"tms","template":"https://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[6.66713,46.83358],[6.66313,46.83833],[6.67213,46.84191],[6.6749,46.84226],[6.67843,46.83807],[6.66713,46.83358]]],"terms_url":"https://osmdata.asitvd.ch/","terms_text":"Bonvillars - Orthophoto technique 2013"},{"id":"Bordeaux_2012","name":"Bordeaux - 2012","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"terms_text":"Communauté urbaine de Bordeaux - 2012"},{"id":"Bordeaux_2016","name":"Bordeaux 2016","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2016/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"terms_text":"Bordeaux Métropole - 2016"},{"id":"brazos_county_2019_wms","name":"Brazos County Imagery 2019","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap19_NC_CIR_6in_Brazos/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[-96.15,30.33],[-96.18,30.33],[-96.18,30.36],[-96.24,30.36],[-96.24,30.33],[-96.3,30.33],[-96.3,30.36],[-96.33,30.36],[-96.33,30.45],[-96.36,30.45],[-96.36,30.51],[-96.42,30.51],[-96.42,30.54],[-96.45,30.54],[-96.45,30.57],[-96.48,30.57],[-96.48,30.6],[-96.57,30.6],[-96.57,30.63],[-96.63,30.63],[-96.63,30.66],[-96.6,30.66],[-96.6,30.69],[-96.57,30.69],[-96.57,30.72],[-96.54,30.72],[-96.54,30.75],[-96.48,30.75],[-96.48,30.78],[-96.45,30.78],[-96.45,30.81],[-96.42,30.81],[-96.42,30.87],[-96.39,30.87],[-96.39,30.9],[-96.36,30.9],[-96.36,30.93],[-96.33,30.93],[-96.33,30.96],[-96.27,30.96],[-96.27,30.99],[-96.21,30.99],[-96.21,30.96],[-96.18,30.96],[-96.18,30.87],[-96.15,30.87],[-96.15,30.54],[-96.12,30.54],[-96.12,30.45],[-96.06,30.45],[-96.06,30.39],[-96.09,30.39],[-96.09,30.36],[-96.12,30.36],[-96.12,30.33],[-96.15,30.33]]],"terms_url":"https://data.tnris.org/collection/aa2cd74e-9c2d-4f00-bae5-609b5e898093","terms_text":"Strategic Mapping Program (StratMap). Brazos County Imagery, 2019-01-29","best":true},{"id":"Budapest_XI_2015","name":"Budapest district XI orthophoto 2015","type":"wms","template":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto2015_20160304&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"terms_url":"https://terinfo.ujbuda.hu","terms_text":"Budapest XI. kerület önkormányzata","description":"5 cm resolution bald image"},{"id":"Budapest_XI_2017","name":"Budapest district XI orthophoto 2017","type":"wms","template":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2017&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-03-01T00:00:00.000Z","startDate":"2017-03-01T00:00:00.000Z","polygon":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"terms_url":"https://terinfo.ujbuda.hu","terms_text":"Budapest XI. kerület önkormányzata","description":"5 cm resolution bald image"},{"id":"Budapest_XI_2019","name":"Budapest district XI orthophoto 2019","type":"wms","template":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2019&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"terms_url":"http://terinfo.ujbuda.hu","terms_text":"Budapest XI. kerület önkormányzata","best":true,"description":"5 cm resolution bald image"},{"id":"Cadastre","name":"Cadastre","type":"tms","template":"https://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png","zoomExtent":[12,22],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation","terms_text":"cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2020","description":"French land registry","icon":"https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png"},{"id":"lu.geoportail.opendata.cadastre","name":"Cadastre geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"osm-cambodia_laos_thailand_vietnam-bilingual","name":"Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual","type":"tms","template":"https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"polygon":[[[92.10238,20.81356],[93.56905,24.09755],[94.1733,23.92695],[95.19503,26.70727],[96.75509,27.52867],[97.58456,28.5806],[98.73812,27.51405],[98.74362,25.87992],[97.67794,24.75774],[97.96359,24.04238],[98.82052,24.16272],[99.52364,22.95934],[100.36959,21.50514],[101.79232,22.48305],[105.36288,23.33311],[106.81857,22.84801],[108.19735,21.36197],[107.43895,18.85398],[117.14537,7.46562],[119.6173,5.28754],[118.12315,4.05023],[117.25523,4.36249],[115.86546,4.34606],[115.50841,3.02498],[114.5526,1.5101],[113.54186,1.25748],[112.96507,1.5705],[112.24547,1.5101],[111.67418,1.01583],[110.4547,0.90049],[109.49889,1.9219],[103.22569,1.12568],[100.46263,3.23889],[97.6721,8.05888],[93.89281,15.93987],[92.10238,20.81356]]],"terms_url":"https://www.osm-tools.org","terms_text":"© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"},{"id":"canaan_drone_red_cross_201712","name":"Canaan - American Red Cross, Dec-2017","type":"tms","template":"https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png","endDate":"2017-12-20T00:00:00.000Z","startDate":"2017-12-11T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[-72.26734,18.63561],[-72.2636,18.6373],[-72.26116,18.64141],[-72.25983,18.64588],[-72.25811,18.64742],[-72.24502,18.64795],[-72.23433,18.64807],[-72.22734,18.6482],[-72.21953,18.65438],[-72.2161,18.65446],[-72.21584,18.66222],[-72.21725,18.66739],[-72.21889,18.67019],[-72.22309,18.66958],[-72.22343,18.67312],[-72.22502,18.6732],[-72.22545,18.67609],[-72.23288,18.67597],[-72.23339,18.67877],[-72.23674,18.67857],[-72.23854,18.67975],[-72.24,18.68129],[-72.24463,18.68207],[-72.24682,18.6817],[-72.24605,18.67698],[-72.25094,18.67698],[-72.25511,18.67902],[-72.25961,18.67898],[-72.26081,18.67743],[-72.27038,18.67711],[-72.27901,18.67682],[-72.28373,18.67893],[-72.28613,18.68154],[-72.29665,18.68178],[-72.30184,18.68568],[-72.3012,18.68824],[-72.30802,18.69324],[-72.30948,18.69308],[-72.31699,18.69682],[-72.32806,18.70528],[-72.3384,18.69902],[-72.34012,18.69666],[-72.33961,18.69426],[-72.33377,18.68357],[-72.33135,18.68192],[-72.32551,18.68093],[-72.32027,18.67741],[-72.31626,18.67477],[-72.31167,18.672],[-72.308,18.66995],[-72.30534,18.66926],[-72.30068,18.66499],[-72.29796,18.66479],[-72.29609,18.66129],[-72.29315,18.65999],[-72.29519,18.65497],[-72.28414,18.64962],[-72.27804,18.64523],[-72.27487,18.64212],[-72.27352,18.64057],[-72.2706,18.63901],[-72.26734,18.63561]]],"terms_url":"http://americanredcross.github.io/","terms_text":"American Red Cross","description":"Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross."},{"id":"Geneve-dsm-2014","name":"Canton de Génève, MNA RELIEF OMBRE SURFACE 2014 (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_SURFACE/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-dtm-2014","name":"Canton de Génève, MNA RELIEF OMBRE TERRAIN 2014 (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_TERRAIN/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-orthophoto-2016","name":"Canton de Génève, Orthophoto 2016 (5cm) (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2016/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-orthophoto-2018","name":"Canton de Génève, Orthophoto 2018 (20cm) (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2018/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-orthophoto-2019","name":"Canton de Génève, Orthophoto 2019 (5cm) (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2019/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"terms_text":"Système d'information du territoire à Genève (SITG)","best":true},{"id":"CTFRIBOURG2016","name":"Canton Fribourg 2016","type":"tms","template":"https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[1,21],"polygon":[[[6.79478,46.57542],[6.79949,46.57407],[6.80256,46.57491],[6.80336,46.57687],[6.80427,46.57664],[6.80489,46.57792],[6.80794,46.57761],[6.8094,46.57885],[6.81084,46.57896],[6.81322,46.57823],[6.81153,46.58099],[6.8142,46.58396],[6.81411,46.58567],[6.8206,46.58368],[6.82371,46.57747],[6.82693,46.57796],[6.82927,46.57637],[6.83485,46.57533],[6.83744,46.57677],[6.83691,46.57748],[6.83982,46.57896],[6.84239,46.58244],[6.84532,46.58276],[6.84644,46.58394],[6.84857,46.58331],[6.85087,46.58113],[6.85262,46.58197],[6.85996,46.57987],[6.86554,46.57725],[6.86507,46.57623],[6.8679,46.57515],[6.87446,46.56497],[6.8845,46.56195],[6.88686,46.56341],[6.89214,46.5679],[6.89918,46.56671],[6.89885,46.56499],[6.89393,46.55991],[6.88822,46.55815],[6.86839,46.54164],[6.86498,46.53896],[6.86015,46.53597],[6.85563,46.54086],[6.85501,46.54144],[6.85087,46.54111],[6.8407,46.53819],[6.83032,46.53744],[6.82783,46.54298],[6.82553,46.54357],[6.81278,46.52707],[6.81088,46.52513],[6.81534,46.52139],[6.8181,46.5165],[6.82263,46.51411],[6.82429,46.51207],[6.83034,46.51246],[6.83239,46.50544],[6.83503,46.50231],[6.84126,46.49706],[6.84294,46.49632],[6.84554,46.49667],[6.84775,46.49369],[6.84891,46.49337],[6.85729,46.49305],[6.86276,46.49384],[6.86634,46.50079],[6.87244,46.50431],[6.88168,46.51257],[6.8967,46.52044],[6.89773,46.52005],[6.89711,46.51766],[6.89767,46.51483],[6.89522,46.51079],[6.89572,46.50773],[6.89974,46.51039],[6.90142,46.51233],[6.92517,46.50769],[6.92759,46.50467],[6.93363,46.50167],[6.93674,46.50096],[6.95614,46.49949],[6.97239,46.48879],[6.97581,46.4784],[6.97783,46.47289],[6.97815,46.46833],[6.97906,46.46107],[6.98016,46.45896],[6.99212,46.44891],[6.98361,46.43873],[6.98394,46.43799],[6.98746,46.43794],[7.01786,46.44707],[7.02103,46.45729],[7.06583,46.48904],[7.0724,46.4864],[7.10037,46.48699],[7.12279,46.49869],[7.1264,46.50317],[7.13096,46.50466],[7.13624,46.50861],[7.13704,46.51308],[7.14005,46.51688],[7.14044,46.51988],[7.14318,46.52183],[7.1437,46.52475],[7.1453,46.52701],[7.14835,46.52846],[7.15834,46.52681],[7.16346,46.52855],[7.16709,46.53101],[7.18234,46.53837],[7.19218,46.54656],[7.20081,46.54169],[7.20108,46.543],[7.20765,46.53291],[7.21417,46.53762],[7.21811,46.54211],[7.22171,46.54481],[7.22311,46.5476],[7.22543,46.54923],[7.2322,46.55123],[7.23614,46.554],[7.24047,46.55424],[7.24705,46.55623],[7.25574,46.56029],[7.26385,46.56752],[7.2681,46.57369],[7.28136,46.58411],[7.2992,46.5791],[7.30805,46.58132],[7.31254,46.58917],[7.3207,46.59183],[7.31479,46.60042],[7.3162,46.60937],[7.31826,46.61615],[7.3178,46.61856],[7.31213,46.6217],[7.31327,46.63662],[7.32284,46.63731],[7.32684,46.63873],[7.32975,46.64171],[7.32787,46.64616],[7.321,46.65465],[7.32345,46.65526],[7.32914,46.65459],[7.33116,46.65522],[7.33403,46.65471],[7.34549,46.6553],[7.34756,46.65307],[7.35063,46.65164],[7.35079,46.64799],[7.35456,46.64669],[7.3558,46.64533],[7.35528,46.64193],[7.35714,46.63927],[7.35877,46.64418],[7.36209,46.64683],[7.36229,46.64791],[7.36608,46.64898],[7.37747,46.65636],[7.36933,46.65564],[7.36953,46.65748],[7.37103,46.65907],[7.37083,46.66085],[7.37187,46.66283],[7.37122,46.66375],[7.37252,46.66757],[7.37108,46.66942],[7.37649,46.67503],[7.37293,46.68012],[7.37777,46.68357],[7.37587,46.68645],[7.376,46.6878],[7.38027,46.69018],[7.37693,46.69272],[7.3686,46.69265],[7.3649,46.69505],[7.36261,46.69928],[7.3598,46.69802],[7.34598,46.69895],[7.34604,46.7019],[7.34939,46.70555],[7.35037,46.70874],[7.35021,46.71119],[7.34903,46.71249],[7.34065,46.71464],[7.33277,46.71491],[7.32868,46.71641],[7.31011,46.71815],[7.30785,46.71717],[7.30002,46.72247],[7.29683,46.72737],[7.29685,46.73565],[7.29834,46.74013],[7.30304,46.74517],[7.30454,46.74816],[7.30486,46.75026],[7.30335,46.7514],[7.30309,46.75261],[7.30359,46.75919],[7.29987,46.76375],[7.29881,46.76513],[7.29307,46.77136],[7.29532,46.77537],[7.29639,46.77729],[7.30081,46.77905],[7.30053,46.78064],[7.30113,46.78134],[7.30447,46.78321],[7.30447,46.78415],[7.30207,46.78638],[7.30351,46.78887],[7.30201,46.79079],[7.30159,46.79283],[7.30732,46.79872],[7.31044,46.80823],[7.31537,46.81246],[7.32028,46.8149],[7.32047,46.81564],[7.32072,46.82011],[7.31981,46.82515],[7.32891,46.829],[7.3302,46.82968],[7.33123,46.83177],[7.33103,46.8328],[7.32926,46.83563],[7.32333,46.84041],[7.30755,46.84704],[7.30775,46.84808],[7.30613,46.84999],[7.31207,46.85557],[7.31351,46.85936],[7.31739,46.8606],[7.32087,46.86154],[7.32576,46.85681],[7.323,46.85476],[7.32603,46.85163],[7.33181,46.8512],[7.33536,46.85043],[7.33678,46.84979],[7.33821,46.84946],[7.34726,46.85375],[7.34934,46.85331],[7.35167,46.85502],[7.35444,46.85875],[7.35772,46.86065],[7.35925,46.86311],[7.35794,46.86513],[7.35838,46.8688],[7.35738,46.8701],[7.35386,46.87129],[7.35253,46.87555],[7.35339,46.88676],[7.34843,46.88934],[7.32573,46.89373],[7.30935,46.89152],[7.29618,46.89377],[7.28938,46.89377],[7.28639,46.89269],[7.28245,46.8898],[7.2802,46.8896],[7.27259,46.89249],[7.26634,46.89361],[7.25931,46.89797],[7.24433,46.90037],[7.24314,46.89792],[7.23633,46.89809],[7.23203,46.90029],[7.2309,46.9024],[7.23032,46.90394],[7.22351,46.90276],[7.21755,46.89735],[7.21244,46.90173],[7.2088,46.9026],[7.20781,46.90913],[7.20578,46.91477],[7.20692,46.92481],[7.2111,46.92527],[7.21854,46.92434],[7.2342,46.92939],[7.23411,46.93669],[7.23477,46.93827],[7.2302,46.93995],[7.2282,46.93881],[7.22555,46.93633],[7.2174,46.93307],[7.2093,46.93334],[7.20823,46.93323],[7.2058,46.94023],[7.2055,46.94112],[7.20951,46.94188],[7.21027,46.94302],[7.21044,46.94569],[7.21011,46.94781],[7.20885,46.95435],[7.21102,46.95652],[7.20838,46.95768],[7.20742,46.95967],[7.19764,46.96065],[7.19459,46.96135],[7.19463,46.9629],[7.19552,46.96416],[7.19633,46.96365],[7.19794,46.96445],[7.1993,46.9638],[7.20646,46.96413],[7.20745,46.96751],[7.21422,46.96692],[7.21467,46.97133],[7.21739,46.97147],[7.21686,46.97271],[7.22247,46.97454],[7.22163,46.97556],[7.22821,46.97836],[7.23569,46.98456],[7.23486,46.98675],[7.22594,46.9924],[7.22625,46.99868],[7.22575,46.99915],[7.21779,47.00641],[7.21299,47.0068],[7.09058,46.978],[7.03295,46.98265],[6.73785,46.81195],[6.73908,46.71021],[6.81908,46.65533],[6.82741,46.65982],[6.82089,46.65179],[6.81729,46.64923],[6.81851,46.6478],[6.81458,46.64747],[6.81344,46.64953],[6.81194,46.6492],[6.81081,46.65038],[6.80674,46.65059],[6.80203,46.64889],[6.79891,46.64914],[6.79879,46.64781],[6.80367,46.64567],[6.80325,46.6448],[6.8038,46.64451],[6.80321,46.64376],[6.80171,46.64421],[6.79895,46.63959],[6.79692,46.63314],[6.79838,46.63016],[6.80043,46.62991],[6.80065,46.62843],[6.80172,46.62854],[6.80228,46.62775],[6.80197,46.62507],[6.80355,46.62124],[6.80244,46.61877],[6.80296,46.61615],[6.80185,46.61555],[6.80389,46.60903],[6.80239,46.60142],[6.79833,46.59986],[6.8002,46.59362],[6.80124,46.5925],[6.79848,46.58616],[6.79948,46.58559],[6.79894,46.58205],[6.79611,46.57932],[6.79626,46.57728],[6.79478,46.57542]]],"terms_text":"Canton Fribourg 2016 'orthophoto technique'","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Canvec","name":"Canvec - English","type":"wms","template":"https://maps.geogratis.gc.ca/wms/canvec_en?LAYERS=canvec&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"Canvec_French","name":"Canvec - French","type":"wms","template":"https://maps.geogratis.gc.ca/wms/canvec_fr?LAYERS=canvec&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"caparea_2019_wms","name":"CapArea Imagery 2019","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap19_NC_CIR_CapArea/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[-96.85,29.6],[-97.15,29.6],[-97.15,29.65],[-97.25,29.65],[-97.25,29.7],[-97.3,29.7],[-97.3,29.75],[-97.35,29.75],[-97.35,29.7],[-97.45,29.7],[-97.45,29.65],[-97.55,29.65],[-97.55,29.6],[-97.65,29.6],[-97.65,29.65],[-97.75,29.65],[-97.75,29.7],[-97.8,29.7],[-97.8,29.75],[-97.85,29.75],[-97.85,29.8],[-97.95,29.8],[-97.95,29.75],[-98.05,29.75],[-98.05,29.85],[-98.15,29.85],[-98.15,29.9],[-98.2,29.9],[-98.2,29.95],[-98.25,29.95],[-98.25,30],[-98.3,30],[-98.3,29.95],[-98.35,29.95],[-98.35,29.9],[-98.45,29.9],[-98.45,29.95],[-98.5,29.95],[-98.5,30],[-98.55,30],[-98.55,30.05],[-98.6,30.05],[-98.6,30.45],[-99,30.45],[-99,30.95],[-98.5,30.95],[-98.5,31.05],[-97.85,31.05],[-97.85,30.95],[-97.75,30.95],[-97.75,30.9],[-97.55,30.9],[-97.55,30.85],[-97.4,30.85],[-97.4,30.8],[-97.3,30.8],[-97.3,30.75],[-97.25,30.75],[-97.25,30.7],[-97.2,30.7],[-97.2,30.6],[-97.15,30.6],[-97.15,30.5],[-97.1,30.5],[-97.1,30.55],[-97,30.55],[-97,30.6],[-96.95,30.6],[-96.95,30.55],[-96.9,30.55],[-96.9,30.5],[-96.85,30.5],[-96.85,30.45],[-96.8,30.45],[-96.8,30.4],[-96.75,30.4],[-96.75,30.35],[-96.65,30.35],[-96.65,30.3],[-96.6,30.3],[-96.6,30.25],[-96.65,30.25],[-96.65,30.15],[-96.6,30.15],[-96.6,30.05],[-96.55,30.05],[-96.55,29.9],[-96.6,29.9],[-96.6,29.85],[-96.65,29.85],[-96.65,29.8],[-96.7,29.8],[-96.7,29.75],[-96.75,29.75],[-96.75,29.7],[-96.8,29.7],[-96.8,29.65],[-96.85,29.65],[-96.85,29.6]]],"terms_url":"https://data.tnris.org/collection/f84442b8-ac2a-4708-b5c0-9d15515f4483","terms_text":"Strategic Mapping Program (StratMap). CapArea Imagery, 2019-01-29","best":true},{"id":"COS2010_v1.0","name":"Carta de Uso do Solo 2010 (WMS)","type":"wms","template":"http://mapas.dgterritorio.pt/wms-inspire/cos2010v1?LAYERS=COS2010_v1.0&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LANGUAGE=por","projection":"EPSG:3857","endDate":"2010-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[14,18],"polygon":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"terms_url":"http://www.dgterritorio.pt/dados_abertos/cos/","terms_text":"Direcção-Geral do Território","icon":"http://www.igeo.pt/favicon.ico"},{"id":"BDGEx_ctm_multi","name":"Cartas Topográficas do Exército Brasileiro","type":"wms","template":"https://bdgex.eb.mil.br/mapcache?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ctmmultiescalas_mercator&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[1,22],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]]],"terms_text":"BDGEx","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/Exercito.png"},{"id":"Cartoriviera-2012","name":"Cartoriviera - Orthophoto 2012","type":"tms","template":"https://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[7.02235,46.42856],[7.0224,46.42045],[7.02176,46.41955],[7.02225,46.41954],[7.02161,46.41749],[7.02242,46.4174],[7.02242,46.41681],[7.02113,46.41443],[7.02164,46.41259],[7.0216,46.41188],[7.01918,46.41055],[7.01896,46.41004],[7.01757,46.40826],[7.01426,46.40696],[7.00948,46.40695],[7.00952,46.40451],[7.00368,46.40153],[6.97052,46.40139],[6.97056,46.39354],[6.96507,46.38333],[6.89379,46.383],[6.89327,46.39209],[6.8968,46.4],[6.89678,46.40097],[6.89395,46.401],[6.89768,46.40888],[6.89246,46.41386],[6.89237,46.41807],[6.8949,46.4193],[6.89285,46.41948],[6.89395,46.42312],[6.89225,46.42339],[6.89219,46.42802],[6.88743,46.428],[6.87652,46.43163],[6.86624,46.43633],[6.84003,46.44591],[6.83504,46.44934],[6.827,46.45204],[6.82695,46.45379],[6.81953,46.45655],[6.80361,46.45993],[6.78775,46.46253],[6.78697,46.5246],[6.82604,46.5248],[6.82609,46.52662],[6.83907,46.5267],[6.83888,46.55006],[6.90658,46.55042],[6.912,46.54301],[6.91083,46.53983],[6.90979,46.53512],[6.90931,46.53517],[6.90867,46.53373],[6.91195,46.53297],[6.91335,46.53604],[6.9268,46.53364],[6.92723,46.5349],[6.93714,46.53311],[6.93691,46.5327],[6.94028,46.53196],[6.94164,46.53477],[6.94309,46.53455],[6.94345,46.53528],[6.95641,46.53003],[6.95632,46.52733],[6.95111,46.52725],[6.95301,46.52611],[6.94341,46.52605],[6.94343,46.52546],[7.01629,46.52568],[7.02158,46.52211],[7.02196,46.47355],[7.07099,46.47368],[7.07402,46.4719],[7.07383,46.4326],[7.05947,46.43233],[7.05278,46.42879],[7.02235,46.42856]]],"terms_url":"https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100","terms_text":"Cartoriviera"},{"id":"Catastro-Spain","name":"Catastro Spain","type":"wms","template":"https://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Catastro&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]]},{"id":"Chorzow-buildings","name":"Chorzów: Buildings","type":"wms","template":"http://e-odgik.chorzow.eu/services/wms/wms_funkcje_bud/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=3,2,1,8,7,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[18.94562,50.31836],[18.94349,50.32385],[18.95466,50.32599],[18.96426,50.33307],[18.96521,50.33777],[18.98692,50.33621],[18.98468,50.32501],[18.99777,50.32204],[18.99686,50.31716],[18.98774,50.31736],[18.98695,50.30989],[18.99736,50.30031],[18.99744,50.29722],[19.00546,50.29548],[19.0073,50.28342],[19.00574,50.27871],[18.99236,50.27091],[18.96792,50.28661],[18.96215,50.27972],[18.96169,50.27337],[18.95824,50.27291],[18.95492,50.26193],[18.96014,50.24927],[18.95672,50.2452],[18.95555,50.23891],[18.94132,50.243],[18.93475,50.25314],[18.93324,50.26032],[18.93262,50.26588],[18.9296,50.26774],[18.92976,50.27131],[18.92669,50.27289],[18.92632,50.27623],[18.93071,50.27619],[18.93437,50.28729],[18.92383,50.29533],[18.92635,50.29986],[18.91905,50.30212],[18.91955,50.30576],[18.92463,50.31192],[18.9262,50.31883],[18.94562,50.31836]]],"terms_text":"Urząd Miasta Chorzowa"},{"id":"amarillo_2016_wms","name":"City of Amarillo Imagery 2015","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_Amarillo/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[-101.62309,35.13352],[-101.62265,35.12001],[-101.6391,35.11965],[-101.65554,35.11929],[-101.67199,35.11893],[-101.68843,35.11857],[-101.70487,35.1182],[-101.72132,35.11783],[-101.73776,35.11746],[-101.7542,35.11709],[-101.77065,35.11672],[-101.78709,35.11634],[-101.80353,35.11596],[-101.81997,35.11558],[-101.83641,35.11519],[-101.85285,35.11481],[-101.86929,35.11442],[-101.88573,35.11403],[-101.90217,35.11364],[-101.91861,35.11324],[-101.93505,35.11284],[-101.95149,35.11244],[-101.96793,35.11204],[-101.98437,35.11164],[-102.00081,35.11123],[-102.0013,35.12474],[-102.0018,35.13825],[-102.00229,35.15175],[-102.00279,35.16526],[-102.00329,35.17877],[-102.00378,35.19228],[-102.00428,35.20578],[-102.00478,35.21929],[-102.00528,35.2328],[-102.00578,35.2463],[-102.00628,35.25981],[-101.98981,35.26022],[-101.97334,35.26062],[-101.95687,35.26103],[-101.9404,35.26143],[-101.92393,35.26183],[-101.90747,35.26223],[-101.891,35.26262],[-101.89148,35.27613],[-101.875,35.27652],[-101.87548,35.29003],[-101.87596,35.30354],[-101.87644,35.31705],[-101.87692,35.33056],[-101.8774,35.34406],[-101.87788,35.35757],[-101.87836,35.37108],[-101.87884,35.38459],[-101.86234,35.38498],[-101.84585,35.38537],[-101.82935,35.38576],[-101.81285,35.38614],[-101.79636,35.38653],[-101.77986,35.38691],[-101.76336,35.38729],[-101.74687,35.38766],[-101.74641,35.37415],[-101.74595,35.36064],[-101.74549,35.34714],[-101.74504,35.33363],[-101.74458,35.32012],[-101.74412,35.30661],[-101.74367,35.2931],[-101.74321,35.27959],[-101.74275,35.26608],[-101.7423,35.25257],[-101.72583,35.25294],[-101.70936,35.25331],[-101.69289,35.25368],[-101.67642,35.25404],[-101.65995,35.25441],[-101.64347,35.25477],[-101.627,35.25513],[-101.61053,35.25548],[-101.6101,35.24197],[-101.60966,35.22846],[-101.60923,35.21495],[-101.6088,35.20144],[-101.60837,35.18792],[-101.62482,35.18757],[-101.62439,35.17406],[-101.62396,35.16055],[-101.62352,35.14703],[-101.62309,35.13352]]],"terms_url":"https://data.tnris.org/collection/c4045402-55b8-41ee-a911-adbda2a2c4aa","terms_text":"Strategic Mapping Program (StratMap). City of Amarillo Imagery, 2015-03-13"},{"id":"South_Africa-CapeTown-Aerial-2013","name":"City of Cape Town 2013 Aerial","type":"tms","template":"https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[1,21],"polygon":[[[18.44866,-33.89362],[18.44859,-33.90264],[18.4702,-33.90277],[18.48139,-33.84724],[18.44925,-33.80107],[18.42815,-33.73564],[18.43914,-33.71772],[18.40719,-33.65899],[18.33224,-33.57752],[18.33245,-33.55045],[18.354,-33.55059],[18.35425,-33.5236],[18.36524,-33.52366],[18.36503,-33.5148],[18.37601,-33.51477],[18.37605,-33.5058],[18.42966,-33.50594],[18.4297,-33.48785],[18.44049,-33.48789],[18.4406,-33.46988],[18.49437,-33.4701],[18.49433,-33.47916],[18.51583,-33.47917],[18.51574,-33.48819],[18.52647,-33.4883],[18.52632,-33.52435],[18.54793,-33.52443],[18.54795,-33.51539],[18.56937,-33.5155],[18.56937,-33.52448],[18.58012,-33.52453],[18.58007,-33.5426],[18.59078,-33.5426],[18.59074,-33.56064],[18.57995,-33.56053],[18.57988,-33.56962],[18.5907,-33.56962],[18.59065,-33.57868],[18.62301,-33.57873],[18.62292,-33.58773],[18.66597,-33.58789],[18.66593,-33.61493],[18.67672,-33.61497],[18.67658,-33.65103],[18.6873,-33.65102],[18.68734,-33.66004],[18.69807,-33.66009],[18.69807,-33.66907],[18.75204,-33.66925],[18.75208,-33.64219],[18.77364,-33.64225],[18.77371,-33.63319],[18.82746,-33.6333],[18.82752,-33.6603],[18.81667,-33.66029],[18.8166,-33.67832],[18.80581,-33.67831],[18.80581,-33.70539],[18.8274,-33.70544],[18.82733,-33.72347],[18.83812,-33.72343],[18.83804,-33.74139],[18.81652,-33.74137],[18.81637,-33.79551],[18.80559,-33.79551],[18.80551,-33.81357],[18.79476,-33.81355],[18.79472,-33.83154],[18.77311,-33.83152],[18.77313,-33.84052],[18.76236,-33.84052],[18.76227,-33.90359],[18.75146,-33.90352],[18.75108,-33.98478],[18.76191,-33.9848],[18.76178,-34.02988],[18.7726,-34.0299],[18.77258,-34.03891],[18.79403,-34.03894],[18.79388,-34.0407],[18.79845,-34.04119],[18.80324,-34.04118],[18.80341,-34.03892],[18.81594,-34.03897],[18.81634,-34.02993],[18.83798,-34.03165],[18.838,-34.03],[18.84842,-34.03001],[18.84847,-34.02185],[18.85993,-34.02347],[18.85986,-34.02101],[18.86827,-34.02208],[18.86819,-34.02117],[18.88546,-34.02343],[18.88518,-34.02132],[18.90252,-34.02103],[18.90258,-34.012],[18.91342,-34.012],[18.91348,-33.99396],[18.94588,-33.99403],[18.94586,-34.0031],[18.96743,-34.003],[18.96747,-34.01208],[18.97822,-34.01208],[18.97833,-34.02114],[18.98914,-34.02114],[18.98916,-34.03913],[19.00002,-34.03913],[19.00002,-34.05718],[19.01084,-34.05725],[19.01079,-34.08414],[19,-34.08413],[19.00002,-34.0932],[18.98915,-34.09317],[18.98918,-34.1022],[18.97832,-34.10218],[18.97832,-34.11123],[18.9675,-34.11121],[18.96749,-34.12925],[18.9566,-34.12924],[18.95656,-34.13824],[18.96742,-34.13831],[18.96742,-34.14732],[18.98918,-34.1473],[18.98918,-34.1653],[18.97827,-34.16529],[18.97832,-34.17429],[18.96742,-34.17427],[18.96746,-34.1833],[18.95656,-34.18332],[18.95656,-34.19236],[18.94574,-34.19232],[18.9457,-34.20132],[18.93487,-34.20137],[18.93489,-34.21933],[18.90236,-34.21935],[18.90176,-34.23626],[18.88784,-34.23735],[18.88942,-34.25541],[18.88059,-34.25534],[18.87927,-34.26443],[18.86969,-34.26441],[18.86971,-34.27344],[18.83714,-34.27342],[18.83712,-34.26438],[18.84802,-34.2644],[18.84803,-34.23739],[18.81549,-34.21028],[18.81565,-34.17413],[18.85488,-34.15627],[18.76176,-34.08405],[18.65337,-34.07748],[18.47974,-34.11012],[18.44637,-34.13423],[18.44445,-34.16409],[18.436,-34.16405],[18.43597,-34.18202],[18.44681,-34.18211],[18.44673,-34.19111],[18.46593,-34.19121],[18.48662,-34.24539],[18.47889,-34.25437],[18.486,-34.25437],[18.46771,-34.29941],[18.48922,-34.34458],[18.50011,-34.34458],[18.49992,-34.36262],[18.46743,-34.36251],[18.46737,-34.35349],[18.3916,-34.31707],[18.39177,-34.29002],[18.37016,-34.28087],[18.37068,-34.21789],[18.34923,-34.18162],[18.32747,-34.18149],[18.32767,-34.16346],[18.31187,-34.15438],[18.3114,-34.14353],[18.32367,-34.13469],[18.34993,-34.10421],[18.33932,-34.08828],[18.36125,-34.05972],[18.35505,-34.05538],[18.34275,-34.06433],[18.32,-34.06443],[18.29607,-34.04513],[18.30682,-34.02526],[18.32877,-34.0192],[18.32892,-34.00125],[18.33974,-34.00127],[18.3398,-33.98663],[18.36287,-33.97351],[18.36381,-33.92925],[18.37262,-33.92927],[18.37284,-33.91776],[18.39773,-33.89335],[18.44866,-33.89362]]],"terms_url":"https://www.capetown.gov.za","terms_text":"City of Cape Town Aerial - OPENSTREETMAP USE ONLY","description":"OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance"},{"id":"South_Africa-CapeTown-Aerial","name":"City of Cape Town 2015 Aerial","type":"tms","template":"https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg","endDate":"2016-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[1,21],"polygon":[[[18.44866,-33.89362],[18.44859,-33.90264],[18.4702,-33.90277],[18.48139,-33.84724],[18.44925,-33.80107],[18.42815,-33.73564],[18.43914,-33.71772],[18.40719,-33.65899],[18.33224,-33.57752],[18.33245,-33.55045],[18.354,-33.55059],[18.35425,-33.5236],[18.36524,-33.52366],[18.36503,-33.5148],[18.37601,-33.51477],[18.37605,-33.5058],[18.42966,-33.50594],[18.4297,-33.48785],[18.44049,-33.48789],[18.4406,-33.46988],[18.49437,-33.4701],[18.49433,-33.47916],[18.51583,-33.47917],[18.51574,-33.48819],[18.52647,-33.4883],[18.52632,-33.52435],[18.54793,-33.52443],[18.54795,-33.51539],[18.56937,-33.5155],[18.56937,-33.52448],[18.58012,-33.52453],[18.58007,-33.5426],[18.59078,-33.5426],[18.59074,-33.56064],[18.57995,-33.56053],[18.57988,-33.56962],[18.5907,-33.56962],[18.59065,-33.57868],[18.62301,-33.57873],[18.62292,-33.58773],[18.66597,-33.58789],[18.66593,-33.61493],[18.67672,-33.61497],[18.67658,-33.65103],[18.6873,-33.65102],[18.68734,-33.66004],[18.69807,-33.66009],[18.69807,-33.66907],[18.75204,-33.66925],[18.75208,-33.64219],[18.77364,-33.64225],[18.77371,-33.63319],[18.82746,-33.6333],[18.82752,-33.6603],[18.81667,-33.66029],[18.8166,-33.67832],[18.80581,-33.67831],[18.80581,-33.70539],[18.8274,-33.70544],[18.82733,-33.72347],[18.83812,-33.72343],[18.83804,-33.74139],[18.81652,-33.74137],[18.81637,-33.79551],[18.80559,-33.79551],[18.80551,-33.81357],[18.79476,-33.81355],[18.79472,-33.83154],[18.77311,-33.83152],[18.77313,-33.84052],[18.76236,-33.84052],[18.76227,-33.90359],[18.75146,-33.90352],[18.75108,-33.98478],[18.76191,-33.9848],[18.76178,-34.02988],[18.7726,-34.0299],[18.77258,-34.03891],[18.79403,-34.03894],[18.79388,-34.0407],[18.79845,-34.04119],[18.80324,-34.04118],[18.80341,-34.03892],[18.81594,-34.03897],[18.81634,-34.02993],[18.83798,-34.03165],[18.838,-34.03],[18.84842,-34.03001],[18.84847,-34.02185],[18.85993,-34.02347],[18.85986,-34.02101],[18.86827,-34.02208],[18.86819,-34.02117],[18.88546,-34.02343],[18.88518,-34.02132],[18.90252,-34.02103],[18.90258,-34.012],[18.91342,-34.012],[18.91348,-33.99396],[18.94588,-33.99403],[18.94586,-34.0031],[18.96743,-34.003],[18.96747,-34.01208],[18.97822,-34.01208],[18.97833,-34.02114],[18.98914,-34.02114],[18.98916,-34.03913],[19.00002,-34.03913],[19.00002,-34.05718],[19.01084,-34.05725],[19.01079,-34.08414],[19,-34.08413],[19.00002,-34.0932],[18.98915,-34.09317],[18.98918,-34.1022],[18.97832,-34.10218],[18.97832,-34.11123],[18.9675,-34.11121],[18.96749,-34.12925],[18.9566,-34.12924],[18.95656,-34.13824],[18.96742,-34.13831],[18.96742,-34.14732],[18.98918,-34.1473],[18.98918,-34.1653],[18.97827,-34.16529],[18.97832,-34.17429],[18.96742,-34.17427],[18.96746,-34.1833],[18.95656,-34.18332],[18.95656,-34.19236],[18.94574,-34.19232],[18.9457,-34.20132],[18.93487,-34.20137],[18.93489,-34.21933],[18.90236,-34.21935],[18.90176,-34.23626],[18.88784,-34.23735],[18.88942,-34.25541],[18.88059,-34.25534],[18.87927,-34.26443],[18.86969,-34.26441],[18.86971,-34.27344],[18.83714,-34.27342],[18.83712,-34.26438],[18.84802,-34.2644],[18.84803,-34.23739],[18.81549,-34.21028],[18.81565,-34.17413],[18.85488,-34.15627],[18.76176,-34.08405],[18.65337,-34.07748],[18.47974,-34.11012],[18.44637,-34.13423],[18.44445,-34.16409],[18.436,-34.16405],[18.43597,-34.18202],[18.44681,-34.18211],[18.44673,-34.19111],[18.46593,-34.19121],[18.48662,-34.24539],[18.47889,-34.25437],[18.486,-34.25437],[18.46771,-34.29941],[18.48922,-34.34458],[18.50011,-34.34458],[18.49992,-34.36262],[18.46743,-34.36251],[18.46737,-34.35349],[18.3916,-34.31707],[18.39177,-34.29002],[18.37016,-34.28087],[18.37068,-34.21789],[18.34923,-34.18162],[18.32747,-34.18149],[18.32767,-34.16346],[18.31187,-34.15438],[18.3114,-34.14353],[18.32367,-34.13469],[18.34993,-34.10421],[18.33932,-34.08828],[18.36125,-34.05972],[18.35505,-34.05538],[18.34275,-34.06433],[18.32,-34.06443],[18.29607,-34.04513],[18.30682,-34.02526],[18.32877,-34.0192],[18.32892,-34.00125],[18.33974,-34.00127],[18.3398,-33.98663],[18.36287,-33.97351],[18.36381,-33.92925],[18.37262,-33.92927],[18.37284,-33.91776],[18.39773,-33.89335],[18.44866,-33.89362]]],"terms_url":"https://www.capetown.gov.za","terms_text":"City of Cape Town Aerial - OPENSTREETMAP USE ONLY","description":"OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance"},{"id":"el_paso_2015_wms","name":"City of El Paso Imagery 2015","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_ElPaso/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[-106.11096,31.50405],[-106.1108,31.49052],[-106.12659,31.49038],[-106.14238,31.49024],[-106.15817,31.4901],[-106.17396,31.48995],[-106.18975,31.48981],[-106.20554,31.48966],[-106.22133,31.48951],[-106.23712,31.48936],[-106.25291,31.48921],[-106.25309,31.50274],[-106.25327,31.51627],[-106.25345,31.5298],[-106.26925,31.52964],[-106.26943,31.54317],[-106.28523,31.54301],[-106.30103,31.54285],[-106.30122,31.55638],[-106.30141,31.56991],[-106.30159,31.58345],[-106.3174,31.58328],[-106.31759,31.59681],[-106.31778,31.61034],[-106.31797,31.62387],[-106.33378,31.62371],[-106.33398,31.63724],[-106.34979,31.63707],[-106.34999,31.6506],[-106.35018,31.66413],[-106.366,31.66396],[-106.3662,31.67749],[-106.38202,31.67732],[-106.39784,31.67715],[-106.39804,31.69068],[-106.39825,31.70421],[-106.39845,31.71774],[-106.39865,31.73127],[-106.41448,31.73109],[-106.43031,31.73092],[-106.43052,31.74444],[-106.44635,31.74427],[-106.46218,31.74409],[-106.46197,31.73056],[-106.4778,31.73037],[-106.49363,31.73019],[-106.50946,31.73],[-106.50968,31.74353],[-106.52551,31.74334],[-106.52573,31.75687],[-106.54156,31.75668],[-106.54179,31.77021],[-106.55762,31.77002],[-106.55785,31.78354],[-106.55808,31.79707],[-106.57392,31.79688],[-106.58976,31.79668],[-106.6056,31.79648],[-106.60583,31.81001],[-106.62167,31.80981],[-106.62191,31.82334],[-106.62214,31.83686],[-106.63799,31.83666],[-106.65384,31.83646],[-106.65408,31.84998],[-106.65432,31.86351],[-106.65456,31.87704],[-106.63871,31.87724],[-106.63895,31.89077],[-106.63919,31.9043],[-106.63943,31.91783],[-106.63967,31.93135],[-106.63991,31.94488],[-106.64015,31.95841],[-106.64039,31.97194],[-106.64063,31.98546],[-106.64087,31.99899],[-106.625,31.99919],[-106.62523,32.01272],[-106.62547,32.02625],[-106.60959,32.02645],[-106.59372,32.02665],[-106.57784,32.02685],[-106.56196,32.02705],[-106.54608,32.02724],[-106.5302,32.02743],[-106.51432,32.02762],[-106.49844,32.02781],[-106.49822,32.01429],[-106.498,32.00076],[-106.48212,32.00094],[-106.46625,32.00113],[-106.45037,32.00131],[-106.4345,32.00149],[-106.41862,32.00167],[-106.40275,32.00185],[-106.38687,32.00202],[-106.37099,32.00219],[-106.37079,31.98866],[-106.37059,31.97514],[-106.37039,31.96161],[-106.37019,31.94808],[-106.36999,31.93455],[-106.36979,31.92102],[-106.36959,31.90749],[-106.36939,31.89396],[-106.36919,31.88043],[-106.35333,31.8806],[-106.33748,31.88077],[-106.32162,31.88094],[-106.30576,31.8811],[-106.28991,31.88126],[-106.27405,31.88142],[-106.2582,31.88158],[-106.24234,31.88174],[-106.22648,31.88189],[-106.21063,31.88204],[-106.19477,31.88219],[-106.17891,31.88234],[-106.16305,31.88249],[-106.1472,31.88263],[-106.13134,31.88277],[-106.11548,31.88291],[-106.11532,31.86938],[-106.11516,31.85585],[-106.11499,31.84232],[-106.11483,31.82879],[-106.11467,31.81526],[-106.11451,31.80173],[-106.11434,31.7882],[-106.11418,31.77467],[-106.11402,31.76114],[-106.11386,31.74761],[-106.1137,31.73408],[-106.11353,31.72055],[-106.11337,31.70701],[-106.11321,31.69348],[-106.11305,31.67995],[-106.11289,31.66642],[-106.11273,31.65289],[-106.11257,31.63936],[-106.1124,31.62583],[-106.11224,31.6123],[-106.11208,31.59877],[-106.11192,31.58524],[-106.11176,31.57171],[-106.1116,31.55817],[-106.11144,31.54464],[-106.11128,31.53111],[-106.11112,31.51758],[-106.11096,31.50405]]],"terms_url":"https://data.tnris.org/collection/8870dbdd-d3fb-4c06-a3d1-c4e407428218","terms_text":"Strategic Mapping Program (StratMap). City of El Paso Imagery, 2015-10-25"},{"id":"georgetown_2016_wms","name":"City of Georgetown Imagery 2015","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_6in_Georgetown/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[-97.67051,30.56165],[-97.67095,30.54571],[-97.68656,30.54603],[-97.68657,30.54571],[-97.70219,30.54603],[-97.7022,30.54571],[-97.71782,30.54603],[-97.71783,30.54571],[-97.73345,30.54603],[-97.73345,30.54572],[-97.74907,30.54603],[-97.74908,30.54572],[-97.76702,30.54608],[-97.76661,30.56138],[-97.78032,30.56166],[-97.78033,30.56135],[-97.79826,30.5617],[-97.79785,30.57732],[-97.79826,30.57733],[-97.79786,30.59264],[-97.81157,30.59291],[-97.81158,30.5926],[-97.82719,30.59291],[-97.8272,30.5926],[-97.84513,30.59295],[-97.84473,30.60827],[-97.85844,30.60853],[-97.85845,30.60823],[-97.87407,30.60853],[-97.87408,30.60823],[-97.892,30.60858],[-97.89161,30.6239],[-97.90762,30.6242],[-97.90723,30.63952],[-97.92324,30.63983],[-97.92285,30.65544],[-97.92324,30.65545],[-97.92286,30.67078],[-97.93657,30.67103],[-97.93657,30.67074],[-97.95449,30.67107],[-97.95411,30.68641],[-97.97011,30.6867],[-97.96973,30.70203],[-97.98573,30.70232],[-97.98536,30.71766],[-98.00135,30.71795],[-98.00098,30.73357],[-98.00135,30.73357],[-98.00093,30.75113],[-97.98569,30.75085],[-97.98535,30.76482],[-97.98573,30.76482],[-97.9853,30.78238],[-97.97007,30.7821],[-97.96968,30.798],[-97.95445,30.79772],[-97.95405,30.81363],[-97.93883,30.81335],[-97.93848,30.82732],[-97.93887,30.82733],[-97.93848,30.84294],[-97.93887,30.84295],[-97.93848,30.85828],[-97.95449,30.85857],[-97.9541,30.87419],[-97.95449,30.8742],[-97.95405,30.89176],[-97.93883,30.89147],[-97.93843,30.90738],[-97.92281,30.90709],[-97.9228,30.90739],[-97.90758,30.9071],[-97.90718,30.92301],[-97.89156,30.92272],[-97.89155,30.92301],[-97.87634,30.92273],[-97.87598,30.93669],[-97.87638,30.9367],[-97.87598,30.95232],[-97.87638,30.95233],[-97.87598,30.96795],[-97.87638,30.96796],[-97.87598,30.98357],[-97.87638,30.98358],[-97.87598,30.99919],[-97.87638,30.9992],[-97.87593,31.01677],[-97.86072,31.01648],[-97.8603,31.03239],[-97.84469,31.03209],[-97.84468,31.03239],[-97.82906,31.03209],[-97.82905,31.0324],[-97.81344,31.03209],[-97.81343,31.0324],[-97.79548,31.03205],[-97.7959,31.01643],[-97.79548,31.01642],[-97.79595,30.99885],[-97.81115,30.99915],[-97.81151,30.98549],[-97.79781,30.98522],[-97.7978,30.98553],[-97.78218,30.98522],[-97.78218,30.98553],[-97.76423,30.98517],[-97.76464,30.96987],[-97.75093,30.9696],[-97.75093,30.96991],[-97.73531,30.9696],[-97.7353,30.96991],[-97.72011,30.96961],[-97.71968,30.98554],[-97.70449,30.98523],[-97.70405,31.00116],[-97.68843,31.00084],[-97.68842,31.00117],[-97.67281,31.00084],[-97.6728,31.00117],[-97.65718,31.00084],[-97.65717,31.00117],[-97.64156,31.00084],[-97.64155,31.00117],[-97.62358,31.0008],[-97.62401,30.98551],[-97.61031,30.98522],[-97.6103,30.98555],[-97.59232,30.98517],[-97.59277,30.96956],[-97.59232,30.96955],[-97.59276,30.95426],[-97.57906,30.95397],[-97.57905,30.9543],[-97.56343,30.95397],[-97.56342,30.95431],[-97.54544,30.95392],[-97.54588,30.93864],[-97.52981,30.93829],[-97.53027,30.92268],[-97.52981,30.92267],[-97.53033,30.90507],[-97.54549,30.9054],[-97.54595,30.88944],[-97.56112,30.88977],[-97.56158,30.87382],[-97.57719,30.87415],[-97.5772,30.87382],[-97.59282,30.87415],[-97.59283,30.87382],[-97.608,30.87415],[-97.60845,30.8582],[-97.62363,30.85852],[-97.62401,30.84488],[-97.60795,30.84455],[-97.60845,30.82695],[-97.62363,30.82727],[-97.62408,30.81133],[-97.63926,30.81165],[-97.63964,30.79801],[-97.62358,30.79767],[-97.62402,30.78205],[-97.62358,30.78205],[-97.62402,30.76643],[-97.62358,30.76642],[-97.62401,30.75113],[-97.61031,30.75085],[-97.6103,30.75118],[-97.59233,30.7508],[-97.59277,30.73518],[-97.59233,30.73517],[-97.59277,30.71955],[-97.59233,30.71954],[-97.59277,30.70393],[-97.59233,30.70392],[-97.59277,30.6883],[-97.59233,30.68829],[-97.59276,30.67301],[-97.5767,30.67267],[-97.57714,30.65739],[-97.56107,30.65704],[-97.56151,30.64177],[-97.54545,30.64142],[-97.5459,30.6258],[-97.54545,30.62579],[-97.5459,30.61018],[-97.54544,30.61017],[-97.54595,30.59257],[-97.56157,30.5929],[-97.56158,30.59257],[-97.57719,30.5929],[-97.5772,30.59257],[-97.59237,30.59289],[-97.59283,30.57695],[-97.60845,30.57728],[-97.60845,30.57695],[-97.62407,30.57728],[-97.62408,30.57695],[-97.6397,30.57728],[-97.6397,30.57695],[-97.65489,30.57727],[-97.65533,30.56133],[-97.67051,30.56165]]],"terms_url":"https://data.tnris.org/collection/a665d1fe-47f4-497c-b467-bb1535a02c9d","terms_text":"Texas Natural Resources Information System (TNRIS). City of Georgetown Imagery, 2015-03-06"},{"id":"lubbock_2016_wms","name":"City of Lubbock Imagery 2015","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_Lubbock/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[-101.73441,33.50842],[-101.73398,33.4949],[-101.75011,33.49455],[-101.76624,33.49419],[-101.78237,33.49383],[-101.7985,33.49346],[-101.81463,33.4931],[-101.83076,33.49273],[-101.84688,33.49236],[-101.86301,33.49199],[-101.87914,33.49161],[-101.89527,33.49124],[-101.91139,33.49086],[-101.92752,33.49048],[-101.94364,33.4901],[-101.95977,33.48971],[-101.97589,33.48933],[-101.99202,33.48894],[-102.00814,33.48855],[-102.02427,33.48815],[-102.04039,33.48776],[-102.05652,33.48736],[-102.07264,33.48696],[-102.08876,33.48656],[-102.10489,33.48616],[-102.10537,33.49967],[-102.12149,33.49926],[-102.13762,33.49885],[-102.13811,33.51236],[-102.13859,33.52587],[-102.13908,33.53938],[-102.13957,33.55289],[-102.14006,33.5664],[-102.14055,33.57991],[-102.14104,33.59342],[-102.14153,33.60693],[-102.12539,33.60734],[-102.12587,33.62084],[-102.12636,33.63435],[-102.11021,33.63476],[-102.09406,33.63517],[-102.07791,33.63557],[-102.06176,33.63597],[-102.04561,33.63637],[-102.02946,33.63677],[-102.01331,33.63716],[-101.99715,33.63756],[-101.981,33.63795],[-101.96485,33.63834],[-101.9487,33.63872],[-101.94823,33.62521],[-101.93208,33.62559],[-101.91593,33.62598],[-101.89978,33.62636],[-101.88363,33.62673],[-101.88408,33.64025],[-101.88453,33.65376],[-101.88498,33.66727],[-101.88543,33.68078],[-101.88589,33.69429],[-101.88634,33.70781],[-101.88679,33.72132],[-101.88724,33.73483],[-101.8877,33.74834],[-101.88815,33.76185],[-101.87197,33.76223],[-101.85579,33.76261],[-101.83962,33.76298],[-101.82344,33.76335],[-101.80726,33.76372],[-101.80682,33.75021],[-101.79064,33.75058],[-101.77447,33.75094],[-101.75829,33.7513],[-101.74211,33.75166],[-101.74168,33.73815],[-101.74125,33.72464],[-101.74082,33.71112],[-101.74039,33.69761],[-101.73996,33.6841],[-101.73953,33.67058],[-101.73911,33.65707],[-101.73868,33.64356],[-101.73825,33.63004],[-101.73782,33.61653],[-101.73739,33.60301],[-101.73697,33.5895],[-101.73654,33.57599],[-101.73611,33.56247],[-101.73569,33.54896],[-101.73526,33.53545],[-101.73483,33.52193],[-101.73441,33.50842]]],"terms_url":"https://data.tnris.org/collection/a5307ec2-8a8b-4647-9d02-87625aeb5cf9","terms_text":"Strategic Mapping Program (StratMap). City of Lubbock Imagery, 2015-03-22"},{"id":"City_of_Melbourne_Feb_2019","name":"City of Melbourne Feb 2019","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.melbourne190203/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w","endDate":"2019-02-03T00:00:00.000Z","startDate":"2019-02-02T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[144.9146,-37.7993],[144.9139,-37.7989],[144.9128,-37.7986],[144.9114,-37.7988],[144.9098,-37.7998],[144.906,-37.8064],[144.9043,-37.8126],[144.9042,-37.8142],[144.9056,-37.8209],[144.9043,-37.8224],[144.899,-37.8273],[144.8969,-37.8301],[144.896,-37.8335],[144.896,-37.8387],[144.897,-37.8419],[144.9011,-37.8469],[144.9052,-37.8502],[144.9068,-37.8506],[144.908,-37.8502],[144.9084,-37.8495],[144.907,-37.8477],[144.9076,-37.8469],[144.9045,-37.8416],[144.9053,-37.8414],[144.9081,-37.8458],[144.9118,-37.8502],[144.9127,-37.8504],[144.9155,-37.8489],[144.9155,-37.8481],[144.914,-37.8459],[144.9162,-37.8445],[144.914,-37.8413],[144.9163,-37.8399],[144.9165,-37.8384],[144.9151,-37.8344],[144.9183,-37.8331],[144.9195,-37.8326],[144.921,-37.8309],[144.9219,-37.83],[144.923,-37.8295],[144.9294,-37.8282],[144.9353,-37.827],[144.9411,-37.8269],[144.9418,-37.8268],[144.9458,-37.8275],[144.9471,-37.8279],[144.9478,-37.8278],[144.9579,-37.8295],[144.9592,-37.8294],[144.9613,-37.829],[144.9625,-37.8297],[144.9648,-37.8318],[144.9657,-37.8323],[144.9662,-37.8323],[144.9703,-37.8312],[144.9705,-37.8323],[144.9711,-37.8331],[144.9735,-37.8351],[144.9743,-37.836],[144.9794,-37.85],[144.9797,-37.8508],[144.9806,-37.8512],[144.9843,-37.8515],[144.9848,-37.8514],[144.9854,-37.8508],[144.9892,-37.8311],[144.9889,-37.8304],[144.9923,-37.8104],[144.9924,-37.8098],[144.9919,-37.809],[144.9745,-37.8071],[144.9768,-37.7933],[144.9767,-37.7928],[144.9764,-37.7923],[144.9759,-37.7922],[144.9698,-37.7915],[144.9708,-37.7857],[144.9704,-37.785],[144.9699,-37.7848],[144.9649,-37.7842],[144.9651,-37.7825],[144.9651,-37.782],[144.9642,-37.7814],[144.964,-37.7808],[144.9639,-37.7796],[144.9635,-37.7785],[144.9627,-37.7778],[144.9614,-37.7772],[144.9392,-37.7746],[144.9384,-37.7746],[144.938,-37.7749],[144.9373,-37.776],[144.9366,-37.7769],[144.9361,-37.7773],[144.936,-37.7779],[144.9378,-37.7814],[144.9383,-37.7842],[144.9391,-37.7865],[144.9389,-37.7867],[144.9388,-37.7873],[144.9377,-37.788],[144.9322,-37.7874],[144.9312,-37.7878],[144.9308,-37.7879],[144.93,-37.7874],[144.9218,-37.7864],[144.9149,-37.7794],[144.9143,-37.7787],[144.9137,-37.7785],[144.9129,-37.7786],[144.9082,-37.7813],[144.9072,-37.7821],[144.9057,-37.7845],[144.9053,-37.7864],[144.9043,-37.7866],[144.9037,-37.7872],[144.9032,-37.7883],[144.902,-37.7888],[144.9014,-37.7896],[144.9019,-37.791],[144.9026,-37.792],[144.9042,-37.7929],[144.9064,-37.7938],[144.9081,-37.7946],[144.9105,-37.7952],[144.9127,-37.796],[144.9143,-37.797],[144.9153,-37.7978],[144.9154,-37.7981],[144.9153,-37.7985],[144.9152,-37.7987],[144.9148,-37.7991],[144.9146,-37.7993]]],"terms_url":"https://data.melbourne.vic.gov.au/Environment/2019-Aerial-Imagery/cwpe-ugri","terms_text":"City of Melbourne","best":true,"icon":"https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png"},{"id":"City_of_Melbourne_May_2018","name":"City of Melbourne May 2018","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.gdbhzo3g/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w","endDate":"2018-05-01T00:00:00.000Z","startDate":"2018-05-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[144.9146,-37.7993],[144.9139,-37.7989],[144.9128,-37.7986],[144.9114,-37.7988],[144.9098,-37.7998],[144.906,-37.8064],[144.9043,-37.8126],[144.9042,-37.8142],[144.9056,-37.8209],[144.9043,-37.8224],[144.899,-37.8273],[144.8969,-37.8301],[144.896,-37.8335],[144.896,-37.8387],[144.897,-37.8419],[144.9011,-37.8469],[144.9052,-37.8502],[144.9068,-37.8506],[144.908,-37.8502],[144.9084,-37.8495],[144.907,-37.8477],[144.9076,-37.8469],[144.9045,-37.8416],[144.9053,-37.8414],[144.9081,-37.8458],[144.9118,-37.8502],[144.9127,-37.8504],[144.9155,-37.8489],[144.9155,-37.8481],[144.914,-37.8459],[144.9162,-37.8445],[144.914,-37.8413],[144.9163,-37.8399],[144.9165,-37.8384],[144.9151,-37.8344],[144.9183,-37.8331],[144.9195,-37.8326],[144.921,-37.8309],[144.9219,-37.83],[144.923,-37.8295],[144.9294,-37.8282],[144.9353,-37.827],[144.9411,-37.8269],[144.9418,-37.8268],[144.9458,-37.8275],[144.9471,-37.8279],[144.9478,-37.8278],[144.9579,-37.8295],[144.9592,-37.8294],[144.9613,-37.829],[144.9625,-37.8297],[144.9648,-37.8318],[144.9657,-37.8323],[144.9662,-37.8323],[144.9703,-37.8312],[144.9705,-37.8323],[144.9711,-37.8331],[144.9735,-37.8351],[144.9743,-37.836],[144.9794,-37.85],[144.9797,-37.8508],[144.9806,-37.8512],[144.9843,-37.8515],[144.9848,-37.8514],[144.9854,-37.8508],[144.9892,-37.8311],[144.9889,-37.8304],[144.9923,-37.8104],[144.9924,-37.8098],[144.9919,-37.809],[144.9745,-37.8071],[144.9768,-37.7933],[144.9767,-37.7928],[144.9764,-37.7923],[144.9759,-37.7922],[144.9698,-37.7915],[144.9708,-37.7857],[144.9704,-37.785],[144.9699,-37.7848],[144.9649,-37.7842],[144.9651,-37.7825],[144.9651,-37.782],[144.9642,-37.7814],[144.964,-37.7808],[144.9639,-37.7796],[144.9635,-37.7785],[144.9627,-37.7778],[144.9614,-37.7772],[144.9392,-37.7746],[144.9384,-37.7746],[144.938,-37.7749],[144.9373,-37.776],[144.9366,-37.7769],[144.9361,-37.7773],[144.936,-37.7779],[144.9378,-37.7814],[144.9383,-37.7842],[144.9391,-37.7865],[144.9389,-37.7867],[144.9388,-37.7873],[144.9377,-37.788],[144.9322,-37.7874],[144.9312,-37.7878],[144.9308,-37.7879],[144.93,-37.7874],[144.9218,-37.7864],[144.9149,-37.7794],[144.9143,-37.7787],[144.9137,-37.7785],[144.9129,-37.7786],[144.9082,-37.7813],[144.9072,-37.7821],[144.9057,-37.7845],[144.9053,-37.7864],[144.9043,-37.7866],[144.9037,-37.7872],[144.9032,-37.7883],[144.902,-37.7888],[144.9014,-37.7896],[144.9019,-37.791],[144.9026,-37.792],[144.9042,-37.7929],[144.9064,-37.7938],[144.9081,-37.7946],[144.9105,-37.7952],[144.9127,-37.796],[144.9143,-37.797],[144.9153,-37.7978],[144.9154,-37.7981],[144.9153,-37.7985],[144.9152,-37.7987],[144.9148,-37.7991],[144.9146,-37.7993]]],"terms_url":"https://data.melbourne.vic.gov.au/Property-Planning/2018-Aerial-Imagery-True-Ortho-/qa5h-sfgh","terms_text":"City of Melbourne","icon":"https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png"},{"id":"turku-orto","name":"City of Turku ortophoto","type":"wms","template":"https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[4,20],"polygon":[[[21.48608,60.90844],[21.49956,60.48377],[21.08957,60.5096],[21.0486,60.22035],[21.00189,60.21285],[21.00908,60.09411],[21.09531,60.03889],[21.10682,59.94328],[21.26923,59.88167],[21.18227,59.70233],[22.11364,59.70921],[22.05903,59.8557],[22.46075,60.18535],[23.15785,60.18892],[23.14815,60.91835],[22.31595,60.91512],[21.48608,60.90844]]],"terms_url":"https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto","terms_text":"© Turun kaupunki","best":true,"description":"Ortophotos from the city of Turku","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png"},{"id":"turku-orto-2018-true","name":"City of Turku ortophoto - 2018 True ortho","type":"wms","template":"https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva 2018 True ortho&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-07-14T00:00:00.000Z","startDate":"2018-07-14T00:00:00.000Z","zoomExtent":[4,20],"polygon":[[[22.20773,60.48192],[22.18898,60.46167],[22.15111,60.4647],[22.11991,60.46316],[22.11448,60.44459],[22.12533,60.43892],[22.14443,60.43815],[22.20536,60.44335],[22.20443,60.43465],[22.14808,60.41251],[22.14125,60.40444],[22.17104,60.38313],[22.2254,60.38328],[22.28446,60.39091],[22.27423,60.40519],[22.30929,60.41024],[22.36908,60.43517],[22.37033,60.44067],[22.33819,60.47484],[22.34456,60.48065],[22.36,60.47545],[22.37127,60.48301],[22.20773,60.48192]]],"terms_url":"https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto","terms_text":"© Turun kaupunki","best":true,"description":"Ortophotos from the city of Turku","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png"},{"id":"Czech_CUZK-KM","name":"Czech CUZK:KM","type":"wms","template":"https://wms.cuzk.cz/wms.asp?service=WMS&VERSION=1.1.1&REQUEST=GetMap&SRS={proj}&LAYERS=parcelni_cisla_i,obrazy_parcel_i,RST_KMD_I,hranice_parcel_i,DEF_BUDOVY,RST_KN_I,dalsi_p_mapy_i,prehledka_kat_prac,prehledka_kat_uz,prehledka_kraju-linie&FORMAT=image/png&transparent=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"overlay":true},{"id":"Czech_CUZK-KM-tms","name":"Czech CUZK:KM tiles proxy","type":"tms","template":"https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png","zoomExtent":[13,18],"polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"overlay":true},{"id":"Czech_pLPIS","name":"Czech pLPIS","type":"wms","template":"https://eagri.cz/public/app/wms/public_DPB_PB_OPV.fcgi?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DPB_UCINNE,DPB_UCINNE_KOD&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=true","projection":"EPSG:4326","polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]]},{"id":"Czech_RUIAN-budovy","name":"Czech RUIAN budovy","type":"tms","template":"https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"terms_url":"https://poloha.net/","terms_text":"Czech RUIAN"},{"id":"Czech_RUIAN-parcely","name":"Czech RUIAN parcely","type":"tms","template":"https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"terms_url":"https://poloha.net/","terms_text":"Czech RUIAN"},{"id":"Czestochowa-buildings","name":"Częstochowa: Buildings","type":"wms","template":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?LAYERS=ieg_budynek&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"terms_text":"Urząd Miasta Częstochowy"},{"id":"DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch","name":"Dakota County GIS 2017 Fall Leaf-Off 6-Inch","type":"wms","template":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2017AirPhotoLeafOff6Inch/ImageServer/WMSServer?LAYERS=2017AirPhotoLeafOff6Inch:None&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"terms_url":"https://dakotacounty.us","terms_text":"Dakota County GIS","icon":"https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png"},{"id":"DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch","name":"Dakota County GIS 2019 Spring Leaf-Off 6-Inch","type":"wms","template":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2019AirPhotoLeafOff6Inch_Spring/ImageServer/WMSServer?LAYERS=2019AirPhotoLeafOff6Inch_Spring:default&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"terms_url":"https://dakotacounty.us","terms_text":"Dakota County GIS","icon":"https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png"},{"id":"dallas_fort_worth_2016_wms","name":"Dallas and Fort Worth Imagery 2015","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap15_NC_CIR_12in_NGA_DFW/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[-96.7411,32.38179],[-96.74144,32.36827],[-96.75737,32.36856],[-96.7733,32.36884],[-96.78923,32.36912],[-96.80517,32.3694],[-96.8211,32.36967],[-96.83703,32.36995],[-96.85297,32.37022],[-96.8689,32.37049],[-96.88483,32.37076],[-96.88452,32.38428],[-96.8842,32.39781],[-96.88389,32.41133],[-96.88357,32.42485],[-96.88326,32.43837],[-96.88294,32.4519],[-96.88262,32.46542],[-96.88231,32.47894],[-96.88199,32.49246],[-96.89795,32.49273],[-96.9139,32.493],[-96.92986,32.49326],[-96.94581,32.49352],[-96.96177,32.49378],[-96.97773,32.49404],[-96.99368,32.49429],[-97.00964,32.49455],[-97.0256,32.4948],[-97.04156,32.49505],[-97.05751,32.4953],[-97.07347,32.49554],[-97.08943,32.49578],[-97.10539,32.49603],[-97.12135,32.49627],[-97.1373,32.4965],[-97.15326,32.49674],[-97.16922,32.49697],[-97.18518,32.4972],[-97.20114,32.49743],[-97.2171,32.49766],[-97.23306,32.49788],[-97.24902,32.49811],[-97.26498,32.49833],[-97.28094,32.49855],[-97.2969,32.49876],[-97.31286,32.49898],[-97.32882,32.49919],[-97.34478,32.4994],[-97.36074,32.49961],[-97.3767,32.49982],[-97.37646,32.51335],[-97.37622,32.52687],[-97.37597,32.5404],[-97.37573,32.55392],[-97.37549,32.56745],[-97.37524,32.58098],[-97.39122,32.58118],[-97.39098,32.59471],[-97.39074,32.60823],[-97.39049,32.62176],[-97.40648,32.62196],[-97.42246,32.62217],[-97.43844,32.62237],[-97.45443,32.62256],[-97.47041,32.62276],[-97.48639,32.62295],[-97.50238,32.62314],[-97.50215,32.63667],[-97.50193,32.6502],[-97.5017,32.66372],[-97.50148,32.67725],[-97.50125,32.69078],[-97.50102,32.7043],[-97.5008,32.71783],[-97.50057,32.73136],[-97.50035,32.74488],[-97.51635,32.74507],[-97.53236,32.74526],[-97.54836,32.74545],[-97.56437,32.74563],[-97.58038,32.74582],[-97.59638,32.746],[-97.61239,32.74617],[-97.6284,32.74635],[-97.62819,32.75988],[-97.62798,32.77341],[-97.62777,32.78693],[-97.62757,32.80046],[-97.62736,32.81399],[-97.62715,32.82751],[-97.62694,32.84104],[-97.62673,32.85457],[-97.62652,32.86809],[-97.62632,32.88162],[-97.62611,32.89515],[-97.6259,32.90868],[-97.62569,32.9222],[-97.62548,32.93573],[-97.62527,32.94926],[-97.62506,32.96278],[-97.64111,32.96296],[-97.6409,32.97648],[-97.64069,32.99001],[-97.64049,33.00354],[-97.62443,33.00336],[-97.60838,33.00318],[-97.59233,33.003],[-97.57627,33.00282],[-97.56022,33.00264],[-97.54417,33.00245],[-97.52812,33.00226],[-97.51206,33.00207],[-97.49601,33.00188],[-97.47996,33.00169],[-97.46391,33.00149],[-97.44786,33.00129],[-97.4318,33.00109],[-97.41575,33.00089],[-97.3997,33.00068],[-97.38365,33.00048],[-97.3676,33.00027],[-97.35155,33.00006],[-97.3513,33.01358],[-97.33524,33.01337],[-97.31919,33.01315],[-97.30314,33.01294],[-97.28709,33.01272],[-97.27103,33.0125],[-97.25498,33.01227],[-97.23893,33.01205],[-97.22288,33.01182],[-97.20683,33.01159],[-97.19078,33.01136],[-97.17472,33.01112],[-97.15867,33.01089],[-97.14262,33.01065],[-97.12657,33.01041],[-97.11052,33.01017],[-97.09447,33.00992],[-97.07842,33.00968],[-97.06237,33.00943],[-97.04632,33.00918],[-97.03027,33.00893],[-97.01422,33.00867],[-97.01392,33.02219],[-97.01362,33.03572],[-97.01331,33.04924],[-97.01301,33.06276],[-97.01271,33.07628],[-97.0124,33.08981],[-97.0121,33.10333],[-97.01179,33.11685],[-97.01149,33.13037],[-96.99542,33.13012],[-96.97935,33.12986],[-96.96327,33.12959],[-96.9472,33.12933],[-96.93113,33.12906],[-96.91506,33.1288],[-96.89899,33.12853],[-96.88292,33.12825],[-96.8826,33.14177],[-96.88227,33.1553],[-96.88195,33.16882],[-96.88162,33.18234],[-96.8813,33.19586],[-96.88097,33.20938],[-96.88065,33.2229],[-96.88032,33.23642],[-96.87999,33.24994],[-96.87967,33.26346],[-96.86357,33.26319],[-96.84748,33.26291],[-96.83139,33.26263],[-96.81529,33.26235],[-96.7992,33.26206],[-96.78311,33.26178],[-96.76701,33.26149],[-96.75092,33.2612],[-96.73483,33.26091],[-96.73518,33.24739],[-96.73553,33.23387],[-96.73587,33.22035],[-96.73622,33.20683],[-96.73657,33.19331],[-96.73692,33.17979],[-96.73727,33.16627],[-96.73761,33.15275],[-96.73796,33.13923],[-96.73831,33.12571],[-96.72224,33.12542],[-96.70617,33.12512],[-96.70582,33.13864],[-96.68975,33.13835],[-96.67368,33.13805],[-96.65761,33.13775],[-96.64155,33.13744],[-96.62548,33.13714],[-96.60941,33.13683],[-96.59334,33.13652],[-96.57727,33.13621],[-96.56121,33.13589],[-96.54514,33.13558],[-96.52907,33.13526],[-96.513,33.13494],[-96.49694,33.13462],[-96.49732,33.1211],[-96.49771,33.10758],[-96.49809,33.09407],[-96.49847,33.08055],[-96.49885,33.06703],[-96.49924,33.05351],[-96.49962,33.04],[-96.48357,33.03967],[-96.48395,33.02616],[-96.48434,33.01264],[-96.46829,33.01231],[-96.45225,33.01199],[-96.43621,33.01166],[-96.42016,33.01133],[-96.40412,33.011],[-96.38808,33.01066],[-96.37204,33.01032],[-96.37244,32.99681],[-96.37284,32.98329],[-96.37324,32.96977],[-96.37364,32.95626],[-96.37404,32.94274],[-96.37444,32.92923],[-96.37484,32.91571],[-96.35881,32.91537],[-96.35922,32.90186],[-96.35962,32.88834],[-96.36002,32.87482],[-96.36042,32.86131],[-96.36082,32.84779],[-96.36122,32.83427],[-96.36162,32.82076],[-96.36202,32.80724],[-96.36242,32.79372],[-96.36282,32.78021],[-96.36322,32.76669],[-96.36361,32.75317],[-96.36401,32.73966],[-96.38001,32.73999],[-96.396,32.74033],[-96.41199,32.74066],[-96.42799,32.74099],[-96.44398,32.74131],[-96.45998,32.74164],[-96.47597,32.74196],[-96.49197,32.74228],[-96.49235,32.72877],[-96.49273,32.71525],[-96.4931,32.70173],[-96.49348,32.68821],[-96.49386,32.67469],[-96.49424,32.66117],[-96.49461,32.64766],[-96.49499,32.63414],[-96.49537,32.62062],[-96.51134,32.62094],[-96.52732,32.62125],[-96.54329,32.62157],[-96.55927,32.62188],[-96.57524,32.62219],[-96.59122,32.6225],[-96.60719,32.6228],[-96.62317,32.6231],[-96.63914,32.62341],[-96.65512,32.62371],[-96.6711,32.624],[-96.68707,32.6243],[-96.70305,32.62459],[-96.71903,32.62488],[-96.71937,32.61136],[-96.73534,32.61165],[-96.73568,32.59813],[-96.73602,32.58461],[-96.73636,32.57109],[-96.7367,32.55757],[-96.73704,32.54405],[-96.73738,32.53053],[-96.73772,32.51701],[-96.73806,32.50348],[-96.7384,32.48996],[-96.73874,32.47644],[-96.73908,32.46292],[-96.73941,32.4494],[-96.73975,32.43588],[-96.74009,32.42236],[-96.74043,32.40884],[-96.74076,32.39531],[-96.7411,32.38179]]],"terms_url":"https://data.tnris.org/collection/1849447b-4f62-4318-81d3-9fef9c31482c","terms_text":"Strategic Mapping Program (StratMap). Dallas and Fort Worth Imagery, 2015-01-01"},{"id":"Duna_2013","name":"Danube flood orthophoto 2013","type":"tms","template":"http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[10,20],"polygon":[[[19.07732,47.69597],[19.07799,47.69598],[19.09462,47.69446],[19.08056,47.59587],[19.07434,47.58909],[19.07952,47.58883],[19.07717,47.57241],[19.05779,47.57209],[19.07732,47.69597]]],"terms_url":"http://fototerkep.hu","terms_text":"Fotótérkép.hu","description":"Riverbank of Danube at Budapest, Szentendre and Szigetmonostor"},{"id":"LPI_NSW_Administrative_Boundaries_County","name":"DCS NSW Administrative Boundaries County","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=4&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[1,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_LGA","name":"DCS NSW Administrative Boundaries LGA","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=6&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[1,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_NPWS_Reserve","name":"DCS NSW Administrative Boundaries NPWS Reserve","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=1&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[1,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_Parish","name":"DCS NSW Administrative Boundaries Parish","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=3&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[1,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_StateForest","name":"DCS NSW Administrative Boundaries State Forest","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=2&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[1,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_Suburb","name":"DCS NSW Administrative Boundaries Suburb","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=7&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[1,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"NSW_LPI_BaseMap","name":"DCS NSW Base Map","type":"tms","template":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,19],"polygon":[[[140.99486,-28.95297],[148.96114,-28.89977],[148.98701,-28.48623],[151.01361,-28.47865],[151.10847,-28.70329],[151.87599,-28.68312],[151.93348,-28.40788],[152.25544,-28.23327],[153.06608,-28.21047],[153.14082,-28.1091],[153.47351,-28.11648],[153.35765,-27.69361],[159.49383,-27.69925],[159.4857,-37.84741],[149.52569,-37.82815],[149.91596,-37.487],[148.04859,-36.81317],[147.9681,-36.15679],[146.71477,-36.28666],[145.30046,-36.15679],[144.53007,-36.14751],[142.8398,-35.02543],[142.35686,-34.78025],[141.97741,-34.40162],[140.99503,-34.13718],[140.99486,-28.95297]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"},{"id":"NSW_LPI_Imagery","name":"DCS NSW Imagery","type":"tms","template":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,21],"polygon":[[[140.98687,-28.98878],[148.99515,-28.97275],[148.99667,-28.49151],[151.0029,-28.49307],[151.0029,-28.72617],[151.49151,-28.73239],[151.49187,-28.71553],[151.92282,-28.71964],[151.92516,-28.48971],[151.99559,-28.48987],[151.99899,-28.11927],[152.49676,-28.12209],[152.49682,-28.11464],[153.00446,-28.11544],[153.00446,-28.1204],[153.50386,-28.11934],[153.50393,-28.12271],[153.59194,-28.12236],[153.59266,-28.17769],[153.61112,-28.17579],[153.61139,-28.18252],[153.74268,-28.21621],[153.77873,-28.71091],[152.6238,-32.58772],[152.3124,-32.63288],[151.41419,-33.57904],[150.89299,-35.26487],[150.46207,-35.77773],[150.01565,-37.51036],[149.99181,-37.51268],[149.51978,-37.51307],[149.51996,-37.52169],[149.4463,-37.53537],[149.06334,-37.5358],[148.98366,-37.52176],[148.98169,-37.5192],[148.98638,-37.2585],[148.48754,-37.26585],[148.48248,-37.00927],[147.99439,-37.01434],[147.98829,-36.53322],[147.95297,-36.52607],[147.94865,-36.0686],[147.5035,-36.07168],[147.50477,-36.2651],[146.492,-36.26613],[146.49225,-36.2565],[145.99298,-36.25343],[145.99659,-36.01881],[145.98316,-36.01871],[145.96245,-36.0219],[145.94624,-36.01209],[145.94543,-36.00603],[145.50415,-36.00136],[145.50379,-36.01091],[145.0072,-36.00362],[145.00354,-36.15204],[144.48608,-36.14231],[144.48741,-36.01375],[143.98747,-36.00241],[143.99329,-35.57238],[143.49717,-35.58371],[143.4918,-35.40656],[143.46134,-35.36749],[143.45856,-35.35559],[143.48978,-35.33965],[143.48955,-35.33221],[143.4317,-35.25706],[143.25055,-35.26066],[143.24384,-35.01327],[142.99333,-35.01772],[142.99198,-34.79619],[142.49714,-34.80323],[142.49732,-34.80076],[142.42114,-34.80176],[142.42092,-34.78383],[142.23309,-34.78592],[142.23077,-34.78075],[142.227,-34.50613],[141.99753,-34.50837],[141.9946,-34.25267],[141.49823,-34.25569],[141.49817,-34.25228],[140.99454,-34.25284],[140.98687,-28.98878]],[[159.22678,-31.74407],[159.26398,-31.74399],[159.28989,-31.77428],[159.28993,-31.79393],[159.26157,-31.79395],[159.22682,-31.75483],[159.22678,-31.74407]],[[159.03784,-31.49819],[159.04448,-31.5006],[159.04619,-31.49734],[159.04888,-31.49829],[159.04884,-31.48423],[159.06882,-31.48423],[159.06991,-31.482],[159.08317,-31.48203],[159.08203,-31.48434],[159.08205,-31.49567],[159.08564,-31.49703],[159.08383,-31.50058],[159.09007,-31.5026],[159.08682,-31.50859],[159.09433,-31.51136],[159.09174,-31.51585],[159.09537,-31.51724],[159.10276,-31.52611],[159.1161,-31.53006],[159.11422,-31.5342],[159.11875,-31.53417],[159.1193,-31.54888],[159.12618,-31.55796],[159.11841,-31.56323],[159.11553,-31.55983],[159.1115,-31.55983],[159.11154,-31.60158],[159.08954,-31.6016],[159.08626,-31.60845],[159.07954,-31.60611],[159.07714,-31.61149],[159.05943,-31.61155],[159.05296,-31.60369],[159.05893,-31.59087],[159.05891,-31.57897],[159.05541,-31.57773],[159.05735,-31.57387],[159.05585,-31.57333],[159.05038,-31.57335],[159.05035,-31.56329],[159.0463,-31.5619],[159.04847,-31.55793],[159.04237,-31.55601],[159.04533,-31.55038],[159.03783,-31.54763],[159.03802,-31.54723],[159.03487,-31.54724],[159.03487,-31.54383],[159.03244,-31.54297],[159.03461,-31.53808],[159.02754,-31.53554],[159.02964,-31.53159],[159.02305,-31.52935],[159.03784,-31.49819]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","best":true,"icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"},{"id":"NSW_LPI_Imagery_Dates","name":"DCS NSW Imagery Dates","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Imagery_Dates/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=0&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[0,21],"polygon":[[[140.98687,-28.98878],[148.99515,-28.97275],[148.99667,-28.49151],[151.0029,-28.49307],[151.0029,-28.72617],[151.49151,-28.73239],[151.49187,-28.71553],[151.92282,-28.71964],[151.92516,-28.48971],[151.99559,-28.48987],[151.99899,-28.11927],[152.49676,-28.12209],[152.49682,-28.11464],[153.00446,-28.11544],[153.00446,-28.1204],[153.50386,-28.11934],[153.50393,-28.12271],[153.59194,-28.12236],[153.59266,-28.17769],[153.61112,-28.17579],[153.61139,-28.18252],[153.74268,-28.21621],[153.77873,-28.71091],[152.6238,-32.58772],[152.3124,-32.63288],[151.41419,-33.57904],[150.89299,-35.26487],[150.46207,-35.77773],[150.01565,-37.51036],[149.99181,-37.51268],[149.51978,-37.51307],[149.51996,-37.52169],[149.4463,-37.53537],[149.06334,-37.5358],[148.98366,-37.52176],[148.98169,-37.5192],[148.98638,-37.2585],[148.48754,-37.26585],[148.48248,-37.00927],[147.99439,-37.01434],[147.98829,-36.53322],[147.95297,-36.52607],[147.94865,-36.0686],[147.5035,-36.07168],[147.50477,-36.2651],[146.492,-36.26613],[146.49225,-36.2565],[145.99298,-36.25343],[145.99659,-36.01881],[145.98316,-36.01871],[145.96245,-36.0219],[145.94624,-36.01209],[145.94543,-36.00603],[145.50415,-36.00136],[145.50379,-36.01091],[145.0072,-36.00362],[145.00354,-36.15204],[144.48608,-36.14231],[144.48741,-36.01375],[143.98747,-36.00241],[143.99329,-35.57238],[143.49717,-35.58371],[143.4918,-35.40656],[143.46134,-35.36749],[143.45856,-35.35559],[143.48978,-35.33965],[143.48955,-35.33221],[143.4317,-35.25706],[143.25055,-35.26066],[143.24384,-35.01327],[142.99333,-35.01772],[142.99198,-34.79619],[142.49714,-34.80323],[142.49732,-34.80076],[142.42114,-34.80176],[142.42092,-34.78383],[142.23309,-34.78592],[142.23077,-34.78075],[142.227,-34.50613],[141.99753,-34.50837],[141.9946,-34.25267],[141.49823,-34.25569],[141.49817,-34.25228],[140.99454,-34.25284],[140.98687,-28.98878]],[[159.22678,-31.74407],[159.26398,-31.74399],[159.28989,-31.77428],[159.28993,-31.79393],[159.26157,-31.79395],[159.22682,-31.75483],[159.22678,-31.74407]],[[159.03784,-31.49819],[159.04448,-31.5006],[159.04619,-31.49734],[159.04888,-31.49829],[159.04884,-31.48423],[159.06882,-31.48423],[159.06991,-31.482],[159.08317,-31.48203],[159.08203,-31.48434],[159.08205,-31.49567],[159.08564,-31.49703],[159.08383,-31.50058],[159.09007,-31.5026],[159.08682,-31.50859],[159.09433,-31.51136],[159.09174,-31.51585],[159.09537,-31.51724],[159.10276,-31.52611],[159.1161,-31.53006],[159.11422,-31.5342],[159.11875,-31.53417],[159.1193,-31.54888],[159.12618,-31.55796],[159.11841,-31.56323],[159.11553,-31.55983],[159.1115,-31.55983],[159.11154,-31.60158],[159.08954,-31.6016],[159.08626,-31.60845],[159.07954,-31.60611],[159.07714,-31.61149],[159.05943,-31.61155],[159.05296,-31.60369],[159.05893,-31.59087],[159.05891,-31.57897],[159.05541,-31.57773],[159.05735,-31.57387],[159.05585,-31.57333],[159.05038,-31.57335],[159.05035,-31.56329],[159.0463,-31.5619],[159.04847,-31.55793],[159.04237,-31.55601],[159.04533,-31.55038],[159.03783,-31.54763],[159.03802,-31.54723],[159.03487,-31.54724],[159.03487,-31.54383],[159.03244,-31.54297],[159.03461,-31.53808],[159.02754,-31.53554],[159.02964,-31.53159],[159.02305,-31.52935],[159.03784,-31.49819]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"NSW_LPI_TopographicMap","name":"DCS NSW Topographic Map","type":"tms","template":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,16],"polygon":[[[140.99884,-28.99924],[140.99652,-34.13858],[142.03614,-34.37588],[142.40976,-34.76694],[143.33826,-35.23318],[143.99654,-35.98105],[144.49912,-36.0211],[144.50725,-36.24765],[145.01541,-36.25421],[145.00118,-36.00795],[146.50426,-36.12639],[146.49564,-36.24471],[146.98863,-36.25283],[146.99725,-36.12755],[147.38221,-36.13103],[147.38939,-36.01137],[147.81483,-36.00556],[147.99306,-36.138],[148.06846,-36.80624],[149.98571,-37.508],[163,-32],[153.76465,-28.11075],[153.25003,-28.12497],[153.24999,-28.23324],[153.16672,-28.23316],[153.16663,-28.25001],[153.11659,-28.24986],[153.1165,-28.2834],[152.9999,-28.28324],[152.99972,-28.24986],[152.24994,-28.25001],[152.24997,-28.37507],[151.99986,-28.37496],[151.99989,-28.50023],[151.93341,-28.50007],[151.93313,-28.62475],[151.98317,-28.62491],[151.98299,-28.64139],[151.99988,-28.64163],[152.00007,-28.68335],[152.03322,-28.6832],[152.0334,-28.71661],[151.99998,-28.71645],[151.99998,-28.74953],[151.03383,-28.75054],[151.03293,-28.74188],[151.02413,-28.74188],[151.02395,-28.73274],[151.00059,-28.73258],[151.00005,-28.50052],[148.99982,-28.50003],[148.99985,-28.74974],[149.0997,-28.74885],[149.10007,-28.81658],[149.00009,-28.81658],[148.99983,-28.96653],[148.94988,-28.96653],[148.95024,-28.99937],[140.99884,-28.99924]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"},{"id":"Delaware2012Orthophotography","name":"Delaware 2012 Orthophotography","type":"wms","template":"https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[-75.01771,38.45189],[-75.74174,38.44996],[-75.807,39.73907],[-75.75559,39.80106],[-75.64692,39.85638],[-75.47115,39.84646],[-75.37726,39.81478],[-75.48746,39.67181],[-75.50901,39.43446],[-75.39327,39.27784],[-75.30707,39.01667],[-75.19317,38.82219],[-75.05341,38.80876],[-75.01771,38.45189]]],"terms_url":"https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer","terms_text":"Digital Aerial Solutions, LLC","description":"This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."},{"id":"Delaware2017Orthophotography","name":"Delaware 2017 Orthophotography","type":"wms","template":"https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2017/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","polygon":[[[-75.01771,38.45189],[-75.74174,38.44996],[-75.807,39.73907],[-75.75559,39.80106],[-75.64692,39.85638],[-75.47115,39.84646],[-75.37726,39.81478],[-75.48746,39.67181],[-75.50901,39.43446],[-75.39327,39.27784],[-75.30707,39.01667],[-75.19317,38.82219],[-75.05341,38.80876],[-75.01771,38.45189]]],"terms_url":"https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer","terms_text":"Digital Aerial Solutions, LLC","description":"This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."},{"id":"der-es","name":"DER-ES","type":"wms","template":"http://portal.der.es.gov.br/geoserver/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-40.94577,-21.31404],[-40.6231,-20.86278],[-40.38882,-20.65177],[-40.22209,-20.29831],[-39.80383,-19.66412],[-39.69603,-19.42573],[-39.67304,-19.30437],[-39.70538,-18.61384],[-39.65292,-18.33096],[-40.22281,-17.97587],[-40.34282,-17.9198],[-40.45278,-17.91502],[-40.46499,-17.92049],[-40.48368,-17.90408],[-40.50164,-17.90681],[-40.51602,-17.88903],[-40.53326,-17.88903],[-40.54548,-17.90134],[-40.58932,-17.91502],[-40.58932,-17.93211],[-40.61519,-17.93416],[-40.62956,-17.9868],[-40.64609,-17.9868],[-40.65903,-18.00731],[-40.68777,-18.00594],[-40.70574,-18.01756],[-40.71365,-18.00184],[-40.72155,-17.99774],[-40.75102,-18.00252],[-40.76754,-17.99842],[-40.76754,-17.98133],[-40.80923,-17.94852],[-40.82432,-17.96014],[-40.83151,-17.94989],[-40.86528,-17.9827],[-40.88397,-17.96766],[-40.90912,-17.98475],[-40.77761,-18.10775],[-40.77832,-18.15146],[-40.79054,-18.15351],[-40.8351,-18.14531],[-40.89547,-18.10365],[-40.93283,-18.12755],[-40.95583,-18.1255],[-40.95296,-18.14463],[-40.96014,-18.15009],[-40.96374,-18.14326],[-40.97955,-18.13643],[-40.99248,-18.15009],[-40.99105,-18.16307],[-41.00901,-18.16307],[-41.05788,-18.1658],[-41.05788,-18.17536],[-41.09597,-18.19243],[-41.09597,-18.2054],[-41.1089,-18.21291],[-41.09812,-18.22997],[-41.10531,-18.2327],[-41.09884,-18.25591],[-41.12903,-18.27502],[-41.16137,-18.30572],[-41.15059,-18.37394],[-41.16424,-18.37939],[-41.16424,-18.4019],[-41.15059,-18.40735],[-41.15849,-18.41144],[-41.17358,-18.41144],[-41.18868,-18.44485],[-41.02123,-18.46667],[-41.04638,-18.60362],[-41.03776,-18.61452],[-41.05788,-18.62678],[-41.0471,-18.64857],[-41.03488,-18.65402],[-40.99895,-18.67716],[-40.94505,-18.69418],[-40.94433,-18.76973],[-40.92134,-18.81055],[-40.93715,-18.82347],[-40.94721,-18.82143],[-40.97092,-18.83572],[-41.08375,-18.83232],[-41.10675,-18.83572],[-41.11753,-18.80783],[-41.13118,-18.79286],[-41.23611,-18.7949],[-41.2512,-18.81667],[-41.2476,-18.85544],[-41.2203,-18.87992],[-41.20808,-18.87992],[-41.20664,-18.86632],[-41.16424,-18.867],[-41.15634,-18.88876],[-41.12903,-18.9044],[-41.12112,-18.92412],[-41.0392,-18.98665],[-41.07585,-19.00567],[-41.06507,-19.06342],[-40.96877,-19.12726],[-40.96158,-19.15102],[-40.92996,-19.206],[-40.94649,-19.22296],[-40.94793,-19.24264],[-40.92565,-19.26299],[-40.94936,-19.2786],[-40.92277,-19.31048],[-40.94361,-19.35252],[-40.93427,-19.381],[-40.95727,-19.39184],[-40.9738,-19.42641],[-40.95439,-19.46165],[-40.97883,-19.50298],[-41.01332,-19.50298],[-41.04638,-19.48333],[-41.05429,-19.48401],[-41.04135,-19.56664],[-41.09238,-19.58966],[-41.14627,-19.656],[-41.16496,-19.65871],[-41.17933,-19.6939],[-41.19658,-19.74599],[-41.16999,-19.80618],[-41.18939,-19.82375],[-41.18868,-19.88526],[-41.21239,-19.89743],[-41.22964,-19.90216],[-41.24689,-19.93324],[-41.25479,-19.92919],[-41.26988,-19.93797],[-41.30653,-19.93392],[-41.31516,-19.96972],[-41.3245,-19.97647],[-41.313,-20.01226],[-41.33672,-20.05548],[-41.34822,-20.08653],[-41.3554,-20.12094],[-41.37768,-20.15805],[-41.38702,-20.18638],[-41.41074,-20.19448],[-41.4208,-20.20257],[-41.7636,-20.2046],[-41.78516,-20.28483],[-41.85055,-20.3246],[-41.86349,-20.37513],[-41.85127,-20.38187],[-41.84337,-20.40949],[-41.80887,-20.42498],[-41.80672,-20.47211],[-41.83115,-20.47885],[-41.81103,-20.54212],[-41.83115,-20.55086],[-41.86205,-20.61814],[-41.82109,-20.64437],[-41.85343,-20.68068],[-41.87139,-20.72102],[-41.8678,-20.73849],[-41.88002,-20.73984],[-41.88289,-20.76739],[-41.85415,-20.77478],[-41.83331,-20.7983],[-41.80887,-20.80905],[-41.78444,-20.80569],[-41.75138,-20.82382],[-41.74707,-20.87487],[-41.72335,-20.87554],[-41.74132,-20.92723],[-41.72335,-20.97757],[-41.74347,-21.09763],[-41.7291,-21.12579],[-41.594,-21.16332],[-41.57244,-21.18678],[-41.49051,-21.18879],[-41.48332,-21.20085],[-41.43948,-21.22095],[-41.41289,-21.20956],[-41.34965,-21.21291],[-41.27994,-21.2464],[-41.24473,-21.23234],[-41.17718,-21.25511],[-41.09238,-21.2243],[-41.04854,-21.25913],[-41.01548,-21.25578],[-41.00254,-21.28726],[-40.94577,-21.31404]]],"terms_url":"https://der.es.gov.br","terms_text":"Departamento de Estradas de Rodagem do Estado do Espírito Santo","overlay":true},{"id":"db-inspire-2013-11","name":"Deutsche Bahn VzG lines January 2017","type":"wms","template":"https://wms.michreichert.de/vzg-strecken-2017?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2013-11-01T00:00:00.000Z","startDate":"2013-11-01T00:00:00.000Z","polygon":[[[8.19422,48.97504],[7.97355,49.02623],[7.94677,49.06313],[7.44328,49.18928],[7.05679,49.11163],[6.94302,49.21345],[6.81633,49.16389],[6.68209,49.24061],[6.3501,49.46202],[6.35353,49.57302],[6.42632,49.67177],[6.50254,49.71885],[6.45241,50.61258],[6.03871,50.71215],[6.00369,50.753],[6.05742,50.8559],[6.0787,50.90247],[6.0727,51.06792],[6.17123,51.33853],[6.22548,51.36554],[6.15715,51.5509],[6.12763,51.91069],[6.79985,51.86661],[7.02851,52.31255],[6.72947,52.64179],[7.07486,52.75269],[7.20532,53.18442],[7.04464,53.33106],[6.5173,53.65785],[8.23529,54.99001],[11.92257,54.52963],[14.1679,54.59631],[14.46591,53.24712],[14.14318,52.83946],[14.64375,52.58613],[14.57646,52.32756],[14.74537,52.06577],[14.66847,51.7353],[14.7234,51.53927],[15.03926,51.28745],[14.98845,51.09207],[14.88922,50.93856],[14.81593,50.87729],[14.63671,50.89116],[14.59311,50.91887],[14.57217,51.01076],[14.26283,51.06473],[14.28086,50.98024],[14.22816,50.85796],[13.69532,50.72883],[13.03442,50.50085],[12.49077,50.34582],[12.32632,50.29277],[12.35379,50.21462],[12.32701,50.16363],[12.1677,50.34889],[12.07707,50.2524],[12.18195,50.21136],[12.26014,50.09069],[12.53892,49.4164],[12.88808,49.3385],[13.21287,49.12439],[13.73952,48.83688],[13.45371,48.56222],[13.40555,48.37812],[13.03648,48.25986],[12.71376,48.10856],[12.93108,47.9376],[13.00455,47.84506],[12.90671,47.73249],[13.05228,47.59329],[12.15792,47.7087],[12.20393,47.61667],[12.17783,47.59815],[11.61753,47.60093],[11.26666,47.39124],[10.9247,47.46811],[10.91578,47.55623],[10.59031,47.5567],[10.29848,47.39937],[9.78144,47.61274],[9.74024,47.52842],[9.00278,47.69137],[8.68933,47.72371],[8.63809,47.70261],[8.63079,47.69359],[8.62127,47.69177],[8.62414,47.68221],[8.61243,47.68115],[8.35382,47.61367],[8.27485,47.619],[8.23709,47.61023],[8.22808,47.60583],[8.20284,47.61555],[8.10834,47.58251],[8.08568,47.5583],[8.06714,47.56444],[8.04981,47.55645],[8.02749,47.55112],[7.98097,47.55494],[7.91917,47.54787],[7.88862,47.58888],[7.81257,47.57122],[7.79455,47.55558],[7.71404,47.54063],[7.66043,47.54485],[7.65219,47.54702],[7.63439,47.56173],[7.61499,47.55669],[7.5834,47.57048],[7.58559,47.5845],[7.59366,47.60048],[7.58761,47.608],[7.51491,47.6652],[7.5434,47.81539],[7.57671,48.02454],[7.56812,48.06012],[7.80639,48.52438],[7.79987,48.58029],[7.80665,48.60106],[8.11014,48.84977],[8.19422,48.97504]]],"terms_url":"https://data.deutschebahn.com/dataset/data-streckennetz","terms_text":"Data CC-BY 4.0 Deutsche Bahn AG","overlay":true},{"id":"db-inspire-2015-11","name":"Deutsche Bahn VzG lines Nov 2015","type":"wms","template":"https://wms.michreichert.de/vzg-strecken-2015?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-11-01T00:00:00.000Z","startDate":"2015-11-01T00:00:00.000Z","polygon":[[[8.19422,48.97504],[7.97355,49.02623],[7.94677,49.06313],[7.44328,49.18928],[7.05679,49.11163],[6.94302,49.21345],[6.81633,49.16389],[6.68209,49.24061],[6.3501,49.46202],[6.35353,49.57302],[6.42632,49.67177],[6.50254,49.71885],[6.45241,50.61258],[6.03871,50.71215],[6.00369,50.753],[6.05742,50.8559],[6.0787,50.90247],[6.0727,51.06792],[6.17123,51.33853],[6.22548,51.36554],[6.15715,51.5509],[6.12763,51.91069],[6.79985,51.86661],[7.02851,52.31255],[6.72947,52.64179],[7.07486,52.75269],[7.20532,53.18442],[7.04464,53.33106],[6.5173,53.65785],[8.23529,54.99001],[11.92257,54.52963],[14.1679,54.59631],[14.46591,53.24712],[14.14318,52.83946],[14.64375,52.58613],[14.57646,52.32756],[14.74537,52.06577],[14.66847,51.7353],[14.7234,51.53927],[15.03926,51.28745],[14.98845,51.09207],[14.88922,50.93856],[14.81593,50.87729],[14.63671,50.89116],[14.59311,50.91887],[14.57217,51.01076],[14.26283,51.06473],[14.28086,50.98024],[14.22816,50.85796],[13.69532,50.72883],[13.03442,50.50085],[12.49077,50.34582],[12.32632,50.29277],[12.35379,50.21462],[12.32701,50.16363],[12.1677,50.34889],[12.07707,50.2524],[12.18195,50.21136],[12.26014,50.09069],[12.53892,49.4164],[12.88808,49.3385],[13.21287,49.12439],[13.73952,48.83688],[13.45371,48.56222],[13.40555,48.37812],[13.03648,48.25986],[12.71376,48.10856],[12.93108,47.9376],[13.00455,47.84506],[12.90671,47.73249],[13.05228,47.59329],[12.15792,47.7087],[12.20393,47.61667],[12.17783,47.59815],[11.61753,47.60093],[11.26666,47.39124],[10.9247,47.46811],[10.91578,47.55623],[10.59031,47.5567],[10.29848,47.39937],[9.78144,47.61274],[9.74024,47.52842],[9.00278,47.69137],[8.68933,47.72371],[8.63809,47.70261],[8.63079,47.69359],[8.62127,47.69177],[8.62414,47.68221],[8.61243,47.68115],[8.35382,47.61367],[8.27485,47.619],[8.23709,47.61023],[8.22808,47.60583],[8.20284,47.61555],[8.10834,47.58251],[8.08568,47.5583],[8.06714,47.56444],[8.04981,47.55645],[8.02749,47.55112],[7.98097,47.55494],[7.91917,47.54787],[7.88862,47.58888],[7.81257,47.57122],[7.79455,47.55558],[7.71404,47.54063],[7.66043,47.54485],[7.65219,47.54702],[7.63439,47.56173],[7.61499,47.55669],[7.5834,47.57048],[7.58559,47.5845],[7.59366,47.60048],[7.58761,47.608],[7.51491,47.6652],[7.5434,47.81539],[7.57671,48.02454],[7.56812,48.06012],[7.80639,48.52438],[7.79987,48.58029],[7.80665,48.60106],[8.11014,48.84977],[8.19422,48.97504]]],"terms_url":"https://data.deutschebahn.com/dataset/data-streckennetz","terms_text":"Data CC-BY 4.0 Deutsche Bahn AG","overlay":true},{"id":"dgu-dof-2011","name":"dgu.hr: Croatia 2011 Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/dof/ows?LAYERS=DOF5_2011&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[16.2996,46.38154],[16.2369,46.4981],[16.36449,46.55763],[16.52243,46.48295],[16.66846,46.46184],[16.70966,46.40541],[16.87361,46.35365],[16.89119,46.28228],[16.97844,46.22821],[17.16198,46.17292],[17.18392,46.11177],[17.22194,46.11398],[17.29813,46.03422],[17.26272,46.01265],[17.37936,45.99119],[17.41445,45.93808],[17.57404,45.93991],[17.67025,45.83833],[17.83202,45.81131],[17.86526,45.77067],[17.90763,45.79537],[18.08054,45.76834],[18.18763,45.79041],[18.34028,45.75291],[18.36506,45.77628],[18.44336,45.74187],[18.48413,45.79491],[18.55212,45.79695],[18.61719,45.84118],[18.65729,45.91935],[18.79064,45.88142],[18.82036,45.91772],[18.90217,45.92088],[18.87259,45.89554],[18.90522,45.86687],[18.86071,45.85998],[18.85158,45.81307],[18.90807,45.82487],[18.92214,45.78927],[18.85405,45.77335],[18.91634,45.74661],[18.96932,45.76765],[18.98301,45.74223],[18.9716,45.69436],[18.92081,45.7012],[18.97826,45.65389],[18.90122,45.57133],[18.94963,45.53863],[19.02191,45.55954],[19.10712,45.51124],[19.08297,45.48304],[19.00346,45.49158],[19.03342,45.40972],[18.97303,45.38127],[19.08915,45.34237],[19.17636,45.27054],[19.26699,45.28238],[19.26243,45.24597],[19.42202,45.23666],[19.44988,45.19546],[19.43162,45.16858],[19.35639,45.16308],[19.31769,45.20625],[19.28602,45.20377],[19.28915,45.16938],[19.1756,45.20035],[19.19709,45.17897],[19.14222,45.12726],[19.08905,45.14323],[19.10612,45.01045],[19.05765,44.97822],[19.14008,44.98338],[19.16024,44.95324],[19.07103,44.89893],[19.00562,44.91331],[19.02647,44.85137],[18.96225,44.84597],[18.85055,44.849],[18.7633,44.8992],[18.74471,44.93786],[18.79579,44.93987],[18.78901,44.99224],[18.72679,44.99017],[18.66466,45.05817],[18.58771,45.08384],[18.53161,45.03995],[18.41924,45.10518],[18.32169,45.09696],[18.25755,45.13614],[18.19994,45.07562],[18.12115,45.07621],[18.06597,45.13909],[18.03733,45.12196],[18.0097,45.14872],[17.85061,45.04019],[17.66363,45.13094],[17.6005,45.10181],[17.5495,45.12663],[17.48821,45.10589],[17.44509,45.15769],[17.41754,45.13253],[17.3426,45.13809],[17.27318,45.18585],[17.25141,45.1444],[17.16542,45.14694],[17.03437,45.21983],[16.93264,45.22703],[16.9282,45.27307],[16.82178,45.1824],[16.59808,45.22881],[16.49998,45.21198],[16.46679,45.14146],[16.39821,45.11157],[16.3583,45.00232],[16.28569,44.9923],[16.08617,45.10185],[16.01122,45.21415],[15.84351,45.22157],[15.79069,45.19066],[15.79588,45.11433],[15.75122,45.06121],[15.78847,44.97482],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[16.0592,44.627],[16.02335,44.56378],[16.12673,44.51464],[16.17742,44.40236],[16.13524,44.38112],[16.22406,44.3489],[16.1923,44.29936],[16.21765,44.21695],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.54079,42.92978],[17.64304,42.88436],[17.68764,42.92563],[17.84605,42.90453],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.37062,42.61669],[18.43954,42.56497],[18.43987,42.48498],[18.55128,42.40206],[18.5331,42.38603],[18.06182,42.6374],[17.06039,42.69152],[16.35138,42.37123],[16.23677,42.38453],[16.39023,42.73995],[15.43075,43.08152],[15.63066,43.43802],[14.62071,44.3094],[14.29287,44.49332],[14.00808,44.80011],[13.88603,44.75271],[13.89153,44.8023],[13.70853,44.9134],[13.72398,44.94888],[13.7959,44.92877],[13.76116,44.98088],[13.60777,45.03763],[13.56139,45.19789],[13.58211,45.24115],[13.48227,45.48675],[13.5136,45.5099],[13.67463,45.44773],[13.76432,45.47054],[13.88238,45.429],[13.98027,45.45832],[13.95822,45.5071],[14.00195,45.52298],[14.07602,45.48728],[14.20335,45.47325],[14.24884,45.50803],[14.32381,45.47413],[14.48749,45.54141],[14.4953,45.60824],[14.56821,45.67686],[14.69391,45.58134],[14.69169,45.53064],[14.79864,45.50514],[14.82058,45.46316],[14.90782,45.4814],[14.93136,45.53217],[15.08738,45.48583],[15.16778,45.42529],[15.26912,45.46833],[15.3438,45.45993],[15.37766,45.48781],[15.29879,45.53386],[15.27225,45.6053],[15.39836,45.64787],[15.36734,45.68233],[15.34575,45.66692],[15.35424,45.7101],[15.32451,45.67005],[15.23367,45.72238],[15.47062,45.79902],[15.46272,45.82041],[15.5364,45.85015],[15.64191,45.82462],[15.69817,45.85137],[15.67547,45.90472],[15.72545,46.04492],[15.6009,46.1108],[15.63844,46.21388],[15.76893,46.21269],[15.79102,46.2621],[16.01284,46.3133],[16.07131,46.3449],[16.05625,46.39644],[16.2996,46.38154]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2014-2016","name":"dgu.hr: Croatia 2014-2016 Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2014-2016/ows?LAYERS=OI.OrthoImagery&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[16.66846,46.46184],[16.70966,46.40541],[16.83743,46.37895],[16.91732,46.26434],[17.16198,46.17292],[17.18392,46.11177],[17.22194,46.11398],[17.29813,46.03422],[17.26272,46.01265],[17.37936,45.99119],[17.39024,45.93723],[17.57404,45.93991],[17.67025,45.83833],[17.83202,45.81131],[17.86526,45.77067],[17.90763,45.79537],[18.08054,45.76834],[18.18763,45.79041],[18.34028,45.75291],[18.36506,45.77628],[18.44336,45.74187],[18.48413,45.79491],[18.55212,45.79695],[18.61719,45.84118],[18.65729,45.91935],[18.79064,45.88142],[18.81521,45.91536],[18.87237,45.91897],[18.85574,45.7726],[18.92405,45.74455],[18.90242,45.57188],[18.9269,45.5301],[19.00355,45.53163],[18.97987,45.34745],[19.06927,45.34532],[19.15525,45.27971],[19.16362,45.16268],[19.07065,45.14698],[19.10952,45.05083],[19.05765,44.97822],[19.14008,44.98338],[19.16024,44.95324],[19.07103,44.89893],[18.99675,44.90679],[19.02647,44.85137],[18.83925,44.8547],[18.74655,44.9263],[18.79579,44.93987],[18.78901,44.99224],[18.72679,44.99017],[18.71155,45.03475],[18.58771,45.08384],[18.53161,45.03995],[18.41924,45.10518],[18.32169,45.09696],[18.25755,45.13614],[18.19994,45.07562],[18.12115,45.07621],[18.06597,45.13909],[18.03733,45.12196],[18.0097,45.14872],[17.85061,45.04019],[17.66363,45.13094],[17.6005,45.10181],[17.5495,45.12663],[17.48821,45.10589],[17.44509,45.15769],[17.41754,45.13253],[17.3426,45.13809],[17.27318,45.18585],[17.25141,45.1444],[17.16542,45.14694],[17.03437,45.21983],[16.93264,45.22703],[16.9282,45.27307],[16.82178,45.1824],[16.52186,45.22151],[16.46768,45.13997],[16.3992,45.11095],[16.35817,45.00121],[16.28569,44.9923],[16.08617,45.10185],[16.01122,45.21415],[15.84351,45.22157],[15.77021,45.16383],[15.79588,45.11433],[15.75122,45.06121],[15.78847,44.97482],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[16.03586,44.65529],[16.06263,44.60805],[16.02335,44.56378],[16.12673,44.51464],[16.17742,44.40236],[16.13524,44.38112],[16.22406,44.3489],[16.1923,44.29936],[16.21765,44.21695],[16.32072,44.11655],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.60009,43.91158],[16.72161,43.84086],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.28139,43.47296],[17.25664,43.40208],[17.34462,43.25537],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71384,42.9707],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.84605,42.90453],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.43987,42.48498],[18.55131,42.40193],[18.53311,42.38604],[18.06174,42.63737],[17.06039,42.69152],[16.35138,42.37123],[16.23677,42.38453],[16.39023,42.73995],[15.43075,43.08152],[15.63066,43.43802],[14.62071,44.3094],[14.29287,44.49332],[13.99641,44.82337],[14.00808,44.80011],[13.88603,44.75271],[13.89153,44.8023],[13.70853,44.9134],[13.70336,44.94822],[13.76862,44.94342],[13.76116,44.98088],[13.60777,45.03763],[13.56139,45.19789],[13.58211,45.24115],[13.48227,45.48675],[13.50899,45.50995],[13.62167,45.43361],[13.8722,45.40671],[14.58984,45.47778],[15.19316,45.40185],[15.3636,45.44264],[15.40276,45.47625],[15.43753,45.70368],[15.53001,45.68943],[15.52357,45.74392],[15.72324,45.8379],[15.76007,46.11836],[15.82492,46.11357],[15.80066,46.18612],[15.903,46.22],[15.88479,46.24679],[16.17091,46.34181],[16.18926,46.3143],[16.30466,46.35117],[16.23649,46.48339],[16.26168,46.5177],[16.3701,46.55838],[16.66846,46.46184]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2017-s-e","name":"dgu.hr: Croatia 2017 South+East Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2017/ows?LAYERS=OI.OrthoImagery&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","polygon":[[[16.30898,45.22981],[16.59808,45.22881],[16.81516,45.18187],[16.93331,45.27307],[16.93264,45.22703],[17.03437,45.21983],[17.16542,45.14694],[17.25141,45.1444],[17.27318,45.18585],[17.3426,45.13809],[17.41754,45.13253],[17.44509,45.15769],[17.48821,45.10589],[17.5495,45.12663],[17.6005,45.10181],[17.66363,45.13094],[17.85061,45.04019],[18.0097,45.14872],[18.03733,45.12196],[18.06597,45.13909],[18.12115,45.07621],[18.19994,45.07562],[18.25755,45.13614],[18.32169,45.09696],[18.41924,45.10518],[18.53161,45.03995],[18.58771,45.08384],[18.66466,45.05817],[18.72679,44.99017],[18.78901,44.99224],[18.79579,44.93987],[18.74471,44.93786],[18.7633,44.8992],[18.85055,44.849],[18.92499,44.8468],[19.02647,44.85137],[18.99675,44.90679],[19.09204,44.9164],[19.09514,44.97513],[19.06357,44.97797],[19.09656,44.99355],[19.09354,45.1395],[19.13491,45.12692],[19.21077,45.1852],[19.24803,45.17269],[19.29316,45.20196],[19.40162,45.19073],[19.40389,45.23548],[19.18113,45.27092],[19.09426,45.33823],[18.97736,45.37577],[19.01538,45.40732],[18.99591,45.48099],[19.05766,45.48369],[19.07831,45.51814],[18.94705,45.53685],[18.90242,45.57188],[18.95593,45.62403],[18.96012,45.68346],[18.92202,45.7023],[18.95919,45.69186],[18.96016,45.73185],[18.85574,45.7726],[18.8835,45.92227],[18.81521,45.91536],[18.79801,45.88151],[18.65729,45.91935],[18.61719,45.84118],[18.55212,45.79695],[18.48413,45.79491],[18.44336,45.74187],[18.36506,45.77628],[18.34028,45.75291],[18.18763,45.79041],[18.08054,45.76834],[17.90763,45.79537],[17.86526,45.77067],[17.83202,45.81131],[17.67025,45.83833],[17.57404,45.93991],[17.39024,45.93723],[17.37936,45.99119],[17.26272,46.01265],[17.29813,46.03422],[17.22194,46.11398],[17.18392,46.11177],[17.16198,46.17292],[16.89119,46.28228],[16.83743,46.37895],[16.74466,46.38981],[16.66846,46.46184],[16.52243,46.48295],[16.35161,46.55198],[16.2364,46.48318],[16.30489,46.3793],[16.30898,45.22981]],[[15.45776,43.0729],[15.45639,43.10499],[16.30096,43.2312],[15.8828,43.53461],[15.86851,43.58153],[15.91202,43.57501],[15.91328,43.60843],[16.12836,43.60933],[16.12499,44.14937],[16.3091,44.14984],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.22801,43.49976],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.7879,42.89439],[17.80648,42.91838],[17.84605,42.90453],[17.90334,42.8331],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.43987,42.48498],[18.50708,42.4355],[18.48158,42.4112],[18.0617,42.63737],[17.06039,42.69152],[16.34491,42.37123],[16.22612,42.3834],[16.39023,42.73995],[15.45776,43.0729]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2018-w","name":"dgu.hr: Croatia 2018 West Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2018/ows?LAYERS=OI.OrthoImagery&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[16.29963,46.3815],[16.30862,45.22967],[16.49996,45.22994],[16.48159,45.15965],[16.39821,45.11157],[16.3583,45.00232],[16.28569,44.9923],[16.17582,45.03205],[16.16192,45.07231],[16.08175,45.10321],[16.00794,45.213],[15.84108,45.21869],[15.77476,45.17354],[15.79516,45.11278],[15.75122,45.06121],[15.79001,44.99352],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[15.9767,44.6772],[16.0397,44.654],[16.0651,44.60538],[16.0294,44.56185],[16.12724,44.51585],[16.14819,44.42716],[16.17977,44.4019],[16.13754,44.38031],[16.22406,44.3489],[16.19797,44.272],[16.30577,44.15084],[16.12495,44.1494],[16.12815,43.60943],[15.52195,43.61231],[14.78331,44.11942],[14.28198,44.49521],[13.88603,44.75271],[13.80363,44.85648],[13.73428,44.88604],[13.70905,44.94646],[13.76862,44.94342],[13.76673,44.96128],[13.64605,45.03605],[13.60777,45.03763],[13.55372,45.31784],[13.52898,45.32753],[13.48331,45.48595],[13.51439,45.51032],[13.67463,45.44773],[13.76432,45.47054],[13.88238,45.429],[13.91371,45.45664],[13.98027,45.45832],[13.95822,45.5071],[14.00195,45.52298],[14.07602,45.48728],[14.20335,45.47325],[14.24884,45.50803],[14.32381,45.47413],[14.48749,45.54141],[14.4953,45.60824],[14.54144,45.62448],[14.56821,45.67686],[14.61164,45.66673],[14.60522,45.62774],[14.69391,45.58134],[14.69169,45.53064],[14.79864,45.50514],[14.82058,45.46316],[14.90782,45.4814],[14.93136,45.53217],[14.98516,45.50063],[15.08738,45.48583],[15.16778,45.42529],[15.22158,45.42864],[15.26912,45.46833],[15.3438,45.45993],[15.37766,45.48781],[15.29879,45.53386],[15.27225,45.6053],[15.34292,45.64903],[15.39836,45.64787],[15.36734,45.68233],[15.34575,45.66692],[15.35424,45.7101],[15.32451,45.67005],[15.23367,45.72238],[15.39851,45.79415],[15.47062,45.79902],[15.46272,45.82041],[15.52513,45.82641],[15.5364,45.85015],[15.55871,45.83936],[15.57316,45.85585],[15.64191,45.82462],[15.69817,45.85137],[15.67547,45.90472],[15.7023,45.92368],[15.69584,45.99749],[15.72545,46.04492],[15.6009,46.1108],[15.59179,46.14731],[15.63844,46.21388],[15.67652,46.22955],[15.76893,46.21269],[15.79102,46.2621],[16.01284,46.3133],[16.07131,46.3449],[16.05625,46.39644],[16.1501,46.40762],[16.19405,46.38224],[16.29963,46.3815]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2019-s-e","name":"dgu.hr: Croatia 2019 South+East Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2019/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoimageCoverage&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[15.45776,43.0729],[15.45639,43.10499],[16.30096,43.2312],[15.8828,43.53461],[15.86851,43.58153],[15.91202,43.57501],[15.91328,43.60843],[16.12836,43.60933],[16.12499,44.14937],[16.3091,44.14984],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.22801,43.49976],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.7879,42.89439],[17.80648,42.91838],[17.84605,42.90453],[17.90334,42.8331],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.44102,42.5218],[18.45185,42.51158],[18.43987,42.48498],[18.47697,42.46784],[18.50708,42.4355],[18.53153,42.42054],[18.51637,42.41207],[18.54192,42.39241],[18.53153,42.38761],[18.50468,42.39688],[18.48158,42.4112],[18.0617,42.63737],[17.08737,42.67226],[16.34491,42.37123],[16.22612,42.3834],[16.39023,42.73995],[15.45776,43.0729]],[[16.30898,45.22981],[16.59808,45.22881],[16.81516,45.18187],[16.93331,45.27307],[16.93264,45.22703],[17.03437,45.21983],[17.16542,45.14694],[17.25141,45.1444],[17.27318,45.18585],[17.3426,45.13809],[17.41754,45.13253],[17.44509,45.15769],[17.48821,45.10589],[17.5495,45.12663],[17.6005,45.10181],[17.66363,45.13094],[17.85061,45.04019],[18.0097,45.14872],[18.03733,45.12196],[18.06597,45.13909],[18.12115,45.07621],[18.19994,45.07562],[18.25755,45.13614],[18.32169,45.09696],[18.41924,45.10518],[18.53161,45.03995],[18.58771,45.08384],[18.66466,45.05817],[18.72679,44.99017],[18.78901,44.99224],[18.79579,44.93987],[18.74471,44.93786],[18.7633,44.8992],[18.85055,44.849],[18.92499,44.8468],[18.97993,44.84748],[19.00602,44.85247],[19.00689,44.88592],[18.99693,44.8939],[18.9939,44.90532],[19.00797,44.9159],[19.00959,44.95047],[19.0477,44.94985],[19.06329,45.2552],[19.02345,45.25794],[19.02605,45.32823],[18.98772,45.32907],[18.99097,45.36742],[18.97592,45.37692],[18.97831,45.39236],[18.99119,45.39692],[18.99065,45.40117],[18.95243,45.40186],[18.95416,45.47425],[18.91909,45.47547],[18.92385,45.57164],[18.90263,45.57406],[18.90826,45.59043],[18.92429,45.5971],[18.92602,45.67249],[18.88791,45.67279],[18.89181,45.74567],[18.8524,45.74657],[18.85154,45.81664],[18.81906,45.81905],[18.82057,45.90861],[18.8065,45.90861],[18.79801,45.88151],[18.65729,45.91935],[18.61719,45.84118],[18.55212,45.79695],[18.48413,45.79491],[18.44336,45.74187],[18.36506,45.77628],[18.34028,45.75291],[18.18763,45.79041],[18.08054,45.76834],[17.90763,45.79537],[17.86526,45.77067],[17.83202,45.81131],[17.67025,45.83833],[17.57404,45.93991],[17.39024,45.93723],[17.37936,45.99119],[17.26272,46.01265],[17.29813,46.03422],[17.22194,46.11398],[17.18392,46.11177],[17.16198,46.17292],[16.89119,46.28228],[16.83743,46.37895],[16.74466,46.38981],[16.66846,46.46184],[16.52243,46.48295],[16.35161,46.55198],[16.2364,46.48318],[16.30489,46.3793],[16.30898,45.22981]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-hok","name":"dgu.hr: HOK","type":"wms","template":"https://geoportal.dgu.hr/services/hok/ows?LAYERS=HOK5&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2009-01-01T00:00:00.000Z","startDate":"1954-01-01T00:00:00.000Z","polygon":[[[15.34155,45.63868],[15.34189,45.6658],[15.28409,45.66592],[15.28413,45.69284],[15.22636,45.69305],[15.22662,45.74698],[15.28451,45.74695],[15.2846,45.7739],[15.34236,45.77372],[15.34254,45.80068],[15.45841,45.80029],[15.45879,45.85439],[15.66157,45.85331],[15.66243,45.93435],[15.69152,45.93405],[15.6929,46.04211],[15.6638,46.04223],[15.66414,46.06921],[15.60599,46.06951],[15.60621,46.09654],[15.57707,46.09666],[15.57806,46.17763],[15.63625,46.17733],[15.63702,46.23139],[15.7828,46.23041],[15.78358,46.28441],[15.87117,46.28382],[15.8716,46.3108],[15.95914,46.31006],[15.95979,46.33703],[16.01811,46.33653],[16.01862,46.36357],[16.04789,46.36331],[16.04884,46.41724],[16.19531,46.41579],[16.19471,46.38889],[16.25311,46.38812],[16.25492,46.47124],[16.22578,46.47156],[16.22694,46.5235],[16.3147,46.52252],[16.31551,46.54945],[16.49498,46.54726],[16.49507,46.52025],[16.5285,46.52066],[16.52923,46.49372],[16.61721,46.49476],[16.61798,46.46787],[16.67639,46.46855],[16.67703,46.44152],[16.7063,46.44188],[16.70699,46.41487],[16.76552,46.41549],[16.76617,46.38853],[16.85389,46.38939],[16.85449,46.36248],[16.88367,46.36271],[16.88474,46.30879],[16.91401,46.30911],[16.91452,46.2821],[16.94362,46.28228],[16.94422,46.25534],[16.9734,46.25567],[16.97392,46.2286],[17.06134,46.22946],[17.0619,46.20241],[17.14931,46.20303],[17.14974,46.17606],[17.20798,46.17647],[17.20888,46.12257],[17.23786,46.1227],[17.23824,46.0957],[17.26734,46.09594],[17.2678,46.06891],[17.29669,46.06918],[17.29746,46.01514],[17.38458,46.01562],[17.38501,45.98861],[17.41389,45.98879],[17.41432,45.96183],[17.58847,45.96255],[17.58864,45.93557],[17.61761,45.93566],[17.61786,45.9087],[17.64683,45.90879],[17.647,45.88182],[17.67597,45.88185],[17.67619,45.85487],[17.76296,45.85505],[17.76318,45.82808],[17.85004,45.82823],[17.85012,45.80125],[18.05273,45.80131],[18.05268,45.77432],[18.11053,45.77426],[18.11058,45.80131],[18.25533,45.80104],[18.2552,45.77405],[18.39974,45.7736],[18.39961,45.74662],[18.42871,45.74656],[18.42879,45.77354],[18.45772,45.77333],[18.45793,45.80038],[18.54488,45.80014],[18.54509,45.82698],[18.57415,45.82689],[18.57436,45.85388],[18.60329,45.8537],[18.60354,45.88072],[18.63264,45.8806],[18.63316,45.93459],[18.72019,45.93399],[18.71984,45.90706],[18.80688,45.90643],[18.80726,45.93339],[18.83627,45.93318],[18.8355,45.87925],[18.86438,45.87904],[18.8631,45.79808],[18.89206,45.79793],[18.89172,45.77085],[18.97845,45.7701],[18.97609,45.60815],[18.94674,45.60836],[18.94635,45.58143],[19.06167,45.58044],[19.06145,45.55343],[19.08986,45.55325],[19.08952,45.52622],[19.1181,45.52595],[19.11716,45.47187],[19.00223,45.47295],[19.00167,45.44598],[19.05918,45.44556],[19.05823,45.39143],[19.00055,45.39197],[19.00014,45.36502],[19.08625,45.36421],[19.08573,45.33727],[19.11448,45.3371],[19.11397,45.31],[19.14267,45.30979],[19.14207,45.28274],[19.28549,45.28127],[19.28489,45.25415],[19.4568,45.25211],[19.45472,45.17123],[19.16856,45.17445],[19.16817,45.14748],[19.13939,45.14775],[19.13879,45.12072],[19.08165,45.12126],[19.08114,45.09439],[19.10975,45.09406],[19.10873,45.04013],[19.08016,45.04028],[19.07909,44.98637],[19.13611,44.98592],[19.13517,44.93186],[19.10656,44.9321],[19.10609,44.90514],[18.99209,44.90614],[18.99124,44.85213],[18.79191,44.85367],[18.79234,44.8808],[18.73541,44.88107],[18.73651,44.96209],[18.76496,44.96185],[18.76538,44.98887],[18.70828,44.98926],[18.70866,45.0163],[18.68009,45.01642],[18.6803,45.04344],[18.42323,45.04465],[18.42374,45.09866],[18.2236,45.09923],[18.22349,45.07223],[18.08061,45.07241],[18.08057,45.09944],[18.02342,45.09938],[18.02346,45.12646],[17.99489,45.12649],[17.99502,45.0995],[17.9377,45.09947],[17.93774,45.04546],[17.88064,45.04546],[17.88077,45.01844],[17.82362,45.01831],[17.82354,45.04528],[17.76635,45.04519],[17.76626,45.0722],[17.70911,45.07196],[17.70894,45.09908],[17.42317,45.09794],[17.42287,45.12498],[17.30845,45.12429],[17.3082,45.1513],[17.27945,45.15115],[17.27988,45.1242],[17.16546,45.12342],[17.16503,45.15034],[17.10789,45.14992],[17.10755,45.17694],[17.05014,45.17634],[17.04972,45.20347],[16.93521,45.20239],[16.93428,45.25649],[16.90553,45.25619],[16.9066,45.20233],[16.84932,45.20161],[16.84996,45.17466],[16.67818,45.1727],[16.6775,45.19975],[16.49516,45.19753],[16.49495,45.17051],[16.48371,45.17063],[16.48239,45.11675],[16.42516,45.11744],[16.42384,45.06345],[16.39526,45.06375],[16.39462,45.03685],[16.36605,45.03715],[16.36473,44.98321],[16.25065,44.98453],[16.2512,45.01145],[16.16557,45.01229],[16.16668,45.06634],[16.10953,45.06691],[16.11017,45.0925],[16.10689,45.094],[16.08143,45.09424],[16.08202,45.12129],[16.05341,45.12147],[16.05405,45.14847],[16.02539,45.1488],[16.02581,45.17571],[15.99724,45.17598],[15.99775,45.20305],[15.79723,45.20455],[15.79531,45.06961],[15.76665,45.06979],[15.7664,45.04278],[15.79489,45.04263],[15.79382,44.96167],[15.76529,44.9618],[15.76423,44.88077],[15.79271,44.88062],[15.79199,44.82667],[15.76355,44.82685],[15.7632,44.79982],[15.79156,44.79967],[15.79088,44.74562],[15.87618,44.74498],[15.87656,44.77185],[15.9049,44.77176],[15.90449,44.74477],[15.93273,44.74465],[15.93243,44.71754],[15.98923,44.71706],[15.98885,44.69012],[16.01713,44.68985],[16.01679,44.66278],[16.0451,44.6626],[16.04459,44.6356],[16.07287,44.6353],[16.07197,44.5814],[16.01525,44.58182],[16.01483,44.55486],[16.12797,44.55379],[16.12712,44.49979],[16.15522,44.49954],[16.15429,44.44558],[16.1826,44.44527],[16.1815,44.39122],[16.20964,44.39101],[16.20905,44.36395],[16.23741,44.36368],[16.23673,44.33664],[16.20858,44.33691],[16.207,44.25603],[16.2349,44.25572],[16.23396,44.20168],[16.29013,44.20104],[16.2897,44.17414],[16.31772,44.17379],[16.31663,44.11979],[16.37272,44.11914],[16.37225,44.09218],[16.45636,44.09113],[16.4552,44.0371],[16.5352,44.0371],[16.53597,44.0101],[16.56391,44.01041],[16.56528,43.95653],[16.62128,43.95714],[16.6218,43.93011],[16.62798,43.93014],[16.62875,43.90327],[16.67858,43.90383],[16.67918,43.87683],[16.7351,43.87739],[16.73686,43.79647],[16.76479,43.79672],[16.76535,43.76982],[16.82123,43.77041],[16.82174,43.74335],[16.84959,43.74366],[16.85019,43.71671],[16.90603,43.71718],[16.90646,43.69013],[16.93431,43.69047],[16.93508,43.66353],[16.96272,43.66368],[16.96323,43.63673],[16.99104,43.63698],[16.99169,43.60998],[17.01932,43.61026],[17.01993,43.58328],[17.04773,43.58347],[17.04829,43.55648],[17.10378,43.55688],[17.10421,43.52991],[17.15987,43.53038],[17.1603,43.50337],[17.27149,43.50415],[17.27192,43.47709],[17.29969,43.47728],[17.30055,43.39625],[17.27283,43.39607],[17.27325,43.36912],[17.30093,43.36928],[17.30149,43.31522],[17.3293,43.31544],[17.32995,43.28845],[17.35728,43.28855],[17.35758,43.26158],[17.44067,43.26202],[17.44148,43.18102],[17.4968,43.18121],[17.49706,43.15426],[17.58006,43.15454],[17.58023,43.12755],[17.60782,43.12758],[17.60808,43.1007],[17.66331,43.10079],[17.66361,43.04688],[17.69116,43.04688],[17.69142,43.01974],[17.71897,43.01993],[17.71927,42.93889],[17.77442,42.93902],[17.77459,42.91203],[17.80223,42.91215],[17.80197,42.93911],[17.82952,42.93918],[17.82969,42.91221],[17.88476,42.91221],[17.88488,42.85819],[17.91248,42.85826],[17.91248,42.8312],[17.93999,42.83116],[17.9399,42.80422],[17.995,42.80428],[17.995,42.77726],[18.05002,42.77716],[18.05002,42.75023],[18.105,42.75023],[18.105,42.72318],[18.13229,42.72309],[18.13233,42.69616],[18.1598,42.69619],[18.15976,42.66906],[18.21456,42.66899],[18.21443,42.64201],[18.24203,42.64191],[18.2419,42.61495],[18.26928,42.61489],[18.26941,42.64185],[18.37913,42.64156],[18.37897,42.61457],[18.40648,42.61444],[18.40635,42.58753],[18.46111,42.58718],[18.46025,42.47925],[18.48763,42.47909],[18.48746,42.45215],[18.54218,42.45187],[18.54149,42.37078],[18.51411,42.37097],[18.51424,42.39792],[16.48009,42.74046],[15.71251,42.99134],[13.71386,44.87631],[13.59592,45.03763],[13.56502,45.11763],[13.56067,45.30623],[13.53207,45.30586],[13.52983,45.38682],[13.50211,45.38736],[13.49885,45.46741],[13.47018,45.46705],[13.46956,45.49407],[13.49675,45.49442],[13.49658,45.49889],[13.49816,45.49892],[13.49761,45.52141],[13.55507,45.52207],[13.5558,45.49522],[13.61331,45.49597],[13.61403,45.46895],[13.84428,45.47145],[13.84488,45.44442],[13.90234,45.44505],[13.90182,45.47205],[13.98808,45.47289],[13.98757,45.49985],[14.10275,45.50081],[14.10305,45.47379],[14.33334,45.47533],[14.33308,45.50232],[14.39059,45.50268],[14.39042,45.52959],[14.44797,45.52995],[14.44771,45.55697],[14.47642,45.55712],[14.47625,45.58419],[14.50504,45.58422],[14.50487,45.61128],[14.53375,45.61137],[14.53354,45.63832],[14.56229,45.63844],[14.56186,45.69242],[14.59074,45.69257],[14.59109,45.66553],[14.61984,45.66568],[14.62014,45.63868],[14.64885,45.63871],[14.6492,45.61173],[14.70683,45.61194],[14.70713,45.5579],[14.7358,45.55793],[14.73601,45.531],[14.79378,45.53112],[14.79382,45.50415],[14.82236,45.50421],[14.82262,45.47717],[14.88004,45.47735],[14.88008,45.5043],[15.11036,45.50421],[15.11028,45.47735],[15.1392,45.4772],[15.13899,45.45029],[15.22533,45.45011],[15.22593,45.47704],[15.34056,45.47674],[15.34073,45.50379],[15.28314,45.50394],[15.28391,45.63895],[15.34155,45.63868]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-topo-25","name":"dgu.hr: Topo 25","type":"wms","template":"https://geoportal.dgu.hr/services/tk/ows?LAYERS=tk:TK25&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:900913","endDate":"2011-01-01T00:00:00.000Z","startDate":"1996-01-01T00:00:00.000Z","polygon":[[[16.245,46.6248],[16.49546,46.62492],[16.49503,46.50016],[16.87019,46.49981],[16.86968,46.375],[16.99482,46.375],[16.99448,46.25003],[17.24459,46.25015],[17.24476,46.12501],[17.3699,46.12489],[17.37007,46.00018],[17.74498,45.99994],[17.74481,45.87483],[18.61994,45.87507],[18.61959,46.00018],[18.99485,45.99982],[18.99485,45.62499],[19.1199,45.62496],[19.11982,45.37476],[19.36984,45.37494],[19.3701,45.25012],[19.49507,45.25],[19.49524,45.12502],[19.12016,45.12466],[19.11982,44.99989],[19.24444,45.00013],[19.24496,44.87509],[19.11982,44.87485],[19.11982,44.75015],[18.74474,44.74978],[18.74508,44.9903],[18.72568,44.9903],[18.72568,44.99977],[17.37007,44.99965],[17.37024,45.12514],[16.49528,45.1249],[16.49546,45.00001],[16.31693,45.00013],[16.31676,44.99491],[16.28483,44.99491],[16.28534,44.99977],[15.99524,45.00013],[15.99506,45.12514],[15.87009,45.12502],[15.87044,44.75015],[16.1202,44.75015],[16.11986,44.51671],[16.1257,44.51646],[16.12553,44.50006],[16.245,44.49993],[16.24517,44.25012],[16.37014,44.25012],[16.3698,44.12506],[16.62043,44.1253],[16.62077,44.00035],[16.74488,43.99998],[16.7454,43.87587],[16.87054,43.87538],[16.87019,43.75039],[16.99482,43.75002],[16.99533,43.62551],[17.24493,43.62489],[17.24527,43.50013],[17.36973,43.50001],[17.37024,43.24995],[17.61967,43.25008],[17.62018,43.12517],[17.74498,43.12529],[17.74498,43.00038],[17.87012,43.00025],[17.86995,42.87546],[18.11989,42.87559],[18.12006,42.75016],[18.24503,42.75016],[18.2452,42.62512],[18.49462,42.62537],[18.49514,42.50058],[18.61994,42.50033],[18.62011,42.37491],[18.37017,42.37529],[18.37017,42.48919],[18.34528,42.48931],[18.34528,42.50045],[18.12023,42.50007],[18.12006,42.61817],[18.11079,42.6183],[18.11062,42.62512],[17.49487,42.62487],[17.49453,42.73831],[17.43324,42.73806],[17.43324,42.74991],[17.2451,42.75016],[17.2451,42.87521],[16.99516,42.87508],[16.99516,42.83368],[17.17043,42.83343],[17.17026,42.75016],[16.95345,42.75016],[16.95345,42.66716],[16.77887,42.66716],[16.77835,42.75016],[16.72832,42.7502],[16.72829,42.74769],[16.70636,42.74775],[16.70628,42.75026],[16.62008,42.75029],[16.62008,42.97947],[16.60605,42.9795],[16.60601,42.99109],[16.62013,42.99137],[16.61991,43.12523],[16.36989,43.12504],[16.36989,43.00006],[16.12003,43.00038],[16.12038,42.95831],[16.01266,42.95824],[16.0124,42.9502],[15.99515,42.95008],[15.99524,43.08356],[16.1202,43.08356],[16.1202,43.12529],[16.24552,43.12492],[16.24466,43.37486],[15.99524,43.37511],[15.99524,43.48902],[15.99309,43.48911],[15.99313,43.49558],[15.99524,43.49558],[15.99524,43.49848],[15.9827,43.49854],[15.98266,43.49042],[15.95648,43.49032],[15.95657,43.50007],[15.87018,43.50007],[15.87018,43.62508],[15.74555,43.62483],[15.74547,43.61949],[15.62011,43.61936],[15.62024,43.62085],[15.49544,43.62085],[15.49527,43.62508],[15.3703,43.62502],[15.37028,43.74428],[15.35541,43.74433],[15.35537,43.74996],[15.12019,43.74996],[15.12011,43.87507],[14.99539,43.87507],[14.99522,44.00004],[14.87051,44.00004],[14.87025,44.12487],[14.7452,44.12493],[14.74545,44.24557],[14.7331,44.24557],[14.73292,44.24999],[14.49543,44.24993],[14.49552,44.4913],[14.48419,44.49987],[14.31004,44.49987],[14.31004,44.49706],[14.29871,44.49709],[14.29871,44.49999],[14.24549,44.50006],[14.24515,44.61552],[14.22884,44.61577],[14.22884,44.62493],[14.12035,44.62444],[14.12052,44.7499],[14.24532,44.75003],[14.24515,44.87497],[14.00448,44.87497],[14.00499,44.7995],[13.99555,44.79938],[13.99538,44.75015],[13.74544,44.74978],[13.74561,44.87497],[13.62064,44.87509],[13.62039,45.04157],[13.60382,45.04139],[13.60391,45.12478],[13.4955,45.12478],[13.49567,45.46519],[13.48675,45.46519],[13.4864,45.49648],[13.49533,45.49648],[13.49516,45.50683],[13.53807,45.50719],[13.53807,45.49997],[13.87041,45.49985],[13.87058,45.62472],[14.11983,45.62472],[14.12052,45.49997],[14.20618,45.50033],[14.20618,45.5096],[14.27708,45.50996],[14.27725,45.50021],[14.36995,45.50009],[14.37012,45.62484],[14.49526,45.62472],[14.4956,45.7498],[14.62023,45.74992],[14.6204,45.62496],[14.99514,45.62484],[14.99548,45.50009],[15.24508,45.49997],[15.24525,45.71649],[15.23701,45.71661],[15.23701,45.72524],[15.24542,45.72524],[15.24559,45.87483],[15.61998,45.87507],[15.61981,45.9997],[15.49519,45.99947],[15.49484,46.25003],[15.74512,46.24979],[15.7453,46.37489],[15.99472,46.37512],[15.99472,46.49993],[16.24517,46.49981],[16.245,46.6248]],[[15.68264,42.95868],[15.80795,42.95818],[15.80761,43.08318],[15.68264,43.08368],[15.68264,42.95868]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-topo-25-new","name":"dgu.hr: Topo 25 new","type":"wms","template":"https://geoportal.dgu.hr/services/tk/ows?LAYERS=tk:TK25_NOVI&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:900913","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[16.49987,42.70991],[17.04993,42.70902],[17.04963,42.7443],[17.17218,42.74374],[17.17218,42.77966],[17.04993,42.78022],[17.05023,42.79823],[17.00138,42.79873],[17.00138,42.82574],[16.96479,42.82585],[16.96456,42.79895],[16.49941,42.79968],[16.49987,42.7711],[16.4826,42.7711],[16.4826,42.74363],[16.50002,42.74363],[16.49987,42.70991]],[[13.42719,45.54859],[13.61807,45.55389],[13.62292,45.46386],[13.76198,45.4671],[13.76191,45.46936],[13.77081,45.46955],[13.77088,45.46742],[14.58109,45.48389],[14.58723,45.30405],[14.77841,45.30701],[14.78114,45.21712],[14.97186,45.21981],[14.97694,45.03983],[14.78659,45.03716],[14.78924,44.94727],[14.5992,44.94406],[14.6051,44.76444],[14.2263,44.75745],[14.21941,44.93719],[14.05163,44.93381],[14.05277,44.91124],[14.03103,44.91065],[14.03717,44.75352],[13.8478,44.74922],[13.845,44.81933],[13.82273,44.8189],[13.82175,44.83856],[13.65443,44.83453],[13.64534,45.01441],[13.45529,45.00943],[13.42719,45.54859]],[[15.44375,43.10094],[15.48034,43.10133],[15.48064,43.08341],[15.44383,43.08352],[15.44375,43.10094]],[[15.72242,46.21722],[15.91671,46.21827],[15.91962,45.94844],[15.7261,45.94721],[15.72242,46.21722]],[[15.57866,43.0662],[15.58047,42.97671],[15.76423,42.97704],[15.76438,42.99522],[15.81316,42.99588],[15.81347,43.01328],[15.7715,43.0135],[15.77181,43.04041],[15.76363,43.04041],[15.76393,43.06764],[15.57866,43.0662]],[[16.3049,46.48965],[16.49957,46.48986],[16.49972,46.39978],[16.30505,46.39967],[16.3049,46.48965]],[[15.53442,45.85567],[16.30679,45.85976],[16.30619,46.03979],[16.50032,46.04037],[16.49998,46.12978],[16.69404,46.12965],[16.6944,46.21962],[16.88874,46.21911],[16.88837,46.12915],[17.27626,46.12721],[17.27514,46.03719],[17.0814,46.0383],[17.08045,45.94841],[17.27391,45.94717],[17.27268,45.85726],[17.46569,45.8558],[17.46429,45.76578],[17.84972,45.762],[17.84549,45.58197],[18.03768,45.57957],[18.04509,45.8494],[18.61388,45.84029],[18.61457,45.85834],[18.62487,45.85816],[18.6276,45.92998],[19.01399,45.9222],[18.99776,45.56262],[19.1899,45.55823],[19.17731,45.28839],[19.55905,45.27899],[19.54953,45.09925],[19.16873,45.10881],[19.15621,44.8391],[18.58784,44.85076],[18.59384,45.03073],[18.21341,45.03721],[17.4521,45.04599],[17.45339,45.12428],[17.44581,45.12431],[17.44577,45.13107],[17.45339,45.13107],[17.45346,45.13599],[17.42309,45.13617],[17.42309,45.13131],[17.35944,45.13181],[17.35954,45.13676],[16.49994,45.13997],[16.50032,44.96003],[16.11978,44.95936],[16.11914,45.04937],[15.92881,45.04857],[15.92777,45.1387],[15.7374,45.13737],[15.7395,44.95747],[15.74304,44.68753],[15.93235,44.68862],[15.93144,44.7785],[16.12088,44.77934],[16.1258,44.50938],[16.31126,44.50983],[16.3125,44.14984],[16.49991,44.14998],[16.50002,44.06],[16.68726,44.05983],[16.68669,43.87982],[16.87325,43.87936],[16.87221,43.70925],[16.87842,43.70922],[16.87837,43.69932],[17.05822,43.6986],[17.05747,43.6086],[17.24319,43.6075],[17.24217,43.51755],[17.42761,43.51622],[17.4236,43.24615],[17.60821,43.24448],[17.60668,43.15452],[17.791,43.15255],[17.78723,42.97258],[17.9711,42.97037],[17.96681,42.79042],[18.15005,42.78789],[18.14778,42.69789],[18.3307,42.6951],[18.32853,42.62021],[18.37964,42.61937],[18.37926,42.60432],[18.51071,42.60206],[18.50551,42.43715],[18.55404,42.43625],[18.55355,42.42127],[18.68705,42.41881],[18.68394,42.32883],[18.50215,42.33212],[18.50454,42.40708],[18.48025,42.40746],[18.48072,42.42256],[18.32286,42.42516],[18.32527,42.5084],[18.31006,42.50865],[18.31025,42.51538],[18.14308,42.51789],[18.14539,42.60794],[17.59706,42.61447],[17.59861,42.70448],[17.23248,42.7074],[17.23346,42.79734],[17.33863,42.79667],[17.33875,42.80837],[17.40722,42.80784],[17.40714,42.7962],[17.41691,42.79617],[17.41813,42.88612],[16.50006,42.88987],[16.49994,43.06991],[16.31585,43.06971],[16.31611,42.97987],[16.13228,42.9792],[16.13273,42.88914],[15.94913,42.88859],[15.94746,43.07965],[16.13152,43.08075],[16.13114,43.15921],[16.31573,43.15987],[16.31543,43.16694],[16.30505,43.167],[16.30498,43.17777],[16.31558,43.17788],[16.31497,43.33975],[16.13008,43.33926],[16.12955,43.41313],[16.11724,43.41305],[16.11717,43.42569],[16.10607,43.42567],[16.106,43.42923],[15.9442,43.42857],[15.94344,43.5087],[15.91625,43.50859],[15.91618,43.51839],[15.75789,43.51755],[15.75673,43.60747],[15.3852,43.6044],[15.38335,43.69456],[15.19751,43.69259],[15.19372,43.8618],[15.17509,43.86158],[15.17463,43.87207],[15.00701,43.87026],[15.00481,43.96046],[15.37823,43.9646],[15.37687,44.05438],[15.18963,44.05242],[15.18357,44.32247],[14.99572,44.32011],[14.98633,44.67999],[15.17548,44.68236],[15.16299,45.22216],[15.35396,45.22424],[15.35218,45.31423],[15.5434,45.31596],[15.53442,45.85567]],[[16.23264,42.36768],[16.35459,42.36858],[16.35413,42.4036],[16.23218,42.40349],[16.23264,42.36768]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"drone-imagery-2016","name":"Drone Imagery Matthew(Haiti) October 2016","type":"tms","template":"https://imagery.openstreetmap.fr/tms/1.0.0/haiti_uav_201610/{zoom}/{x}/{y}","endDate":"2016-10-01T00:00:00.000Z","startDate":"2016-10-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[-74.11291,18.64948],[-74.10903,18.64598],[-74.10873,18.64446],[-74.1095,18.64452],[-74.1095,18.64181],[-74.10968,18.64187],[-74.11053,18.64103],[-74.10988,18.64034],[-74.11005,18.64014],[-74.11005,18.64009],[-74.11011,18.64002],[-74.10949,18.63959],[-74.1095,18.63924],[-74.10904,18.63926],[-74.10894,18.63917],[-74.10905,18.63912],[-74.10898,18.63899],[-74.10782,18.63839],[-74.10823,18.63775],[-74.10812,18.63764],[-74.10786,18.63774],[-74.10768,18.63733],[-74.10748,18.63719],[-74.10722,18.63559],[-74.10901,18.63394],[-74.11678,18.62847],[-74.11952,18.62815],[-74.12251,18.63132],[-74.12731,18.63703],[-74.12684,18.6374],[-74.12731,18.63771],[-74.12768,18.63756],[-74.13403,18.64671],[-74.13401,18.64897],[-74.13087,18.65167],[-74.13076,18.65153],[-74.13053,18.65179],[-74.13054,18.65195],[-74.12878,18.65342],[-74.1274,18.65412],[-74.12514,18.65497],[-74.11997,18.65432],[-74.11938,18.65429],[-74.11291,18.64948]],[[-74.11305,18.4922],[-74.10884,18.49216],[-74.10118,18.49095],[-74.10105,18.49057],[-74.10131,18.4902],[-74.10101,18.48996],[-74.10142,18.48933],[-74.10099,18.48931],[-74.1009,18.48886],[-74.10166,18.48725],[-74.10108,18.48713],[-74.10133,18.48664],[-74.10058,18.48654],[-74.10048,18.48552],[-74.10062,18.4849],[-74.10037,18.48478],[-74.10012,18.4827],[-74.09994,18.48123],[-74.10033,18.48114],[-74.10242,18.48116],[-74.10492,18.48149],[-74.10771,18.48189],[-74.1099,18.48226],[-74.10987,18.48243],[-74.10992,18.48246],[-74.11018,18.48232],[-74.11196,18.48261],[-74.11247,18.48278],[-74.11316,18.48382],[-74.1134,18.48521],[-74.11349,18.48709],[-74.11338,18.48704],[-74.11336,18.48717],[-74.11349,18.48727],[-74.11355,18.48931],[-74.11349,18.48949],[-74.1135,18.48951],[-74.11349,18.48952],[-74.11347,18.48951],[-74.11334,18.48957],[-74.11336,18.48962],[-74.11341,18.48958],[-74.11344,18.48959],[-74.11349,18.48956],[-74.11352,18.48957],[-74.11355,18.48956],[-74.11357,18.48998],[-74.11359,18.49067],[-74.11354,18.49108],[-74.11322,18.492],[-74.11305,18.4922]],[[-74.10198,18.24954],[-74.09767,18.24744],[-74.09419,18.2474],[-74.09338,18.24885],[-74.09638,18.25292],[-74.09934,18.25335],[-74.10198,18.24954]],[[-74.02901,18.59744],[-74.02881,18.60255],[-74.00847,18.60182],[-74.00867,18.59671],[-74.02901,18.59744]],[[-73.91991,18.07466],[-73.91468,18.07482],[-73.91535,18.07742],[-73.91478,18.08009],[-73.91997,18.08014],[-73.91924,18.07802],[-73.91999,18.07637],[-73.91991,18.07466]],[[-74.22365,18.3081],[-74.22061,18.30272],[-74.21902,18.30278],[-74.21592,18.30364],[-74.21615,18.30804],[-74.22365,18.3081]],[[-74.00508,18.17646],[-74.00072,18.17657],[-74.00186,18.18175],[-74.00269,18.18344],[-74.00653,18.18336],[-74.00715,18.18218],[-74.00649,18.18056],[-74.0052,18.17922],[-74.00508,18.17646]],[[-74.0653,18.22881],[-74.06361,18.2268],[-74.06114,18.22672],[-74.05968,18.22853],[-74.06281,18.23083],[-74.06446,18.23034],[-74.0653,18.22881]],[[-74.11371,18.47184],[-74.11002,18.47177],[-74.10959,18.47536],[-74.11341,18.47497],[-74.11371,18.47184]],[[-73.95852,18.47452],[-73.95446,18.47465],[-73.95548,18.4794],[-73.95965,18.47878],[-73.95852,18.47452]],[[-74.16719,18.27229],[-74.16196,18.27232],[-74.16175,18.27303],[-74.16255,18.27452],[-74.16372,18.27542],[-74.16341,18.27749],[-74.16404,18.27854],[-74.16756,18.27868],[-74.16742,18.27592],[-74.16775,18.27416],[-74.16719,18.27229]],[[-74.11091,18.45286],[-74.10701,18.45258],[-74.10684,18.4586],[-74.11102,18.45781],[-74.11091,18.45286]],[[-73.76854,18.18022],[-73.75773,18.18006],[-73.73559,18.19311],[-73.73567,18.20143],[-73.74563,18.20191],[-73.74468,18.22311],[-73.77121,18.22417],[-73.77129,18.20844],[-73.76915,18.2064],[-73.76854,18.18022]],[[-74.13455,18.60914],[-74.1388,18.60929],[-74.13871,18.61165],[-74.13447,18.6115],[-74.13455,18.60914]],[[-74.04228,18.20945],[-74.042,18.20484],[-74.04155,18.20239],[-74.03959,18.20051],[-74.03836,18.20028],[-74.03764,18.20242],[-74.03792,18.20562],[-74.03918,18.20932],[-74.04228,18.20945]],[[-74.08668,18.61121],[-74.08669,18.61217],[-74.09146,18.61689],[-74.09211,18.61603],[-74.09313,18.61699],[-74.09603,18.62025],[-74.09627,18.6206],[-74.0967,18.62202],[-74.09337,18.62651],[-74.09237,18.62754],[-74.08862,18.62596],[-74.08863,18.62561],[-74.08778,18.62561],[-74.08661,18.6251],[-74.08662,18.62368],[-74.08514,18.62367],[-74.08462,18.62289],[-74.08463,18.62175],[-74.08339,18.62174],[-74.08261,18.62057],[-74.08262,18.61982],[-74.07659,18.6198],[-74.07658,18.61596],[-74.07255,18.61591],[-74.07259,18.61403],[-74.07062,18.61402],[-74.06858,18.6129],[-74.06855,18.61208],[-74.06614,18.61207],[-74.06414,18.61206],[-74.0625,18.61105],[-74.06254,18.61011],[-74.05927,18.61013],[-74.0545,18.60876],[-74.05451,18.60817],[-74.05168,18.60816],[-74.04932,18.60776],[-74.04647,18.60664],[-74.04646,18.6062],[-74.04243,18.6062],[-74.04133,18.60592],[-74.03625,18.60378],[-74.03597,18.60345],[-74.03642,18.60252],[-74.03719,18.6019],[-74.04003,18.60217],[-74.05608,18.60473],[-74.05851,18.6054],[-74.05861,18.60623],[-74.0611,18.60627],[-74.06481,18.60745],[-74.06518,18.60686],[-74.06679,18.60802],[-74.0696,18.60885],[-74.07142,18.60711],[-74.07239,18.60736],[-74.07515,18.61024],[-74.07701,18.61019],[-74.07798,18.61096],[-74.07901,18.61013],[-74.08109,18.61234],[-74.08234,18.60896],[-74.08383,18.60922],[-74.08513,18.60977],[-74.08668,18.61121]],[[-74.45922,18.4663],[-74.45589,18.46471],[-74.44779,18.47],[-74.44693,18.4713],[-74.44726,18.47934],[-74.44554,18.47915],[-74.44515,18.48326],[-74.43968,18.4839],[-74.439,18.48762],[-74.44299,18.49004],[-74.44906,18.49104],[-74.45382,18.49311],[-74.45571,18.49635],[-74.45786,18.49725],[-74.46052,18.49523],[-74.46241,18.49143],[-74.46198,18.48799],[-74.45537,18.48597],[-74.45526,18.47111],[-74.45944,18.46871],[-74.45922,18.4663]],[[-74.41888,18.57551],[-74.41499,18.57331],[-74.41045,18.57648],[-74.40824,18.58233],[-74.40954,18.58894],[-74.4112,18.59195],[-74.41081,18.59689],[-74.41663,18.60063],[-74.42178,18.59671],[-74.42146,18.59416],[-74.41745,18.59419],[-74.41753,18.59067],[-74.41538,18.59002],[-74.41533,18.58382],[-74.41652,18.58382],[-74.41756,18.5814],[-74.41756,18.57967],[-74.41924,18.57754],[-74.41888,18.57551]]]},{"id":"Erlangen-2016","name":"Erlangen Luftbild (2016 5,0 cm)","type":"tms","template":"https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2016/{zoom}/{x}/{y}.jpg","endDate":"2016-03-18T00:00:00.000Z","startDate":"2016-03-18T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[10.97664,49.53765],[10.99101,49.53392],[10.99389,49.53835],[11.02784,49.53254],[11.0346,49.53462],[11.03407,49.53759],[11.04318,49.54321],[11.03557,49.55303],[11.0384,49.55842],[11.03508,49.56929],[11.03791,49.58659],[11.04797,49.5902],[11.04922,49.5937],[11.05749,49.59521],[11.05623,49.59905],[11.05127,49.6003],[11.05351,49.60904],[11.04309,49.61381],[11.04076,49.61823],[11.0285,49.61735],[11.01929,49.61896],[11.0152,49.61372],[11.00581,49.61448],[11.00639,49.61931],[11.00083,49.6221],[10.9856,49.61651],[10.97837,49.61753],[10.9737,49.62495],[10.96539,49.62557],[10.96063,49.62856],[10.96382,49.63176],[10.95474,49.6379],[10.94837,49.637],[10.94185,49.64377],[10.9273,49.64837],[10.92063,49.63963],[10.91136,49.63773],[10.92429,49.60505],[10.92205,49.58004],[10.91221,49.57008],[10.91441,49.5618],[10.92353,49.55842],[10.92712,49.55976],[10.93345,49.55892],[10.93071,49.54467],[10.93067,49.53225],[10.9406,49.53325],[10.95488,49.53021],[10.97199,49.53126],[10.97664,49.53765]]],"terms_text":"© Stadt Erlangen | © GEOCART GmbH"},{"id":"Erlangen-2018","name":"Erlangen Luftbild (2018 5,0 cm)","type":"tms","template":"https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2018/{zoom}/{x}/{y}.jpg","endDate":"2018-04-09T00:00:00.000Z","startDate":"2018-04-09T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[10.85157,49.55172],[10.93037,49.55272],[10.9326,49.55818],[10.91627,49.55882],[10.91144,49.56652],[10.92281,49.60584],[10.9108,49.63751],[10.92775,49.64838],[10.94444,49.64321],[10.96487,49.63317],[10.96384,49.62711],[10.9745,49.62483],[10.9786,49.61794],[10.98478,49.61694],[10.998,49.62228],[11.00813,49.62194],[11.0071,49.61449],[11.01448,49.61394],[11.02081,49.62292],[11.05757,49.63993],[11.08136,49.62614],[11.08312,49.62034],[11.10419,49.61524],[11.11767,49.61449],[11.11997,49.60377],[11.13132,49.60348],[11.1272,49.58815],[11.10271,49.58378],[11.08898,49.59124],[11.07988,49.60837],[11.05808,49.60971],[11.06049,49.59803],[11.06512,49.59614],[11.0689,49.58879],[11.06031,49.58556],[11.04469,49.58913],[11.03851,49.58556],[11.03577,49.57276],[11.03937,49.55785],[11.04272,49.5432],[11.03465,49.5324],[10.97531,49.53467],[10.97158,49.53084],[10.94279,49.52986],[10.94273,49.50582],[10.92163,49.50566],[10.91245,49.51829],[10.88818,49.52834],[10.87518,49.51725],[10.84872,49.52291],[10.84652,49.52797],[10.84637,49.53223],[10.85157,49.55172]]],"terms_text":"© Stadt Erlangen | © Hansa Luftbild AG","best":true},{"id":"EsriWorldImagery","name":"Esri World Imagery","type":"tms","template":"https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[0,22],"terms_url":"https://wiki.openstreetmap.org/wiki/Esri","terms_text":"Terms & Feedback","default":true,"description":"Esri world imagery.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png"},{"id":"EsriWorldImageryClarity","name":"Esri World Imagery (Clarity) Beta","type":"tms","template":"https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[0,22],"terms_url":"https://wiki.openstreetmap.org/wiki/Esri","terms_text":"Terms & Feedback","default":true,"description":"Esri archive imagery that may be clearer and more accurate than the default layer.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png"},{"id":"maaamet.ee-pohi_vr2","name":"Estonia Basemap (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?LAYERS=pohi_vr2&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti põhikaart"},{"id":"Maaamet-Estonia_Cadastre","name":"Estonia Cadastre (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=of10000,TOPOYKSUS_6569,TOPOYKSUS_6573&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti katastrikaart ortofoto alusel"},{"id":"maaamet.ee-cir_ngr","name":"Estonia Forestry (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?LAYERS=cir_ngr&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti metsanduslik ortofoto"},{"id":"maaamet.ee-reljeef","name":"Estonia Hillshading (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=reljeef&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti reljeefikaart"},{"id":"maaamet.ee-orto","name":"Estonia Ortho (Maaamet)","type":"tms","template":"https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png","zoomExtent":[6,18],"polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti ortofoto"},{"id":"eufar-balaton","name":"EUFAR Balaton orthophotos","type":"tms","template":"http://e.tile.openstreetmap.hu/balaton/0/{zoom}/{x}/{y}.jpg","endDate":"2010-08-31T00:00:00.000Z","startDate":"2010-08-01T00:00:00.000Z","zoomExtent":[12,19],"polygon":[[[18.17918,46.98502],[18.17773,47.01816],[18.08176,47.05643],[18.10281,47.06311],[18.08152,47.09344],[18.06436,47.09049],[18.03537,47.07983],[18.03344,47.08262],[17.9582,47.05567],[17.99436,47.00449],[17.86441,46.95517],[17.80274,47.0103],[17.67184,46.97207],[17.23875,46.77079],[17.22244,46.6796],[17.47175,46.70306],[18.16735,46.94133],[18.17918,46.98502]]],"terms_url":"http://www.bli.okologia.mta.hu/","terms_text":"EUFAR Balaton ortofotó 2010","best":true,"description":"1940 geo-tagged photography from Balaton Limnological Institute."},{"id":"Fiez-2013","name":"Fiez Orthophoto 2013","type":"tms","template":"https://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[6.62313,46.82339],[6.62899,46.82484],[6.62882,46.82674],[6.62531,46.83274],[6.62382,46.83317],[6.61839,46.83194],[6.62313,46.82339]]],"terms_url":"https://osmdata.asitvd.ch/","terms_text":"Fiez - Orthophoto technique 2013"},{"id":"fiskeridir-akvakultur","name":"Fiskeridirektoratet Aquaculture overlay","type":"wms","template":"https://ogc.fiskeridir.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_262&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[3,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.fiskeridir.no/Kart","terms_text":"© Fiskeridirektoratet","description":"Aquaculture/marine farms (licensed sites, may not yet have any installations)","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg/175px-Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg.png","overlay":true},{"id":"FOMI_2005","name":"FÖMI orthophoto 2005","type":"tms","template":"http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg","endDate":"2005-01-01T00:00:00.000Z","startDate":"2005-01-01T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"terms_url":"https://www.fomi.hu","terms_text":"Földmérési és Távérzékelési Intézet"},{"id":"FOMI_2007_2010","name":"FÖMI orthophoto 2007-2010","type":"tms","template":"http://e.tile.openstreetmap.hu/ortofoto-2007-2010/{zoom}/{x}/{y}.jpg","endDate":"2010-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"terms_url":"https://www.fomi.hu","terms_text":"Földmérési és Távérzékelési Intézet"},{"id":"Frankfurt-am-Main-2016","name":"Frankfurt am Main Luftbild 2016","type":"wms","template":"https://geoportal.frankfurt.de/opendata/luftbild-2016.exe?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=luftbild_10m,luftbild_1m,luftbild_20cm,luftbild_2m,luftbild_50cm,luftbild_5m&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2016-05-06T00:00:00.000Z","startDate":"2016-05-06T00:00:00.000Z","polygon":[[[8.46964,50.01111],[8.46964,50.228],[8.83185,50.228],[8.83185,50.01111],[8.46964,50.01111]]],"terms_url":"http://offenedaten.frankfurt.de/dataset/wms-luftbild-2016","terms_text":"Stadtvermessungsam Frankfurt am Main","description":"aerial imagery of Frankfurt am Main, photographed on 2016-05-06"},{"id":"Frankfurt-am-Main-2017","name":"Frankfurt am Main Luftbild 2017","type":"wms","template":"https://geoportal.frankfurt.de/opendata/luftbild-2017.exe?LAYERS=wms_opendata_luftbilder_2017&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-05-06T00:00:00.000Z","startDate":"2016-05-06T00:00:00.000Z","polygon":[[[8.46964,50.01111],[8.46964,50.228],[8.83185,50.228],[8.83185,50.01111],[8.46964,50.01111]]],"terms_url":"https://offenedaten.frankfurt.de/dataset/wms-luftbild-2017","terms_text":"Stadtvermessungsam Frankfurt am Main","description":"aerial imagery of Frankfurt am Main, photographed on 11.06.2017 and 06.07.2017"},{"id":"Freemap.sk-Cyclo","name":"Freemap.sk Bicycle","type":"tms","template":"https://tile.freemap.sk/C/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=C","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Car","name":"Freemap.sk Car","type":"tms","template":"https://tile.freemap.sk/A/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=A","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Hiking","name":"Freemap.sk Hiking","type":"tms","template":"https://tile.freemap.sk/T/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=T","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Outdoor","name":"Freemap.sk Outdoor","type":"tms","template":"https://outdoor.tiles.freemap.sk/{zoom}/{x}/{y}","zoomExtent":[6,19],"polygon":[[[23.64258,50.62507],[21.56616,51.21377],[14.34815,51.21377],[11.83227,50.41202],[11.84051,47.80209],[10.30243,47.80024],[8.60229,47.94211],[6.88293,47.58764],[5.59753,46.29761],[6.86096,44.20387],[7.55859,43.56447],[9.2395,43.56447],[10.18433,42.19597],[13.64502,40.40513],[21.10474,40.63897],[23.64258,41.16211],[26.12549,41.16211],[28.2019,41.86956],[29.94873,45.24395],[26.99341,48.35625],[23.64258,50.62507]]],"terms_url":"https://www.freemap.sk/?layers=X","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Ski","name":"Freemap.sk Ski","type":"tms","template":"https://tile.freemap.sk/K/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=K","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"fta-digiroad-functional","name":"FTIA Road Networkk","type":"wms","template":"https://julkinen.vayla.fi/inspirepalvelu/wms?LAYERS=digiroad:dr_tielinkki_toim_lk&STYLES=digiroad:DR_Tielinkki_toiminnallinen_luokka_2018&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[3,20],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://vayla.fi/web/en/open-data/digiroad/","terms_text":"© Liikennevirasto","description":"Digiroad national road network from the Finnish Transport Agency, functional road classes.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/V%C3%A4yl%C3%A4virasto_logo.svg/200px-V%C3%A4yl%C3%A4virasto_logo.svg.png","overlay":true},{"id":"gaza_pleiades_20140706","name":"Gaza Strip - Pléiades - 2014/07/06","type":"tms","template":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706/{zoom}/{x}/{y}","endDate":"2014-07-06T00:00:00.000Z","startDate":"2014-07-06T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[34.49022,31.59487],[34.49339,31.59263],[34.5678,31.5401],[34.5653,31.53226],[34.55613,31.52552],[34.54729,31.5121],[34.53011,31.5066],[34.5255,31.50251],[34.51369,31.50067],[34.505,31.49543],[34.4887,31.48263],[34.48532,31.48028],[34.47962,31.47778],[34.47471,31.47207],[34.4674,31.46448],[34.46576,31.46275],[34.45308,31.45139],[34.44585,31.4441],[34.44216,31.44327],[34.43798,31.44112],[34.43226,31.43458],[34.43164,31.43265],[34.4268,31.42804],[34.42211,31.42437],[34.41326,31.41862],[34.41329,31.41758],[34.41174,31.41604],[34.40918,31.41542],[34.4067,31.41295],[34.40506,31.41295],[34.40197,31.4112],[34.40134,31.40986],[34.39492,31.40391],[34.39351,31.40113],[34.38824,31.39599],[34.38037,31.38951],[34.38074,31.38791],[34.37407,31.37915],[34.37338,31.37422],[34.37159,31.37209],[34.37214,31.37093],[34.37158,31.36972],[34.3704,31.36909],[34.36827,31.36992],[34.36685,31.36914],[34.36497,31.36137],[34.37438,31.30609],[34.36708,31.29074],[34.34339,31.27846],[34.33119,31.26149],[34.31931,31.25317],[34.29093,31.24009],[34.26762,31.21894],[34.25915,31.22131],[34.231,31.26295],[34.21113,31.32157],[34.2434,31.34554],[34.29954,31.39629],[34.34172,31.43251],[34.36439,31.45715],[34.41099,31.50162],[34.42619,31.52686],[34.44463,31.54193],[34.49022,31.59487]]],"terms_url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip","terms_text":"Copyright CNES 2014, Distribution Airbus Defence and Space"},{"id":"gaza_pleiades_20140706_nir","name":"Gaza Strip - Pléiades - 2014/07/06 (NIR)","type":"tms","template":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706_nir/{zoom}/{x}/{y}","endDate":"2014-07-06T00:00:00.000Z","startDate":"2014-07-06T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[34.49022,31.59487],[34.49339,31.59263],[34.5678,31.5401],[34.5653,31.53226],[34.55613,31.52552],[34.54729,31.5121],[34.53011,31.5066],[34.5255,31.50251],[34.51369,31.50067],[34.505,31.49543],[34.4887,31.48263],[34.48532,31.48028],[34.47962,31.47778],[34.47471,31.47207],[34.4674,31.46448],[34.46576,31.46275],[34.45308,31.45139],[34.44585,31.4441],[34.44216,31.44327],[34.43798,31.44112],[34.43226,31.43458],[34.43164,31.43265],[34.4268,31.42804],[34.42211,31.42437],[34.41326,31.41862],[34.41329,31.41758],[34.41174,31.41604],[34.40918,31.41542],[34.4067,31.41295],[34.40506,31.41295],[34.40197,31.4112],[34.40134,31.40986],[34.39492,31.40391],[34.39351,31.40113],[34.38824,31.39599],[34.38037,31.38951],[34.38074,31.38791],[34.37407,31.37915],[34.37338,31.37422],[34.37159,31.37209],[34.37214,31.37093],[34.37158,31.36972],[34.3704,31.36909],[34.36827,31.36992],[34.36685,31.36914],[34.36497,31.36137],[34.37438,31.30609],[34.36708,31.29074],[34.34339,31.27846],[34.33119,31.26149],[34.31931,31.25317],[34.29093,31.24009],[34.26762,31.21894],[34.25915,31.22131],[34.231,31.26295],[34.21113,31.32157],[34.2434,31.34554],[34.29954,31.39629],[34.34172,31.43251],[34.36439,31.45715],[34.41099,31.50162],[34.42619,31.52686],[34.44463,31.54193],[34.49022,31.59487]]],"terms_url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip","terms_text":"Copyright CNES 2014, Distribution Airbus Defence and Space"},{"id":"Geobase_Hydrography","name":"Geobase Hydrography - English","type":"wms","template":"https://maps.geogratis.gc.ca/wms/hydro_network_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"overlay":true},{"id":"Geobase_Hydrography_French","name":"Geobase Hydrography - French","type":"wms","template":"https://maps.geogratis.gc.ca/wms/hydro_network_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"overlay":true},{"id":"Geobase_Roads","name":"Geobase Roads - English","type":"wms","template":"https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[4,20],"polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"Geobase_Roads_French","name":"Geobase Roads - French","type":"wms","template":"https://cartes.geogratis.gc.ca/wms/roads_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=routes&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[4,20],"polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"geoimage.at","name":"Geoimage.at MaxRes","type":"wms","template":"https://gis.bmlfuw.gv.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&service=WMS&LAYERS=Luftbild&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"http://geoimage.at","terms_text":"geoimage.at","description":"Aktuelle Digitale Orthophotos des LFRZ aus gemeinsamen Befliegungen mit den Landesregierungen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/GeoimageatMaxRes.png"},{"id":"Geolittoral-Sentiers","name":"Géolittoral - Sentiers","type":"wms","template":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n_sentier_littoral_l&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-0.98385,46.18807],[-0.89497,46.15628],[-0.93455,46.10163],[-0.84388,46.06949],[-0.88241,46.01637],[-0.53787,45.89558],[-0.63498,45.76444],[-0.86666,45.8479],[-0.76264,45.6245],[-0.69695,45.62659],[-0.69397,45.60184],[-0.68755,45.60174],[-0.688,45.50986],[-0.63799,45.50892],[-0.63978,45.44747],[-0.61574,45.44695],[-0.61619,45.38586],[-0.58544,45.38596],[-0.58529,45.32334],[-0.55379,45.32344],[-0.55275,45.19661],[-0.49094,45.19577],[-0.49184,45.13315],[-0.45661,45.13325],[-0.45512,45.07161],[-0.41611,45.07089],[-0.41621,45.02696],[-0.2907,44.98278],[-0.22,45.06771],[-0.12252,45.02563],[-0.18925,44.94591],[-0.09266,44.91019],[-0.14521,44.8392],[-0.15491,44.84238],[-0.19387,44.78678],[-0.43541,44.87317],[-0.39048,44.68413],[-0.58798,44.66014],[-0.66628,44.99129],[-0.77838,44.99263],[-0.77764,45.05389],[-0.81584,45.05321],[-0.81838,45.11962],[-0.88393,45.12051],[-0.88171,45.18081],[-0.93438,45.18185],[-0.9328,45.24484],[-1.00163,45.24439],[-1.00247,45.30827],[-1.0524,45.31013],[-1.04828,45.36911],[-1.06412,45.36911],[-1.05039,45.18252],[-1.10761,44.80787],[-1.01514,44.80113],[-1.01946,44.76914],[-0.93365,44.76149],[-0.9404,44.7018],[-0.96035,44.56434],[-1.01408,44.56765],[-1.09916,44.1456],[-1.22689,44.14022],[-1.21853,44.03249],[-1.30762,44.029],[-1.39572,43.74301],[-1.31296,43.72951],[-1.37439,43.53109],[-1.34589,43.50606],[-1.59964,43.35423],[-1.76549,43.25548],[-1.79281,43.28038],[-1.80281,43.40425],[-1.72832,43.45033],[-1.58531,43.489],[-1.33584,44.22832],[-1.30744,44.41847],[-1.22511,45.44416],[-1.48685,46.06042],[-1.60176,46.17019],[-1.64442,46.22375],[-1.75643,46.42214],[-2.03483,46.61895],[-2.3466,46.62382],[-2.46561,46.71196],[-2.3233,46.83812],[-2.45286,46.93856],[-2.31733,47.16214],[-2.92848,47.28413],[-2.96742,47.22147],[-3.35602,47.32474],[-3.18803,47.48441],[-3.22791,47.61132],[-3.38912,47.59473],[-3.9162,47.67831],[-4.10163,47.70921],[-4.14314,47.78847],[-4.37619,47.71067],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.60147,48.11469],[-4.5921,48.14758],[-4.67101,48.2331],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.83515,48.54319],[-4.63117,48.66129],[-3.96692,48.77978],[-3.94939,48.74715],[-3.67013,48.89508],[-3.54444,48.90297],[-3.40954,48.91866],[-3.33344,48.90458],[-3.02769,48.9275],[-2.80207,48.79793],[-2.69353,48.76722],[-2.45786,48.70896],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.7243,48.75828],[-1.70557,48.84512],[-1.90304,48.86288],[-1.91027,48.92348],[-1.68714,48.93249],[-1.74277,49.24473],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.18545,49.54836],[-0.96463,49.42509],[-0.74429,49.36802],[-0.39014,49.3622],[-0.24976,49.3158],[-0.13342,49.31293],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.59712,51.17355],[2.66071,51.0196],[2.07124,50.92022],[2.05937,50.94709],[1.7976,50.89906],[1.68089,50.8717],[1.65569,50.59729],[1.75357,50.5932],[1.72295,50.24702],[1.82156,50.24262],[1.80149,50.05116],[1.54565,50.06311],[1.54155,50.01267],[1.42462,50.01747],[1.42667,50.05276],[1.03838,49.84609],[0.9827,49.88916],[0.57961,49.82133],[0.42063,49.76297],[0.4281,49.75445],[0.20831,49.67269],[0.14765,49.57767],[0.13461,49.5809],[0.11117,49.54365],[0.56598,49.52045],[0.5632,49.49989],[0.63001,49.49666],[0.61478,49.37441],[0.54825,49.37851],[0.54254,49.33461],[0.45741,49.33938],[0.45843,49.34492],[0.32597,49.35456],[0.32846,49.38128],[0.28011,49.38433],[0.27689,49.36334],[0.21095,49.36658],[0.20817,49.35084],[0.14326,49.35532],[0.13769,49.3115],[0.07204,49.31532],[0.0675,49.28713],[0.00274,49.29076],[0.00508,49.25711],[-0.02027,49.26036],[-0.03492,49.1973],[-0.19448,49.21463],[-0.38966,49.12726],[-0.45369,49.18792],[-0.3561,49.23214],[-0.82088,49.28331],[-0.99778,49.30149],[-1.16728,49.24545],[-1.19515,49.28183],[-1.26768,49.24099],[-1.34114,49.2975],[-1.24768,49.35025],[-1.44583,49.60689],[-1.81105,49.61757],[-1.77479,49.44333],[-1.72775,49.46509],[-1.5339,49.29098],[-1.47909,49.29233],[-1.47608,49.24027],[-1.43557,49.20326],[-1.47225,49.1822],[-1.45091,48.75725],[-1.31155,48.76408],[-1.30533,48.70216],[-1.2584,48.70421],[-1.25229,48.64353],[-1.23519,48.64435],[-1.2269,48.56824],[-1.85218,48.53086],[-1.84908,48.4975],[-1.92326,48.49187],[-1.92813,48.44096],[-2.04272,48.43601],[-2.03889,48.48191],[-2.2895,48.46102],[-2.3021,48.52433],[-2.40863,48.51618],[-2.42035,48.56954],[-2.43084,48.57852],[-2.49083,48.54924],[-2.47353,48.53326],[-2.54978,48.49647],[-2.54005,48.48747],[-2.70681,48.40746],[-3.02979,48.69115],[-4.01034,48.53179],[-4.05342,48.64412],[-4.38281,48.57349],[-4.35482,48.5118],[-4.38853,48.50473],[-4.13495,48.44868],[-4.16411,48.38936],[-4.01832,48.35685],[-4.04733,48.29918],[-3.98814,48.2867],[-4.0214,48.21606],[-4.03634,48.21958],[-4.06623,48.16028],[-4.16675,48.18247],[-4.18331,48.14934],[-4.17232,48.1065],[-4.20111,48.10285],[-4.18643,48.04389],[-4.18806,48.04061],[-4.35686,48.02305],[-4.25657,47.93997],[-4.23363,47.93497],[-4.21371,47.97598],[-4.21854,47.97726],[-4.1806,48.05569],[-3.6172,47.93124],[-2.17991,47.58642],[-2.25449,47.44501],[-2.30182,47.4568],[-2.32043,47.42092],[-2.30372,47.41755],[-2.34753,47.33499],[-2.36219,47.33837],[-2.38079,47.3039],[-2.35852,47.29854],[-2.29962,47.29784],[-2.29742,47.3618],[-2.13199,47.35852],[-2.13478,47.39107],[-2.01565,47.39623],[-2.01404,47.38095],[-1.92862,47.38254],[-1.92891,47.37956],[-1.8322,47.38184],[-1.82986,47.34165],[-1.73608,47.34304],[-1.73418,47.305],[-1.64084,47.30639],[-1.64011,47.29427],[-1.58355,47.29566],[-1.58531,47.33708],[-1.4612,47.33966],[-1.46003,47.32924],[-1.37211,47.33221],[-1.36054,47.11239],[-1.48567,47.11149],[-1.48582,47.11877],[-1.66897,47.11688],[-1.66971,47.12864],[-1.72553,47.12764],[-1.72612,47.13761],[-1.93975,47.13263],[-1.94019,47.1422],[-1.9925,47.14309],[-1.81066,47.00588],[-1.94723,46.92078],[-1.92891,46.90677],[-1.99529,46.86461],[-1.73652,46.66839],[-1.77535,46.64386],[-1.82678,46.64174],[-1.82473,46.62071],[-1.18192,46.39987],[-0.91261,46.3048],[-0.95481,46.2489],[-0.94235,46.24424],[-0.98385,46.18807]],[[3.14769,42.40072],[3.14949,42.40015],[3.15305,42.40052],[3.15804,42.40243],[3.1877,42.42805],[3.14227,42.5248],[3.06837,42.54635],[3.04884,42.6942],[3.0799,43.03073],[3.22641,43.18727],[3.40916,43.26032],[3.52104,43.25877],[3.66429,43.37628],[3.73841,43.39054],[4.00979,43.53607],[4.17692,43.45636],[4.54355,43.43349],[4.54943,43.35401],[4.83506,43.30891],[4.97506,43.38309],[5.03219,43.31928],[5.25919,43.31928],[5.31082,43.20504],[5.35682,43.18645],[5.36882,43.16785],[5.40232,43.16211],[5.41382,43.17123],[5.40919,43.19921],[5.54232,43.18827],[5.60582,43.14797],[5.6197,43.1529],[5.63832,43.17159],[5.67157,43.1674],[5.69095,43.13411],[5.77607,43.10637],[5.7762,43.09432],[5.75407,43.08328],[5.75707,43.0725],[5.77032,43.06465],[5.85933,43.03469],[5.8877,43.06273],[5.9567,43.06109],[5.96383,43.09277],[6.00033,43.09186],[6.01745,43.06849],[6.10233,43.07415],[6.10483,43.0526],[6.0666,43.04318],[6.06722,43.03785],[6.1427,43.00923],[6.15676,42.98715],[6.19635,42.97331],[6.22221,42.9801],[6.26891,42.99651],[6.25515,43.03627],[6.2019,43.02713],[6.18378,43.09188],[6.30153,43.09909],[6.32478,43.07974],[6.37778,43.08011],[6.38866,43.13395],[6.51341,43.14608],[6.57704,43.17881],[6.62291,43.14563],[6.69779,43.19969],[6.68016,43.23357],[6.72116,43.26007],[6.72241,43.27472],[6.67054,43.29192],[6.68741,43.33113],[6.72416,43.34267],[6.75291,43.409],[6.79104,43.39674],[6.90629,43.41672],[6.96767,43.50273],[6.96617,43.52812],[7.00617,43.53845],[7.03554,43.4982],[7.06892,43.5001],[7.09079,43.51642],[7.06267,43.53672],[7.08254,43.5456],[7.1238,43.53074],[7.1558,43.5437],[7.1433,43.62284],[7.16867,43.64636],[7.2138,43.63469],[7.25417,43.68497],[7.3403,43.66744],[7.36442,43.6894],[7.35305,43.7082],[7.4163,43.71091],[7.45405,43.74506],[7.4943,43.74524],[7.57943,43.78424],[7.60552,43.78603],[7.60368,43.78898],[7.59588,43.79528],[7.59628,43.79549],[7.53853,43.84195],[7.45996,43.79988],[7.44781,43.80934],[7.32353,43.74806],[7.30822,43.76357],[6.64878,43.3885],[6.66865,43.37178],[6.51003,43.27803],[6.56584,43.22509],[6.12681,43.10527],[5.48229,43.24939],[5.47267,43.2309],[5.41567,43.24657],[5.45267,43.3451],[4.80191,43.48158],[4.76416,43.39244],[4.65716,43.42368],[4.67228,43.45608],[4.43203,43.52419],[4.41453,43.49255],[4.16102,43.56433],[4.14452,43.57067],[4.14165,43.57393],[4.18677,43.59946],[4.10565,43.68196],[3.79689,43.52165],[3.77851,43.51313],[3.76464,43.50597],[3.76201,43.50334],[3.74226,43.49328],[3.71601,43.52075],[3.26213,43.28143],[3.24638,43.29735],[3.18388,43.28052],[3.10675,43.24083],[3.15475,43.19419],[2.90625,43.19383],[2.90675,42.76189],[2.94613,42.76208],[2.9465,42.61516],[2.99238,42.61497],[2.99238,42.5125],[3.041,42.51259],[3.04121,42.50093],[3.09086,42.50082],[3.14769,42.40072]],[[6.35945,43.02321],[6.42477,43.02444],[6.45244,43.03504],[6.46985,43.05461],[6.51121,43.05765],[6.52156,43.04318],[6.48364,43.02444],[6.47179,43.00725],[6.41178,42.9918],[6.39852,42.98048],[6.35178,42.99905],[6.35945,43.02321]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral","terms_text":"Ortho littorale 2000"},{"id":"GeolittoralV2-Orthophotos","name":"Géolittoral V2 - Orthophotos 2011-2014","type":"wms","template":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?LAYERS=ortholittorale_v2_rvb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[-0.98385,46.18807],[-0.89497,46.15628],[-0.93455,46.10163],[-0.84388,46.06949],[-0.88241,46.01637],[-0.53787,45.89558],[-0.63498,45.76444],[-0.86666,45.8479],[-0.76264,45.6245],[-0.69695,45.62659],[-0.69397,45.60184],[-0.68755,45.60174],[-0.688,45.50986],[-0.63799,45.50892],[-0.63978,45.44747],[-0.61574,45.44695],[-0.61619,45.38586],[-0.58544,45.38596],[-0.58529,45.32334],[-0.55379,45.32344],[-0.55275,45.19661],[-0.49094,45.19577],[-0.49184,45.13315],[-0.45661,45.13325],[-0.45512,45.07161],[-0.41611,45.07089],[-0.41621,45.02696],[-0.2907,44.98278],[-0.22,45.06771],[-0.12252,45.02563],[-0.18925,44.94591],[-0.09266,44.91019],[-0.14521,44.8392],[-0.15491,44.84238],[-0.19387,44.78678],[-0.43541,44.87317],[-0.39048,44.68413],[-0.58798,44.66014],[-0.66628,44.99129],[-0.77838,44.99263],[-0.77764,45.05389],[-0.81584,45.05321],[-0.81838,45.11962],[-0.88393,45.12051],[-0.88171,45.18081],[-0.93438,45.18185],[-0.9328,45.24484],[-1.00163,45.24439],[-1.00247,45.30827],[-1.0524,45.31013],[-1.04828,45.36911],[-1.06412,45.36911],[-1.05039,45.18252],[-1.10761,44.80787],[-1.01514,44.80113],[-1.01946,44.76914],[-0.93365,44.76149],[-0.9404,44.7018],[-0.96035,44.56434],[-1.01408,44.56765],[-1.09916,44.1456],[-1.22689,44.14022],[-1.21853,44.03249],[-1.30762,44.029],[-1.39572,43.74301],[-1.31296,43.72951],[-1.37439,43.53109],[-1.34589,43.50606],[-1.59964,43.35423],[-1.76549,43.25548],[-1.79281,43.28038],[-1.80281,43.40425],[-1.72832,43.45033],[-1.58531,43.489],[-1.33584,44.22832],[-1.30744,44.41847],[-1.22511,45.44416],[-1.48685,46.06042],[-1.60176,46.17019],[-1.64442,46.22375],[-1.75643,46.42214],[-2.03483,46.61895],[-2.3466,46.62382],[-2.46561,46.71196],[-2.3233,46.83812],[-2.45286,46.93856],[-2.31733,47.16214],[-2.92848,47.28413],[-2.96742,47.22147],[-3.35602,47.32474],[-3.18803,47.48441],[-3.22791,47.61132],[-3.38912,47.59473],[-3.9162,47.67831],[-4.10163,47.70921],[-4.14314,47.78847],[-4.37619,47.71067],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.60147,48.11469],[-4.5921,48.14758],[-4.67101,48.2331],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.83515,48.54319],[-4.63117,48.66129],[-3.96692,48.77978],[-3.94939,48.74715],[-3.67013,48.89508],[-3.54444,48.90297],[-3.40954,48.91866],[-3.33344,48.90458],[-3.02769,48.9275],[-2.80207,48.79793],[-2.69353,48.76722],[-2.45786,48.70896],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.7243,48.75828],[-1.70557,48.84512],[-1.90304,48.86288],[-1.91027,48.92348],[-1.68714,48.93249],[-1.74277,49.24473],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.18545,49.54836],[-0.96463,49.42509],[-0.74429,49.36802],[-0.39014,49.3622],[-0.24976,49.3158],[-0.13342,49.31293],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.59712,51.17355],[2.66071,51.0196],[2.07124,50.92022],[2.05937,50.94709],[1.7976,50.89906],[1.68089,50.8717],[1.65569,50.59729],[1.75357,50.5932],[1.72295,50.24702],[1.82156,50.24262],[1.80149,50.05116],[1.54565,50.06311],[1.54155,50.01267],[1.42462,50.01747],[1.42667,50.05276],[1.03838,49.84609],[0.9827,49.88916],[0.57961,49.82133],[0.42063,49.76297],[0.4281,49.75445],[0.20831,49.67269],[0.14765,49.57767],[0.13461,49.5809],[0.11117,49.54365],[0.56598,49.52045],[0.5632,49.49989],[0.63001,49.49666],[0.61478,49.37441],[0.54825,49.37851],[0.54254,49.33461],[0.45741,49.33938],[0.45843,49.34492],[0.32597,49.35456],[0.32846,49.38128],[0.28011,49.38433],[0.27689,49.36334],[0.21095,49.36658],[0.20817,49.35084],[0.14326,49.35532],[0.13769,49.3115],[0.07204,49.31532],[0.0675,49.28713],[0.00274,49.29076],[0.00508,49.25711],[-0.02027,49.26036],[-0.03492,49.1973],[-0.19448,49.21463],[-0.38966,49.12726],[-0.45369,49.18792],[-0.3561,49.23214],[-0.82088,49.28331],[-0.99778,49.30149],[-1.16728,49.24545],[-1.19515,49.28183],[-1.26768,49.24099],[-1.34114,49.2975],[-1.24768,49.35025],[-1.44583,49.60689],[-1.81105,49.61757],[-1.77479,49.44333],[-1.72775,49.46509],[-1.5339,49.29098],[-1.47909,49.29233],[-1.47608,49.24027],[-1.43557,49.20326],[-1.47225,49.1822],[-1.45091,48.75725],[-1.31155,48.76408],[-1.30533,48.70216],[-1.2584,48.70421],[-1.25229,48.64353],[-1.23519,48.64435],[-1.2269,48.56824],[-1.85218,48.53086],[-1.84908,48.4975],[-1.92326,48.49187],[-1.92813,48.44096],[-2.04272,48.43601],[-2.03889,48.48191],[-2.2895,48.46102],[-2.3021,48.52433],[-2.40863,48.51618],[-2.42035,48.56954],[-2.43084,48.57852],[-2.49083,48.54924],[-2.47353,48.53326],[-2.54978,48.49647],[-2.54005,48.48747],[-2.70681,48.40746],[-3.02979,48.69115],[-4.01034,48.53179],[-4.05342,48.64412],[-4.38281,48.57349],[-4.35482,48.5118],[-4.38853,48.50473],[-4.13495,48.44868],[-4.16411,48.38936],[-4.01832,48.35685],[-4.04733,48.29918],[-3.98814,48.2867],[-4.0214,48.21606],[-4.03634,48.21958],[-4.06623,48.16028],[-4.16675,48.18247],[-4.18331,48.14934],[-4.17232,48.1065],[-4.20111,48.10285],[-4.18643,48.04389],[-4.18806,48.04061],[-4.35686,48.02305],[-4.25657,47.93997],[-4.23363,47.93497],[-4.21371,47.97598],[-4.21854,47.97726],[-4.1806,48.05569],[-3.6172,47.93124],[-2.17991,47.58642],[-2.25449,47.44501],[-2.30182,47.4568],[-2.32043,47.42092],[-2.30372,47.41755],[-2.34753,47.33499],[-2.36219,47.33837],[-2.38079,47.3039],[-2.35852,47.29854],[-2.29962,47.29784],[-2.29742,47.3618],[-2.13199,47.35852],[-2.13478,47.39107],[-2.01565,47.39623],[-2.01404,47.38095],[-1.92862,47.38254],[-1.92891,47.37956],[-1.8322,47.38184],[-1.82986,47.34165],[-1.73608,47.34304],[-1.73418,47.305],[-1.64084,47.30639],[-1.64011,47.29427],[-1.58355,47.29566],[-1.58531,47.33708],[-1.4612,47.33966],[-1.46003,47.32924],[-1.37211,47.33221],[-1.36054,47.11239],[-1.48567,47.11149],[-1.48582,47.11877],[-1.66897,47.11688],[-1.66971,47.12864],[-1.72553,47.12764],[-1.72612,47.13761],[-1.93975,47.13263],[-1.94019,47.1422],[-1.9925,47.14309],[-1.81066,47.00588],[-1.94723,46.92078],[-1.92891,46.90677],[-1.99529,46.86461],[-1.73652,46.66839],[-1.77535,46.64386],[-1.82678,46.64174],[-1.82473,46.62071],[-1.18192,46.39987],[-0.91261,46.3048],[-0.95481,46.2489],[-0.94235,46.24424],[-0.98385,46.18807]],[[3.14769,42.40072],[3.14949,42.40015],[3.15305,42.40052],[3.15804,42.40243],[3.1877,42.42805],[3.14227,42.5248],[3.06837,42.54635],[3.04884,42.6942],[3.0799,43.03073],[3.22641,43.18727],[3.40916,43.26032],[3.52104,43.25877],[3.66429,43.37628],[3.73841,43.39054],[4.00979,43.53607],[4.17692,43.45636],[4.54355,43.43349],[4.54943,43.35401],[4.83506,43.30891],[4.97506,43.38309],[5.03219,43.31928],[5.25919,43.31928],[5.31082,43.20504],[5.35682,43.18645],[5.36882,43.16785],[5.40232,43.16211],[5.41382,43.17123],[5.40919,43.19921],[5.54232,43.18827],[5.60582,43.14797],[5.6197,43.1529],[5.63832,43.17159],[5.67157,43.1674],[5.69095,43.13411],[5.77607,43.10637],[5.7762,43.09432],[5.75407,43.08328],[5.75707,43.0725],[5.77032,43.06465],[5.85933,43.03469],[5.8877,43.06273],[5.9567,43.06109],[5.96383,43.09277],[6.00033,43.09186],[6.01745,43.06849],[6.10233,43.07415],[6.10483,43.0526],[6.0666,43.04318],[6.06722,43.03785],[6.1427,43.00923],[6.15676,42.98715],[6.19635,42.97331],[6.22221,42.9801],[6.26891,42.99651],[6.25515,43.03627],[6.2019,43.02713],[6.18378,43.09188],[6.30153,43.09909],[6.32478,43.07974],[6.37778,43.08011],[6.38866,43.13395],[6.51341,43.14608],[6.57704,43.17881],[6.62291,43.14563],[6.69779,43.19969],[6.68016,43.23357],[6.72116,43.26007],[6.72241,43.27472],[6.67054,43.29192],[6.68741,43.33113],[6.72416,43.34267],[6.75291,43.409],[6.79104,43.39674],[6.90629,43.41672],[6.96767,43.50273],[6.96617,43.52812],[7.00617,43.53845],[7.03554,43.4982],[7.06892,43.5001],[7.09079,43.51642],[7.06267,43.53672],[7.08254,43.5456],[7.1238,43.53074],[7.1558,43.5437],[7.1433,43.62284],[7.16867,43.64636],[7.2138,43.63469],[7.25417,43.68497],[7.3403,43.66744],[7.36442,43.6894],[7.35305,43.7082],[7.4163,43.71091],[7.45405,43.74506],[7.4943,43.74524],[7.57943,43.78424],[7.60552,43.78603],[7.60368,43.78898],[7.59588,43.79528],[7.59628,43.79549],[7.53853,43.84195],[7.45996,43.79988],[7.44781,43.80934],[7.32353,43.74806],[7.30822,43.76357],[6.64878,43.3885],[6.66865,43.37178],[6.51003,43.27803],[6.56584,43.22509],[6.12681,43.10527],[5.48229,43.24939],[5.47267,43.2309],[5.41567,43.24657],[5.45267,43.3451],[4.80191,43.48158],[4.76416,43.39244],[4.65716,43.42368],[4.67228,43.45608],[4.43203,43.52419],[4.41453,43.49255],[4.16102,43.56433],[4.14452,43.57067],[4.14165,43.57393],[4.18677,43.59946],[4.10565,43.68196],[3.79689,43.52165],[3.77851,43.51313],[3.76464,43.50597],[3.76201,43.50334],[3.74226,43.49328],[3.71601,43.52075],[3.26213,43.28143],[3.24638,43.29735],[3.18388,43.28052],[3.10675,43.24083],[3.15475,43.19419],[2.90625,43.19383],[2.90675,42.76189],[2.94613,42.76208],[2.9465,42.61516],[2.99238,42.61497],[2.99238,42.5125],[3.041,42.51259],[3.04121,42.50093],[3.09086,42.50082],[3.14769,42.40072]],[[6.35945,43.02321],[6.42477,43.02444],[6.45244,43.03504],[6.46985,43.05461],[6.51121,43.05765],[6.52156,43.04318],[6.48364,43.02444],[6.47179,43.00725],[6.41178,42.9918],[6.39852,42.98048],[6.35178,42.99905],[6.35945,43.02321]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral","terms_text":"Ortho Littorale V2 - MEDDE"},{"id":"lu.geoportail.opendata.ortho_10cm_proto_lidar","name":"geoportail.lu LIDAR prototype Nordstad 2017","type":"tms","template":"https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2017-04-09T00:00:00.000Z","startDate":"2017-04-09T00:00:00.000Z","zoomExtent":[6,21],"polygon":[[[6.05001,49.82175],[6.04979,49.91166],[6.18901,49.91172],[6.18897,49.82181],[6.05001,49.82175]]],"terms_url":"https://act.public.lu/fr/cartographie/lidar","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"lu.geoportail.opendata.ortho_2019_winter","name":"geoportail.lu ortho technique 2019 (10cm)","type":"tms","template":"https://{switch:wmts1,wmts2,wmts3}.geoportail.lu/opendata/wmts/ortho_2019_winter/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","startDate":"2019-02-15T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"Geoportal2-PL-HighResolution-aerial_image","name":"Geoportal 2: High Resolution Orthophotomap (aerial image)","type":"wms","template":"https://mapy.geoportal.gov.pl/wss/service/PZGIK/ORTO/WMS/HighResolution?LAYERS=Raster&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://geoportal.gov.pl/web/guest/regulamin","terms_text":"Główny Urząd Geodezji i Kartografii","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png"},{"id":"Geoportal2-PL-aerial_image","name":"Geoportal 2: Orthophotomap (aerial image)","type":"wms","template":"https://mapy.geoportal.gov.pl/wss/service/img/guest/ORTO/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Raster&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}{header(User-Agent,Mozilla/5.0 (JOSM)}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://geoportal.gov.pl/web/guest/regulamin","terms_text":"Główny Urząd Geodezji i Kartografii","best":true,"icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png"},{"id":"Geoportal2-PL-prng","name":"Geoportal 2: PRNG (geo names)","type":"wms","template":"https://mapy.geoportal.gov.pl/wss/service/pub/guest/G2_PRNG_WMS/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=PozostaleObiektyFizjograficzne,Hydrografia,PozostaleMiejscowosci,Wies,UksztaltowanieTerenu&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}{header(User-Agent,Mozilla/5.0 (JOSM)}","projection":"EPSG:4326","polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"http://www.codgik.gov.pl/index.php/darmowe-dane/prng.html","terms_text":"Centralny Ośrodek Dokumentacji Geodezyjnej i Kartograficznej","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","overlay":true},{"id":"Gliwice-buildings","name":"Gliwice: Buildings","type":"wms","template":"http://185.60.246.14:9090/isdp/gs/ows?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=default:EGIB_budynek,default:pkt_adr&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"terms_text":"Urząd Miasta Gliwice"},{"id":"gothenburg-citymap","name":"Gothenburg City map","type":"wms","template":"https://opengeodata.goteborg.se/services/stadskarta.wms.v4/ows?LAYERS=stadskarta&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,21],"polygon":[[[10.8078,58.34266],[13.0258,58.34266],[13.0258,57.0896],[11.70328,57.0896],[10.8078,58.34266]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/718","terms_text":"© Gothenburg municipality, CC0","description":"The city map is an overview map that describes Gothenburg. It contains general information about land, communications, hydrography, buildings, address numbers and street names, administrative division and other orientation text.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"gothenburg-ortho","name":"Gothenburg Orthophoto","type":"wms","template":"https://opengeodata.goteborg.se/services/ortofoto.wms.v1/ows?LAYERS=orto&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[6,20],"polygon":[[[11.71898,57.54716],[12.01767,57.56411],[11.95862,57.66818],[12.09595,57.68177],[12.06574,57.73166],[12.1138,57.77086],[12.24289,57.79466],[12.16187,57.86704],[11.95519,57.86631],[11.68534,57.72396],[11.71898,57.54716]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/892","terms_text":"© Gothenburg municipality, CC0","best":true,"description":"Orthophoto for Gothenburg municipality","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"GRAFCAN_Express-Canary_Islands","name":"GRAFCAN OrtoExpress - Canary Islands","type":"wms","template":"https://idecan1.grafcan.es/ServicioWMS/OrtoExpress?LAYERS=ortoexpress&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[-17.92917,28.89106],[-18.03334,28.79981],[-18.03743,28.73178],[-17.87811,28.43224],[-17.83113,28.41787],[-17.72696,28.56328],[-17.73105,28.67982],[-17.68407,28.73715],[-17.75352,28.86781],[-17.85768,28.86065],[-17.92917,28.89106]],[[-18.07818,27.77211],[-18.13707,27.78751],[-18.17054,27.76441],[-18.1779,27.70695],[-18.15782,27.68799],[-18.0581,27.6791],[-18.00656,27.62574],[-17.96105,27.62218],[-17.93896,27.70814],[-17.90751,27.7194],[-17.86199,27.80468],[-17.8727,27.84079],[-17.92558,27.86801],[-18.00522,27.83605],[-18.01392,27.8035],[-18.07818,27.77211]],[[-17.26878,28.23996],[-17.33403,28.21933],[-17.36331,28.1537],[-17.36666,28.08803],[-17.33069,28.04742],[-17.27296,28.00681],[-17.20017,28.00533],[-17.14412,28.02896],[-17.07803,28.0836],[-17.08723,28.1537],[-17.1826,28.2149],[-17.26878,28.23996]],[[-16.9358,28.37623],[-16.945,28.33574],[-16.71995,27.98317],[-16.62541,27.98317],[-16.52753,28.01641],[-16.39953,28.14632],[-16.33594,28.30922],[-16.33009,28.36445],[-16.10253,28.52408],[-16.09834,28.5814],[-16.14268,28.62547],[-16.33929,28.59609],[-16.43801,28.53143],[-16.53924,28.44025],[-16.83959,28.41229],[-16.9358,28.37623]],[[-15.68833,28.20585],[-15.47395,28.16437],[-15.42427,28.21046],[-15.36283,28.17244],[-15.38375,28.05598],[-15.33146,27.98444],[-15.3576,27.8042],[-15.5916,27.69777],[-15.7001,27.73365],[-15.79944,27.80305],[-15.87134,27.92439],[-15.84781,28.03637],[-15.74716,28.08943],[-15.73147,28.18396],[-15.68833,28.20585]],[[-14.50882,28.13448],[-14.41078,28.13448],[-14.24868,28.24278],[-14.23822,28.34637],[-14.03953,28.73911],[-13.89442,28.78265],[-13.78592,28.77692],[-13.82122,28.38433],[-13.91534,28.19095],[-14.18593,28.13563],[-14.30881,28.00529],[-14.54019,28.05144],[-14.50882,28.13448]],[[-13.5525,29.37727],[-13.50868,29.36824],[-13.47955,29.38728],[-13.47543,29.40963],[-13.5003,29.42807],[-13.5505,29.40712],[-13.5525,29.37727]],[[-13.3976,29.16102],[-13.42814,29.12157],[-13.44174,28.99084],[-13.53899,28.91947],[-13.70841,28.88468],[-13.77116,28.80865],[-13.90083,28.83522],[-13.90711,28.88926],[-13.85796,28.93686],[-13.85691,29.03657],[-13.67599,29.14988],[-13.56723,29.15719],[-13.55428,29.35073],[-13.39988,29.21806],[-13.3976,29.16102]],[[-13.33792,29.28667],[-13.35035,29.27436],[-13.3386,29.26533],[-13.32617,29.27765],[-13.33792,29.28667]]],"terms_url":"https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOWMS_20160101","terms_text":"GRAFCAN OrtoExpress","description":"High resolution imagery covering the Canary Islands, 20 cm/pixel. More recent in some urban areas than the higher-resolution \"GRAFCAN OrtoExpress Urbana\"."},{"id":"GRAFCAN-Canary_Islands","name":"GRAFCAN OrtoExpress Urbana - Canary Islands","type":"wms","template":"https://idecan1.grafcan.es/ServicioWMS/OrtoUrb?LAYERS=OU&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[-17.92917,28.89106],[-18.03334,28.79981],[-18.03743,28.73178],[-17.87811,28.43224],[-17.83113,28.41787],[-17.72696,28.56328],[-17.73105,28.67982],[-17.68407,28.73715],[-17.75352,28.86781],[-17.85768,28.86065],[-17.92917,28.89106]],[[-18.07818,27.77211],[-18.13707,27.78751],[-18.17054,27.76441],[-18.1779,27.70695],[-18.15782,27.68799],[-18.0581,27.6791],[-18.00656,27.62574],[-17.96105,27.62218],[-17.93896,27.70814],[-17.90751,27.7194],[-17.86199,27.80468],[-17.8727,27.84079],[-17.92558,27.86801],[-18.00522,27.83605],[-18.01392,27.8035],[-18.07818,27.77211]],[[-17.26878,28.23996],[-17.33403,28.21933],[-17.36331,28.1537],[-17.36666,28.08803],[-17.33069,28.04742],[-17.27296,28.00681],[-17.20017,28.00533],[-17.14412,28.02896],[-17.07803,28.0836],[-17.08723,28.1537],[-17.1826,28.2149],[-17.26878,28.23996]],[[-16.9358,28.37623],[-16.945,28.33574],[-16.71995,27.98317],[-16.62541,27.98317],[-16.52753,28.01641],[-16.39953,28.14632],[-16.33594,28.30922],[-16.33009,28.36445],[-16.10253,28.52408],[-16.09834,28.5814],[-16.14268,28.62547],[-16.33929,28.59609],[-16.43801,28.53143],[-16.53924,28.44025],[-16.83959,28.41229],[-16.9358,28.37623]],[[-15.68833,28.20585],[-15.47395,28.16437],[-15.42427,28.21046],[-15.36283,28.17244],[-15.38375,28.05598],[-15.33146,27.98444],[-15.3576,27.8042],[-15.5916,27.69777],[-15.7001,27.73365],[-15.79944,27.80305],[-15.87134,27.92439],[-15.84781,28.03637],[-15.74716,28.08943],[-15.73147,28.18396],[-15.68833,28.20585]],[[-14.50882,28.13448],[-14.41078,28.13448],[-14.24868,28.24278],[-14.23822,28.34637],[-14.03953,28.73911],[-13.89442,28.78265],[-13.78592,28.77692],[-13.82122,28.38433],[-13.91534,28.19095],[-14.18593,28.13563],[-14.30881,28.00529],[-14.54019,28.05144],[-14.50882,28.13448]],[[-13.5525,29.37727],[-13.50868,29.36824],[-13.47955,29.38728],[-13.47543,29.40963],[-13.5003,29.42807],[-13.5505,29.40712],[-13.5525,29.37727]],[[-13.3976,29.16102],[-13.42814,29.12157],[-13.44174,28.99084],[-13.53899,28.91947],[-13.70841,28.88468],[-13.77116,28.80865],[-13.90083,28.83522],[-13.90711,28.88926],[-13.85796,28.93686],[-13.85691,29.03657],[-13.67599,29.14988],[-13.56723,29.15719],[-13.55428,29.35073],[-13.39988,29.21806],[-13.3976,29.16102]],[[-13.33792,29.28667],[-13.35035,29.27436],[-13.3386,29.26533],[-13.32617,29.27765],[-13.33792,29.28667]]],"terms_url":"https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOURBANAWMS_20160101","terms_text":"GRAFCAN OrtoExpress Urbana","best":true,"description":"High resolution imagery covering the Canary Islands, 12.5 or 10 cm/pixel in urban areas, and 20 cm/pixel elsewhere. Older in some urban areas than the lower-resolution \"GRAFCAN OrtoExpress\"."},{"id":"GrandNancy_Orthophotographie_2012","name":"GrandNancy - Orthophoto - 2012","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[6.06066,48.60554],[6.29717,48.59923],[6.30611,48.74077],[6.06896,48.7471],[6.06066,48.60554]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie","terms_text":"GrandNancy Orthophotographie 2012"},{"id":"GURS-buildings","name":"GURS: Building outlines","type":"tms","template":"https://wms.openstreetmap.de/tms/GURS-building-outlines/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/","terms_text":"CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png","overlay":true},{"id":"GURS-roads","name":"GURS: Road lines","type":"tms","template":"https://wms.openstreetmap.de/tms/GURS-road-lines/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/","terms_text":"CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png","overlay":true},{"id":"GURS-DOF025","name":"GURS: Slovenia orthophoto 25cm (DOF025)","type":"tms","template":"https://gis.level2.si/geoserver/gwc/service/tms/1.0.0/level2%3ADOF025_latest@EPSG%3A3857@jpeg/{zoom}/{x}/{-y}.jpeg","endDate":"2019-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.66258,45.57393],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.50227,45.53338],[14.36774,45.4702],[14.33394,45.46206],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.98768,45.44408],[13.91892,45.43951],[13.88867,45.416],[13.81063,45.42531],[13.76403,45.45271],[13.67553,45.43241],[13.57898,45.46183],[13.54054,45.53059],[13.61345,45.54452],[13.71618,45.55473],[13.72281,45.56958],[13.69431,45.58953],[13.69763,45.59973],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.73292,45.75707],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56428,45.86095],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.57859,46.48947],[16.64289,46.48765],[16.64189,46.45889],[16.49276,46.46071],[16.49143,46.48673],[16.40593,46.48856],[16.40626,46.51525],[16.32407,46.51616],[16.32274,46.49084],[16.2582,46.489],[16.28533,46.42441],[16.29755,46.41161],[16.3476,46.41024],[16.34627,46.35468],[16.16698,46.35514],[16.09937,46.35605],[16.07551,46.33684],[16.04058,46.32708],[16.01819,46.29964],[15.89754,46.27342],[15.87799,46.25165],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.73184,46.03213],[15.72802,45.98275],[15.71791,45.97827],[15.71645,45.9178],[15.69803,45.91005],[15.69737,45.8766],[15.7272,45.87591],[15.72554,45.82097],[15.64036,45.81635],[15.58071,45.84199],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.30332,45.74794],[15.29139,45.73452],[15.29371,45.71833],[15.36032,45.71856],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.31145,45.5423],[15.39644,45.48763],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://level2.si/sl/pogoji-uporabe-spletnih-servisov/","terms_text":"CC-BY Geodetska uprava Republike Slovenije, DOF025, 2017-2019; Level2.si 2020","best":true,"description":"Slovenia orthophoto 25cm/pixel (GURS DOF050), hosted by Level2.si","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/level2.png"},{"id":"hamburg-20cm","name":"Hamburg (20 cm)","type":"wms","template":"https://geodienste.hamburg.de/HH_WMS_DOP20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[8.4826,53.9356],[8.48274,53.90924],[8.5275,53.90941],[8.52792,53.93577],[8.4826,53.9356]],[[9.77232,53.54352],[9.77434,53.55433],[9.76314,53.55521],[9.73047,53.55787],[9.73465,53.56536],[9.75793,53.61828],[9.77129,53.63131],[9.7707,53.61607],[9.79634,53.6103],[9.78993,53.60386],[9.81817,53.58591],[9.83773,53.59198],[9.84498,53.59498],[9.85416,53.59805],[9.86814,53.6093],[9.86931,53.61323],[9.88505,53.62199],[9.88697,53.6252],[9.89356,53.63026],[9.89637,53.63122],[9.89688,53.63492],[9.90678,53.65231],[9.93115,53.65262],[9.94552,53.65276],[9.95024,53.65085],[9.95155,53.65065],[9.97795,53.64887],[9.98492,53.6483],[9.98739,53.65072],[9.9996,53.68153],[10.02282,53.68157],[10.04338,53.68198],[10.05148,53.67759],[10.06925,53.67955],[10.0604,53.68833],[10.071,53.69585],[10.0707,53.70996],[10.08198,53.72044],[10.11908,53.71324],[10.16939,53.73896],[10.19369,53.731],[10.1779,53.70992],[10.15694,53.70451],[10.15829,53.68944],[10.14342,53.68057],[10.14176,53.67744],[10.14473,53.67613],[10.14643,53.67588],[10.14955,53.67545],[10.17153,53.66869],[10.19885,53.64675],[10.18973,53.63838],[10.22202,53.63349],[10.18887,53.61316],[10.19236,53.59474],[10.20117,53.58392],[10.15169,53.57619],[10.15067,53.56973],[10.148,53.5639],[10.15308,53.56242],[10.15942,53.56091],[10.15189,53.5417],[10.15465,53.53657],[10.16874,53.5374],[10.16327,53.52185],[10.16611,53.52013],[10.16919,53.51965],[10.18951,53.51148],[10.21043,53.51996],[10.21828,53.49923],[10.2367,53.49629],[10.25008,53.47898],[10.26592,53.47079],[10.29043,53.45512],[10.30962,53.44309],[10.31223,53.45229],[10.32514,53.44979],[10.30799,53.43332],[10.25598,53.41623],[10.25089,53.41024],[10.24578,53.40261],[10.24155,53.39797],[10.16555,53.39933],[10.14506,53.41614],[10.10949,53.42649],[10.1068,53.42658],[10.07581,53.45436],[10.05155,53.46394],[10.03517,53.4469],[10.01449,53.44203],[10.02294,53.43228],[9.99754,53.42546],[9.98243,53.41478],[9.97873,53.4142],[9.9581,53.42708],[9.92953,53.42007],[9.92552,53.41924],[9.90667,53.41596],[9.92305,53.43631],[9.91704,53.44664],[9.90436,53.45707],[9.89493,53.45583],[9.86885,53.44462],[9.86211,53.42942],[9.84872,53.44111],[9.80663,53.46648],[9.80021,53.47372],[9.8028,53.49383],[9.78203,53.49236],[9.76885,53.5053],[9.77107,53.52185],[9.78105,53.51838],[9.77352,53.52796],[9.77232,53.54352]]],"terms_url":"https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung","terms_text":"Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"},{"id":"Hamburg-DK5","name":"Hamburg (DK5)","type":"wms","template":"https://geodienste.hamburg.de/HH_WMS_DK5?LAYERS=1&STYLES=&FORMAT=image/png&TRANSPARENT=false&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[8.4826,53.9356],[8.48274,53.90924],[8.5275,53.90941],[8.52792,53.93577],[8.4826,53.9356]],[[9.77232,53.54352],[9.77434,53.55433],[9.76314,53.55521],[9.73047,53.55787],[9.73465,53.56536],[9.75793,53.61828],[9.77129,53.63131],[9.7707,53.61607],[9.79634,53.6103],[9.78993,53.60386],[9.81817,53.58591],[9.83773,53.59198],[9.84498,53.59498],[9.85416,53.59805],[9.86814,53.6093],[9.86931,53.61323],[9.88505,53.62199],[9.88697,53.6252],[9.89356,53.63026],[9.89637,53.63122],[9.89688,53.63492],[9.90678,53.65231],[9.93115,53.65262],[9.94552,53.65276],[9.95024,53.65085],[9.95155,53.65065],[9.97795,53.64887],[9.98492,53.6483],[9.98739,53.65072],[9.9996,53.68153],[10.02282,53.68157],[10.04338,53.68198],[10.05148,53.67759],[10.06925,53.67955],[10.0604,53.68833],[10.071,53.69585],[10.0707,53.70996],[10.08198,53.72044],[10.11908,53.71324],[10.16939,53.73896],[10.19369,53.731],[10.1779,53.70992],[10.15694,53.70451],[10.15829,53.68944],[10.14342,53.68057],[10.14176,53.67744],[10.14473,53.67613],[10.14643,53.67588],[10.14955,53.67545],[10.17153,53.66869],[10.19885,53.64675],[10.18973,53.63838],[10.22202,53.63349],[10.18887,53.61316],[10.19236,53.59474],[10.20117,53.58392],[10.15169,53.57619],[10.15067,53.56973],[10.148,53.5639],[10.15308,53.56242],[10.15942,53.56091],[10.15189,53.5417],[10.15465,53.53657],[10.16874,53.5374],[10.16327,53.52185],[10.16611,53.52013],[10.16919,53.51965],[10.18951,53.51148],[10.21043,53.51996],[10.21828,53.49923],[10.2367,53.49629],[10.25008,53.47898],[10.26592,53.47079],[10.29043,53.45512],[10.30962,53.44309],[10.31223,53.45229],[10.32514,53.44979],[10.30799,53.43332],[10.25598,53.41623],[10.25089,53.41024],[10.24578,53.40261],[10.24155,53.39797],[10.16555,53.39933],[10.14506,53.41614],[10.10949,53.42649],[10.1068,53.42658],[10.07581,53.45436],[10.05155,53.46394],[10.03517,53.4469],[10.01449,53.44203],[10.02294,53.43228],[9.99754,53.42546],[9.98243,53.41478],[9.97873,53.4142],[9.9581,53.42708],[9.92953,53.42007],[9.92552,53.41924],[9.90667,53.41596],[9.92305,53.43631],[9.91704,53.44664],[9.90436,53.45707],[9.89493,53.45583],[9.86885,53.44462],[9.86211,53.42942],[9.84872,53.44111],[9.80663,53.46648],[9.80021,53.47372],[9.8028,53.49383],[9.78203,53.49236],[9.76885,53.5053],[9.77107,53.52185],[9.78105,53.51838],[9.77352,53.52796],[9.77232,53.54352]]],"terms_url":"https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung","terms_text":"Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"},{"id":"Hampshire-Aerial-FCIR","name":"Hampshire Aerial FCIR","type":"tms","template":"https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png","endDate":"2014-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-1.31567,50.77809],[-1.49139,50.73027],[-1.57113,50.69041],[-1.68095,50.71748],[-1.69338,50.73484],[-1.69528,50.74065],[-1.68689,50.74999],[-1.71068,50.74812],[-1.7195,50.75261],[-1.746,50.74452],[-1.74845,50.75675],[-1.74287,50.76397],[-1.75101,50.77577],[-1.78525,50.76177],[-1.79911,50.77236],[-1.82256,50.77225],[-1.82678,50.78077],[-1.8225,50.79933],[-1.80732,50.80074],[-1.81566,50.80752],[-1.80889,50.81358],[-1.80579,50.83249],[-1.79816,50.83535],[-1.80649,50.84414],[-1.80988,50.86189],[-1.81378,50.85591],[-1.83052,50.85261],[-1.85271,50.85651],[-1.85655,50.86684],[-1.8492,50.87802],[-1.85082,50.89178],[-1.84077,50.90051],[-1.82693,50.89939],[-1.82006,50.90492],[-1.82151,50.91691],[-1.81689,50.92412],[-1.84114,50.92886],[-1.87446,50.91441],[-1.91129,50.9439],[-1.92339,50.95917],[-1.95751,50.97575],[-1.9591,50.99152],[-1.94907,50.98649],[-1.92879,51.00055],[-1.88709,51.0026],[-1.87393,51.0097],[-1.8717,50.99083],[-1.85433,51.00786],[-1.83567,51.01238],[-1.81502,50.9899],[-1.80031,50.99457],[-1.75184,50.98133],[-1.71927,50.98047],[-1.69142,50.95943],[-1.66829,50.95041],[-1.6526,50.95029],[-1.63536,50.96269],[-1.62397,50.95903],[-1.6089,50.97686],[-1.62172,50.98099],[-1.63115,50.99984],[-1.60984,51.01225],[-1.60173,51.01042],[-1.60787,51.01582],[-1.6057,51.02271],[-1.63542,51.03176],[-1.63858,51.04126],[-1.63107,51.07819],[-1.64025,51.09201],[-1.6306,51.10359],[-1.63408,51.11099],[-1.63067,51.11652],[-1.64109,51.12237],[-1.66525,51.12546],[-1.65724,51.15539],[-1.67474,51.177],[-1.67213,51.18708],[-1.69679,51.20233],[-1.69247,51.21617],[-1.65288,51.22301],[-1.63564,51.22019],[-1.62395,51.24136],[-1.61402,51.24467],[-1.60741,51.25513],[-1.57717,51.25863],[-1.54443,51.24826],[-1.5384,51.25085],[-1.53436,51.25919],[-1.54345,51.25957],[-1.54007,51.27602],[-1.54596,51.28095],[-1.53591,51.28978],[-1.52595,51.28975],[-1.53093,51.29948],[-1.53008,51.3111],[-1.53628,51.31596],[-1.52986,51.34057],[-1.51552,51.34219],[-1.49498,51.33228],[-1.43599,51.33861],[-1.44759,51.3464],[-1.4463,51.35699],[-1.43056,51.35941],[-1.41608,51.37517],[-1.34899,51.37045],[-1.31472,51.37627],[-1.27555,51.3707],[-1.25116,51.37511],[-1.24118,51.36938],[-1.22209,51.37271],[-1.17602,51.36102],[-1.14321,51.36028],[-1.11875,51.36156],[-1.12096,51.36859],[-1.11678,51.3767],[-1.08363,51.38712],[-1.04754,51.36122],[-0.9904,51.36619],[-0.97264,51.36297],[-0.92376,51.36937],[-0.87681,51.3555],[-0.86549,51.35947],[-0.82728,51.35574],[-0.81122,51.34418],[-0.78322,51.34084],[-0.76325,51.32721],[-0.76005,51.32013],[-0.74183,51.31112],[-0.72842,51.28238],[-0.72631,51.25653],[-0.73713,51.23126],[-0.74898,51.2277],[-0.77712,51.23901],[-0.80193,51.23628],[-0.80611,51.24056],[-0.82491,51.23137],[-0.82701,51.22315],[-0.84493,51.20998],[-0.82268,51.18268],[-0.83042,51.15022],[-0.81952,51.15047],[-0.80504,51.15847],[-0.79382,51.15491],[-0.78879,51.14141],[-0.77846,51.13664],[-0.77813,51.13063],[-0.76654,51.11946],[-0.74365,51.11491],[-0.74715,51.10131],[-0.75411,51.10116],[-0.75122,51.09547],[-0.75506,51.08987],[-0.75076,51.0852],[-0.7785,51.07715],[-0.78645,51.06467],[-0.79954,51.06078],[-0.82645,51.05881],[-0.83646,51.0664],[-0.84519,51.06052],[-0.8499,51.0436],[-0.89485,51.01978],[-0.89065,51.00194],[-0.90461,50.99327],[-0.91461,50.97806],[-0.91278,50.9708],[-0.93246,50.94278],[-0.92119,50.9232],[-0.93793,50.91615],[-0.95132,50.89178],[-0.92368,50.86513],[-0.92976,50.85365],[-0.92903,50.84245],[-0.94342,50.82191],[-0.9299,50.78445],[-0.93275,50.77435],[-0.95347,50.73682],[-1.31567,50.77809]]]},{"id":"Hampshire-Aerial-RGB","name":"Hampshire Aerial RGB","type":"tms","template":"https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-1.31567,50.77809],[-1.49139,50.73027],[-1.57113,50.69041],[-1.68095,50.71748],[-1.69338,50.73484],[-1.69528,50.74065],[-1.68689,50.74999],[-1.71068,50.74812],[-1.7195,50.75261],[-1.746,50.74452],[-1.74845,50.75675],[-1.74287,50.76397],[-1.75101,50.77577],[-1.78525,50.76177],[-1.79911,50.77236],[-1.82256,50.77225],[-1.82678,50.78077],[-1.8225,50.79933],[-1.80732,50.80074],[-1.81566,50.80752],[-1.80889,50.81358],[-1.80579,50.83249],[-1.79816,50.83535],[-1.80649,50.84414],[-1.80988,50.86189],[-1.81378,50.85591],[-1.83052,50.85261],[-1.85271,50.85651],[-1.85655,50.86684],[-1.8492,50.87802],[-1.85082,50.89178],[-1.84077,50.90051],[-1.82693,50.89939],[-1.82006,50.90492],[-1.82151,50.91691],[-1.81689,50.92412],[-1.84114,50.92886],[-1.87446,50.91441],[-1.91129,50.9439],[-1.92339,50.95917],[-1.95751,50.97575],[-1.9591,50.99152],[-1.94907,50.98649],[-1.92879,51.00055],[-1.88709,51.0026],[-1.87393,51.0097],[-1.8717,50.99083],[-1.85433,51.00786],[-1.83567,51.01238],[-1.81502,50.9899],[-1.80031,50.99457],[-1.75184,50.98133],[-1.71927,50.98047],[-1.69142,50.95943],[-1.66829,50.95041],[-1.6526,50.95029],[-1.63536,50.96269],[-1.62397,50.95903],[-1.6089,50.97686],[-1.62172,50.98099],[-1.63115,50.99984],[-1.60984,51.01225],[-1.60173,51.01042],[-1.60787,51.01582],[-1.6057,51.02271],[-1.63542,51.03176],[-1.63858,51.04126],[-1.63107,51.07819],[-1.64025,51.09201],[-1.6306,51.10359],[-1.63408,51.11099],[-1.63067,51.11652],[-1.64109,51.12237],[-1.66525,51.12546],[-1.65724,51.15539],[-1.67474,51.177],[-1.67213,51.18708],[-1.69679,51.20233],[-1.69247,51.21617],[-1.65288,51.22301],[-1.63564,51.22019],[-1.62395,51.24136],[-1.61402,51.24467],[-1.60741,51.25513],[-1.57717,51.25863],[-1.54443,51.24826],[-1.5384,51.25085],[-1.53436,51.25919],[-1.54345,51.25957],[-1.54007,51.27602],[-1.54596,51.28095],[-1.53591,51.28978],[-1.52595,51.28975],[-1.53093,51.29948],[-1.53008,51.3111],[-1.53628,51.31596],[-1.52986,51.34057],[-1.51552,51.34219],[-1.49498,51.33228],[-1.43599,51.33861],[-1.44759,51.3464],[-1.4463,51.35699],[-1.43056,51.35941],[-1.41608,51.37517],[-1.34899,51.37045],[-1.31472,51.37627],[-1.27555,51.3707],[-1.25116,51.37511],[-1.24118,51.36938],[-1.22209,51.37271],[-1.17602,51.36102],[-1.14321,51.36028],[-1.11875,51.36156],[-1.12096,51.36859],[-1.11678,51.3767],[-1.08363,51.38712],[-1.04754,51.36122],[-0.9904,51.36619],[-0.97264,51.36297],[-0.92376,51.36937],[-0.87681,51.3555],[-0.86549,51.35947],[-0.82728,51.35574],[-0.81122,51.34418],[-0.78322,51.34084],[-0.76325,51.32721],[-0.76005,51.32013],[-0.74183,51.31112],[-0.72842,51.28238],[-0.72631,51.25653],[-0.73713,51.23126],[-0.74898,51.2277],[-0.77712,51.23901],[-0.80193,51.23628],[-0.80611,51.24056],[-0.82491,51.23137],[-0.82701,51.22315],[-0.84493,51.20998],[-0.82268,51.18268],[-0.83042,51.15022],[-0.81952,51.15047],[-0.80504,51.15847],[-0.79382,51.15491],[-0.78879,51.14141],[-0.77846,51.13664],[-0.77813,51.13063],[-0.76654,51.11946],[-0.74365,51.11491],[-0.74715,51.10131],[-0.75411,51.10116],[-0.75122,51.09547],[-0.75506,51.08987],[-0.75076,51.0852],[-0.7785,51.07715],[-0.78645,51.06467],[-0.79954,51.06078],[-0.82645,51.05881],[-0.83646,51.0664],[-0.84519,51.06052],[-0.8499,51.0436],[-0.89485,51.01978],[-0.89065,51.00194],[-0.90461,50.99327],[-0.91461,50.97806],[-0.91278,50.9708],[-0.93246,50.94278],[-0.92119,50.9232],[-0.93793,50.91615],[-0.95132,50.89178],[-0.92368,50.86513],[-0.92976,50.85365],[-0.92903,50.84245],[-0.94342,50.82191],[-0.9299,50.78445],[-0.93275,50.77435],[-0.95347,50.73682],[-1.31567,50.77809]]]},{"id":"helsingborg-orto","name":"Helsingborg Orthophoto","type":"tms","template":"https://mapproxy.openstreetmap.se/tiles/1.0.0/hborg2016_EPSG3857/{zoom}/{x}/{y}.jpeg","zoomExtent":[5,20],"polygon":[[[12.74345,55.94997],[12.93777,55.90804],[13.00369,55.96842],[12.79083,56.25022],[12.56698,56.1356],[12.74345,55.94997]]],"terms_url":"https://helsingborg.opendatasoft.com/","terms_text":"© Helsingborg municipality","best":true,"description":"Orthophotos from the municipality of Helsingborg 2016, public domain","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Helsingborg_vapen.svg/198px-Helsingborg_vapen.svg.png"},{"id":"hri-orto","name":"Helsinki region orthophoto","type":"wms","template":"https://kartta.hsy.fi/geoserver/ows?LAYERS=taustakartat_ja_aluejaot:Ortoilmakuva_2017&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[24.26948,59.8593],[24.26674,60.22549],[24.55307,60.36703],[24.50363,60.49038],[24.76387,60.60079],[25.00625,60.54175],[24.90051,60.38197],[24.9884,60.35073],[25.06943,60.44096],[25.17517,60.45248],[25.18066,60.34122],[25.27954,60.2943],[25.19577,60.08813],[24.26948,59.8593]]],"terms_url":"https://hri.fi/data/en_GB/dataset/paakaupunkiseudun-ortokuva-2017","terms_text":"© Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY","best":true,"description":"Ortophotos from the municipalities of Espoo, Helsinki, Vantaa, Kirkkonummi and Nurmijärvi + HSL and HSY","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/fi/hri_logo.png"},{"id":"hu-hillshade","name":"Hillshade Hungary","type":"tms","template":"https://{switch:a,b,c}.map.turistautak.hu/tiles/shading/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[15,45],[24,45],[24,49],[15,49],[15,45]]],"terms_text":"SRTM","overlay":true},{"id":"IBGE_DF_Addresses","name":"IBGE Distrito Federal","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g","zoomExtent":[0,20],"polygon":[[[-48.2444,-16.0508],[-48.2444,-15.5005],[-47.5695,-15.5005],[-47.5695,-16.0508],[-48.2444,-16.0508]]],"terms_text":"IBGE","description":"Addresses data from IBGE","overlay":true},{"id":"IBGE_Setores_Rurais","name":"IBGE Mapa de Setores Rurais","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ","zoomExtent":[0,14],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"terms_text":"IBGE","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png"},{"id":"IBGE_Setores_Urbanos","name":"IBGE Mapa de Setores Urbanos","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ","zoomExtent":[0,19],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"terms_text":"IBGE","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png"},{"id":"IBGE_Nomes_Ruas","name":"IBGE Nomes de Ruas","type":"tms","template":"https://api.maptiler.com/maps/b2037b15-5614-4fed-9608-9830b8dc574a/256/{zoom}/{x}/{y}.png?key=YmPoUxbTlEHlrASzv56Z","zoomExtent":[4,22],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"terms_text":"IBGE, OSM Brasil","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png","overlay":true},{"id":"IBGE_BC250_Aglomerado_Rural","name":"IBGE-BC250-Aglomerado Rural Isolado","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Aglomerado_Rural_Isolado_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Pista_Pouso","name":"IBGE-BC250-Pista de Pouso","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Pista_Ponto_Pouso_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Rios_Drenagem","name":"IBGE-BC250-Rios Drenagem","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Drenagem_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Terra_Indegina","name":"IBGE-BC250-Terra Indigena","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Terra_Indigena_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Rodoviario","name":"IBGE-BC250-Trecho Rodoviario","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Rodoviario_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image/png&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Uso_Sustentavel","name":"IBGE-BC250-Unidade de Uso Sistentável - APA","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Unidade_Uso_Sustentavel_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Villa","name":"IBGE-BC250-Villa","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Vila_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BCIM_Gerador_Eletrica","name":"IBGE-BCIM-Estações Geradora de Energia Elétrica","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Est_Gerad_Energia_Eletrica_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BCIM_Municipio","name":"IBGE-BCIM-Município","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Municipio_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"ign-topografico-tms","name":"IGN topographical map (TMS)","type":"tms","template":"https://ide.ign.gob.ar/geoservicios/rest/services/Mapas_IGN/mapa_topografico/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,19],"polygon":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"terms_url":"https://www.ign.gob.ar/","terms_text":"Instituto Geográfico Nacional de la República Argentina","icon":"https://www.ign.gob.ar/sites/default/files/favicon.png"},{"id":"osmim-imagicode-S2A_R119_N09_20160327T050917","name":"imagico.de: Adams Bridge","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}","endDate":"2016-03-27T00:00:00.000Z","startDate":"2016-03-27T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[79.01779,8.82757],[79.01402,9.64678],[80.17642,9.65042],[80.17728,8.8313],[79.01779,8.82757]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Supplementing incomplete coverage in other sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80700162014211LGN00","name":"imagico.de: Alaska Range","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-07-31T00:00:00.000Z","startDate":"2014-07-31T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-152.70873,62.30357],[-152.70839,62.58153],[-152.00835,63.54646],[-148.99432,63.5333],[-148.99432,62.30357],[-152.70873,62.30357]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent summer image of the Alaska Range for mapping natural features (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aral2","name":"imagico.de: Aral Sea (high water level)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}","endDate":"2016-03-03T00:00:00.000Z","startDate":"2016-03-03T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[58.049,43.2623],[58.049,46.7189],[58.1014,46.8645],[61.5524,46.8629],[61.5524,46.3896],[61.4675,45.3416],[60.6317,43.2623],[58.049,43.2623]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aral1","name":"imagico.de: Aral Sea (low water level)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}","endDate":"2016-09-09T00:00:00.000Z","startDate":"2016-09-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[58.049,43.2623],[58.049,46.7334],[58.096,46.8645],[61.5524,46.8629],[61.5524,46.3896],[61.4685,45.3544],[60.6267,43.2623],[58.049,43.2623]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Water and wetland extents, dams etc. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R067_S40_20170417T140051","name":"imagico.de: Bahía Blanca (high tide)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}","endDate":"2017-04-17T00:00:00.000Z","startDate":"2017-04-17T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-62.9988,-40.7327],[-62.9988,-37.9476],[-61.7505,-37.9474],[-61.7501,-40.7322],[-62.9988,-40.7327]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Tidal flats and islands at the coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R067_S40_20170127T140051","name":"imagico.de: Bahía Blanca (low tide)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}","endDate":"2017-01-27T00:00:00.000Z","startDate":"2017-01-27T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-62.9988,-40.7327],[-62.9988,-37.9476],[-61.7505,-37.9474],[-61.7501,-40.7322],[-62.9988,-40.7327]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Tidal flats and islands at the coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81190582014075LGN00","name":"imagico.de: Bakun Reservoir","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-03-16T00:00:00.000Z","startDate":"2014-03-16T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[114.36,2.02846],[113.53448,2.03],[113.53619,3.07077],[114.76512,3.06751],[114.76254,2.08816],[114.36,2.02846]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in older pre-2011 images (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81250592016107LGN00","name":"imagico.de: Batam","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[104.00155,-0.00008],[104.00137,1.45099],[104.91015,1.45116],[104.91015,-0.00008],[104.00155,-0.00008]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing Islands in OSM (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80770232017156LGN00","name":"imagico.de: Bogoslof Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}","endDate":"2017-06-05T00:00:00.000Z","startDate":"2017-06-05T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-168.2544,53.8749],[-168.2544,54.0213],[-167.8591,54.0213],[-167.8591,53.8749],[-168.2544,53.8749]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image from after the eruption (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81800982013291LGN00","name":"imagico.de: Bouvet Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-10-18T00:00:00.000Z","startDate":"2013-10-18T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[3.24653,-54.47047],[3.24653,-54.37539],[3.46385,-54.37539],[3.46385,-54.47047],[3.24653,-54.47047]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"For more accurate coastline and glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R017_S67_20170223T022551","name":"imagico.de: Bunger Hills","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}","endDate":"2017-02-23T00:00:00.000Z","startDate":"2017-02-23T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[96.1197,-67.6542],[96.1201,-67.1899],[98.7331,-65.044],[105.1028,-65.044],[105.1028,-65.7224],[103.3017,-67.6542],[96.1197,-67.6542]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R065_N47_20160929T102022","name":"imagico.de: Central Alps in late September 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}","endDate":"2016-09-29T00:00:00.000Z","startDate":"2016-09-29T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[10.55906,45.95485],[7.47396,45.95533],[7.55585,46.2708],[8.0547,47.66469],[11.75245,47.66481],[11.75245,46.81334],[11.38424,45.95509],[10.55906,45.95485]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82050982015344LGN00","name":"imagico.de: Clerke Rocks","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-12-10T00:00:00.000Z","startDate":"2015-12-10T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-34.17701,-55.29693],[-35.19599,-55.28285],[-35.16664,-54.72097],[-34.12517,-54.73465],[-34.1401,-55.29693],[-34.17701,-55.29693]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R086_N60_20160831T213532","name":"imagico.de: Cook Inlet","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}","endDate":"2016-08-31T00:00:00.000Z","startDate":"2016-08-31T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-154.5102,59.4577],[-154.5097,60.6888],[-153.5403,62.1718],[-148.0423,62.1718],[-148.0445,61.5342],[-149.7291,59.4584],[-154.5102,59.4577]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Tidal flats and glaciers in surrounding mountains (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-EO1A0040712016264110KF","name":"imagico.de: Coropuna","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}","endDate":"2016-09-21T00:00:00.000Z","startDate":"2016-09-21T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-72.75945,-15.68684],[-72.75945,-15.4957],[-72.74434,-15.4263],[-72.41286,-15.4263],[-72.41286,-15.65296],[-72.42411,-15.68667],[-72.75945,-15.68684]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R022_N06_20151221T103009","name":"imagico.de: Cotonou","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}","endDate":"2015-12-21T00:00:00.000Z","startDate":"2015-12-21T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[1.83975,6.2578],[1.83975,7.11427],[2.5494,7.11427],[2.5494,6.48905],[2.49781,6.25806],[1.83975,6.2578]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Patchy and partly cloudy coverage in usual sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R040_N01_20160311T164128","name":"imagico.de: Darwin and Wolf islands, Galapagos","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}","endDate":"2016-03-11T00:00:00.000Z","startDate":"2016-03-11T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-92.05216,1.3213],[-92.05216,1.72181],[-91.74849,1.72181],[-91.74849,1.3213],[-92.05216,1.3213]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image, only old and poor images in most other sources currently (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R022_N47_20191026T101029","name":"imagico.de: Eastern Alps autumn colors 2019","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R022_N47_20191026T101029&z={zoom}&x={x}&y={-y}","endDate":"2017-10-26T00:00:00.000Z","startDate":"2017-10-26T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[9.8813,45.1489],[9.882,45.7551],[10.9491,48.7111],[14.9569,48.7111],[14.9569,48.3679],[13.5583,45.1489],[9.8813,45.1489]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Autumn colors in the eastern Alps - Austria, Germany, Italy and Slovenia (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80360072014245LGN00","name":"imagico.de: Eastern Devon Island coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-09-02T00:00:00.000Z","startDate":"2014-09-02T00:00:00.000Z","zoomExtent":[0,11],"polygon":[[[-84.34799,74.38946],[-84.34799,75.8903],[-79.14871,75.8903],[-79.14871,74.38946],[-84.34799,74.38946]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Coastline mostly mapped meanwhile (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82160152013239LGN00","name":"imagico.de: Eastern Iceland","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-08-27T00:00:00.000Z","startDate":"2013-08-27T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-13.04701,64.21109],[-15.16496,64.22408],[-15.16805,64.81573],[-13.04357,64.8036],[-13.04701,64.21109]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing islets and inaccurate coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492","name":"imagico.de: El Altar","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}","endDate":"2012-02-05T00:00:00.000Z","startDate":"2012-02-05T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-78.532,-1.80509],[-78.532,-1.60811],[-78.33562,-1.60811],[-78.33562,-1.80509],[-78.532,-1.80509]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R009_S61_20160109","name":"imagico.de: Elephant Island/Clarence Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}","endDate":"2016-01-09T00:00:00.000Z","startDate":"2016-01-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-56.13476,-61.63472],[-56.13476,-61.19936],[-55.83264,-60.84015],[-53.72343,-60.83982],[-53.72343,-61.63472],[-56.13476,-61.63472]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Fairly clear up-to-date image for updating glacier edges (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-enderby","name":"imagico.de: Enderby Land and Kemp Coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}","endDate":"2017-03-27T00:00:00.000Z","startDate":"2017-01-25T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[45.4547,-68.5091],[45.4547,-67.5724],[49.7155,-65.7176],[59.2693,-65.7176],[67.3735,-67.3449],[67.3735,-68.2581],[67.088,-68.5091],[45.4547,-68.5091]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Sentinel-2 images of Enderby Land and Kemp Coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82100502015347LGN00","name":"imagico.de: Fogo, Cape Verde","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-12-13T00:00:00.000Z","startDate":"2015-12-13T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-24.75878,14.74814],[-24.75878,15.09249],[-24.26706,15.09249],[-24.26706,14.74814],[-24.75878,14.74814]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Image from after the 2014/2015 eruption (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-greenland","name":"imagico.de: Greenland mosaic","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-43.9774,59.7171],[-44.545,59.7302],[-44.9203,59.7672],[-45.3587,59.8218],[-45.763,59.8848],[-46.0859,59.9827],[-46.3381,60.119],[-46.577,60.2652],[-46.8114,60.4418],[-47.2635,60.5314],[-47.6937,60.5549],[-48.1457,60.6192],[-48.5771,60.7015],[-48.8689,60.8506],[-49.0578,61.0555],[-49.396,61.2957],[-49.7601,61.4934],[-50.2064,61.7324],[-50.4699,61.9539],[-50.8647,62.1596],[-51.0631,62.3869],[-51.2121,62.6001],[-51.3005,62.8389],[-51.4238,62.9979],[-51.6767,63.1944],[-51.9465,63.4079],[-52.0253,63.6377],[-52.2255,63.8378],[-52.3658,64.0705],[-52.4829,64.3792],[-52.4988,64.6788],[-52.789,64.9063],[-53.2046,65.1321],[-53.6649,65.4753],[-53.9977,65.8019],[-54.1348,66.1568],[-54.1441,66.5235],[-54.2285,66.8319],[-54.4519,67.303],[-54.5141,67.7648],[-54.604,68.2021],[-54.568,68.5698],[-54.598,68.8347],[-54.7606,69.1207],[-55.0028,69.4125],[-55.2735,69.6187],[-55.3808,69.8283],[-55.3945,70.0838],[-55.3094,70.2573],[-55.4307,70.479],[-55.5501,70.6707],[-55.7654,70.861],[-56.2489,71.2343],[-56.5018,71.5429],[-56.5867,71.9015],[-56.5189,72.2355],[-56.5085,72.5258],[-56.8923,72.8144],[-57.4027,73.1054],[-57.8066,73.4566],[-58.1461,73.7696],[-58.3554,74.0972],[-58.5125,74.3783],[-58.7336,74.6328],[-59.3551,74.8869],[-60.1412,75.102],[-61.0067,75.2763],[-61.911,75.3886],[-62.4706,75.5595],[-62.9776,75.7454],[-64.1463,75.779],[-65.4481,75.7235],[-66.7068,75.6792],[-67.8379,75.6525],[-69.0456,75.6195],[-70.055,75.5344],[-71.0898,75.4705],[-72.1119,75.4476],[-74.2311,76.4102],[-74.5601,76.5328],[-74.5601,82.6959],[-14.4462,82.6959],[-14.3994,82.5997],[-13.5339,82.4379],[-12.0312,82.3426],[-10.7796,82.3196],[-10.7796,80.1902],[-11.2123,80.069],[-11.136,79.8103],[-10.7796,79.5176],[-10.7796,79.0441],[-11.2626,78.7128],[-12.2579,78.3558],[-13.2398,78.1272],[-13.7649,77.9279],[-14.1169,77.6779],[-14.7129,77.5278],[-15.5507,77.3655],[-16.0936,77.0771],[-16.0586,76.5548],[-15.838,75.9611],[-15.6879,75.4726],[-16.253,75.058],[-17.0427,74.6425],[-18.3155,74.2702],[-19.4463,73.9378],[-19.8329,73.632],[-20.2938,73.3524],[-20.7831,73.0446],[-21.01,72.6766],[-20.8774,72.2926],[-20.7672,71.8726],[-20.7765,71.4304],[-20.9411,70.9802],[-21.219,70.6126],[-21.5326,70.3001],[-21.8039,70.0911],[-22.166,69.8947],[-22.4831,69.7539],[-22.9027,69.6585],[-23.3545,69.544],[-23.9177,69.4036],[-24.1794,69.3088],[-24.6745,69.1084],[-25.1222,68.9555],[-25.6659,68.7995],[-26.0994,68.583],[-26.6316,68.4043],[-27.7638,68.2813],[-28.4575,68.0023],[-29.353,67.8135],[-30.6456,67.4911],[-31.7673,67.0005],[-32.9783,66.2596],[-33.9313,66.0156],[-34.8956,65.7403],[-35.5914,65.5208],[-36.1483,65.372],[-36.7532,65.2559],[-37.1858,65.1349],[-37.6032,64.9727],[-38.0624,64.4901],[-38.5304,64.1244],[-39.0545,63.7213],[-39.3131,63.4405],[-39.5739,62.7506],[-39.9532,62.2739],[-40.2757,61.8547],[-40.714,61.3365],[-41.2091,60.8495],[-41.821,60.5526],[-42.4368,60.3264],[-42.8643,60.0299],[-43.1131,59.9147],[-43.3282,59.83],[-43.5459,59.7695],[-43.797,59.7284],[-43.9774,59.7171]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Landsat mosaic of Greenland (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R047_S54_20160411T044330","name":"imagico.de: Heard Island coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}","endDate":"2016-04-12T00:00:00.000Z","startDate":"2016-04-12T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[73.06897,-53.27059],[73.06897,-52.87549],[73.67338,-52.87673],[74.08863,-52.9495],[74.08863,-53.27059],[73.06897,-53.27059]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82280982013259LGN00","name":"imagico.de: Isla Londonderry","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-09-16T00:00:00.000Z","startDate":"2013-09-16T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-69.8568,-55.55949],[-72.26521,-55.14943],[-72.26521,-54.51089],[-72.08531,-54.17909],[-69.49116,-54.17889],[-69.4915,-55.28379],[-69.62231,-55.5591],[-69.8568,-55.55949]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_kangerlussuaq_20151008","name":"imagico.de: Kangerlussuaq Autumn","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}","endDate":"2015-10-08T00:00:00.000Z","startDate":"2015-10-08T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[-50.6992,66.9888],[-50.721,67.0017],[-50.7341,67.0125],[-50.7396,67.0193],[-50.7396,67.0212],[-50.7158,67.0265],[-50.7017,67.0265],[-50.6829,67.0176],[-50.6686,67.0077],[-50.6638,66.998],[-50.6642,66.9946],[-50.6891,66.9888],[-50.6992,66.9888]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image of the airport and settlement - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_kangerlussuaq_20160518","name":"imagico.de: Kangerlussuaq Spring","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}","endDate":"2016-05-18T00:00:00.000Z","startDate":"2016-05-18T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[-50.7519,66.9996],[-50.7555,67.0023],[-50.7555,67.0033],[-50.6395,67.0297],[-50.6162,67.0339],[-50.6097,67.0281],[-50.6331,67.022],[-50.7323,66.9996],[-50.7519,66.9996]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image of the airport and roads - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R021_N44_20160807T083013","name":"imagico.de: Kerch Strait","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}","endDate":"2016-08-07T00:00:00.000Z","startDate":"2016-08-07T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[35.93259,44.96237],[35.93259,45.55926],[37.36991,45.55926],[37.36991,44.96237],[35.93259,44.96237]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"State of bridge construction in August 2016 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R021_N44_20180429T082601","name":"imagico.de: Kerch Strait 2018","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}","endDate":"2018-04-29T00:00:00.000Z","startDate":"2018-04-29T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[35.8787,45.0348],[35.8787,45.6095],[36.9208,45.6095],[36.9208,45.0348],[35.8787,45.0348]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Bridge and surrounding after completion in April 2018 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar4","name":"imagico.de: Landsat off-nadir early July 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar4&z={zoom}&x={x}&y={-y}","endDate":"2020-07-12T00:00:00.000Z","startDate":"2020-07-12T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-82.9935,81.9147],[-84.4409,82.1649],[-84.4409,82.9562],[-78.3559,83.4863],[-71.9,83.8983],[-28.3104,83.8983],[-22.4464,83.5671],[-16.7075,83.1347],[-16.7075,81.9147],[-82.9935,81.9147]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Latest images north of the regular Landsat limit (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar2","name":"imagico.de: Landsat off-nadir July 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}","endDate":"2016-07-17T00:00:00.000Z","startDate":"2016-07-17T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-79.05175,81.91484],[-79.05175,83.43339],[-73.6039,83.80225],[-26.42449,83.80225],[-21.493,83.50352],[-16.88835,83.15095],[-16.88835,81.91484],[-79.05175,81.91484]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Latest images north of the regular Landsat limit (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar5","name":"imagico.de: Landsat off-nadir late July 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar5&z={zoom}&x={x}&y={-y}","endDate":"2020-07-12T00:00:00.000Z","startDate":"2020-07-12T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-82.9935,81.9147],[-84.4409,82.1649],[-84.4409,82.9562],[-78.3559,83.4863],[-71.9,83.8983],[-28.3104,83.8983],[-22.3489,83.5611],[-16.7075,83.1347],[-16.7075,81.9147],[-82.9935,81.9147]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Latest images north of the regular Landsat limit (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-larsen_2018","name":"imagico.de: Larsen C ice shelf after calving","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}","endDate":"2018-01-06T00:00:00.000Z","startDate":"2018-01-06T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-62.7282,-68.9652],[-64.0489,-68.7318],[-64.0486,-68.5373],[-60.8845,-65.9399],[-59.9187,-65.9389],[-59.1088,-66.0775],[-59.1088,-68.8359],[-59.2544,-68.9652],[-62.7282,-68.9652]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"For updating the ice edge after the 2017 iceberg calving (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190","name":"imagico.de: Leskov Island ASTER","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}","endDate":"2013-11-16T00:00:00.000Z","startDate":"2013-11-16T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-28.21075,-56.72108],[-28.21075,-56.62498],[-27.96956,-56.62498],[-27.96956,-56.72108],[-28.21075,-56.72108]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81991002015286LGN00","name":"imagico.de: Leskov Island Landsat","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-10-13T00:00:00.000Z","startDate":"2015-10-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-27.99293,-56.73479],[-28.22776,-56.73262],[-28.22416,-56.60075],[-27.96975,-56.60283],[-27.97319,-56.73479],[-27.99293,-56.73479]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R005_S69_20180222T061749","name":"imagico.de: Lützow-Holm Bay","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R005_S69_20180222T061749&z={zoom}&x={x}&y={-y}","endDate":"2018-02-22T00:00:00.000Z","startDate":"2018-02-22T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[35.124,-70.3693],[35.1241,-69.2795],[36.3864,-68.4765],[42.2208,-68.4762],[42.2208,-70.3651],[35.124,-70.3693]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late season image or an area poorly mapped in OSM at the moment - lots of sea ice, be careful with distinguishing sea ice from ice shelves and floating glacier tongues. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar","name":"imagico.de: May 2013 off-nadir Landsat","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}","endDate":"2013-05-17T00:00:00.000Z","startDate":"2013-05-17T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-85.76109,81.39333],[-89.83016,82.14952],[-89.83153,82.24405],[-84.99342,82.73099],[-79.95207,83.13108],[-74.55641,83.46267],[-69.35851,83.70451],[-28.20784,83.70451],[-23.06624,83.46532],[-17.96584,83.15518],[-17.96721,82.72386],[-22.78197,81.4419],[-85.76109,81.39333]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret, superseeded by newer images (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R042_S78_20170214T202521","name":"imagico.de: McMurdo Sound and Dry Valleys","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}","endDate":"2017-02-14T00:00:00.000Z","startDate":"2017-02-14T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[162.9125,-78.4514],[162.6595,-78.4257],[159.2712,-77.6013],[159.2712,-77.4108],[164.157,-76.477],[169.7813,-76.4764],[169.7813,-78.4514],[162.9125,-78.4514]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R092_S02_20160613T075613","name":"imagico.de: Mount Kenya 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}","endDate":"2016-06-13T00:00:00.000Z","startDate":"2016-06-13T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[37.20666,-0.26685],[37.20666,-0.01193],[37.56552,-0.01193],[37.56552,-0.26685],[37.20666,-0.26685]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R092_S05_20160802T075556","name":"imagico.de: Mount Kilimanjaro 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}","endDate":"2016-08-02T00:00:00.000Z","startDate":"2016-08-02T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[37.24769,-3.22921],[37.24769,-2.96816],[37.61581,-2.96816],[37.61581,-3.22921],[37.24769,-3.22921]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80940622015159LGN00","name":"imagico.de: New Ireland","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-06-08T00:00:00.000Z","startDate":"2015-06-08T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[150.38853,-2.80053],[150.38853,-2.3834],[150.83348,-2.3834],[150.83348,-2.80053],[150.38853,-2.80053]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Many missing islands in OSM (mostly mapped meanwhile) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-northsea_s2_2016","name":"imagico.de: North Sea Coast 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}","endDate":"2016-09-25T00:00:00.000Z","startDate":"2016-09-25T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[5.1562,52.8755],[5.1615,53.0325],[6.4155,55.7379],[9.8813,55.7459],[9.8813,53.2428],[9.6846,52.8877],[5.1562,52.8755]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-northsea_s2_2017","name":"imagico.de: North Sea Coast 2017","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}","endDate":"2017-06-02T00:00:00.000Z","startDate":"2017-06-02T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[5.1713,53.0918],[6.477,55.8973],[9.8813,55.8973],[9.8813,53.2761],[9.7789,53.0918],[5.1713,53.0918]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-northsea_s2_2018","name":"imagico.de: North Sea Coast spring 2018","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}","endDate":"2018-05-08T00:00:00.000Z","startDate":"2018-05-08T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[5.3179,53.0918],[5.322,53.4418],[6.7023,56.3572],[9.8813,56.3578],[9.8813,53.2819],[9.7758,53.0921],[5.3179,53.0918]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-caspian_2018","name":"imagico.de: Northeast Caspian Sea 2018","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}","endDate":"2018-05-16T00:00:00.000Z","startDate":"2018-05-16T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[51.0243,45.0729],[51.0243,46.569],[52.4259,46.5687],[53.6471,46.3177],[53.6474,45.0729],[51.0243,45.0729]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ural_s2_2016","name":"imagico.de: Northern and Polar Ural mountains August 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}","endDate":"2016-08-12T00:00:00.000Z","startDate":"2016-08-12T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[59.19898,64.89205],[59.19898,66.91656],[60.73329,68.44289],[67.73295,68.44327],[67.73295,67.74883],[64.21647,64.91957],[59.19898,64.89205]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ndvina","name":"imagico.de: Northern Dvina delta at low tide","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}","endDate":"2015-09-13T00:00:00.000Z","startDate":"2015-09-13T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[37.7291,64.1971],[37.7291,65.1161],[37.8592,65.2705],[41.3223,65.2705],[41.3223,64.3142],[41.2114,64.1973],[37.7291,64.1971]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Beaches, tidal flats and other costal forms (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-nellesmere_ast","name":"imagico.de: Northern Ellesmere Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}","endDate":"2012-07-09T00:00:00.000Z","startDate":"2012-07-09T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-81.62923,82.4597],[-83.03136,82.47986],[-83.03136,83.05876],[-72.80309,83.09567],[-65.65786,83.03232],[-65.81167,82.4597],[-81.62923,82.4597]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Assembled from July 2012 ASTER imagery (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-nellesmere_ast_2016","name":"imagico.de: Northern Ellesmere Island July 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}","endDate":"2012-07-15T00:00:00.000Z","startDate":"2012-07-08T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-78.89729,82.17577],[-82.64501,82.19426],[-82.64501,83.08067],[-66.58986,83.08497],[-63.78011,82.98908],[-63.78011,82.72198],[-65.0092,82.17577],[-78.89729,82.17577]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Assembled from July 2016 ASTER imagery (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81960222015233LGN00vis","name":"imagico.de: Northern German west coast tidalflats","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}","endDate":"2015-08-21T00:00:00.000Z","startDate":"2015-08-21T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[7.63568,53.28027],[7.63568,53.6677],[8.49433,55.50246],[9.20775,55.48106],[9.20775,53.28027],[7.63568,53.28027]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals, superseeded by newer images (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81960222015233LGN00ir","name":"imagico.de: Northern German west coast tidalflats (infrared)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}","endDate":"2015-08-21T00:00:00.000Z","startDate":"2015-08-21T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[7.63568,53.28027],[7.63568,53.66811],[8.49433,55.50246],[9.20775,55.48106],[9.20775,53.28027],[7.63568,53.28027]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals, superseeded by newer images (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ngreenland_ast","name":"imagico.de: Northern Greenland ASTER","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}","endDate":"2012-08-13T00:00:00.000Z","startDate":"2005-06-21T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-52.49222,82.48972],[-52.49222,82.94295],[-49.28696,83.47312],[-44.5285,83.73214],[-29.5253,83.73214],[-25.26398,83.58271],[-21.18393,83.39776],[-21.18393,82.74312],[-23.40454,82.48972],[-52.49222,82.48972]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-EO1A1350972013086110KF","name":"imagico.de: Northwest Heard Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}","endDate":"2013-03-13T00:00:00.000Z","startDate":"2013-03-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[73.2279,-53.20333],[73.2279,-53.01073],[73.25949,-52.94944],[73.78992,-52.94944],[73.78992,-53.06048],[73.71783,-53.20333],[73.2279,-53.20333]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R111_N09_20160604T154554","name":"imagico.de: Panama Canal","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}","endDate":"2016-06-07T00:00:00.000Z","startDate":"2016-06-07T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-80.01654,8.84898],[-80.01654,9.41481],[-79.46859,9.41481],[-79.46859,8.84898],[-80.01654,8.84898]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Images of the new locks (but partly cloudy) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-EO1A0120532016364110KF","name":"imagico.de: Panama Canal - Pacific side","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}","endDate":"2016-12-30T00:00:00.000Z","startDate":"2016-12-30T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-79.62539,8.77083],[-79.68684,8.82197],[-79.68667,8.93705],[-79.65363,9.09294],[-79.26816,9.09294],[-79.32833,8.77083],[-79.62539,8.77083]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R078_N68_20160930T081002","name":"imagico.de: Pechora Sea Coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}","endDate":"2016-09-30T00:00:00.000Z","startDate":"2016-09-30T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[53.1802,67.5344],[53.1821,68.414],[54.2107,69.3367],[55.3584,70.2786],[59.004,70.2786],[60.6947,69.977],[61.9837,69.7161],[61.9823,68.9395],[59.9153,67.5344],[53.1802,67.5344]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81511242016033LGN00","name":"imagico.de: Pensacola Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-02-02T00:00:00.000Z","startDate":"2016-02-02T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-53.20922,-84.12525],[-60.61538,-83.78609],[-60.61538,-82.29969],[-48.72405,-82.29987],[-44.52178,-82.43683],[-44.51354,-84.12525],[-53.20922,-84.12525]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Outside regular Landsat coverage and therefore not in LIMA and Bing/Maxar/Esri/Mapbox (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R136_N41_20150831T093006","name":"imagico.de: Prokletije Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}","endDate":"2015-08-31T00:00:00.000Z","startDate":"2015-08-31T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[19.11233,42.15316],[19.08426,43.08074],[20.63299,43.09603],[20.63788,42.16779],[19.11233,42.15316]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Late summer imagery where usual sources are severely limited by clouds and snow (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-DMS_1142622_03746_20110415_17533956","name":"imagico.de: Qasigiannguit","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}","endDate":"2011-04-15T00:00:00.000Z","startDate":"2011-04-15T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[-51.23857,68.79972],[-51.24334,68.85303],[-51.15167,68.85303],[-51.14038,68.80116],[-51.23857,68.79972]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image of the settlement - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81510432015030LGN00","name":"imagico.de: Rann of Kutch","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[67.9684,22.36265],[67.86231,22.38392],[67.86231,24.88693],[71.48986,24.88693],[71.48986,22.36265],[67.9684,22.36265]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Land/water distinction difficult to properly map based on Bing/Maxar/Esri/Mapbox images (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R093_N41_20150828T092005","name":"imagico.de: Rila and Pirin Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}","endDate":"2015-08-28T00:00:00.000Z","startDate":"2015-08-28T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[23.80811,41.58488],[22.99238,41.60195],[23.01186,42.29984],[23.99402,42.28339],[23.96561,41.58488],[23.80811,41.58488]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Late summer imagery where usual sources are severely limited by clouds and snow (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81730602015040LGN00","name":"imagico.de: Rwenzori Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-02-09T00:00:00.000Z","startDate":"2015-02-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[29.7663,0.20689],[29.7663,0.50918],[30.0346,0.50918],[30.0346,0.20689],[29.7663,0.20689]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R078_N01_20160702T082522","name":"imagico.de: Rwenzori Mountains 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}","endDate":"2016-07-02T00:00:00.000Z","startDate":"2016-07-02T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[29.80514,0.23586],[29.80514,0.46709],[30.02503,0.46709],[30.02503,0.23586],[29.80514,0.23586]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80611072014036LGN00","name":"imagico.de: Scott Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-02-05T00:00:00.000Z","startDate":"2014-02-05T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-180,-67.42635],[-180,-67.32544],[-179.82473,-67.32538],[-179.82473,-67.42635],[-180,-67.42635]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82100972015347LGN00","name":"imagico.de: Shag Rocks","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-12-13T00:00:00.000Z","startDate":"2015-12-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-42.12875,-53.7205],[-42.14626,-53.45782],[-41.67573,-53.44586],[-41.65582,-53.70872],[-42.12875,-53.7205]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81130622013270LGN00","name":"imagico.de: Southeastern Sulawesi","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-09-27T00:00:00.000Z","startDate":"2013-09-27T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[120.84382,-3.59545],[120.84382,-3.15985],[120.98184,-2.51468],[122.62618,-2.51468],[122.62618,-3.00215],[122.5007,-3.59545],[120.84382,-3.59545]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80281222016035LGN00","name":"imagico.de: Southern Transantarctic Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-02-04T00:00:00.000Z","startDate":"2016-02-04T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[156.96951,-84.50098],[154.50858,-84.46255],[154.50858,-82.60681],[175.46774,-82.58505],[177.00583,-83.52807],[177.00583,-84.19262],[171.93839,-84.34633],[166.83798,-84.4437],[161.67029,-84.50045],[156.96951,-84.50098]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Outside regular Landsat coverage and therefore not in LIMA and Bing/Maxar/Esri/Mapbox (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81030632015286LGN00","name":"imagico.de: Sudirman Range 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-10-13T00:00:00.000Z","startDate":"2015-10-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[136.4226,-4.2853],[136.4226,-3.6447],[137.7971,-3.6447],[137.7971,-4.2853],[136.4226,-4.2853]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R088_S05_20160812T011732","name":"imagico.de: Sudirman Range 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}","endDate":"2016-08-12T00:00:00.000Z","startDate":"2016-08-12T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[136.8044,-4.2585],[136.8044,-3.7836],[137.7701,-3.7836],[137.7701,-4.2585],[136.8044,-4.2585]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Cloud free image of the Sudirman Range but with fresh snow (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-s2sval","name":"imagico.de: Svalbard mosaic","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[16.6108,76.4137],[16.4731,76.4268],[16.3788,76.4589],[14.4124,77.1324],[14.0784,77.2536],[10.9875,78.4054],[10.631,78.5605],[10.2314,78.8392],[10.3952,79.6074],[10.516,79.7731],[10.9632,79.8707],[20.2294,80.849],[20.4702,80.8493],[25.1752,80.6817],[33.4391,80.3438],[33.7809,80.3016],[34.0395,80.239],[33.977,80.1527],[25.5722,76.5917],[25.2739,76.481],[25.1416,76.4327],[24.937,76.4176],[16.6108,76.4137]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Sentinel-2 mosaic of Svalbard (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx","name":"imagico.de: Thule Air Base","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}","endDate":"2011-05-07T00:00:00.000Z","startDate":"2011-05-07T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[-68.93977,76.51133],[-68.93977,76.5499],[-68.76635,76.55176],[-68.50993,76.55176],[-68.50744,76.51612],[-68.67897,76.51194],[-68.93977,76.51133]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_thule2_2015.09.25","name":"imagico.de: Thule Airbase DMS low altitude overflight September 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}","endDate":"2015-09-25T00:00:00.000Z","startDate":"2015-09-25T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[-68.74292,76.52636],[-68.74446,76.5284],[-68.74807,76.54939],[-68.74615,76.56017],[-68.72276,76.56022],[-68.72017,76.55775],[-68.71853,76.52921],[-68.71978,76.52637],[-68.74292,76.52636]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_thule_2015.10.06","name":"imagico.de: Thule Airbase DMS overflight October 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}","endDate":"2015-10-06T00:00:00.000Z","startDate":"2015-10-06T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[-68.81924,76.5251],[-68.82651,76.54177],[-68.77345,76.5439],[-68.7021,76.54545],[-68.59177,76.5456],[-68.59183,76.52793],[-68.6597,76.5251],[-68.81924,76.5251]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_thule_2015.09.25","name":"imagico.de: Thule Airbase DMS overflight September 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}","endDate":"2015-09-25T00:00:00.000Z","startDate":"2015-09-25T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[-68.77771,76.50688],[-68.77662,76.57064],[-68.68115,76.57065],[-68.6763,76.55384],[-68.6762,76.53074],[-68.68523,76.50688],[-68.77771,76.50688]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R094_N79_20160812T105622","name":"imagico.de: Ushakov Island August 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}","endDate":"2016-08-12T00:00:00.000Z","startDate":"2016-08-12T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[78.45886,80.72643],[78.45886,80.9099],[80.48892,80.9099],[80.48892,80.72643],[78.45886,80.72643]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Late summer imagery with few clouds (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R093_N79_20200831T091601","name":"imagico.de: Ushakov Island August 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N79_20200831T091601&z={zoom}&x={x}&y={-y}","endDate":"2020-08-31T00:00:00.000Z","startDate":"2020-08-31T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[78.4585,80.7264],[78.4585,80.9099],[80.4889,80.9099],[80.4889,80.7264],[78.4585,80.7264]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late summer imagery with few clouds (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80910682014358LGN00","name":"imagico.de: Vanatinai","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-12-24T00:00:00.000Z","startDate":"2014-12-24T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[153.06138,-11.78923],[153.06138,-11.28869],[153.10927,-11.07229],[154.41201,-11.07229],[154.41201,-11.78923],[153.06138,-11.78923]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Coarse coastline due to cloud cover in Bing/Mapbox (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82330892016031LGN00","name":"imagico.de: Volcán Calbuco","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-01-31T00:00:00.000Z","startDate":"2016-01-31T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-72.86696,-41.51741],[-72.86696,-41.04527],[-72.23181,-41.04527],[-71.8751,-41.10829],[-72.00007,-41.51741],[-72.86696,-41.51741]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Image from after the 2015 eruption (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R089_N52_20160623T024048","name":"imagico.de: Vostochny Cosmodrome","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}","endDate":"2016-06-23T00:00:00.000Z","startDate":"2016-06-23T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[126.36143,51.37553],[126.34804,52.33932],[128.60762,52.3409],[128.61174,51.37553],[126.36143,51.37553]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image showing newest features (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R089_N52_20200930T023551","name":"imagico.de: Vostochny Cosmodrome 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20200930T023551&z={zoom}&x={x}&y={-y}","endDate":"2020-09-30T00:00:00.000Z","startDate":"2020-09-30T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[127.5631,51.3587],[127.5338,52.3414],[129.1417,52.3464],[129.1403,51.3632],[127.5631,51.3587]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"September 2020 image with autumn colors (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-walps_autumn_2017","name":"imagico.de: Western Alps autumn colors 2017","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}","endDate":"2017-10-17T00:00:00.000Z","startDate":"2017-10-17T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[4.6412,43.2493],[4.3118,43.2653],[4.3118,44.2167],[5.2562,46.965],[5.9151,48.7177],[7.3866,48.7467],[10.088,48.7467],[10.088,48.7032],[7.7819,43.2813],[7.76,43.2653],[7.3646,43.2493],[4.6412,43.2493]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Autumn colors in the Alps, Jura and southwestern Germany (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81490352013282LGN00","name":"imagico.de: Western Karakoram","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-10-09T00:00:00.000Z","startDate":"2013-10-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[75.98364,34.97851],[73.96164,35.36957],[74.44281,37.09391],[76.50601,36.70267],[75.98364,34.97851]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Represents approximately minimum snow cover so can be well used for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R039_S15_20160510T145731","name":"imagico.de: Willkanuta Mountains and Quelccaya Ice Cap","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}","endDate":"2016-05-10T00:00:00.000Z","startDate":"2016-05-10T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-71.18071,-14.49785],[-71.17976,-13.71029],[-70.55637,-13.71263],[-70.55637,-14.49785],[-71.18071,-14.49785]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Poor and outdated imagery in other sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"IndianaMap2016","name":"IndianaMap Orthoimagery 2016","type":"wms","template":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2016/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=FALSE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[4,20],"polygon":[[[-86.93095,41.086],[-86.93041,40.99844],[-86.92929,40.9136],[-86.69579,40.91281],[-86.57968,40.91095],[-86.58017,40.82402],[-86.58133,40.73508],[-86.69536,40.73677],[-86.75238,40.73713],[-86.75719,40.72441],[-86.74927,40.71899],[-86.75651,40.709],[-86.75831,40.70082],[-86.7528,40.68632],[-86.75884,40.68177],[-86.74611,40.67998],[-86.7455,40.67817],[-86.75688,40.66457],[-86.7743,40.66412],[-86.7711,40.56207],[-86.69544,40.56209],[-86.69619,40.17853],[-86.24242,40.18069],[-86.24065,39.94074],[-86.24067,39.92607],[-86.32632,39.92421],[-86.6937,39.92283],[-86.69294,39.86434],[-86.68456,39.86481],[-86.68529,39.68845],[-86.68574,39.62997],[-86.66543,39.63046],[-86.64035,39.63049],[-86.64033,39.62006],[-86.65224,39.60871],[-86.65462,39.6001],[-86.65276,39.56656],[-86.64915,39.55523],[-86.67058,39.53389],[-86.68607,39.52616],[-86.68604,39.51438],[-86.68593,39.46995],[-86.63229,39.46957],[-86.63088,39.34809],[-86.64755,39.35578],[-86.65112,39.35623],[-86.65585,39.34353],[-86.65345,39.33402],[-86.66534,39.33173],[-86.68439,39.33715],[-86.6849,39.00994],[-86.68529,38.99402],[-86.31766,38.99358],[-86.27858,38.99352],[-86.27876,38.93414],[-86.27518,38.763],[-86.25877,38.76964],[-86.25766,38.76989],[-86.25632,38.76464],[-86.25595,38.76412],[-86.2429,38.7655],[-86.24046,38.76564],[-86.22518,38.77887],[-86.22435,38.77922],[-86.2209,38.77188],[-86.22004,38.77071],[-86.2156,38.77862],[-86.21476,38.77934],[-86.20226,38.77383],[-86.19747,38.77366],[-86.1851,38.7837],[-86.1836,38.78391],[-86.17766,38.77509],[-86.173,38.77274],[-86.13588,38.76259],[-86.13545,38.76235],[-86.10381,38.76552],[-86.10252,38.76556],[-86.0931,38.78364],[-86.09219,38.78371],[-86.07581,38.77482],[-86.07469,38.77421],[-86.062,38.77849],[-86.06126,38.77817],[-86.02771,38.75574],[-86.02649,38.75529],[-86.0218,38.76733],[-86.02092,38.76757],[-86.01255,38.75668],[-86.01133,38.75667],[-85.98508,38.76808],[-85.98354,38.76793],[-85.98577,38.75933],[-85.98563,38.75823],[-85.97835,38.7528],[-85.97723,38.75239],[-85.96239,38.76394],[-85.96129,38.76424],[-85.95064,38.76109],[-85.95026,38.76081],[-85.94987,38.75358],[-85.94931,38.75345],[-85.93697,38.76276],[-85.93642,38.76271],[-85.93698,38.75636],[-85.93658,38.7555],[-85.91801,38.74601],[-85.91691,38.74554],[-85.91924,38.75314],[-85.91903,38.75375],[-85.91141,38.7472],[-85.91054,38.74747],[-85.91027,38.75725],[-85.90966,38.75713],[-85.90954,38.75157],[-85.90878,38.75108],[-85.89661,38.75053],[-85.8963,38.75027],[-85.89425,38.7303],[-85.89408,38.72998],[-85.88619,38.73486],[-85.88581,38.73485],[-85.88175,38.72502],[-85.88146,38.72485],[-85.84755,38.73477],[-85.84734,38.73492],[-85.82006,38.77551],[-85.81989,38.77593],[-85.8048,38.77951],[-85.80465,38.77961],[-85.8074,38.78896],[-85.80736,38.7892],[-85.79512,38.80755],[-85.79493,38.8078],[-85.79893,39.12907],[-85.688,39.13067],[-85.68507,39.3387],[-85.68494,39.35049],[-85.94282,39.34752],[-85.95215,39.3473],[-85.954,39.86768],[-85.95401,39.86965],[-85.94827,39.86972],[-85.93807,39.86981],[-85.93738,39.92643],[-85.93759,39.92714],[-85.86955,39.92885],[-85.86242,39.92894],[-85.86218,40.40686],[-85.86405,40.56663],[-86.01292,40.56503],[-86.16541,40.56325],[-86.16901,40.96017],[-86.16763,40.99646],[-86.01846,40.9978],[-85.94662,40.99932],[-85.94044,40.7008],[-85.93961,40.65272],[-85.67424,40.65399],[-85.6385,40.65421],[-85.64054,40.78532],[-85.64402,41.00129],[-85.68359,41.00155],[-85.68562,41.08958],[-85.68764,41.17898],[-85.65224,41.17875],[-85.65887,41.69895],[-85.6598,41.7591],[-86.51946,41.75968],[-86.52422,41.75966],[-86.52661,41.6516],[-86.52664,41.65022],[-86.49012,41.64955],[-86.48727,41.64952],[-86.48627,41.58005],[-86.48617,41.57768],[-86.49511,41.56343],[-86.49809,41.56109],[-86.49811,41.52928],[-86.4982,41.52832],[-86.50521,41.51995],[-86.52484,41.51999],[-86.52465,41.43601],[-86.52467,41.43287],[-86.58209,41.43339],[-86.64151,41.4338],[-86.69839,41.40422],[-86.70206,41.40058],[-86.73794,41.32927],[-86.73914,41.32246],[-86.77633,41.29335],[-86.78424,41.28516],[-86.8465,41.26731],[-86.87032,41.26452],[-86.92821,41.23801],[-86.93004,41.2371],[-86.93095,41.086]],[[-86.33109,38.18099],[-86.28777,38.15805],[-86.2718,38.13787],[-86.27866,38.09851],[-86.27872,38.0893],[-86.26689,38.05712],[-86.26127,38.05272],[-86.19093,38.01644],[-86.17898,38.01131],[-86.10023,38.01074],[-86.09466,38.00864],[-86.04537,37.95884],[-86.04352,37.95869],[-86.03632,37.96156],[-86.03517,37.96327],[-86.03106,37.99164],[-86.02831,37.99322],[-85.94916,38.00484],[-85.94706,38.00508],[-85.92644,38.02085],[-85.925,38.02259],[-85.90524,38.08899],[-85.90505,38.09007],[-85.90893,38.14231],[-85.90882,38.14497],[-85.90039,38.17904],[-85.89986,38.17988],[-85.89992,38.18561],[-85.95077,38.18574],[-85.9549,38.26055],[-85.97366,38.26063],[-85.97355,38.27558],[-85.99466,38.27522],[-85.99564,38.30242],[-86.0144,38.30249],[-86.01481,38.33059],[-86.033,38.33067],[-86.03244,38.41768],[-86.25445,38.4224],[-86.25917,38.41516],[-86.26447,38.412],[-86.25802,38.41017],[-86.25215,38.40699],[-86.24927,38.39066],[-86.24576,38.38794],[-86.25517,38.38433],[-86.26163,38.38117],[-86.2593,38.37754],[-86.25816,38.36666],[-86.24819,38.36301],[-86.2482,38.36029],[-86.25291,38.35577],[-86.25703,38.35442],[-86.26405,38.36123],[-86.2705,38.3617],[-86.27353,38.3243],[-86.27306,38.32159],[-86.28346,38.33154],[-86.28605,38.33195],[-86.28451,38.32105],[-86.28941,38.31641],[-86.28263,38.31106],[-86.27581,38.30841],[-86.27864,38.30298],[-86.27444,38.29991],[-86.27136,38.30714],[-86.26773,38.30867],[-86.25894,38.30638],[-86.26423,38.30413],[-86.26485,38.29461],[-86.25253,38.29504],[-86.25313,38.29142],[-86.26959,38.27831],[-86.27486,38.27832],[-86.27612,38.25294],[-86.27737,38.2271],[-86.27972,38.22348],[-86.28442,38.22077],[-86.29319,38.22487],[-86.29788,38.2217],[-86.29848,38.21944],[-86.28912,38.21398],[-86.29557,38.20946],[-86.29032,38.20175],[-86.30627,38.20273],[-86.30848,38.20087],[-86.31671,38.18955],[-86.31847,38.18819],[-86.3097,38.18183],[-86.31264,38.17822],[-86.33109,38.18099]]],"terms_text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.","description":"Orthophotography for 24 counties in central Indiana, collected during leaf-off conditions in 2016. One-foot resolution for Bartholomew, Boon, Brown, Carroll, Cass, Clinton, Elkhart, Hamilton, Hendricks, Howard, Johnson, Marion, Marshall, Pulaski, St. Joseph, Starke, and Tipton counties. Six-inch resolution for Fulton, Harrison, Jackson, Kosciusko, Monroe, Morgan, and Wabash counties.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"},{"id":"IndianaMap2017","name":"IndianaMap Orthoimagery 2017","type":"wms","template":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2017/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=FALSE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[4,20],"polygon":[[[-86.68529,38.99402],[-86.67996,38.27838],[-86.67992,38.26342],[-86.66644,38.26344],[-86.57149,38.26445],[-86.57202,38.20824],[-86.46132,38.20826],[-86.46253,38.12986],[-86.46293,38.11943],[-86.43208,38.12614],[-86.43175,38.12612],[-86.40507,38.1058],[-86.40141,38.10504],[-86.38722,38.12463],[-86.37977,38.12927],[-86.336,38.1292],[-86.33514,38.12924],[-86.32345,38.13903],[-86.32091,38.1471],[-86.33079,38.15764],[-86.33553,38.15941],[-86.36675,38.1634],[-86.37038,38.16528],[-86.37546,38.18741],[-86.37402,38.19055],[-86.36106,38.19673],[-86.35711,38.19649],[-86.31732,38.17822],[-86.31264,38.17822],[-86.31591,38.18524],[-86.31847,38.18819],[-86.30919,38.19754],[-86.30848,38.20087],[-86.29384,38.2013],[-86.29032,38.20175],[-86.29557,38.20946],[-86.2903,38.21081],[-86.28912,38.21398],[-86.29848,38.21944],[-86.29788,38.2217],[-86.27972,38.22348],[-86.27737,38.2271],[-86.27551,38.25702],[-86.27486,38.27832],[-86.25313,38.29142],[-86.25253,38.29504],[-86.26015,38.29733],[-86.26485,38.29461],[-86.25895,38.30503],[-86.25894,38.30638],[-86.27136,38.30714],[-86.27444,38.29991],[-86.28263,38.31106],[-86.28941,38.31641],[-86.28451,38.32105],[-86.28307,38.32473],[-86.28754,38.32958],[-86.28605,38.33195],[-86.27594,38.32018],[-86.27306,38.32159],[-86.27345,38.35627],[-86.2705,38.3617],[-86.25291,38.35577],[-86.2482,38.36029],[-86.2593,38.37754],[-86.26163,38.38117],[-86.24635,38.38613],[-86.24576,38.38794],[-86.25334,38.402],[-86.25215,38.40699],[-86.26272,38.40973],[-86.26447,38.412],[-86.25917,38.41516],[-86.25445,38.4224],[-86.03244,38.41768],[-86.033,38.33067],[-86.01481,38.33059],[-86.0144,38.30249],[-85.99564,38.30242],[-85.99466,38.27522],[-85.97355,38.27558],[-85.97359,38.27054],[-85.97366,38.26063],[-85.9549,38.26055],[-85.95077,38.18574],[-85.89992,38.18561],[-85.89986,38.17988],[-85.84499,38.23024],[-85.84422,38.23109],[-85.82696,38.27839],[-85.82559,38.2794],[-85.78149,38.28825],[-85.78098,38.28829],[-85.74553,38.26698],[-85.74392,38.2671],[-85.67667,38.29986],[-85.67558,38.30067],[-85.65256,38.32841],[-85.65165,38.3301],[-85.63191,38.3978],[-85.63166,38.39877],[-85.60737,38.43805],[-85.60677,38.43869],[-85.58381,38.45058],[-85.58123,38.45136],[-85.50038,38.46755],[-85.49931,38.46799],[-85.46866,38.50867],[-85.46682,38.51025],[-85.42008,38.53466],[-85.41957,38.53503],[-85.41566,38.56235],[-85.41566,38.56312],[-85.43759,38.60284],[-85.43824,38.60468],[-85.43837,38.65779],[-85.43854,38.65896],[-85.45673,38.68734],[-85.4569,38.68851],[-85.45197,38.70988],[-85.45184,38.7102],[-85.43609,38.7285],[-85.43532,38.729],[-85.41644,38.73643],[-85.41489,38.73677],[-85.36507,38.73034],[-85.3636,38.73037],[-85.27859,38.74159],[-85.2767,38.74135],[-85.24937,38.73348],[-85.24859,38.73314],[-85.21096,38.69444],[-85.20967,38.69367],[-85.16501,38.6898],[-85.16321,38.69019],[-84.9939,38.77765],[-84.99229,38.77815],[-84.94286,38.77541],[-84.94121,38.77565],[-84.88761,38.79478],[-84.88724,38.7948],[-84.81562,38.78393],[-84.8149,38.78428],[-84.8131,38.79745],[-84.81339,38.79851],[-84.83,38.82966],[-84.82993,38.83037],[-84.79418,38.85753],[-84.79354,38.85784],[-84.78486,38.87357],[-84.78461,38.87498],[-84.8015,38.89171],[-84.80298,38.89227],[-84.86245,38.89789],[-84.8637,38.89809],[-84.87596,38.90778],[-84.87702,38.90901],[-84.87765,38.92059],[-84.87706,38.92147],[-84.83422,38.95885],[-84.83363,38.95943],[-84.82995,38.97142],[-84.83003,38.97305],[-84.89728,39.05471],[-84.89739,39.05548],[-84.82239,39.10457],[-84.81993,39.10544],[-84.80397,40.30267],[-84.80358,40.31025],[-84.80292,40.92236],[-84.80292,40.92257],[-85.3224,40.91703],[-85.33597,40.91703],[-85.33847,41.12909],[-85.3389,41.15113],[-85.33818,41.17286],[-85.31331,41.17316],[-85.30997,41.1732],[-85.30921,41.25112],[-85.30777,41.26413],[-84.84755,41.27],[-84.80356,41.27116],[-84.80613,41.74312],[-84.80588,41.76022],[-85.65074,41.7591],[-85.6598,41.7591],[-85.65224,41.17875],[-85.68764,41.17898],[-85.68359,41.00155],[-85.64402,41.00129],[-85.64014,40.76899],[-85.6385,40.65421],[-85.90024,40.65254],[-85.93961,40.65272],[-85.94663,40.99751],[-85.94662,40.99932],[-86.12927,40.99726],[-86.16763,40.99646],[-86.16805,40.64354],[-86.16541,40.56325],[-85.89975,40.56636],[-85.86405,40.56663],[-85.86211,40.37841],[-85.86144,40.21908],[-86.12848,40.21759],[-86.2435,40.21516],[-86.24065,39.94074],[-86.24067,39.92607],[-85.93779,39.92712],[-85.93759,39.92714],[-85.93807,39.87702],[-85.93807,39.86981],[-85.95364,39.86965],[-85.95401,39.86965],[-85.95269,39.36098],[-85.95215,39.3473],[-85.79977,39.35073],[-85.68494,39.35049],[-85.688,39.13067],[-85.79893,39.12907],[-85.79535,38.82447],[-85.79493,38.8078],[-85.80719,38.78942],[-85.80736,38.7892],[-85.80444,38.78003],[-85.80451,38.77981],[-85.81957,38.77608],[-85.81989,38.77593],[-85.84718,38.73514],[-85.84734,38.73492],[-85.88015,38.72487],[-85.88046,38.72479],[-85.88555,38.73468],[-85.88581,38.73485],[-85.89381,38.72974],[-85.89408,38.72998],[-85.89621,38.74987],[-85.8963,38.75027],[-85.90901,38.75661],[-85.90966,38.75713],[-85.9097,38.74805],[-85.91054,38.74747],[-85.91869,38.75411],[-85.91903,38.75375],[-85.91605,38.7457],[-85.91691,38.74554],[-85.9358,38.75504],[-85.93658,38.7555],[-85.9361,38.76235],[-85.93642,38.76271],[-85.94798,38.75356],[-85.94931,38.75345],[-85.96056,38.7641],[-85.96129,38.76424],[-85.97598,38.75232],[-85.97723,38.75239],[-85.985,38.75764],[-85.98563,38.75823],[-85.98233,38.76692],[-85.98256,38.76759],[-86.01028,38.75687],[-86.01133,38.75667],[-86.01902,38.76736],[-86.02092,38.76757],[-86.02585,38.75538],[-86.02649,38.75529],[-86.06023,38.7775],[-86.06126,38.77817],[-86.0734,38.77417],[-86.07469,38.77421],[-86.09118,38.7835],[-86.09219,38.78371],[-86.10176,38.76589],[-86.10252,38.76556],[-86.13481,38.76227],[-86.13545,38.76235],[-86.17165,38.77244],[-86.173,38.77274],[-86.18176,38.78289],[-86.1836,38.78391],[-86.19724,38.77408],[-86.19747,38.77366],[-86.21178,38.77945],[-86.21476,38.77934],[-86.21851,38.7705],[-86.22004,38.77071],[-86.22363,38.77925],[-86.22435,38.77922],[-86.23696,38.76775],[-86.24046,38.76564],[-86.27167,38.76451],[-86.27518,38.763],[-86.27875,38.986],[-86.27858,38.99352],[-86.68529,38.99402]],[[-87.9869,38.25738],[-87.98177,38.23376],[-87.9843,38.2304],[-87.79945,38.22857],[-87.79978,38.21407],[-87.79955,38.20092],[-87.68887,38.20204],[-87.68891,38.1685],[-87.46706,38.16543],[-87.46665,38.19389],[-87.46633,38.20354],[-87.35565,38.20482],[-87.31699,38.20508],[-87.31686,38.24588],[-87.31599,38.37733],[-87.33482,38.38173],[-87.34541,38.38347],[-87.40584,38.38032],[-87.40759,38.3794],[-87.40712,38.43606],[-87.44473,38.43623],[-87.44453,38.46706],[-87.46394,38.4669],[-87.46401,38.51722],[-87.4642,38.53217],[-87.47051,38.51988],[-87.47047,38.51626],[-87.47569,38.51123],[-87.49091,38.50567],[-87.49255,38.49704],[-87.49548,38.49566],[-87.50017,38.49517],[-87.51323,38.50367],[-87.52786,38.49857],[-87.5314,38.49899],[-87.52985,38.51442],[-87.53637,38.51844],[-87.54693,38.51654],[-87.5498,38.51153],[-87.54139,38.49936],[-87.54069,38.49166],[-87.55772,38.4897],[-87.57302,38.49093],[-87.57962,38.49948],[-87.58373,38.49945],[-87.58059,38.48588],[-87.57997,38.48362],[-87.59023,38.46222],[-87.59888,38.45082],[-87.63108,38.44282],[-87.63579,38.44323],[-87.6371,38.45228],[-87.64069,38.45587],[-87.65128,38.45714],[-87.656,38.458],[-87.6723,38.44833],[-87.67345,38.4465],[-87.66273,38.43799],[-87.66206,38.43256],[-87.7433,38.41401],[-87.74413,38.4141],[-87.77157,38.37799],[-87.77267,38.37656],[-87.80361,38.36406],[-87.80768,38.36175],[-87.82237,38.34582],[-87.82357,38.34448],[-87.83209,38.29841],[-87.83227,38.29745],[-87.84315,38.27932],[-87.84663,38.27702],[-87.86249,38.28335],[-87.86305,38.28425],[-87.8684,38.31254],[-87.87073,38.31296],[-87.90788,38.27006],[-87.90916,38.26955],[-87.91712,38.27358],[-87.91753,38.27531],[-87.9074,38.2931],[-87.90796,38.29582],[-87.93145,38.29737],[-87.93436,38.29517],[-87.9475,38.27861],[-87.94981,38.27675],[-87.94382,38.26401],[-87.94385,38.2622],[-87.95967,38.24218],[-87.96045,38.24177],[-87.97899,38.25866],[-87.97997,38.25958],[-87.9869,38.25738]]],"terms_text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.","description":"Orthophotography for 39 counties in eastern Indiana, collected during leaf-off conditions in 2017. One-foot resolution for Adams, Blackford, Clark, Crawford, Decatur, Delaware, Fayette, Floyd, Franklin, Grant, Hamilton, Hancock, Henry, Huntington, Jay, Jefferson, Jennings, Lagrange, Lawrence, Madison, Miami, Noble, Ohio, Orange, Randolph, Ripley, Rush, Scott, Switzerland, Union, and Washington counties. Six-inch resolution for Dearborn, Dekalb, Gibson, Shelby, Steuben, Wayne, Wells, and Whitley counties. Three-inch resolution for Hamilton County and Shelbyville.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"},{"id":"IndianaMap2018","name":"IndianaMap Orthoimagery 2018","type":"wms","template":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2018/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=FALSE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[4,20],"polygon":[[[-88.0997,37.90441],[-88.06863,37.85773],[-88.06288,37.85102],[-88.02672,37.8371],[-88.02543,37.83344],[-88.03865,37.82239],[-88.04431,37.82151],[-88.07796,37.83094],[-88.08182,37.83114],[-88.09143,37.81819],[-88.08912,37.815],[-88.06783,37.79988],[-88.06397,37.799],[-88.03556,37.81121],[-88.03118,37.8108],[-88.02509,37.80253],[-88.02502,37.7999],[-88.00471,37.80015],[-87.9971,37.79767],[-87.95948,37.77311],[-87.95259,37.77174],[-87.93323,37.79697],[-87.93255,37.79767],[-87.90681,37.80762],[-87.9046,37.81253],[-87.90777,37.83761],[-87.91028,37.84342],[-87.94102,37.87917],[-87.94084,37.88334],[-87.89616,37.9284],[-87.89614,37.9284],[-87.87326,37.92145],[-87.87254,37.921],[-87.8381,37.87977],[-87.83388,37.87732],[-87.78517,37.87216],[-87.76563,37.86662],[-87.73176,37.88574],[-87.72678,37.89148],[-87.6765,37.90216],[-87.67573,37.90193],[-87.66286,37.88558],[-87.66282,37.88145],[-87.6754,37.86595],[-87.68163,37.85592],[-87.68069,37.84062],[-87.67919,37.83632],[-87.66718,37.82764],[-87.66652,37.82746],[-87.62501,37.82908],[-87.6154,37.83197],[-87.58873,37.86098],[-87.58843,37.86879],[-87.59037,37.88013],[-87.59158,37.88719],[-87.61988,37.90665],[-87.62027,37.90692],[-87.62842,37.92145],[-87.62896,37.92671],[-87.61082,37.9446],[-87.60622,37.94964],[-87.60051,37.97291],[-87.60035,37.97314],[-87.58818,37.97603],[-87.58795,37.97617],[-87.57576,37.96872],[-87.5755,37.9684],[-87.57705,37.95222],[-87.57749,37.95173],[-87.56396,37.93533],[-87.56188,37.9331],[-87.5115,37.90643],[-87.51077,37.90615],[-87.44949,37.94181],[-87.44779,37.94243],[-87.42852,37.94481],[-87.41858,37.94476],[-87.38051,37.93567],[-87.38025,37.9356],[-87.25525,37.86733],[-87.22094,37.84913],[-87.16486,37.84121],[-87.16232,37.84016],[-87.13291,37.7933],[-87.13094,37.78801],[-87.11433,37.78253],[-87.11113,37.78251],[-87.09197,37.78699],[-87.08835,37.78889],[-87.06805,37.80576],[-87.06784,37.80606],[-87.04926,37.85974],[-87.04385,37.8708],[-87.04535,37.8929],[-87.0451,37.89377],[-87.03589,37.90429],[-87.03344,37.90659],[-86.97896,37.9302],[-86.96904,37.93286],[-86.91963,37.9366],[-86.91933,37.93666],[-86.86322,37.9825],[-86.85595,37.98729],[-86.82349,37.99894],[-86.82007,37.99939],[-86.8037,37.99345],[-86.79498,37.98898],[-86.76733,37.93617],[-86.76505,37.93251],[-86.73445,37.89641],[-86.73146,37.89434],[-86.71846,37.89312],[-86.71614,37.89407],[-86.68601,37.91308],[-86.68093,37.91501],[-86.64773,37.90905],[-86.64708,37.90862],[-86.64404,37.8982],[-86.64475,37.89481],[-86.6625,37.85695],[-86.66158,37.84942],[-86.6553,37.84251],[-86.65252,37.84164],[-86.63351,37.84415],[-86.62576,37.84727],[-86.60462,37.85827],[-86.59811,37.86738],[-86.59595,37.91445],[-86.58858,37.92116],[-86.54072,37.91687],[-86.53416,37.91701],[-86.50783,37.92883],[-86.50662,37.93072],[-86.52383,37.96217],[-86.52517,37.96823],[-86.52183,38.03833],[-86.5194,38.04124],[-86.4719,38.04622],[-86.45219,38.05049],[-86.43135,38.07334],[-86.43052,38.0783],[-86.45991,38.09656],[-86.46386,38.10118],[-86.46253,38.12986],[-86.46132,38.20826],[-86.57202,38.20824],[-86.57149,38.26445],[-86.66644,38.26344],[-86.67992,38.26342],[-86.68299,39.25374],[-86.68439,39.33715],[-86.66059,39.33355],[-86.65582,39.33129],[-86.65527,39.34942],[-86.65112,39.35623],[-86.63088,39.34809],[-86.63229,39.46957],[-86.68593,39.46995],[-86.68604,39.51438],[-86.68607,39.52616],[-86.65331,39.54752],[-86.64915,39.55523],[-86.65459,39.5865],[-86.6552,39.59647],[-86.64033,39.62006],[-86.64035,39.63049],[-86.66543,39.63046],[-86.68574,39.62997],[-86.6952,40.4751],[-86.69544,40.56209],[-86.7711,40.56207],[-86.7743,40.66412],[-86.75688,40.66457],[-86.75336,40.67271],[-86.7455,40.67817],[-86.75702,40.67951],[-86.75884,40.68177],[-86.7528,40.68632],[-86.74978,40.68859],[-86.75526,40.69493],[-86.75831,40.70082],[-86.7541,40.71308],[-86.74927,40.71899],[-86.75719,40.72441],[-86.75236,40.73304],[-86.75238,40.73713],[-86.69536,40.73677],[-86.58133,40.73508],[-86.58017,40.82402],[-86.57968,40.91095],[-86.81376,40.91303],[-86.92929,40.9136],[-86.93,41.22984],[-86.93004,41.2371],[-86.87763,41.25996],[-86.87032,41.26452],[-86.81414,41.27329],[-86.78424,41.28516],[-86.74584,41.31701],[-86.73914,41.32246],[-86.70206,41.40058],[-86.69839,41.40422],[-86.64314,41.43266],[-86.64151,41.4338],[-86.58209,41.43339],[-86.52467,41.43287],[-86.52485,41.50529],[-86.52484,41.51999],[-86.50521,41.51995],[-86.50383,41.52024],[-86.49845,41.528],[-86.4982,41.52832],[-86.49511,41.56343],[-86.48648,41.57047],[-86.4872,41.64648],[-86.48727,41.64952],[-86.51944,41.65012],[-86.52664,41.65022],[-86.52427,41.75785],[-86.52422,41.75966],[-86.82433,41.76024],[-86.82569,41.76025],[-86.91273,41.72327],[-86.91638,41.71645],[-87.13327,41.64289],[-87.17696,41.63272],[-87.26141,41.62887],[-87.28612,41.62704],[-87.40469,41.65019],[-87.41161,41.64876],[-87.42034,41.65341],[-87.39377,41.67733],[-87.42266,41.69573],[-87.4622,41.68529],[-87.50542,41.70611],[-87.51756,41.71643],[-87.52398,41.71348],[-87.52495,41.64461],[-87.52517,41.63248],[-87.53086,40.16985],[-87.53141,40.15046],[-87.4896,40.15077],[-87.49052,40.13081],[-87.40632,40.13009],[-87.41637,40.06971],[-87.41627,40.062],[-87.42097,40.0538],[-87.43171,40.04738],[-87.42439,40.03927],[-87.43152,40.03287],[-87.4356,40.02377],[-87.43012,39.97076],[-87.44019,39.96117],[-87.4209,39.95405],[-87.41967,39.95225],[-87.43444,39.93446],[-87.4332,39.93084],[-87.41218,39.92873],[-87.40677,39.92831],[-87.41325,39.91874],[-87.40958,39.91333],[-87.38431,39.90625],[-87.37827,39.90267],[-87.3728,39.89681],[-87.36787,39.88551],[-87.37917,39.87773],[-87.37914,39.87592],[-87.35564,39.86474],[-87.35381,39.86203],[-87.37149,39.83788],[-87.38166,39.83691],[-87.37382,39.78301],[-87.37377,39.77938],[-87.38338,39.72232],[-87.38432,39.7199],[-87.38166,39.69371],[-87.38183,39.69264],[-87.39542,39.6557],[-87.39557,39.6536],[-87.38127,39.61559],[-87.3821,39.60935],[-87.46069,39.60964],[-87.53206,39.60904],[-87.53114,39.41882],[-87.53138,39.34771],[-87.54333,39.35256],[-87.54374,39.35272],[-87.55371,39.34081],[-87.55413,39.34031],[-87.58799,39.33415],[-87.58881,39.33365],[-87.58942,39.33253],[-87.60013,39.31272],[-87.60001,39.29311],[-87.60978,39.28205],[-87.60535,39.26125],[-87.60554,39.26112],[-87.57916,39.23296],[-87.57456,39.2184],[-87.58573,39.20114],[-87.58861,39.19782],[-87.63518,39.16889],[-87.64043,39.16673],[-87.62796,39.15734],[-87.62772,39.15661],[-87.64313,39.15614],[-87.64599,39.1449],[-87.63073,39.10478],[-87.63038,39.1043],[-87.58251,39.06661],[-87.57259,39.05729],[-87.56982,39.01975],[-87.5697,39.01941],[-87.57839,38.98994],[-87.57832,38.98879],[-87.54369,38.97683],[-87.5295,38.97192],[-87.51409,38.95634],[-87.51219,38.95442],[-87.51847,38.92486],[-87.51883,38.92321],[-87.5294,38.9054],[-87.54409,38.89509],[-87.54737,38.87561],[-87.55338,38.86334],[-87.53059,38.8524],[-87.52943,38.85148],[-87.52191,38.83086],[-87.52129,38.82818],[-87.52648,38.81994],[-87.52614,38.81894],[-87.50008,38.79001],[-87.49925,38.78843],[-87.4976,38.7807],[-87.49825,38.7796],[-87.51401,38.77245],[-87.51449,38.77092],[-87.49978,38.76894],[-87.49805,38.76756],[-87.4977,38.74539],[-87.49708,38.74313],[-87.53062,38.68451],[-87.53275,38.68272],[-87.58724,38.67109],[-87.58973,38.67018],[-87.61753,38.64294],[-87.61936,38.64117],[-87.62656,38.60785],[-87.62711,38.60467],[-87.61356,38.59212],[-87.61383,38.59099],[-87.63633,38.59383],[-87.63694,38.5937],[-87.64997,38.56972],[-87.65233,38.5682],[-87.6507,38.55624],[-87.66073,38.54109],[-87.6538,38.51738],[-87.65417,38.51191],[-87.67837,38.49844],[-87.69319,38.48804],[-87.73536,38.4768],[-87.73952,38.47507],[-87.74345,38.46584],[-87.74317,38.45902],[-87.73551,38.45273],[-87.73013,38.44652],[-87.74071,38.43581],[-87.74104,38.43558],[-87.74397,38.41707],[-87.74413,38.4141],[-87.67257,38.42883],[-87.66206,38.43256],[-87.67159,38.44108],[-87.67345,38.4465],[-87.65833,38.45707],[-87.656,38.458],[-87.64537,38.45493],[-87.64069,38.45587],[-87.63818,38.44593],[-87.63579,38.44323],[-87.61116,38.44663],[-87.59888,38.45082],[-87.58917,38.46994],[-87.57997,38.48362],[-87.58717,38.49353],[-87.58373,38.49945],[-87.55772,38.4897],[-87.54069,38.49166],[-87.54682,38.50883],[-87.5498,38.51153],[-87.54049,38.51841],[-87.53637,38.51844],[-87.52985,38.51442],[-87.53322,38.50351],[-87.5314,38.49899],[-87.51852,38.50409],[-87.51323,38.50367],[-87.50017,38.49517],[-87.49548,38.49566],[-87.49255,38.49704],[-87.49091,38.50567],[-87.47569,38.51123],[-87.47047,38.51626],[-87.46538,38.53171],[-87.4642,38.53217],[-87.46412,38.48095],[-87.46394,38.4669],[-87.44453,38.46706],[-87.44423,38.44349],[-87.44473,38.43623],[-87.40712,38.43606],[-87.40759,38.3794],[-87.35772,38.38158],[-87.34541,38.38347],[-87.31834,38.37776],[-87.31599,38.37733],[-87.3167,38.23137],[-87.31699,38.20508],[-87.35565,38.20482],[-87.46633,38.20354],[-87.46706,38.16543],[-87.68891,38.1685],[-87.68887,38.20204],[-87.79955,38.20092],[-87.79945,38.22857],[-87.9843,38.2304],[-87.97637,38.19939],[-87.96938,38.19044],[-87.94213,38.17786],[-87.94012,38.17625],[-87.93557,38.16283],[-87.9352,38.16233],[-87.92312,38.17009],[-87.92184,38.17035],[-87.91494,38.16256],[-87.91499,38.16029],[-87.94197,38.13351],[-87.94518,38.13085],[-87.96801,38.13066],[-87.96912,38.12987],[-87.97701,38.11149],[-87.97929,38.11004],[-88.01454,38.10034],[-88.01575,38.09854],[-88.00958,38.08532],[-88.00784,38.08484],[-87.96303,38.10202],[-87.96098,38.10165],[-87.95486,38.08812],[-87.95458,38.08708],[-87.95876,38.07453],[-87.9613,38.07156],[-87.98943,38.05671],[-87.99203,38.05557],[-88.02368,38.05286],[-88.03012,38.05248],[-88.04168,38.04467],[-88.04258,38.04311],[-88.03739,38.03544],[-88.03444,38.03411],[-88.01109,38.03342],[-88.00921,38.03129],[-88.02389,38.01342],[-88.02512,38.01026],[-88.01063,37.97518],[-88.01099,37.97319],[-88.03123,37.96013],[-88.03206,37.95901],[-88.02998,37.93083],[-88.03258,37.92876],[-88.05756,37.93455],[-88.0598,37.93452],[-88.06862,37.92726],[-88.06884,37.92489],[-88.02204,37.91462],[-88.01733,37.91183],[-88.0125,37.89012],[-88.01421,37.88565],[-88.0282,37.89127],[-88.03129,37.89472],[-88.04966,37.89086],[-88.05696,37.89181],[-88.08425,37.90482],[-88.08957,37.90732],[-88.0997,37.90441]],[[-85.3389,41.15113],[-85.33593,40.9349],[-85.33597,40.91703],[-84.87996,40.92059],[-84.80292,40.92257],[-84.80353,41.25256],[-84.80356,41.27116],[-85.19291,41.26426],[-85.30777,41.26413],[-85.30938,41.24972],[-85.30997,41.1732],[-85.31331,41.17316],[-85.33818,41.17286],[-85.3389,41.15113]]],"terms_text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.","description":"Orthophotography for 19 counties and one city in western Indiana, collected during leaf-off conditions in 2018. One-foot resolution for Benton, Clay, Fountain, Greene, Jasper, LaPorte, Montogomery, Newton, Owen, Parke, Sullivan, Tippecanoe, Vigo, Warren, and White counties. Six-inch resolution for Allen, Lake, Porter, and Putnam counties. Three-inch resolution for Huntingburg.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"},{"id":"IPR-orotofoto-last-tms","name":"IPR ortofoto LAST (tmsproxy)","type":"tms","template":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg","zoomExtent":[1,20],"polygon":[[[14.81232,49.93089],[14.18755,49.87687],[14.12025,50.19882],[14.74502,50.25247],[14.81232,49.93089]]]},{"id":"IPR-orotofoto-vege-tms","name":"IPR ortofoto Low-Vegetation (tmsproxy)","type":"tms","template":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg","zoomExtent":[2,20],"polygon":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]]},{"id":"GSGS3906","name":"Ireland British War Office 1:25k GSGS 3906","type":"tms","template":"https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[-9.31139,51.43828],[-7.36131,51.99302],[-7.33934,52.13149],[-6.9658,52.06231],[-6.23796,52.1534],[-6.21049,52.52928],[-5.98253,52.80079],[-5.96056,53.67037],[-6.20775,53.67851],[-6.22423,53.95255],[-5.86442,54.12513],[-5.85893,54.20392],[-5.53483,54.23122],[-5.39476,54.44739],[-5.50188,54.70052],[-6.21873,55.38194],[-6.86418,55.2162],[-7.25145,55.46455],[-7.53435,55.30853],[-8.25395,55.26787],[-8.61101,54.97259],[-8.49016,54.89369],[-8.83897,54.68306],[-8.42699,54.52397],[-8.75108,54.31302],[-9.29765,54.38985],[-10.05296,54.37866],[-10.30015,54.05747],[-10.02275,53.79386],[-10.30565,53.55142],[-9.99803,53.24354],[-9.09166,53.19256],[-9.81676,53.1102],[-9.48167,52.96984],[-9.70415,52.68107],[-10.00627,52.63608],[-9.78929,52.52426],[-9.99803,52.32663],[-10.64348,52.1753],[-10.39629,51.9761],[-10.16832,51.64668],[-10.28642,51.57334],[-9.88542,51.57163],[-9.79204,51.44684],[-9.31139,51.43828]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin","terms_text":"Glucksman Map Library, Trinity College Dublin","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandBritishWarOffice-GSGS3906.png"},{"id":"Israel_Hiking","name":"Israel Hiking","type":"tms","template":"https://israelhiking.osm.org.il/Tiles/{zoom}/{x}/{y}.png","zoomExtent":[7,16],"polygon":[[[34.64563,32.92073],[34.98374,33.13352],[35.15662,33.09994],[35.31781,33.11463],[35.36541,33.06285],[35.46229,33.09994],[35.51741,33.12652],[35.5266,33.21531],[35.53893,33.25442],[35.56446,33.2969],[35.61264,33.27918],[35.67429,33.30627],[35.70785,33.34269],[35.75363,33.35091],[35.81509,33.3392],[35.91531,32.9406],[35.80834,32.772],[35.77835,32.72446],[35.59491,32.62828],[35.5729,32.36541],[35.59461,32.21856],[35.55452,32.02901],[35.57225,31.75415],[35.48771,31.41951],[35.4209,31.25116],[35.47936,31.1783],[35.42771,30.95172],[35.3321,30.77107],[35.20709,30.53307],[35.17202,30.11204],[35.07514,29.83713],[35.02336,29.64569],[34.93992,29.39946],[34.89517,29.37711],[34.84785,29.59084],[34.69667,30.10714],[34.52423,30.40912],[34.48879,30.64515],[34.07929,31.52265],[34.64563,32.92073]]],"terms_url":"https://israelhiking.osm.org.il/","terms_text":"Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.","description":"Israel Hiking map","icon":"https://israelhiking.osm.org.il/content/favicons/favicon.ico"},{"id":"Israel_MTB","name":"Israel MTB","type":"tms","template":"https://israelhiking.osm.org.il/MTBTiles/{zoom}/{x}/{y}.png","zoomExtent":[7,16],"polygon":[[[34.64563,32.92073],[34.98374,33.13352],[35.15662,33.09994],[35.31781,33.11463],[35.36541,33.06285],[35.46229,33.09994],[35.51741,33.12652],[35.5266,33.21531],[35.53893,33.25442],[35.56446,33.2969],[35.61264,33.27918],[35.67429,33.30627],[35.70785,33.34269],[35.75363,33.35091],[35.81509,33.3392],[35.91531,32.9406],[35.80834,32.772],[35.77835,32.72446],[35.59491,32.62828],[35.5729,32.36541],[35.59461,32.21856],[35.55452,32.02901],[35.57225,31.75415],[35.48771,31.41951],[35.4209,31.25116],[35.47936,31.1783],[35.42771,30.95172],[35.3321,30.77107],[35.20709,30.53307],[35.17202,30.11204],[35.07514,29.83713],[35.02336,29.64569],[34.93992,29.39946],[34.89517,29.37711],[34.84785,29.59084],[34.69667,30.10714],[34.52423,30.40912],[34.48879,30.64515],[34.07929,31.52265],[34.64563,32.92073]]],"terms_url":"https://israelhiking.osm.org.il/","terms_text":"Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.","description":"Israel MTB map","icon":"https://israelhiking.osm.org.il/content/favicons/favicon.ico"},{"id":"ITACyL-Castile-and-Leon","name":"ITACyL - Castile and León","type":"wms","template":"http://orto.wms.itacyl.es/WMS?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=Ortofoto_CyL&SRS={proj}&FORMAT=image/jpeg&STYLES=Default&TRANSPARENT=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[-1.9358,41.43834],[-1.89601,41.43869],[-1.89536,41.39687],[-1.9767,41.39616],[-1.97639,41.37623],[-2.06201,41.37548],[-2.06262,41.41471],[-2.10458,41.41434],[-2.10363,41.35367],[-2.14448,41.35331],[-2.1419,41.18683],[-2.06204,41.18753],[-2.06171,41.16624],[-2.02046,41.16661],[-2.01887,41.06334],[-2.10083,41.06262],[-2.10114,41.08296],[-2.22733,41.08185],[-2.22704,41.0635],[-2.26912,41.06313],[-2.2688,41.04257],[-2.35325,41.04182],[-2.35356,41.06148],[-2.39487,41.06112],[-2.39457,41.04206],[-2.43722,41.04168],[-2.43756,41.06315],[-2.47928,41.06278],[-2.47991,41.10369],[-2.52078,41.10333],[-2.5211,41.12429],[-2.60415,41.12357],[-2.60481,41.16628],[-2.6471,41.16591],[-2.64808,41.22931],[-2.72874,41.2286],[-2.72907,41.24974],[-2.89552,41.24828],[-2.89649,41.31063],[-2.9363,41.31028],[-2.93571,41.27231],[-3.14692,41.27046],[-3.14723,41.29045],[-3.22828,41.28974],[-3.22767,41.25008],[-3.39581,41.2486],[-3.39518,41.20808],[-3.43492,41.20773],[-3.43429,41.16696],[-3.47877,41.16657],[-3.47844,41.14556],[-3.60336,41.14446],[-3.6027,41.10169],[-3.64539,41.10131],[-3.64508,41.08159],[-3.68735,41.08122],[-3.68673,41.04104],[-3.72866,41.04067],[-3.72803,40.9998],[-3.76896,40.99944],[-3.76864,40.97886],[-3.85473,40.97811],[-3.8544,40.95653],[-3.89857,40.95615],[-3.89764,40.89575],[-3.93906,40.89539],[-3.93716,40.77204],[-4.06198,40.77093],[-4.06133,40.72926],[-4.10372,40.72888],[-4.10311,40.68918],[-4.14628,40.6888],[-4.14498,40.60421],[-4.19025,40.60381],[-4.18994,40.58362],[-4.22946,40.58327],[-4.22979,40.60487],[-4.27054,40.60451],[-4.26958,40.54211],[-4.31384,40.54171],[-4.31163,40.39758],[-4.39376,40.39685],[-4.39345,40.37677],[-4.43723,40.37638],[-4.43623,40.31123],[-4.52192,40.31046],[-4.52037,40.20897],[-4.56131,40.2086],[-4.56099,40.18763],[-4.68895,40.18649],[-4.68933,40.21101],[-4.73192,40.21063],[-4.73252,40.24966],[-4.76838,40.24934],[-4.76809,40.23035],[-4.81104,40.22996],[-4.81147,40.20726],[-4.8542,40.18414],[-4.85264,40.12563],[-4.93699,40.12488],[-4.93638,40.08529],[-5.35538,40.08155],[-5.35606,40.12562],[-5.44027,40.12487],[-5.44091,40.16673],[-5.60382,40.16527],[-5.60448,40.20881],[-5.68646,40.20808],[-5.68712,40.25131],[-6.02166,40.24834],[-6.02295,40.33257],[-6.10433,40.33184],[-6.1056,40.41451],[-6.18951,40.41376],[-6.19018,40.45745],[-6.26971,40.45675],[-6.26909,40.41653],[-6.35192,40.41579],[-6.35128,40.37422],[-6.43325,40.37349],[-6.43264,40.33361],[-6.52245,40.33281],[-6.52116,40.24849],[-6.59942,40.24779],[-6.59886,40.21128],[-6.85568,40.20899],[-6.85634,40.25257],[-6.93622,40.25186],[-6.93751,40.33657],[-6.85111,40.33734],[-6.86001,40.91672],[-6.93544,40.91605],[-6.93741,41.0435],[-6.85482,41.04423],[-6.85548,41.08706],[-6.77015,41.08781],[-6.77245,41.23623],[-6.68379,41.23701],[-6.60436,41.2377],[-6.60524,41.29474],[-6.5193,41.29549],[-6.51991,41.33479],[-6.43673,41.33552],[-6.43801,41.41814],[-6.35318,41.41888],[-6.35447,41.50141],[-6.26889,41.50216],[-6.2708,41.6245],[-6.35661,41.62375],[-6.35724,41.66401],[-6.43548,41.66333],[-6.4349,41.62651],[-6.52279,41.62575],[-6.52343,41.66635],[-6.6034,41.66565],[-6.60733,41.9166],[-7.02209,41.913],[-7.02406,42.03872],[-7.1054,42.03801],[-7.10613,42.08421],[-7.0208,42.08495],[-7.02276,42.2094],[-6.93699,42.21014],[-6.93763,42.25087],[-6.8548,42.25159],[-6.85545,42.29329],[-6.77342,42.294],[-6.77403,42.33244],[-6.85325,42.33176],[-6.85523,42.4569],[-7.10341,42.45477],[-7.10811,42.75115],[-7.02199,42.75189],[-7.02241,42.77825],[-6.93976,42.77896],[-6.94199,42.91962],[-6.77302,42.92106],[-6.77363,42.95958],[-6.52329,42.96172],[-6.52391,43.00095],[-6.43893,43.00167],[-6.44024,43.08361],[-5.93782,43.08789],[-5.93708,43.04189],[-5.85421,43.0426],[-5.85357,43.00258],[-5.77236,43.00327],[-5.77363,43.08308],[-5.6027,43.08453],[-5.60202,43.04222],[-5.52161,43.04291],[-5.52226,43.08409],[-5.4376,43.08481],[-5.43827,43.12651],[-5.10444,43.12935],[-5.10573,43.2099],[-5.02386,43.2106],[-5.02451,43.25117],[-4.90017,43.25222],[-4.89941,43.20501],[-4.81126,43.20576],[-4.80966,43.10538],[-4.76975,43.10571],[-4.76937,43.08168],[-4.72945,43.08202],[-4.72881,43.04219],[-4.56322,43.0436],[-4.56353,43.06296],[-4.39599,43.06438],[-4.39566,43.04336],[-4.3537,43.04371],[-4.35266,42.97836],[-4.23013,42.9794],[-4.22913,42.91625],[-4.18774,42.9166],[-4.18706,42.87407],[-4.10552,42.87476],[-4.10486,42.83348],[-3.97801,42.83457],[-3.97733,42.79214],[-3.9375,42.79248],[-3.93781,42.81183],[-3.85397,42.81254],[-3.85427,42.83193],[-3.89573,42.83158],[-3.89607,42.85343],[-3.93821,42.85307],[-3.93889,42.89577],[-3.9806,42.89542],[-3.98093,42.91627],[-4.0222,42.91591],[-4.0229,42.96014],[-3.97851,42.96052],[-3.97946,43.01999],[-3.93883,43.02034],[-3.93918,43.04239],[-3.89704,43.04275],[-3.89738,43.06414],[-3.85424,43.06451],[-3.8549,43.10583],[-3.77086,43.10654],[-3.77116,43.12515],[-3.72819,43.12551],[-3.72853,43.14656],[-3.68713,43.14691],[-3.68778,43.18786],[-3.60365,43.18858],[-3.60331,43.16747],[-3.52278,43.16815],[-3.52243,43.14619],[-3.39669,43.14726],[-3.39699,43.16601],[-3.35444,43.16637],[-3.35479,43.18837],[-3.31268,43.18873],[-3.31299,43.20828],[-3.22993,43.20899],[-3.22959,43.18768],[-3.10343,43.18875],[-3.10274,43.14562],[-3.14546,43.14526],[-3.14516,43.1271],[-3.10617,43.12743],[-3.10445,43.01915],[-3.02075,43.01987],[-3.0201,42.97903],[-2.9811,42.97936],[-2.97977,42.8958],[-3.10476,42.89473],[-3.10276,42.76928],[-3.02199,42.76997],[-3.02168,42.74983],[-2.98024,42.75019],[-2.97988,42.7275],[-2.89613,42.72822],[-2.89679,42.76967],[-2.8534,42.77004],[-2.85405,42.81087],[-2.68577,42.81231],[-2.68544,42.79159],[-2.64523,42.79194],[-2.64489,42.77024],[-2.52005,42.7713],[-2.51936,42.72827],[-2.5607,42.72791],[-2.56038,42.7076],[-2.51944,42.70795],[-2.5181,42.62357],[-2.60404,42.62283],[-2.60439,42.64497],[-2.77154,42.64353],[-2.77188,42.66544],[-2.81176,42.6651],[-2.8121,42.68624],[-2.85469,42.68588],[-2.85337,42.60302],[-2.89413,42.60267],[-2.89379,42.58159],[-3.0619,42.58015],[-3.06031,42.47952],[-3.02191,42.47985],[-3.0199,42.3525],[-3.06255,42.35213],[-3.06029,42.20906],[-3.1012,42.20871],[-3.10086,42.18682],[-3.06175,42.18716],[-3.0611,42.14559],[-3.02029,42.14594],[-3.01963,42.10375],[-2.89602,42.10482],[-2.89501,42.04071],[-2.81222,42.04143],[-2.81353,42.1246],[-2.76871,42.12499],[-2.76905,42.14674],[-2.72695,42.14711],[-2.7266,42.12485],[-2.68706,42.12519],[-2.68605,42.06109],[-2.72804,42.06073],[-2.72739,42.0193],[-2.60343,42.02037],[-2.60376,42.04135],[-2.561,42.04173],[-2.56198,42.10411],[-2.52266,42.10445],[-2.52299,42.12577],[-2.47933,42.12615],[-2.47963,42.145],[-2.35517,42.14608],[-2.3555,42.16747],[-2.31184,42.16785],[-2.3115,42.14605],[-2.2699,42.14641],[-2.26924,42.1048],[-2.2295,42.10515],[-2.22981,42.12514],[-2.14467,42.12587],[-2.14432,42.10386],[-2.10385,42.10421],[-2.10156,41.95811],[-1.97689,41.95919],[-1.97655,41.93765],[-1.93473,41.93801],[-1.93504,41.95776],[-1.89453,41.95811],[-1.89483,41.97715],[-1.854,41.97751],[-1.85304,41.91638],[-1.81381,41.91672],[-1.81151,41.76984],[-1.7706,41.77019],[-1.76866,41.64582],[-1.85335,41.64508],[-1.85305,41.62567],[-1.89471,41.6253],[-1.89403,41.58215],[-1.97716,41.58142],[-1.97683,41.56021],[-1.9377,41.56055],[-1.9358,41.43834]]],"terms_text":"ITACyL"},{"id":"gsi.go.jp_airphoto","name":"Japan GSI airphoto Imagery","type":"tms","template":"https://cyberjapandata.gsi.go.jp/xyz/airphoto/{zoom}/{x}/{y}.png","zoomExtent":[14,18],"polygon":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"terms_url":"https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html","terms_text":"GSI Japan","description":"Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery."},{"id":"finds.jp_KBN_2500","name":"Japan GSI KIBAN 2500","type":"tms","template":"https://aginfo.cgk.affrc.go.jp/ws/tmc/1.0.0/KBN2500FN-900913-L/{zoom}/{x}/{y}.png","zoomExtent":[15,20],"polygon":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"terms_url":"https://aginfo.cgk.affrc.go.jp/mapprv/tou.html.ja","terms_text":"GSI KIBAN 2500","description":"GSI Kiban 2500 via aginfo.cgk.affrc.go.jp. Good for tracing, but a bit older."},{"id":"gsi.go.jp_seamlessphoto","name":"Japan GSI seamlessphoto Imagery","type":"tms","template":"https://cyberjapandata.gsi.go.jp/xyz/seamlessphoto/{zoom}/{x}/{y}.jpg","zoomExtent":[14,18],"polygon":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"terms_url":"https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html","terms_text":"GSI Japan seamless photo","description":"Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others."},{"id":"gsi.go.jp_std_map","name":"Japan GSI Standard Map","type":"tms","template":"https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png","zoomExtent":[5,18],"polygon":[[[141.85547,44.64912],[140.22949,43.9691],[138.95508,41.80408],[139.48242,40.17887],[138.86719,38.30718],[136.31836,37.19533],[132.14355,35.13788],[128.93555,33.35806],[129.50684,32.4727],[129.77051,31.69078],[130.20996,30.90223],[131.2207,30.78904],[131.66016,32.32428],[132.71484,32.87959],[133.76953,33.17434],[136.75781,33.87042],[139.30664,35.06597],[140.88867,35.17381],[141.15234,36.5626],[142.11914,39.94344],[141.76758,42.68243],[141.85547,44.64912]]],"terms_url":"https://maps.gsi.go.jp/help/use.html","terms_text":"GSI Japan","description":"Japan GSI Standard Map. Widely covered."},{"id":"kalmar-orto-2014","name":"Kalmar North Orthophoto 2014","type":"wms","template":"https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2014/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.28473,56.70827],[16.38856,56.70798],[16.40843,56.7615],[16.46269,56.75672],[16.47753,56.76023],[16.48815,56.77023],[16.48754,56.79231],[16.48254,56.79547],[16.47667,56.8223],[16.4687,56.82614],[16.48584,56.86271],[16.48809,56.87369],[16.45694,56.87786],[16.46288,56.88769],[16.42696,56.88757],[16.39809,56.89604],[16.36791,56.8952],[16.36717,56.85985],[16.36431,56.84636],[16.36001,56.83657],[16.34423,56.82532],[16.32675,56.79284],[16.26114,56.74422],[16.28473,56.70827]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for the north coast of the municipality of Kalmar 2014","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png"},{"id":"kalmar-orto-2016","name":"Kalmar South Orthophoto 2016","type":"wms","template":"https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2016/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.156,56.45834],[16.11389,56.46083],[16.09246,56.46633],[16.0724,56.4662],[16.07126,56.51153],[16.08516,56.56847],[16.14417,56.63933],[16.21168,56.68491],[16.28412,56.71655],[16.25135,56.74358],[16.25045,56.75062],[16.29558,56.7512],[16.33516,56.72511],[16.38922,56.71885],[16.41137,56.67602],[16.4053,56.66294],[16.33101,56.625],[16.28048,56.613],[16.21561,56.51967],[16.156,56.45834]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for the south coast of the municipality of Kalmar 2016","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png"},{"id":"kalmar-orto-2018","name":"Kalmar Urban Orthophoto 2018","type":"wms","template":"https://kartportal.kalmar.se/arcgisserver/services/Ortofoto/Kalmar_2018/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.3416,56.81756],[16.32773,56.7973],[16.36692,56.78706],[16.37105,56.79153],[16.36978,56.80511],[16.35645,56.8133],[16.3416,56.81756]],[[16.39207,56.79339],[16.4608,56.78944],[16.48817,56.79067],[16.4833,56.76986],[16.46612,56.76711],[16.45409,56.76774],[16.43173,56.77309],[16.43178,56.77663],[16.40554,56.77214],[16.39325,56.77349],[16.39207,56.79339]],[[16.29836,56.79102],[16.28796,56.7883],[16.27727,56.78367],[16.27623,56.77952],[16.2862,56.7761],[16.3108,56.77696],[16.3118,56.78086],[16.30364,56.78883],[16.29836,56.79102]],[[16.20686,56.63637],[16.22098,56.62389],[16.2453,56.62467],[16.26751,56.62951],[16.28724,56.63831],[16.37871,56.65462],[16.38806,56.6897],[16.38664,56.72867],[16.31586,56.72879],[16.29956,56.7219],[16.29331,56.70021],[16.26799,56.66889],[16.23945,56.66991],[16.2266,56.6624],[16.21411,56.64972],[16.20686,56.63637]],[[16.15172,56.67843],[16.15712,56.69334],[16.15268,56.70297],[16.13274,56.71254],[16.10987,56.71964],[16.08638,56.7112],[16.07969,56.70056],[16.08149,56.69566],[16.09534,56.69599],[16.12877,56.67766],[16.15172,56.67843]],[[15.97369,56.62759],[16.00164,56.63215],[16.04126,56.62999],[16.05658,56.62489],[16.06201,56.61794],[16.09186,56.60378],[16.10527,56.5926],[16.09581,56.58161],[16.03481,56.60405],[16.0305,56.61252],[16.0088,56.60223],[15.98755,56.59742],[15.98449,56.57141],[15.94887,56.57264],[15.91878,56.55184],[15.90892,56.55393],[15.89921,56.56867],[15.9188,56.57287],[15.94612,56.57491],[15.96371,56.59004],[15.9496,56.59724],[15.94308,56.60903],[15.95726,56.61598],[15.97589,56.62005],[15.97369,56.62759]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for urban areas of the municipality of Kalmar 2018","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Kalmarvapen_1a.svg/206px-Kalmarvapen_1a.svg.png"},{"id":"Aargau-AGIS-2014","name":"Kanton Aargau 25cm (AGIS 2014)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[8.09602,47.57882],[8.10323,47.57879],[8.10323,47.58583],[8.10591,47.58732],[8.11019,47.58878],[8.11589,47.5893],[8.12168,47.58916],[8.12546,47.58873],[8.12959,47.58888],[8.13023,47.59122],[8.132,47.59358],[8.13506,47.59546],[8.13831,47.59698],[8.14161,47.59939],[8.14534,47.60076],[8.14961,47.60144],[8.15438,47.60127],[8.15751,47.60063],[8.16119,47.59914],[8.16255,47.59976],[8.16438,47.60148],[8.16653,47.60399],[8.17087,47.60673],[8.17608,47.60838],[8.17912,47.60868],[8.18153,47.6118],[8.18304,47.61489],[8.18498,47.6176],[8.18953,47.62151],[8.19212,47.62321],[8.22261,47.623],[8.22561,47.6212],[8.22849,47.61842],[8.22959,47.61621],[8.23008,47.61501],[8.23261,47.61686],[8.23657,47.61803],[8.24,47.61835],[8.24351,47.61783],[8.24749,47.61877],[8.25066,47.61988],[8.25708,47.6208],[8.26104,47.62069],[8.26491,47.61935],[8.26732,47.61769],[8.26902,47.61531],[8.27579,47.61702],[8.28106,47.61707],[8.28772,47.61626],[8.29421,47.61442],[8.29947,47.61221],[8.30311,47.60977],[8.30287,47.59447],[8.30438,47.59227],[8.30591,47.59109],[8.30791,47.59019],[8.31236,47.58917],[8.31655,47.58713],[8.32049,47.58436],[8.32598,47.57888],[8.32864,47.57716],[8.33219,47.57604],[8.33902,47.57577],[8.34702,47.57628],[8.35962,47.57552],[8.36475,47.57436],[8.37207,47.57377],[8.38002,47.57233],[8.38194,47.57496],[8.38387,47.57686],[8.38879,47.58027],[8.39232,47.58174],[8.39611,47.58247],[8.40013,47.58255],[8.40432,47.58158],[8.41158,47.57928],[8.418,47.57602],[8.42381,47.57452],[8.43039,47.57228],[8.43275,47.57035],[8.4336,47.56849],[8.43353,47.56669],[8.4319,47.56444],[8.4286,47.56217],[8.42575,47.56121],[8.4259,47.55854],[8.42498,47.55624],[8.42353,47.55469],[8.42296,47.5537],[8.4246,47.5517],[8.42492,47.54981],[8.42434,47.54836],[8.42539,47.54679],[8.425,47.54418],[8.4233,47.5422],[8.421,47.54106],[8.41832,47.54049],[8.41551,47.54062],[8.4139,47.53924],[8.41283,47.5372],[8.41194,47.53626],[8.41241,47.53415],[8.41185,47.53237],[8.41117,47.53158],[8.40143,47.53169],[8.40124,47.52443],[8.39936,47.5222],[8.39666,47.52082],[8.39385,47.51988],[8.39085,47.51973],[8.38877,47.52014],[8.38809,47.5146],[8.38551,47.51075],[8.38366,47.50944],[8.36776,47.50953],[8.36739,47.48709],[8.3751,47.48689],[8.37889,47.4853],[8.38196,47.48188],[8.38184,47.47521],[8.38328,47.47192],[8.38244,47.46879],[8.37943,47.46643],[8.37751,47.4659],[8.37787,47.46496],[8.38238,47.46423],[8.38671,47.46097],[8.39171,47.45743],[8.39315,47.45349],[8.39514,47.45031],[8.39418,47.44722],[8.39171,47.44535],[8.3896,47.44449],[8.38996,47.44339],[8.39111,47.4416],[8.39213,47.43924],[8.39339,47.4359],[8.39249,47.43411],[8.39369,47.43143],[8.39568,47.42854],[8.39959,47.42463],[8.39953,47.41954],[8.449,47.41897],[8.45369,47.41233],[8.45369,47.40451],[8.44858,47.39649],[8.40362,47.39685],[8.40483,47.39392],[8.4029,47.38903],[8.4035,47.38553],[8.40314,47.38304],[8.40483,47.37905],[8.40844,47.37575],[8.41379,47.37338],[8.4159,47.37016],[8.41584,47.36539],[8.4144,47.36327],[8.41494,47.35912],[8.41722,47.35573],[8.41632,47.35231],[8.41355,47.34913],[8.41367,47.34688],[8.41476,47.3448],[8.41885,47.34244],[8.42264,47.34052],[8.42469,47.33718],[8.42421,47.33163],[8.42914,47.33286],[8.4351,47.33192],[8.43763,47.33281],[8.44328,47.33506],[8.44527,47.33746],[8.45213,47.3402],[8.45761,47.33975],[8.46212,47.33649],[8.46278,47.33322],[8.46043,47.32829],[8.45797,47.32457],[8.45556,47.32005],[8.44918,47.31495],[8.44713,47.31217],[8.44021,47.30948],[8.43624,47.29817],[8.43311,47.29593],[8.42806,47.29397],[8.42318,47.29001],[8.41656,47.28789],[8.41024,47.28728],[8.4035,47.28409],[8.40188,47.2805],[8.40862,47.27593],[8.41066,47.2716],[8.40892,47.26613],[8.41235,47.2618],[8.41235,47.25873],[8.41109,47.25608],[8.41698,47.25142],[8.41885,47.2475],[8.41801,47.24305],[8.4144,47.23904],[8.41373,47.23565],[8.4106,47.23226],[8.40435,47.22797],[8.40296,47.2256],[8.40398,47.22127],[8.40856,47.21718],[8.40928,47.21326],[8.40844,47.20945],[8.41012,47.20258],[8.41319,47.19678],[8.41271,47.1924],[8.4088,47.18799],[8.40814,47.18475],[8.4091,47.1812],[8.41518,47.17915],[8.41915,47.17563],[8.42294,47.16553],[8.42294,47.15747],[8.42011,47.15325],[8.42246,47.14838],[8.42276,47.14392],[8.42053,47.13954],[8.41584,47.13524],[8.40898,47.13274],[8.40386,47.13201],[8.40116,47.13258],[8.39532,47.1327],[8.38437,47.1345],[8.37895,47.13385],[8.37245,47.13442],[8.36908,47.13659],[8.368,47.13876],[8.35656,47.14228],[8.35409,47.14564],[8.35331,47.14916],[8.3506,47.15161],[8.3503,47.15419],[8.34772,47.15669],[8.34561,47.15923],[8.34086,47.16164],[8.33935,47.16512],[8.3373,47.16896],[8.33315,47.17154],[8.33261,47.17351],[8.33062,47.17792],[8.33002,47.18717],[8.32924,47.18786],[8.32936,47.19494],[8.32292,47.19514],[8.32148,47.19854],[8.32196,47.20115],[8.31835,47.21043],[8.31413,47.21178],[8.31089,47.2153],[8.31107,47.21857],[8.31221,47.2198],[8.30884,47.22433],[8.30932,47.22646],[8.30715,47.23042],[8.30727,47.2321],[8.30595,47.23582],[8.30607,47.23949],[8.30378,47.24366],[8.30144,47.24677],[8.29554,47.24836],[8.29187,47.25293],[8.28814,47.25869],[8.28766,47.26143],[8.28627,47.26519],[8.28723,47.26805],[8.28838,47.26964],[8.2823,47.27478],[8.27718,47.27576],[8.27273,47.27531],[8.26749,47.27593],[8.26533,47.27719],[8.2616,47.27695],[8.25793,47.27781],[8.25576,47.27887],[8.25317,47.27678],[8.25034,47.27548],[8.2501,47.27348],[8.24956,47.27017],[8.24559,47.26715],[8.24095,47.26678],[8.23452,47.26727],[8.23145,47.26278],[8.2309,47.25931],[8.22663,47.24942],[8.222,47.24713],[8.21526,47.24431],[8.21363,47.24203],[8.21309,47.23602],[8.21123,47.23246],[8.21285,47.22548],[8.21117,47.22266],[8.20689,47.22053],[8.19762,47.22065],[8.19149,47.21861],[8.16976,47.21865],[8.16543,47.22315],[8.16085,47.22405],[8.15351,47.2294],[8.15171,47.2332],[8.14822,47.23647],[8.14798,47.241],[8.14635,47.24203],[8.13823,47.24166],[8.13558,47.23941],[8.12673,47.23606],[8.1218,47.23631],[8.11614,47.23872],[8.10675,47.23945],[8.10266,47.24113],[8.09983,47.24436],[8.09766,47.2493],[8.09797,47.25069],[8.09339,47.25567],[8.08852,47.2569],[8.08485,47.25583],[8.08323,47.25405],[8.07995,47.25246],[8.0769,47.25054],[8.06854,47.24284],[8.06325,47.24098],[8.05134,47.23865],[8.04857,47.23886],[8.03575,47.23747],[8.0322,47.23555],[8.02714,47.23534],[8.01139,47.23967],[8.00927,47.24116],[8.00791,47.24312],[8.00783,47.24821],[8.00857,47.25042],[8.0084,47.25769],[8.00712,47.25922],[8.00299,47.26162],[8.00052,47.26486],[7.99759,47.26789],[7.99627,47.27271],[7.99474,47.27369],[7.98993,47.27121],[7.97278,47.26907],[7.96857,47.27008],[7.96737,47.27098],[7.95861,47.27112],[7.9601,47.26748],[7.96274,47.26396],[7.96576,47.26171],[7.96699,47.25879],[7.96695,47.25001],[7.95963,47.24582],[7.95112,47.23918],[7.94469,47.236],[7.93733,47.23106],[7.93405,47.23051],[7.9298,47.23077],[7.9178,47.23305],[7.90784,47.23837],[7.89793,47.2377],[7.8695,47.23207],[7.85478,47.22719],[7.85137,47.22713],[7.83958,47.22947],[7.83584,47.22976],[7.83082,47.23259],[7.82707,47.23505],[7.82431,47.23831],[7.82129,47.24042],[7.82014,47.24264],[7.81822,47.24562],[7.81771,47.24917],[7.81822,47.25082],[7.81835,47.25371],[7.81988,47.25587],[7.82116,47.2568],[7.82112,47.25778],[7.8192,47.26058],[7.81912,47.26154],[7.81686,47.26486],[7.8175,47.26731],[7.81958,47.26982],[7.82439,47.27158],[7.82805,47.2721],[7.83592,47.27837],[7.83707,47.28342],[7.84005,47.2872],[7.84201,47.29067],[7.84588,47.29427],[7.84763,47.2982],[7.85137,47.30299],[7.8529,47.30741],[7.85571,47.31032],[7.86065,47.31254],[7.86422,47.31349],[7.87018,47.31672],[7.87631,47.31736],[7.88082,47.31716],[7.88337,47.31667],[7.88588,47.31941],[7.88886,47.32131],[7.88805,47.32443],[7.88907,47.3287],[7.8915,47.33262],[7.8978,47.34014],[7.9001,47.34156],[7.90005,47.3432],[7.90222,47.34557],[7.90635,47.34704],[7.90963,47.34735],[7.91359,47.34626],[7.91618,47.34456],[7.91699,47.34303],[7.92401,47.33899],[7.93839,47.33792],[7.94929,47.33784],[7.95431,47.33596],[7.95593,47.33317],[7.95691,47.32968],[7.95571,47.32535],[7.96993,47.32797],[7.97308,47.33017],[7.98333,47.33432],[7.98563,47.33692],[7.98954,47.33818],[7.99248,47.33827],[7.99784,47.34017],[7.99635,47.34257],[7.99601,47.34588],[7.99733,47.34859],[8.00116,47.35081],[8.00137,47.3569],[8.00261,47.3577],[8.00418,47.36044],[8.00976,47.36419],[8.01125,47.36598],[8.01746,47.36926],[8.01912,47.37157],[8.0198,47.37376],[8.02023,47.37598],[8.02172,47.37837],[8.02193,47.38093],[8.02282,47.38286],[8.02078,47.38857],[8.01606,47.38929],[8.01265,47.38897],[8.00772,47.39012],[8.00367,47.39205],[8.00163,47.39479],[8.00155,47.39998],[8.00023,47.40306],[7.99801,47.40453],[7.99261,47.40551],[7.98776,47.40637],[7.98418,47.40839],[7.98027,47.4081],[7.9732,47.41127],[7.96963,47.41383],[7.95695,47.41893],[7.95529,47.4218],[7.95593,47.42402],[7.95746,47.42621],[7.96274,47.42828],[7.97746,47.43254],[7.97567,47.43732],[7.97614,47.44138],[7.97431,47.44368],[7.95129,47.45111],[7.94861,47.4539],[7.94818,47.4566],[7.94678,47.45755],[7.94039,47.45669],[7.93588,47.45738],[7.93631,47.47625],[7.9318,47.47605],[7.92469,47.47717],[7.91571,47.47743],[7.90903,47.47947],[7.90316,47.47967],[7.90295,47.48965],[7.8969,47.4898],[7.8918,47.49405],[7.89086,47.49765],[7.8878,47.49931],[7.88631,47.5023],[7.87999,47.50397],[7.87403,47.50787],[7.86994,47.50944],[7.87006,47.51239],[7.86435,47.51245],[7.85851,47.51543],[7.8558,47.51854],[7.85625,47.52147],[7.8549,47.52474],[7.85183,47.5285],[7.84647,47.52714],[7.84148,47.52777],[7.8413,47.52406],[7.84015,47.51587],[7.83943,47.51259],[7.83688,47.51256],[7.83679,47.51049],[7.83352,47.50949],[7.83156,47.50765],[7.82981,47.50552],[7.82522,47.50354],[7.82049,47.5004],[7.81475,47.49491],[7.81181,47.49261],[7.80645,47.4914],[7.80403,47.49146],[7.80049,47.49014],[7.77977,47.49028],[7.77871,47.49304],[7.7796,47.496],[7.78386,47.5004],[7.78203,47.50368],[7.78088,47.5073],[7.78109,47.51018],[7.77977,47.51265],[7.77969,47.51529],[7.77045,47.51802],[7.75905,47.52003],[7.75266,47.52009],[7.74781,47.51957],[7.73368,47.52291],[7.72781,47.52719],[7.71985,47.52978],[7.71262,47.53095],[7.70764,47.5344],[7.70551,47.53917],[7.70696,47.54279],[7.71415,47.54627],[7.72245,47.54756],[7.749,47.54977],[7.75428,47.55339],[7.76654,47.55615],[7.77168,47.55761],[7.78007,47.55836],[7.78577,47.55982],[7.7902,47.5616],[7.79398,47.56634],[7.80492,47.57237],[7.80611,47.57989],[7.81173,47.58954],[7.81577,47.59218],[7.82211,47.59352],[7.83645,47.59163],[7.83952,47.59045],[7.84305,47.58778],[7.84875,47.58899],[7.85624,47.59189],[7.86488,47.59393],[7.87126,47.5943],[7.87726,47.59367],[7.88535,47.59424],[7.89343,47.59301],[7.90109,47.58976],[7.90833,47.58514],[7.91386,47.57923],[7.91867,47.57194],[7.91956,47.56772],[7.91875,47.56433],[7.9156,47.56008],[7.91577,47.55715],[7.91841,47.55405],[7.92126,47.55261],[7.92552,47.55227],[7.93471,47.55221],[7.9405,47.55078],[7.94326,47.54968],[7.94356,47.55052],[7.94458,47.55589],[7.94841,47.55979],[7.95394,47.56229],[7.96003,47.56333],[7.96577,47.56272],[7.97203,47.5612],[7.97833,47.56057],[7.98624,47.56094],[7.99718,47.56212],[8.0045,47.56137],[8.01114,47.55974],[8.01641,47.55701],[8.02046,47.55574],[8.0262,47.55741],[8.03799,47.55876],[8.04254,47.56028],[8.0485,47.56333],[8.05454,47.56798],[8.05931,47.56921],[8.0622,47.56895],[8.06693,47.57002],[8.07242,47.56973],[8.07739,47.56795],[8.08182,47.56436],[8.08522,47.56281],[8.08791,47.56298],[8.09259,47.56559],[8.09395,47.56809],[8.09484,47.57587],[8.09602,47.57882]]],"terms_text":"AGIS OF2014","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2016","name":"Kanton Aargau 25cm (AGIS 2016)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS OF2016","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2017","name":"Kanton Aargau 25cm (AGIS 2017)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS OF2017","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2019","name":"Kanton Aargau 25cm (AGIS 2019)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2019/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS OF2019","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2014-Hillshade","name":"Kanton Aargau 50cm DTM/Hillshade","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2014HILLSHADE/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS 2014 50cm DTM/Hillshade","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Basel-Landschaft-2015","name":"Kanton Basel-Landschaft 10cm (2015)","type":"tms","template":"https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[18,21],"polygon":[[[7.37028,47.41368],[7.35758,47.41508],[7.35792,47.41827],[7.35354,47.41961],[7.34488,47.42402],[7.33973,47.42971],[7.33269,47.43024],[7.32685,47.43192],[7.32528,47.43489],[7.3305,47.44176],[7.33899,47.44109],[7.34496,47.43608],[7.35266,47.43436],[7.3812,47.43208],[7.37599,47.41431],[7.37815,47.414],[7.38204,47.41331],[7.38839,47.41398],[7.41371,47.41093],[7.42074,47.4111],[7.42748,47.41448],[7.43811,47.41274],[7.4484,47.41507],[7.45558,47.42792],[7.45062,47.43534],[7.43784,47.44632],[7.42542,47.44328],[7.4209,47.44594],[7.42242,47.45072],[7.4288,47.45388],[7.43003,47.45949],[7.44577,47.46197],[7.44717,47.45696],[7.45651,47.44926],[7.49236,47.45897],[7.53068,47.46119],[7.52745,47.47391],[7.53633,47.48383],[7.53623,47.49105],[7.5326,47.49097],[7.53179,47.4974],[7.52004,47.49678],[7.51223,47.49892],[7.50935,47.50888],[7.49908,47.51628],[7.49787,47.52125],[7.50228,47.51491],[7.51746,47.51728],[7.5222,47.51409],[7.53096,47.52905],[7.51935,47.53472],[7.51075,47.52899],[7.5023,47.5284],[7.49804,47.53615],[7.50545,47.54438],[7.51676,47.54541],[7.52732,47.55278],[7.55466,47.56437],[7.56458,47.55704],[7.56124,47.55172],[7.55875,47.55235],[7.55588,47.54434],[7.56479,47.54569],[7.58726,47.5419],[7.58269,47.53247],[7.58948,47.52792],[7.59025,47.51979],[7.59478,47.51929],[7.61378,47.53925],[7.6223,47.53977],[7.62285,47.55004],[7.61774,47.55437],[7.61762,47.55865],[7.63273,47.56149],[7.63997,47.55816],[7.649,47.5483],[7.66131,47.54483],[7.66586,47.53746],[7.67467,47.53375],[7.69494,47.5325],[7.71347,47.53978],[7.71596,47.53582],[7.72362,47.53675],[7.72716,47.53293],[7.73322,47.53275],[7.73797,47.52732],[7.74902,47.52498],[7.75786,47.52605],[7.78763,47.52012],[7.79014,47.51864],[7.78887,47.50683],[7.7928,47.50068],[7.78663,47.49312],[7.79889,47.49565],[7.79816,47.4994],[7.7994,47.49748],[7.80742,47.49714],[7.81471,47.5048],[7.83198,47.51474],[7.83321,47.53382],[7.84653,47.53266],[7.85233,47.53524],[7.86257,47.52692],[7.86396,47.51931],[7.87666,47.52269],[7.87567,47.51319],[7.89399,47.50606],[7.90477,47.49218],[7.90482,47.48491],[7.93329,47.48141],[7.94702,47.48489],[7.94003,47.46202],[7.94885,47.46378],[7.95761,47.45881],[7.95785,47.45128],[7.94678,47.44319],[7.95003,47.43172],[7.96183,47.42183],[7.95657,47.41968],[7.95504,47.41561],[7.94839,47.41627],[7.93493,47.41177],[7.93672,47.40806],[7.93266,47.40527],[7.90974,47.39852],[7.89022,47.40714],[7.88333,47.4061],[7.88344,47.4012],[7.8777,47.40126],[7.86914,47.39551],[7.87943,47.38799],[7.87881,47.38351],[7.86265,47.38198],[7.84012,47.37476],[7.83055,47.36512],[7.80217,47.3611],[7.79637,47.35347],[7.79356,47.33905],[7.78529,47.33788],[7.76896,47.33891],[7.76642,47.34273],[7.75152,47.34433],[7.73415,47.35776],[7.72791,47.36886],[7.70195,47.37245],[7.6442,47.36721],[7.64176,47.38047],[7.63558,47.38059],[7.63332,47.38291],[7.63331,47.38534],[7.63725,47.38607],[7.63272,47.41003],[7.66405,47.41002],[7.6798,47.41751],[7.68658,47.43366],[7.68297,47.43872],[7.68485,47.44784],[7.69227,47.45421],[7.69883,47.45586],[7.69993,47.46191],[7.70988,47.46938],[7.69976,47.48063],[7.66833,47.48635],[7.66612,47.49687],[7.65217,47.49581],[7.64865,47.49183],[7.65539,47.49021],[7.65051,47.48826],[7.65593,47.48739],[7.64442,47.48564],[7.64097,47.48273],[7.6073,47.4894],[7.60885,47.48353],[7.60563,47.47936],[7.60815,47.47521],[7.60449,47.47045],[7.61887,47.46745],[7.62607,47.46291],[7.62217,47.46195],[7.61646,47.44523],[7.6158,47.43275],[7.59207,47.43271],[7.58121,47.42878],[7.57842,47.43491],[7.5689,47.4369],[7.5683,47.42233],[7.58074,47.4147],[7.52524,47.41163],[7.53117,47.40353],[7.51862,47.38822],[7.5113,47.38974],[7.50226,47.38481],[7.49233,47.38523],[7.47841,47.39056],[7.47747,47.40128],[7.46448,47.40251],[7.46092,47.40068],[7.45002,47.40393],[7.44951,47.39976],[7.4434,47.40231],[7.44131,47.40018],[7.44357,47.3889],[7.43732,47.38089],[7.41169,47.38057],[7.41628,47.38479],[7.41449,47.3943],[7.39894,47.39684],[7.39592,47.40338],[7.38869,47.40302],[7.38405,47.41236],[7.37968,47.41281],[7.37584,47.41401],[7.37028,47.41368]]],"terms_url":"https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf","terms_text":"Geodaten des Kantons Basel-Landschaft 2015","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"KTBASELSTADT2015","name":"Kanton Basel-Stadt 2015","type":"tms","template":"https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[8,21],"polygon":[[[7.492,47.4817],[7.492,47.6342],[7.784,47.6342],[7.784,47.4817],[7.492,47.4817]]],"terms_text":"Kanton Basel-Stadt OF 2015","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Bern-dsm-hillshade-2015","name":"Kanton Bern, Digitales Oberflaechenmodell 50cm, Relief","type":"wms","template":"https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDOM50CM_LORELIEF_STANDARD&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[8,22],"polygon":[[[6.82526,47.07901],[7.28497,46.74221],[7.06335,46.27329],[8.20129,46.43975],[8.44334,46.59001],[8.47595,46.76315],[8.41244,46.79841],[8.13984,46.7869],[7.96543,46.80687],[7.90089,46.8914],[7.97676,47.00414],[7.88784,47.05609],[7.90363,47.17665],[7.81952,47.29413],[7.55859,47.33231],[7.16583,47.31183],[6.82388,47.18131],[6.82526,47.07901]]],"terms_text":"Digitales Oberflächenmodell LIDAR 50cm © Amt für Wald des Kantons Bern"},{"id":"Bern-dtm-hillshade-2015","name":"Kanton Bern, Digitales Terrainmodell 50cm, Relief","type":"wms","template":"https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDTM50CM_LTRELIEF_STANDARD&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[8,22],"polygon":[[[6.82526,47.07901],[7.28497,46.74221],[7.06335,46.27329],[8.20129,46.43975],[8.44334,46.59001],[8.47595,46.76315],[8.41244,46.79841],[8.13984,46.7869],[7.96543,46.80687],[7.90089,46.8914],[7.97676,47.00414],[7.88784,47.05609],[7.90363,47.17665],[7.81952,47.29413],[7.55859,47.33231],[7.16583,47.31183],[6.82388,47.18131],[6.82526,47.07901]]],"terms_text":"Digitales Terrainmodell LIDAR 50cm © Amt für Wald des Kantons Bern"},{"id":"Kanton-Schaffhausen-Luftbild-2013","name":"Kanton Schaffhausen, Luftbild 2013","type":"wms","template":"https://wms.geo.sh.ch/raster?LAYERS=Luftbild_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.6,47.56],[8.6,47.52],[8.52,47.52],[8.52,47.6],[8.44,47.6],[8.44,47.64],[8.36,47.64],[8.36,47.72],[8.4,47.72],[8.4,47.76],[8.44,47.76],[8.44,47.8],[8.52,47.8],[8.52,47.84],[8.68,47.84],[8.68,47.8],[8.76,47.8],[8.76,47.76],[8.88,47.76],[8.88,47.72],[8.92,47.72],[8.92,47.64],[8.76,47.64],[8.76,47.68],[8.68,47.68],[8.68,47.64],[8.64,47.64],[8.64,47.56],[8.6,47.56]]],"terms_text":"Kanton Schaffhausen, Luftbild 2013","best":true},{"id":"Kanton-Schaffhausen-DSM-2013","name":"Kanton Schaffhausen, Relief 2013","type":"wms","template":"https://wms.geo.sh.ch/raster?LAYERS=Relief_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.6,47.56],[8.6,47.52],[8.52,47.52],[8.52,47.6],[8.44,47.6],[8.44,47.64],[8.36,47.64],[8.36,47.72],[8.4,47.72],[8.4,47.76],[8.44,47.76],[8.44,47.8],[8.52,47.8],[8.52,47.84],[8.68,47.84],[8.68,47.8],[8.76,47.8],[8.76,47.76],[8.88,47.76],[8.88,47.72],[8.92,47.72],[8.92,47.64],[8.76,47.64],[8.76,47.68],[8.68,47.68],[8.68,47.64],[8.64,47.64],[8.64,47.56],[8.6,47.56]]],"terms_text":"Kanton Schaffhausen, Relief 2013"},{"id":"Solothurn-sogis2014-dom-wms","name":"Kanton Solothurn, DOM Relief 2014 50cm","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dom_relief&FORMAT=image/jpeg&CRS={proj}&STYLES=&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.48,47.1],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.52,47.34],[7.52,47.36],[7.42,47.36],[7.42,47.4],[7.36,47.4],[7.36,47.44],[7.38,47.44],[7.38,47.46],[7.4,47.46],[7.4,47.5],[7.42,47.5],[7.42,47.52],[7.46,47.52],[7.46,47.5],[7.5,47.5],[7.5,47.52],[7.54,47.52],[7.54,47.5],[7.56,47.5],[7.56,47.48],[7.54,47.48],[7.54,47.44],[7.48,47.44],[7.48,47.42],[7.5,47.42],[7.5,47.4],[7.52,47.4],[7.52,47.42],[7.56,47.42],[7.56,47.46],[7.58,47.46],[7.58,47.44],[7.6,47.44],[7.6,47.5],[7.64,47.5],[7.64,47.52],[7.68,47.52],[7.68,47.5],[7.72,47.5],[7.72,47.44],[7.7,47.44],[7.7,47.4],[7.66,47.4],[7.66,47.38],[7.74,47.38],[7.74,47.36],[7.78,47.36],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1]]],"terms_text":"DOM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"},{"id":"Solothurn-sogis2018-dsm-wms","name":"Kanton Solothurn, DSM Relief 2018","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.bl.agi.lidar_2018.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.6909,47.56247],[7.69077,47.54008],[7.67786,47.54008],[7.67788,47.54458],[7.67138,47.5446],[7.67142,47.54897],[7.66481,47.54906],[7.66477,47.55349],[7.65816,47.55364],[7.65824,47.55801],[7.65146,47.5581],[7.65146,47.56258],[7.64503,47.56264],[7.64498,47.56707],[7.61121,47.56716],[7.61112,47.5627],[7.6046,47.56264],[7.60464,47.549],[7.61099,47.54886],[7.61117,47.54468],[7.60456,47.54468],[7.60447,47.54019],[7.59833,47.54017],[7.59846,47.54917],[7.57859,47.54915],[7.57855,47.55366],[7.57181,47.55369],[7.57185,47.56719],[7.56516,47.56719],[7.5652,47.57173],[7.54487,47.57173],[7.54478,47.56728],[7.53808,47.56725],[7.53812,47.56276],[7.52487,47.56274],[7.52491,47.55827],[7.5182,47.55825],[7.51812,47.55385],[7.49821,47.55381],[7.49817,47.54933],[7.49154,47.54935],[7.49158,47.54054],[7.48489,47.54054],[7.48487,47.53123],[7.49169,47.53123],[7.49171,47.52692],[7.48497,47.52692],[7.48495,47.51771],[7.4915,47.51769],[7.4915,47.50868],[7.49808,47.50865],[7.4981,47.49083],[7.49154,47.49085],[7.49154,47.48635],[7.4848,47.48635],[7.4848,47.48189],[7.47178,47.48192],[7.47173,47.48638],[7.46523,47.48641],[7.46523,47.49089],[7.45225,47.49096],[7.45216,47.49528],[7.4456,47.49546],[7.44551,47.49995],[7.42519,47.50003],[7.42511,47.49109],[7.41845,47.49098],[7.41843,47.47707],[7.43822,47.4771],[7.43834,47.47263],[7.44491,47.47263],[7.44495,47.46849],[7.42521,47.46849],[7.42521,47.46396],[7.4186,47.46399],[7.41848,47.45496],[7.41204,47.45491],[7.41187,47.44594],[7.40517,47.446],[7.40513,47.44144],[7.39873,47.44147],[7.39856,47.43697],[7.38586,47.43688],[7.38577,47.44135],[7.35256,47.44144],[7.35256,47.44588],[7.33943,47.44594],[7.33943,47.4505],[7.32582,47.45041],[7.32569,47.44585],[7.31921,47.44585],[7.31908,47.44144],[7.31243,47.44135],[7.31243,47.43212],[7.31904,47.43209],[7.31904,47.42318],[7.3323,47.42309],[7.3323,47.41859],[7.33887,47.41856],[7.33895,47.41415],[7.34556,47.41409],[7.34569,47.40959],[7.35882,47.40962],[7.35891,47.40518],[7.37856,47.40512],[7.37856,47.39617],[7.392,47.39611],[7.392,47.39167],[7.39856,47.39161],[7.39865,47.38713],[7.40517,47.38713],[7.40517,47.38298],[7.39865,47.3831],[7.39861,47.37819],[7.40513,47.37813],[7.40517,47.37371],[7.45143,47.37371],[7.45156,47.36906],[7.5177,47.36918],[7.5177,47.36022],[7.531,47.36016],[7.531,47.34673],[7.54422,47.34662],[7.54417,47.3422],[7.55078,47.34214],[7.55078,47.33775],[7.55761,47.33776],[7.55763,47.33327],[7.56423,47.33325],[7.56422,47.32874],[7.5774,47.32872],[7.57744,47.32421],[7.59086,47.32418],[7.59088,47.32871],[7.61739,47.32858],[7.61743,47.33312],[7.68961,47.33295],[7.68961,47.3285],[7.69627,47.32835],[7.69644,47.32393],[7.7165,47.3238],[7.71661,47.32835],[7.72322,47.32838],[7.72326,47.33289],[7.72978,47.33283],[7.72991,47.33734],[7.75596,47.33725],[7.756,47.33272],[7.80289,47.33258],[7.8031,47.35061],[7.80971,47.3507],[7.80971,47.35503],[7.82945,47.35492],[7.82958,47.3596],[7.84276,47.35945],[7.8428,47.36838],[7.85602,47.36835],[7.85619,47.37285],[7.87606,47.37282],[7.87606,47.37727],[7.88932,47.37727],[7.88954,47.39517],[7.9022,47.39523],[7.9022,47.39067],[7.91584,47.39061],[7.91597,47.39511],[7.93571,47.39502],[7.93584,47.39955],[7.94254,47.39964],[7.94262,47.40397],[7.94923,47.40406],[7.94919,47.4085],[7.96241,47.4085],[7.96245,47.41294],[7.96897,47.41294],[7.96906,47.42183],[7.98906,47.42174],[7.98931,47.44909],[7.9827,47.44915],[7.98275,47.45808],[7.97627,47.45811],[7.97618,47.46264],[7.96962,47.46273],[7.96949,47.46717],[7.9564,47.46737],[7.95644,47.48967],[7.94996,47.48973],[7.94987,47.49417],[7.94292,47.4942],[7.94292,47.48979],[7.91683,47.48993],[7.91674,47.49884],[7.91022,47.49895],[7.91026,47.50791],[7.90374,47.50797],[7.9037,47.5124],[7.89048,47.51237],[7.89044,47.51701],[7.88374,47.51707],[7.88378,47.5304],[7.87055,47.53047],[7.87052,47.53491],[7.86393,47.53496],[7.86391,47.53943],[7.85734,47.53948],[7.85737,47.54405],[7.84396,47.54406],[7.84379,47.53963],[7.82381,47.5396],[7.8237,47.51716],[7.81669,47.51726],[7.81658,47.51275],[7.80358,47.51277],[7.80349,47.50826],[7.79718,47.50829],[7.79729,47.52626],[7.78399,47.52632],[7.78403,47.53082],[7.76416,47.53089],[7.76427,47.55335],[7.751,47.55339],[7.75103,47.55786],[7.70448,47.55796],[7.70448,47.56244],[7.6909,47.56247]]],"terms_text":"Kanton Solothurn, DSM Relief 2018, WMS Solothurn (SOGIS)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"},{"id":"Solothurn-sogis2019-dsm-wms","name":"Kanton Solothurn, DSM Relief 2019","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.96884,47.4311],[7.96882,47.42646],[7.98205,47.42644],[7.98204,47.42202],[7.99533,47.42199],[7.99531,47.41748],[8.00832,47.41746],[8.0083,47.41292],[8.01506,47.41291],[8.01504,47.40836],[8.02168,47.40835],[8.02166,47.40377],[8.03466,47.40375],[8.03462,47.39481],[8.0411,47.3948],[8.041,47.36778],[8.03449,47.36779],[8.03445,47.35883],[8.02772,47.35884],[8.02771,47.35434],[8.021,47.35435],[8.02095,47.34092],[8.01415,47.34093],[8.01412,47.33199],[8.00755,47.332],[8.00754,47.32743],[7.99438,47.32746],[7.99436,47.32308],[7.98747,47.3231],[7.98745,47.31858],[7.98086,47.31859],[7.98084,47.31424],[7.95446,47.31428],[7.95444,47.30972],[7.94125,47.30975],[7.94126,47.31419],[7.9347,47.3142],[7.93475,47.32781],[7.90823,47.32786],[7.90818,47.31445],[7.90154,47.31446],[7.9015,47.30548],[7.87494,47.30553],[7.87493,47.30106],[7.86842,47.30107],[7.86839,47.29218],[7.8617,47.29219],[7.86166,47.28304],[7.85501,47.28305],[7.85496,47.26965],[7.84831,47.26966],[7.8483,47.26521],[7.84167,47.26522],[7.84165,47.26077],[7.82842,47.26079],[7.8284,47.25628],[7.79535,47.25634],[7.79533,47.2519],[7.78854,47.25191],[7.78852,47.24743],[7.78209,47.24744],[7.78211,47.25192],[7.72279,47.25202],[7.7228,47.2566],[7.71619,47.25661],[7.71623,47.26558],[7.70303,47.26561],[7.70306,47.27463],[7.69643,47.27465],[7.69645,47.27905],[7.68982,47.27906],[7.68984,47.28368],[7.67636,47.2837],[7.67634,47.27905],[7.65688,47.27908],[7.65686,47.2747],[7.60392,47.27479],[7.60387,47.26134],[7.61049,47.26133],[7.61044,47.24784],[7.61702,47.24782],[7.617,47.24319],[7.62354,47.24318],[7.62351,47.23435],[7.64994,47.23431],[7.64992,47.22978],[7.64992,47.22981],[7.65658,47.2298],[7.65652,47.2118],[7.66306,47.21178],[7.66304,47.20728],[7.66959,47.20727],[7.66958,47.20272],[7.67622,47.20271],[7.6762,47.19821],[7.68278,47.1982],[7.68275,47.1892],[7.68933,47.18919],[7.68927,47.17123],[7.70242,47.17121],[7.70241,47.16664],[7.70885,47.16663],[7.7088,47.15309],[7.70236,47.1531],[7.70234,47.14872],[7.69576,47.14873],[7.69574,47.14423],[7.68239,47.14425],[7.68241,47.14875],[7.66276,47.14879],[7.66274,47.14415],[7.59682,47.14426],[7.59681,47.13996],[7.5769,47.13999],[7.57693,47.14904],[7.57042,47.14905],[7.57045,47.15793],[7.55736,47.15795],[7.55734,47.15346],[7.53764,47.1535],[7.53759,47.13991],[7.53099,47.13993],[7.53097,47.1355],[7.52431,47.13551],[7.52426,47.12195],[7.51768,47.12197],[7.51766,47.11748],[7.50465,47.11751],[7.50463,47.11297],[7.49809,47.11298],[7.49807,47.10842],[7.48487,47.10844],[7.48486,47.10402],[7.47822,47.10403],[7.47818,47.09491],[7.4847,47.0949],[7.48465,47.08143],[7.47814,47.08144],[7.47811,47.07246],[7.46496,47.07248],[7.46494,47.06801],[7.43186,47.06807],[7.43187,47.07237],[7.42546,47.07238],[7.42553,47.09039],[7.4124,47.09041],[7.41239,47.08598],[7.37955,47.08603],[7.37956,47.09022],[7.37282,47.09023],[7.37286,47.09945],[7.36617,47.09946],[7.3662,47.10834],[7.35955,47.10835],[7.35961,47.12663],[7.36606,47.12662],[7.36608,47.13104],[7.39904,47.13098],[7.39902,47.12657],[7.41894,47.12654],[7.41896,47.1307],[7.41223,47.13072],[7.41228,47.14473],[7.41885,47.14472],[7.41887,47.14902],[7.43181,47.14899],[7.43184,47.15807],[7.43859,47.15805],[7.43861,47.16233],[7.46496,47.16228],[7.46494,47.15801],[7.47164,47.158],[7.47165,47.16227],[7.478,47.16226],[7.47801,47.16695],[7.47148,47.16696],[7.4715,47.17148],[7.46487,47.17149],[7.46489,47.17589],[7.45184,47.17591],[7.45183,47.17151],[7.43871,47.17153],[7.43869,47.16701],[7.42551,47.16703],[7.42547,47.15795],[7.41887,47.15796],[7.41885,47.15342],[7.37264,47.15349],[7.37274,47.18038],[7.3659,47.1804],[7.36592,47.18494],[7.34629,47.18498],[7.34632,47.19374],[7.33955,47.19375],[7.33958,47.20289],[7.33304,47.2029],[7.33312,47.22548],[7.35273,47.22544],[7.35275,47.22993],[7.36595,47.2299],[7.36597,47.23453],[7.37912,47.23451],[7.37913,47.23895],[7.39234,47.23892],[7.39236,47.24347],[7.4056,47.24345],[7.40565,47.25694],[7.41228,47.25693],[7.4123,47.2614],[7.42542,47.26138],[7.42543,47.26592],[7.43187,47.26591],[7.43189,47.27042],[7.4583,47.27038],[7.45832,47.27492],[7.46506,47.27491],[7.4651,47.28387],[7.47169,47.28385],[7.47171,47.28847],[7.47832,47.28846],[7.47834,47.29293],[7.49152,47.29291],[7.49154,47.29737],[7.51134,47.29734],[7.51135,47.30184],[7.53122,47.3018],[7.53125,47.31073],[7.53782,47.31072],[7.53787,47.32429],[7.55104,47.32427],[7.55106,47.32882],[7.56434,47.3288],[7.56437,47.33783],[7.57086,47.33782],[7.57087,47.3423],[7.57765,47.34229],[7.57764,47.33783],[7.59081,47.33781],[7.59083,47.34227],[7.59743,47.34226],[7.59741,47.33781],[7.60407,47.3378],[7.60409,47.34225],[7.69661,47.3421],[7.6966,47.33761],[7.70993,47.33759],[7.70995,47.34208],[7.72322,47.34206],[7.72324,47.34657],[7.73643,47.34655],[7.73645,47.35093],[7.77622,47.35087],[7.77621,47.34642],[7.78269,47.34641],[7.78272,47.35523],[7.78936,47.35522],[7.7894,47.36427],[7.79613,47.36426],[7.79615,47.36877],[7.82248,47.36873],[7.82249,47.37319],[7.82926,47.37318],[7.82929,47.38217],[7.84261,47.38215],[7.84262,47.38661],[7.86243,47.38658],[7.8625,47.40454],[7.86917,47.40453],[7.86919,47.40901],[7.87587,47.409],[7.87589,47.41351],[7.90231,47.41347],[7.90229,47.4089],[7.92225,47.40887],[7.92228,47.4177],[7.93556,47.41768],[7.93558,47.42211],[7.94882,47.42209],[7.94884,47.42664],[7.95552,47.42663],[7.95553,47.43112],[7.96884,47.4311]]],"terms_text":"Kanton Solothurn, DSM Relief 2019, WMS Solothurn (SOGIS)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"},{"id":"Solothurn-sogis2014-dtm-wms","name":"Kanton Solothurn, DTM Relief 2014 50cm","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dtm_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.48,47.1],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.52,47.34],[7.52,47.36],[7.42,47.36],[7.42,47.4],[7.36,47.4],[7.36,47.44],[7.38,47.44],[7.38,47.46],[7.4,47.46],[7.4,47.5],[7.42,47.5],[7.42,47.52],[7.46,47.52],[7.46,47.5],[7.5,47.5],[7.5,47.52],[7.54,47.52],[7.54,47.5],[7.56,47.5],[7.56,47.48],[7.54,47.48],[7.54,47.44],[7.48,47.44],[7.48,47.42],[7.5,47.42],[7.5,47.4],[7.52,47.4],[7.52,47.42],[7.56,47.42],[7.56,47.46],[7.58,47.46],[7.58,47.44],[7.6,47.44],[7.6,47.5],[7.64,47.5],[7.64,47.52],[7.68,47.52],[7.68,47.5],[7.72,47.5],[7.72,47.44],[7.7,47.44],[7.7,47.4],[7.66,47.4],[7.66,47.38],[7.74,47.38],[7.74,47.36],[7.78,47.36],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1]]],"terms_text":"DTM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"},{"id":"Solothurn-sogis2018-dtm-wms","name":"Kanton Solothurn, DTM Relief 2018","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.bl.agi.lidar_2018.dtm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[8,22],"polygon":[[[7.6909,47.56247],[7.69077,47.54008],[7.67786,47.54008],[7.67788,47.54458],[7.67138,47.5446],[7.67142,47.54897],[7.66481,47.54906],[7.66477,47.55349],[7.65816,47.55364],[7.65824,47.55801],[7.65146,47.5581],[7.65146,47.56258],[7.64503,47.56264],[7.64498,47.56707],[7.61121,47.56716],[7.61112,47.5627],[7.6046,47.56264],[7.60464,47.549],[7.61099,47.54886],[7.61117,47.54468],[7.60456,47.54468],[7.60447,47.54019],[7.59833,47.54017],[7.59846,47.54917],[7.57859,47.54915],[7.57855,47.55366],[7.57181,47.55369],[7.57185,47.56719],[7.56516,47.56719],[7.5652,47.57173],[7.54487,47.57173],[7.54478,47.56728],[7.53808,47.56725],[7.53812,47.56276],[7.52487,47.56274],[7.52491,47.55827],[7.5182,47.55825],[7.51812,47.55385],[7.49821,47.55381],[7.49817,47.54933],[7.49154,47.54935],[7.49158,47.54054],[7.48489,47.54054],[7.48487,47.53123],[7.49169,47.53123],[7.49171,47.52692],[7.48497,47.52692],[7.48495,47.51771],[7.4915,47.51769],[7.4915,47.50868],[7.49808,47.50865],[7.4981,47.49083],[7.49154,47.49085],[7.49154,47.48635],[7.4848,47.48635],[7.4848,47.48189],[7.47178,47.48192],[7.47173,47.48638],[7.46523,47.48641],[7.46523,47.49089],[7.45225,47.49096],[7.45216,47.49528],[7.4456,47.49546],[7.44551,47.49995],[7.42519,47.50003],[7.42511,47.49109],[7.41845,47.49098],[7.41843,47.47707],[7.43822,47.4771],[7.43834,47.47263],[7.44491,47.47263],[7.44495,47.46849],[7.42521,47.46849],[7.42521,47.46396],[7.4186,47.46399],[7.41848,47.45496],[7.41204,47.45491],[7.41187,47.44594],[7.40517,47.446],[7.40513,47.44144],[7.39873,47.44147],[7.39856,47.43697],[7.38586,47.43688],[7.38577,47.44135],[7.35256,47.44144],[7.35256,47.44588],[7.33943,47.44594],[7.33943,47.4505],[7.32582,47.45041],[7.32569,47.44585],[7.31921,47.44585],[7.31908,47.44144],[7.31243,47.44135],[7.31243,47.43212],[7.31904,47.43209],[7.31904,47.42318],[7.3323,47.42309],[7.3323,47.41859],[7.33887,47.41856],[7.33895,47.41415],[7.34556,47.41409],[7.34569,47.40959],[7.35882,47.40962],[7.35891,47.40518],[7.37856,47.40512],[7.37856,47.39617],[7.392,47.39611],[7.392,47.39167],[7.39856,47.39161],[7.39865,47.38713],[7.40517,47.38713],[7.40517,47.38298],[7.39865,47.3831],[7.39861,47.37819],[7.40513,47.37813],[7.40517,47.37371],[7.45143,47.37371],[7.45156,47.36906],[7.5177,47.36918],[7.5177,47.36022],[7.531,47.36016],[7.531,47.34673],[7.54422,47.34662],[7.54417,47.3422],[7.55078,47.34214],[7.55078,47.33775],[7.55761,47.33776],[7.55763,47.33327],[7.56423,47.33325],[7.56422,47.32874],[7.5774,47.32872],[7.57744,47.32421],[7.59086,47.32418],[7.59088,47.32871],[7.61739,47.32858],[7.61743,47.33312],[7.68961,47.33295],[7.68961,47.3285],[7.69627,47.32835],[7.69644,47.32393],[7.7165,47.3238],[7.71661,47.32835],[7.72322,47.32838],[7.72326,47.33289],[7.72978,47.33283],[7.72991,47.33734],[7.75596,47.33725],[7.756,47.33272],[7.80289,47.33258],[7.8031,47.35061],[7.80971,47.3507],[7.80971,47.35503],[7.82945,47.35492],[7.82958,47.3596],[7.84276,47.35945],[7.8428,47.36838],[7.85602,47.36835],[7.85619,47.37285],[7.87606,47.37282],[7.87606,47.37727],[7.88932,47.37727],[7.88954,47.39517],[7.9022,47.39523],[7.9022,47.39067],[7.91584,47.39061],[7.91597,47.39511],[7.93571,47.39502],[7.93584,47.39955],[7.94254,47.39964],[7.94262,47.40397],[7.94923,47.40406],[7.94919,47.4085],[7.96241,47.4085],[7.96245,47.41294],[7.96897,47.41294],[7.96906,47.42183],[7.98906,47.42174],[7.98931,47.44909],[7.9827,47.44915],[7.98275,47.45808],[7.97627,47.45811],[7.97618,47.46264],[7.96962,47.46273],[7.96949,47.46717],[7.9564,47.46737],[7.95644,47.48967],[7.94996,47.48973],[7.94987,47.49417],[7.94292,47.4942],[7.94292,47.48979],[7.91683,47.48993],[7.91674,47.49884],[7.91022,47.49895],[7.91026,47.50791],[7.90374,47.50797],[7.9037,47.5124],[7.89048,47.51237],[7.89044,47.51701],[7.88374,47.51707],[7.88378,47.5304],[7.87055,47.53047],[7.87052,47.53491],[7.86393,47.53496],[7.86391,47.53943],[7.85734,47.53948],[7.85737,47.54405],[7.84396,47.54406],[7.84379,47.53963],[7.82381,47.5396],[7.8237,47.51716],[7.81669,47.51726],[7.81658,47.51275],[7.80358,47.51277],[7.80349,47.50826],[7.79718,47.50829],[7.79729,47.52626],[7.78399,47.52632],[7.78403,47.53082],[7.76416,47.53089],[7.76427,47.55335],[7.751,47.55339],[7.75103,47.55786],[7.70448,47.55796],[7.70448,47.56244],[7.6909,47.56247]]],"terms_text":"Kanton Solothurn, DTM Relief 2018, WMS Solothurn (SOGIS)"},{"id":"Solothurn-sogis2019-dtm-wms","name":"Kanton Solothurn, DTM Relief 2019","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dtm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.96884,47.4311],[7.96882,47.42646],[7.98205,47.42644],[7.98204,47.42202],[7.99533,47.42199],[7.99531,47.41748],[8.00832,47.41746],[8.0083,47.41292],[8.01506,47.41291],[8.01504,47.40836],[8.02168,47.40835],[8.02166,47.40377],[8.03466,47.40375],[8.03462,47.39481],[8.0411,47.3948],[8.041,47.36778],[8.03449,47.36779],[8.03445,47.35883],[8.02772,47.35884],[8.02771,47.35434],[8.021,47.35435],[8.02095,47.34092],[8.01415,47.34093],[8.01412,47.33199],[8.00755,47.332],[8.00754,47.32743],[7.99438,47.32746],[7.99436,47.32308],[7.98747,47.3231],[7.98745,47.31858],[7.98086,47.31859],[7.98084,47.31424],[7.95446,47.31428],[7.95444,47.30972],[7.94125,47.30975],[7.94126,47.31419],[7.9347,47.3142],[7.93475,47.32781],[7.90823,47.32786],[7.90818,47.31445],[7.90154,47.31446],[7.9015,47.30548],[7.87494,47.30553],[7.87493,47.30106],[7.86842,47.30107],[7.86839,47.29218],[7.8617,47.29219],[7.86166,47.28304],[7.85501,47.28305],[7.85496,47.26965],[7.84831,47.26966],[7.8483,47.26521],[7.84167,47.26522],[7.84165,47.26077],[7.82842,47.26079],[7.8284,47.25628],[7.79535,47.25634],[7.79533,47.2519],[7.78854,47.25191],[7.78852,47.24743],[7.78209,47.24744],[7.78211,47.25192],[7.72279,47.25202],[7.7228,47.2566],[7.71619,47.25661],[7.71623,47.26558],[7.70303,47.26561],[7.70306,47.27463],[7.69643,47.27465],[7.69645,47.27905],[7.68982,47.27906],[7.68984,47.28368],[7.67636,47.2837],[7.67634,47.27905],[7.65688,47.27908],[7.65686,47.2747],[7.60392,47.27479],[7.60387,47.26134],[7.61049,47.26133],[7.61044,47.24784],[7.61702,47.24782],[7.617,47.24319],[7.62354,47.24318],[7.62351,47.23435],[7.64994,47.23431],[7.64992,47.22978],[7.64992,47.22981],[7.65658,47.2298],[7.65652,47.2118],[7.66306,47.21178],[7.66304,47.20728],[7.66959,47.20727],[7.66958,47.20272],[7.67622,47.20271],[7.6762,47.19821],[7.68278,47.1982],[7.68275,47.1892],[7.68933,47.18919],[7.68927,47.17123],[7.70242,47.17121],[7.70241,47.16664],[7.70885,47.16663],[7.7088,47.15309],[7.70236,47.1531],[7.70234,47.14872],[7.69576,47.14873],[7.69574,47.14423],[7.68239,47.14425],[7.68241,47.14875],[7.66276,47.14879],[7.66274,47.14415],[7.59682,47.14426],[7.59681,47.13996],[7.5769,47.13999],[7.57693,47.14904],[7.57042,47.14905],[7.57045,47.15793],[7.55736,47.15795],[7.55734,47.15346],[7.53764,47.1535],[7.53759,47.13991],[7.53099,47.13993],[7.53097,47.1355],[7.52431,47.13551],[7.52426,47.12195],[7.51768,47.12197],[7.51766,47.11748],[7.50465,47.11751],[7.50463,47.11297],[7.49809,47.11298],[7.49807,47.10842],[7.48487,47.10844],[7.48486,47.10402],[7.47822,47.10403],[7.47818,47.09491],[7.4847,47.0949],[7.48465,47.08143],[7.47814,47.08144],[7.47811,47.07246],[7.46496,47.07248],[7.46494,47.06801],[7.43186,47.06807],[7.43187,47.07237],[7.42546,47.07238],[7.42553,47.09039],[7.4124,47.09041],[7.41239,47.08598],[7.37955,47.08603],[7.37956,47.09022],[7.37282,47.09023],[7.37286,47.09945],[7.36617,47.09946],[7.3662,47.10834],[7.35955,47.10835],[7.35961,47.12663],[7.36606,47.12662],[7.36608,47.13104],[7.39904,47.13098],[7.39902,47.12657],[7.41894,47.12654],[7.41896,47.1307],[7.41223,47.13072],[7.41228,47.14473],[7.41885,47.14472],[7.41887,47.14902],[7.43181,47.14899],[7.43184,47.15807],[7.43859,47.15805],[7.43861,47.16233],[7.46496,47.16228],[7.46494,47.15801],[7.47164,47.158],[7.47165,47.16227],[7.478,47.16226],[7.47801,47.16695],[7.47148,47.16696],[7.4715,47.17148],[7.46487,47.17149],[7.46489,47.17589],[7.45184,47.17591],[7.45183,47.17151],[7.43871,47.17153],[7.43869,47.16701],[7.42551,47.16703],[7.42547,47.15795],[7.41887,47.15796],[7.41885,47.15342],[7.37264,47.15349],[7.37274,47.18038],[7.3659,47.1804],[7.36592,47.18494],[7.34629,47.18498],[7.34632,47.19374],[7.33955,47.19375],[7.33958,47.20289],[7.33304,47.2029],[7.33312,47.22548],[7.35273,47.22544],[7.35275,47.22993],[7.36595,47.2299],[7.36597,47.23453],[7.37912,47.23451],[7.37913,47.23895],[7.39234,47.23892],[7.39236,47.24347],[7.4056,47.24345],[7.40565,47.25694],[7.41228,47.25693],[7.4123,47.2614],[7.42542,47.26138],[7.42543,47.26592],[7.43187,47.26591],[7.43189,47.27042],[7.4583,47.27038],[7.45832,47.27492],[7.46506,47.27491],[7.4651,47.28387],[7.47169,47.28385],[7.47171,47.28847],[7.47832,47.28846],[7.47834,47.29293],[7.49152,47.29291],[7.49154,47.29737],[7.51134,47.29734],[7.51135,47.30184],[7.53122,47.3018],[7.53125,47.31073],[7.53782,47.31072],[7.53787,47.32429],[7.55104,47.32427],[7.55106,47.32882],[7.56434,47.3288],[7.56437,47.33783],[7.57086,47.33782],[7.57087,47.3423],[7.57765,47.34229],[7.57764,47.33783],[7.59081,47.33781],[7.59083,47.34227],[7.59743,47.34226],[7.59741,47.33781],[7.60407,47.3378],[7.60409,47.34225],[7.69661,47.3421],[7.6966,47.33761],[7.70993,47.33759],[7.70995,47.34208],[7.72322,47.34206],[7.72324,47.34657],[7.73643,47.34655],[7.73645,47.35093],[7.77622,47.35087],[7.77621,47.34642],[7.78269,47.34641],[7.78272,47.35523],[7.78936,47.35522],[7.7894,47.36427],[7.79613,47.36426],[7.79615,47.36877],[7.82248,47.36873],[7.82249,47.37319],[7.82926,47.37318],[7.82929,47.38217],[7.84261,47.38215],[7.84262,47.38661],[7.86243,47.38658],[7.8625,47.40454],[7.86917,47.40453],[7.86919,47.40901],[7.87587,47.409],[7.87589,47.41351],[7.90231,47.41347],[7.90229,47.4089],[7.92225,47.40887],[7.92228,47.4177],[7.93556,47.41768],[7.93558,47.42211],[7.94882,47.42209],[7.94884,47.42664],[7.95552,47.42663],[7.95553,47.43112],[7.96884,47.4311]]],"terms_text":"Kanton Solothurn, DTM Relief 2019, WMS Solothurn (SOGIS)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"},{"id":"Solothurn-sogis-ortho2014-wms","name":"Kanton Solothurn, Orthofoto 2014 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2014.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.44,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.46,47.26],[7.46,47.28],[7.48,47.28],[7.48,47.26],[7.5,47.26],[7.5,47.28],[7.56,47.28],[7.56,47.3],[7.6,47.3],[7.6,47.28],[7.62,47.28],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1],[7.48,47.06],[7.44,47.06]]],"terms_text":"Kanton Solothurn, Orthofoto 2014 RGB"},{"id":"Solothurn-sogis-ortho2015-wms","name":"Kanton Solothurn, Orthofoto 2015 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2015.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.32],[7.72,47.32],[7.72,47.34],[7.78,47.34],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26]]],"terms_text":"Kanton Solothurn, Orthofoto 2015 RGB"},{"id":"Solothurn-sogis-ortho2016-wms","name":"Kanton Solothurn, Orthofoto 2016 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2016_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.48,47.08],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.56,47.34],[7.56,47.36],[7.62,47.36],[7.62,47.38],[7.74,47.38],[7.74,47.36],[7.8,47.36],[7.8,47.32],[7.76,47.32],[7.76,47.3],[7.72,47.3],[7.72,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1],[7.48,47.08]]],"terms_text":"Kanton Solothurn, Orthofoto 2016 RGB","best":true},{"id":"Solothurn-sogis-ortho2017-wms","name":"Kanton Solothurn, Orthofoto 2017 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2017_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.32],[7.72,47.32],[7.72,47.34],[7.78,47.34],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26]]],"terms_text":"Kanton Solothurn, Orthofoto 2017 RGB","best":true},{"id":"kt_tg_dtm_hillshade","name":"Kanton Thurgau Relief DTM","type":"wms","template":"https://ows-raster.geo.tg.ch/geofy_access_proxy/reliefschattierung?LAYERS=DTMRelief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/reliefschattierung","terms_text":"Kanton Thurgau, DTM Relief 2014","description":"Digitale Repräsentation des Geländes"},{"id":"kt_tg_av","name":"Kanton Thurgau, Basisplan-AV","type":"wms","template":"https://ows.geo.tg.ch/geofy_access_proxy/basisplanf?LAYERS=Basisplan_farbig&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[10,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/basisplan-av","terms_text":"Kanton Thurgau, Basisplan-AV","description":"Basisplan-AV des Kantons Thurgau farbig & schwarzweiss mit Liegenschaften, Nomenklatur, Landes-, Kantons- und Gemeindegrenzen, Einzelobjekten, Bodenbedeckung, Strassennamen, Höhenkurven und Geländemodell"},{"id":"kt_tg_ortho_2017","name":"Kanton Thurgau, Orthofoto2017 RGB","type":"wms","template":"https://ows-raster.geo.tg.ch/geofy_access_proxy/orthofoto2017?LAYERS=Orthofoto2017_RGB&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/en/dataset/orthofoto-2017-dop17","terms_text":"Kanton Thurgau, Orthofoto2017 RGB","best":true,"description":"Digitales multispektrales Orthofotomosaik des Kantons Thurgau"},{"id":"kt_tg_radrouten","name":"Kanton Thurgau, Rad-Routen","type":"wms","template":"https://ows.geo.tg.ch/geofy_access_proxy/radwege?LAYERS=Radwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[10,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/rad-routen","terms_text":"Kanton Thurgau, Rad-Routen","description":"Langsamverkehr: Radweg-Netz (Routen) signalisiert durch Wegweiser"},{"id":"kt_tg_ww","name":"Kanton Thurgau, Wanderwege","type":"wms","template":"https://ows.geo.tg.ch/geofy_access_proxy/wanderwege?LAYERS=Wanderwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[10,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/wanderwege","terms_text":"Kanton Thurgau, Wanderwege","description":"Langsamverkehr: Verlauf der Wanderwege mit symbolischer Darstellung der Wegweiser, Unterführungen, Treppen und Brücken. Informationen über die Wegoberfläche und Rollstuhlgängigkeit."},{"id":"Zug-2019-wms","name":"Kanton Zug (Walchwil und Zug (Alpli)) 2019","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2019_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.49387,47.11529],[8.5121,47.13373],[8.55582,47.129],[8.58655,47.07954],[8.57399,47.07633],[8.51862,47.08507],[8.51862,47.08507],[8.51839,47.08532],[8.49387,47.11529]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Orthofoto für das Gebiet von Walchwil und Zug (Alpli). Die Befliegung für das genannte Orthofoto fand am 29. März 2019 statt."},{"id":"Zug-2011","name":"Kanton Zug 2011","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2011_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.38726,47.10908],[8.38983,47.25303],[8.42944,47.25265],[8.42894,47.22567],[8.60057,47.22407],[8.60037,47.21507],[8.61357,47.21495],[8.61338,47.20594],[8.62658,47.20582],[8.62618,47.18783],[8.63934,47.18769],[8.63914,47.1787],[8.66555,47.17844],[8.66534,47.16943],[8.7049,47.16899],[8.70427,47.14203],[8.69105,47.14215],[8.69046,47.11516],[8.67731,47.1153],[8.67706,47.10634],[8.66389,47.10647],[8.66371,47.0975],[8.65052,47.09761],[8.65031,47.08863],[8.59764,47.08915],[8.59746,47.08015],[8.49204,47.0812],[8.49245,47.09917],[8.43969,47.09967],[8.43996,47.10863],[8.38726,47.10908]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Ausdehnung: ganzer Kanton Aufloesung: 10cm per Pixel Bildflug: 1.4.2011"},{"id":"Zug-2018","name":"Kanton Zug Gemeinde Zug Süd 2018","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2018_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[8.50052,47.11291],[8.49638,47.11761],[8.49451,47.12364],[8.49538,47.12653],[8.50462,47.13724],[8.50322,47.13933],[8.50466,47.14722],[8.51099,47.15916],[8.56415,47.15299],[8.5652,47.14929],[8.54924,47.13843],[8.55098,47.12132],[8.50052,47.11291]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Orthofoto fuer den Suedteil der Gemeinde Zug. Geflogen per Drohne an mehreren Tagen Anfangs April 2018. 10cm Aufloesung per Pixel. Abdeckung: Suedteil der Gemeinde Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung."},{"id":"Zug-2016","name":"Kanton Zug Nord 2016","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2016_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.41093,47.16521],[8.40759,47.16918],[8.40754,47.23725],[8.419,47.23722],[8.42336,47.22958],[8.43891,47.22945],[8.48056,47.2125],[8.5294,47.22688],[8.57951,47.22275],[8.57946,47.17083],[8.57535,47.14926],[8.56428,47.14944],[8.53594,47.15205],[8.50658,47.15268],[8.50686,47.162],[8.44723,47.16256],[8.41093,47.16521]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Orthofoto fuer den Nordteil des Kantons Zug. Geflogen am 20.04.2016. 10cm Aufloesung per Pixel. Abdeckung: Gemeinden Cham, Steinhausen und Baar, sowie Teile von Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung."},{"id":"OGDLidarZH-DOM","name":"Kanton Zurich, Oberflächenschummerung 50cm","type":"wms","template":"https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&STYLES=&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dom2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung"},{"id":"OGDOrthoZH2016","name":"Kanton Zurich, Orthofoto ZH Frühjahr 2015/16 RGB 10cm","type":"wms","template":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_w_15&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2015/16 RGB"},{"id":"OGDOrthoZH2015","name":"Kanton Zurich, Orthofoto ZH Sommer 2014/15 RGB 10cm","type":"wms","template":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_s_14&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2014/15 RGB"},{"id":"OGDOrthoZH2018","name":"Kanton Zurich, Orthofoto ZH Sommer 2018 RGB 10cm","type":"wms","template":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&STYLES=&LAYERS=ortho&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2018 RGB","best":true},{"id":"OGDLidarZH-DTM","name":"Kanton Zurich, Terrainschummerung 50cm","type":"wms","template":"https://wms.zh.ch/OGDLidarZH?FORMAT=image/jpeg&STYLES=&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=dtm2014hillshade&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung"},{"id":"kartverket-abas","name":"Kartverket Administrative Boundaries overlay","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.adm_enheter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fylker_gjel,kommuner_gjel&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[1,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/kunnskap/Norges-grenser/","terms_text":"© Kartverket","description":"Official administrative boundaries at the national, county and municipality levels","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"kartverket-luftfartshindre","name":"Kartverket Aviation Obstructions overlay","type":"wms","template":"https://openwms.statkart.no/skwms1/wms.nrl?LAYERS=nrl3_wms&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[7,20],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kartverket.no/kart/Nasjonalt-register-over-luftfartshindre/","terms_text":"© Kartverket","description":"Vertical obstructions to aircrafts, above 15m in rural areas and 30m in urban areas (e.g. masts, towers, high buildings, power lines)","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"kartverket-matrikkel","name":"Kartverket Cadastral overlay","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.matrikkel?LAYERS=matrikkel_WMS&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[14,20],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://seeiendom.kartverket.no","terms_text":"© Kartverket","description":"Real estate boundaries from the official land register (`matrikkelen´). Monthly update.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"kartverket-hoydekurver","name":"Kartverket Contour Lines overlay","type":"wms","template":"https://openwms.statkart.no/skwms1/wms.topo4?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=hoydetall5linje,hoydetall5punkt,hoydepunkt,vannpunkt,hoydekurver_1m,hoydekurver_5m,N50Hoydekurver,N250Hoydekurver,N500Hoydekurver,N1000Hoydekurver,N2000Hoydekurver&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[9,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/Prosjekter/Nasjonal-detaljert-hoydemodell/","terms_text":"© Kartverket","description":"Contours for Norway","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"kartverket-dom-skygge","name":"Kartverket DOM Digital Surface Model","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.hoyde-dom_somlos_skyggerelieff?LAYERS=las_dom_skyggerelieff_somlos&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://hoydedata.no/","terms_text":"© Kartverket","description":"Shaded relief representation of the Norwegian digital surface model (DOM), i.e. earth surface including trees, buildings and other objects on top of it.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png"},{"id":"kartverket-dtm-skygge","name":"Kartverket DTM Digital Terrain Model","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.hoyde-dtm_somlos_skyggerelieff?LAYERS=las_dtm_skyggerelieff_somlos&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://hoydedata.no/","terms_text":"© Kartverket","description":"Shaded relief representation of the Norwegian digital terrain model (DTM), i.e. earth surface without trees, buildings and other objects.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png"},{"id":"kartverket-ok-1st","name":"Kartverket Economic Maps (historic)","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.n5raster2?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n5raster_foerstegang_metadata,n5raster_foerstegang&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[11,20],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/kunnskap/historie/kartverkets-historiske-arkiv/","terms_text":"© Kartverket","description":"1st edition of historic Economic maps for Norway 1960-90s (`Økonomisk kartverk´). Available from zoom 16. Please correct local imagery offset.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png"},{"id":"kartverket-friluft","name":"Kartverket Hiking Trails","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.friluftsruter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Fotrute&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/","terms_text":"© Kartverket","description":"Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"kartverket-fjellskygge","name":"Kartverket Hillshade overlay","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=fjellskygge&zoom={zoom}&x={x}&y={y}","zoomExtent":[9,15],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kartkatalog.geonorge.no/metadata/kartverket/fjellskygge-cache/cca7c129-fe66-4c96-9091-40d92290dd81","terms_text":"© Kartverket","description":"Hillshade for Norway","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"kartverket-historic","name":"Kartverket Historic maps","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.historiskekart?LAYERS=amt1&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,15],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/kart/historiske-kart/","terms_text":"© Kartverket","description":"Historic maps - for the time being `Amtskartserien´ 1826-1917.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png"},{"id":"kartverket-topo4","name":"Kartverket N50 topo","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}","zoomExtent":[3,15],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://wiki.openstreetmap.org/wiki/No:Kartverket_import","terms_text":"© Kartverket","description":"Topographic map N50, equivalent to Norway 1:50.000 paper map series.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png"},{"id":"kartverket-sjokart","name":"Kartverket Nautical Charts","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=sjokartraster&zoom={zoom}&x={x}&y={y}","zoomExtent":[3,20],"polygon":[[[-15.01273,-60.16205],[33.3326,-60.17016],[33.32144,-73.0009],[-15.0239,-72.99613],[-15.01273,-60.16205]],[[-173.00076,-70.54952],[-125.00321,-70.54878],[-125.00167,-78.99977],[-172.99922,-79.0002],[-173.00076,-70.54952]],[[3.24857,56.08599],[2.60924,56.59428],[1.47215,58.45924],[1.77704,61.36251],[-0.49301,63.88665],[-13.73292,69.76376],[-12.43655,72.58741],[-5.11965,74.39626],[-3.60356,79.12998],[5.85587,82.34863],[34.98861,82.3401],[37.96874,78.62784],[37.99619,75.79673],[36.95796,73.68962],[32.07458,70.27336],[30.3511,69.56882],[21.46179,69.57098],[18.3032,68.36681],[14.47997,66.2558],[11.50266,63.28307],[11.50166,58.95444],[11.08246,58.96771],[10.03051,58.25173],[8.88244,57.69534],[3.24857,56.08599]]],"terms_url":"https://www.kartverket.no/Kart/Sjokart/","terms_text":"© Kartverket","description":"Norwegian nautical charts (includes Spitsbergen/Svalbard and Antarctica). Raster representation of paper charts. Updated biweekly.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png"},{"id":"kartverket-vegnett","name":"Kartverket Road Network","type":"wms","template":"https://openwms.statkart.no/skwms1/wms.vegnett?LAYERS=all&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[3,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://www.kartverket.no/data/kartdata/vegdata/","terms_text":"© Kartverket","description":"Norwegian road network from the National Road database (NVDB). Colours represent national, county, municipal, private and forest roads + footways/cycleways.","icon":"https://www.kartverket.no/Content/Images/logo-graphic-512.png","overlay":true},{"id":"Katowice-buildings","name":"Katowice: Buildings","type":"wms","template":"http://mapserver.um.katowice.pl/services/ortowms/MapServer/WMSServer?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=4,5,6&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[18.90884,50.24006],[18.90851,50.23542],[18.94279,50.23515],[18.94399,50.27138],[18.95469,50.27485],[18.95571,50.2894],[18.96692,50.29364],[18.98752,50.2848],[18.99888,50.2847],[18.99907,50.29368],[18.98892,50.29377],[18.98934,50.30244],[19.0094,50.30196],[19.03401,50.28842],[19.05533,50.30139],[19.07901,50.30087],[19.07908,50.29297],[19.12296,50.27784],[19.12267,50.25523],[19.11079,50.2428],[19.1098,50.17946],[19.12065,50.17936],[19.11957,50.14359],[19.10777,50.14386],[19.0973,50.13916],[19.09656,50.12786],[19.06379,50.12786],[19.02985,50.14009],[19.03007,50.16177],[19.01909,50.16698],[19.00848,50.16707],[18.96329,50.1498],[18.92907,50.15008],[18.92915,50.15426],[18.91854,50.15419],[18.91878,50.20421],[18.90792,50.20429],[18.90808,50.21297],[18.88588,50.21314],[18.88639,50.24024],[18.90884,50.24006]]],"terms_text":"Urząd Miasta Katowic"},{"id":"Katowice-aerial_image","name":"Katowice: Orthophotomap (aerial image)","type":"wms","template":"http://mapserver.um.katowice.pl/services/ortowms/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=2&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[18.90884,50.24006],[18.90851,50.23542],[18.94279,50.23515],[18.94399,50.27138],[18.95469,50.27485],[18.95571,50.2894],[18.96692,50.29364],[18.98752,50.2848],[18.99888,50.2847],[18.99907,50.29368],[18.98892,50.29377],[18.98934,50.30244],[19.0094,50.30196],[19.03401,50.28842],[19.05533,50.30139],[19.07901,50.30087],[19.07908,50.29297],[19.12296,50.27784],[19.12267,50.25523],[19.11079,50.2428],[19.1098,50.17946],[19.12065,50.17936],[19.11957,50.14359],[19.10777,50.14386],[19.0973,50.13916],[19.09656,50.12786],[19.06379,50.12786],[19.02985,50.14009],[19.03007,50.16177],[19.01909,50.16698],[19.00848,50.16707],[18.96329,50.1498],[18.92907,50.15008],[18.92915,50.15426],[18.91854,50.15419],[18.91878,50.20421],[18.90792,50.20429],[18.90808,50.21297],[18.88588,50.21314],[18.88639,50.24024],[18.90884,50.24006]]],"terms_text":"Urząd Miasta Katowic"},{"id":"KYAPED","name":"KyFromAbove","type":"wms","template":"https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_Imagery_WGS84WM/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[3,20],"polygon":[[[-89.57151,36.55257],[-89.54296,36.50496],[-89.53912,36.4981],[-89.4885,36.49755],[-89.4852,36.49745],[-89.46589,36.52995],[-89.46545,36.53616],[-89.4808,36.56969],[-89.48089,36.56977],[-89.5205,36.57943],[-89.52234,36.58018],[-89.55251,36.57723],[-89.55264,36.57718],[-89.57151,36.55257]],[[-89.41729,36.49903],[-89.34795,36.50308],[-89.30028,36.50715],[-88.06598,36.49774],[-88.05332,36.49712],[-88.0453,36.50408],[-88.03948,36.51041],[-88.03413,36.53112],[-88.03249,36.54066],[-88.0412,36.58412],[-88.04513,36.60294],[-88.06821,36.65975],[-88.07053,36.67812],[-87.85045,36.6651],[-87.85354,36.63507],[-87.69783,36.637],[-87.69385,36.63707],[-87.68285,36.70333],[-87.67503,36.7501],[-87.67186,36.8785],[-87.66,36.96624],[-87.72956,36.9999],[-87.73366,37.00209],[-87.7106,37.02156],[-87.68078,37.14928],[-87.66878,37.14975],[-87.64964,37.14692],[-87.52378,37.10601],[-87.52029,37.10516],[-87.48508,37.12661],[-87.37442,37.13381],[-87.35981,37.1499],[-87.35998,37.1567],[-87.34036,37.15745],[-87.33626,37.1548],[-87.3151,37.18731],[-87.31174,37.19144],[-87.34575,37.21178],[-87.34988,37.2149],[-87.34719,37.2231],[-87.349,37.22625],[-87.37141,37.24404],[-87.36402,37.24914],[-87.38553,37.25335],[-87.38852,37.25738],[-87.38414,37.2901],[-87.38602,37.29551],[-87.37801,37.29926],[-87.37221,37.29889],[-87.3793,37.30468],[-87.38004,37.31102],[-87.37377,37.31474],[-87.37091,37.31614],[-87.35457,37.3105],[-87.34586,37.30973],[-87.33775,37.33252],[-87.33726,37.33615],[-87.31243,37.36282],[-87.30045,37.37026],[-87.30749,37.37378],[-87.3093,37.37693],[-87.30595,37.38197],[-87.29575,37.39164],[-87.33332,37.41148],[-87.3528,37.42569],[-87.3548,37.48279],[-87.36243,37.4863],[-87.35148,37.51231],[-87.34924,37.51552],[-87.35952,37.53213],[-87.36652,37.53339],[-87.36037,37.54255],[-87.35931,37.54665],[-87.37499,37.56998],[-87.37986,37.57898],[-87.39521,37.58871],[-87.46038,37.59267],[-87.4803,37.59914],[-87.49965,37.62694],[-87.49557,37.64786],[-87.73424,37.63828],[-87.94307,37.46638],[-87.94375,37.46563],[-87.93037,37.41046],[-87.93019,37.4092],[-87.91391,37.41123],[-87.91313,37.41104],[-87.91564,37.40477],[-87.91545,37.40448],[-87.90281,37.39822],[-87.90195,37.39824],[-87.86945,37.40519],[-87.86876,37.40518],[-87.86164,37.40894],[-87.86131,37.40954],[-87.86595,37.41683],[-87.86561,37.41728],[-87.84737,37.42062],[-87.84638,37.42046],[-87.84426,37.39512],[-87.84426,37.39482],[-87.85904,37.39277],[-87.85964,37.39241],[-87.86,37.38071],[-87.86003,37.3802],[-87.84335,37.37468],[-87.84282,37.37469],[-87.81953,37.38776],[-87.81861,37.38832],[-87.81061,37.37686],[-87.81042,37.37645],[-87.80095,37.3794],[-87.80122,37.37898],[-88.05239,37.23751],[-88.05269,37.22934],[-88.07805,37.22699],[-88.08885,37.22178],[-88.08231,37.21647],[-88.08042,37.21198],[-88.08376,37.20828],[-88.08891,37.20681],[-88.08443,37.1942],[-88.08301,37.18652],[-88.09489,37.17947],[-88.10183,37.17932],[-88.10889,37.16647],[-88.1099,37.16237],[-88.13168,37.15736],[-88.13252,37.14872],[-88.14131,37.15216],[-88.14428,37.15436],[-88.16293,37.14307],[-88.16557,37.13575],[-88.1919,37.12927],[-88.1966,37.13144],[-88.18787,37.16156],[-88.19039,37.1674],[-88.21927,37.18309],[-88.21986,37.18353],[-88.20455,37.20746],[-88.20065,37.21162],[-88.20258,37.23289],[-88.20032,37.23431],[-88.21851,37.27335],[-88.29375,37.33559],[-88.29557,37.33782],[-88.30556,37.37206],[-88.29948,37.37991],[-88.31327,37.39228],[-88.31811,37.39761],[-88.36547,37.40166],[-88.37121,37.40273],[-88.40624,37.42479],[-88.40881,37.42522],[-88.46586,37.40055],[-88.47022,37.39625],[-88.48672,37.34015],[-88.48695,37.3396],[-88.51406,37.29246],[-88.51486,37.29069],[-88.50409,37.26514],[-88.50382,37.26485],[-88.5123,37.26295],[-88.51187,37.26201],[-88.45005,37.2062],[-88.44982,37.20599],[-88.42533,37.15421],[-88.42462,37.15173],[-88.44912,37.08875],[-88.44919,37.08776],[-88.45919,37.07523],[-88.46019,37.07447],[-88.48622,37.06659],[-88.48605,37.0648],[-88.56528,37.07521],[-88.56587,37.0752],[-88.62221,37.11775],[-88.62589,37.11946],[-88.68777,37.13938],[-88.69398,37.14115],[-88.73125,37.14368],[-88.73211,37.14396],[-88.78695,37.17858],[-88.79737,37.18485],[-88.83505,37.19649],[-88.86953,37.20971],[-88.9273,37.22636],[-88.93175,37.22759],[-88.98326,37.22868],[-89.00097,37.2244],[-89.07622,37.17513],[-89.08653,37.1656],[-89.10403,37.13197],[-89.11119,37.11905],[-89.15129,37.09049],[-89.1545,37.08891],[-89.17858,37.055],[-89.17938,37.05301],[-89.18248,37.03748],[-89.18251,37.03728],[-89.1736,37.01141],[-89.17112,37.00807],[-89.13844,36.98509],[-89.13301,36.982],[-89.1183,36.98188],[-89.11503,36.98033],[-89.09901,36.96139],[-89.09884,36.95785],[-89.13194,36.85744],[-89.13797,36.84735],[-89.17718,36.83578],[-89.17815,36.83459],[-89.17923,36.81291],[-89.17875,36.80993],[-89.17107,36.79812],[-89.16846,36.79557],[-89.13321,36.78823],[-89.12892,36.78768],[-89.11685,36.77561],[-89.11607,36.77242],[-89.12243,36.75484],[-89.12613,36.75173],[-89.15699,36.75597],[-89.16689,36.75963],[-89.19155,36.74722],[-89.19781,36.73941],[-89.20073,36.72014],[-89.19948,36.71605],[-89.17484,36.69396],[-89.16952,36.68888],[-89.16872,36.67189],[-89.15908,36.66635],[-89.18775,36.64111],[-89.19254,36.636],[-89.20261,36.60158],[-89.21356,36.58012],[-89.23184,36.56812],[-89.23654,36.56682],[-89.26806,36.56891],[-89.27171,36.57139],[-89.31943,36.62739],[-89.32472,36.63108],[-89.36486,36.62532],[-89.36555,36.62506],[-89.37545,36.61572],[-89.37637,36.61387],[-89.41729,36.49903]],[[-86.27537,37.5933],[-86.27184,37.58879],[-86.26139,37.58885],[-86.25214,37.59435],[-86.24634,37.59438],[-86.23343,37.58086],[-86.23221,37.57543],[-86.22002,37.57596],[-86.21075,37.57737],[-86.18677,37.56028],[-86.18035,37.55624],[-86.16999,37.56582],[-86.16419,37.56721],[-86.15428,37.56228],[-86.14613,37.5596],[-86.11425,37.56611],[-86.1131,37.56657],[-86.05621,37.4916],[-86.05151,37.48301],[-86.06584,37.46073],[-86.06756,37.458],[-86.05997,37.45123],[-86.05647,37.44853],[-86.05415,37.44899],[-86.05071,37.45354],[-86.00023,37.44696],[-85.8912,37.44011],[-85.89011,37.45144],[-85.89426,37.47002],[-85.88848,37.47366],[-85.87493,37.54533],[-85.83905,37.56901],[-85.82107,37.57404],[-85.80725,37.60173],[-85.7974,37.60855],[-85.80326,37.62032],[-85.80211,37.62305],[-85.73423,37.65674],[-85.68093,37.73207],[-85.65181,37.71806],[-85.6454,37.71308],[-85.63781,37.69632],[-85.63432,37.69406],[-85.60059,37.69908],[-85.59244,37.69364],[-85.6011,37.64604],[-85.60051,37.6397],[-85.58714,37.64469],[-85.58366,37.64424],[-85.57725,37.63926],[-85.57319,37.6379],[-85.57376,37.62838],[-85.56853,37.62295],[-85.57027,37.61751],[-85.57375,37.61705],[-85.57899,37.62611],[-85.58422,37.62566],[-85.5906,37.61613],[-85.59524,37.61341],[-85.61326,37.61612],[-85.615,37.61475],[-85.59464,37.59891],[-85.59464,37.59755],[-85.60219,37.59346],[-85.60683,37.59074],[-85.60564,37.57532],[-85.60505,37.56581],[-85.62302,37.55174],[-85.6265,37.54493],[-85.62417,37.5404],[-85.61778,37.54086],[-85.60735,37.54813],[-85.60212,37.54723],[-85.59341,37.54406],[-85.59514,37.53545],[-85.57134,37.5273],[-85.56495,37.52277],[-85.55393,37.53184],[-85.54697,37.53049],[-85.55105,37.5536],[-85.54408,37.56222],[-85.5348,37.56313],[-85.52667,37.56267],[-85.52144,37.55361],[-85.45053,37.68596],[-85.40147,37.73066],[-85.3873,37.7404],[-85.38629,37.74075],[-85.37373,37.73951],[-85.3733,37.73981],[-85.37495,37.76461],[-85.37454,37.7652],[-85.35546,37.75756],[-85.35345,37.75735],[-85.34591,37.76225],[-85.34548,37.76249],[-85.35624,37.78367],[-85.35601,37.78403],[-85.34029,37.78005],[-85.33859,37.77992],[-85.33649,37.78663],[-85.33574,37.78739],[-85.31214,37.79132],[-85.30818,37.79364],[-85.31532,37.80739],[-85.31527,37.80793],[-85.29908,37.83149],[-85.29844,37.83233],[-85.27861,37.83666],[-85.2776,37.83756],[-85.28027,37.85154],[-85.27953,37.85236],[-85.26827,37.84471],[-85.26784,37.84444],[-85.24567,37.84685],[-85.245,37.84689],[-85.25585,37.86503],[-85.25535,37.86583],[-85.24147,37.86229],[-85.24042,37.86243],[-85.23106,37.87044],[-85.23037,37.87061],[-85.22767,37.85492],[-85.22677,37.85501],[-85.21773,37.87142],[-85.21668,37.87141],[-85.21842,37.85492],[-85.21843,37.85427],[-85.20506,37.84608],[-85.20421,37.84624],[-85.20148,37.85319],[-85.19627,37.85603],[-85.20615,37.8633],[-85.19853,37.8728],[-85.1956,37.87642],[-85.19963,37.89003],[-85.199,37.90091],[-85.18916,37.88457],[-85.18683,37.88411],[-85.1868,37.8909],[-85.18446,37.89226],[-85.15766,37.88584],[-85.153,37.88583],[-85.15412,37.89535],[-85.15295,37.89762],[-85.14714,37.8908],[-85.13839,37.89168],[-85.13192,37.9039],[-85.12544,37.91566],[-85.10622,37.90926],[-85.10747,37.8934],[-85.09758,37.88974],[-85.09409,37.88792],[-85.03458,37.89224],[-85.0305,37.89177],[-85.03114,37.88316],[-85.03115,37.8818],[-85.01031,37.85951],[-85.00043,37.85448],[-85.0029,37.8341],[-85.00872,37.83503],[-85.01175,37.81736],[-85.00594,37.81643],[-85.02984,37.63114],[-85.03909,37.54505],[-85.01293,37.55084],[-85.00192,37.54807],[-85.00201,37.53312],[-84.89814,37.5322],[-84.74786,37.5853],[-84.75244,37.59213],[-84.73671,37.59656],[-84.73155,37.58973],[-84.71175,37.59505],[-84.71516,37.60232],[-84.69416,37.61035],[-84.68832,37.61258],[-84.69583,37.61716],[-84.69405,37.62032],[-84.65805,37.61826],[-84.65215,37.62548],[-84.65854,37.63503],[-84.65902,37.63541],[-84.66623,37.6334],[-84.66685,37.6341],[-84.65457,37.64052],[-84.65352,37.64113],[-84.65356,37.65231],[-84.6564,37.65442],[-84.67906,37.64593],[-84.68045,37.64496],[-84.67354,37.64198],[-84.67213,37.64074],[-84.6785,37.63672],[-84.68,37.6367],[-84.69459,37.64103],[-84.69491,37.64152],[-84.67925,37.65622],[-84.68039,37.65755],[-84.6929,37.66415],[-84.69376,37.66487],[-84.70234,37.65981],[-84.70524,37.66074],[-84.69935,37.66795],[-84.68009,37.67417],[-84.6823,37.68506],[-84.68343,37.68734],[-84.69628,37.68244],[-84.70036,37.68156],[-84.69848,37.69469],[-84.69845,37.69741],[-84.74265,37.69769],[-84.74322,37.69905],[-84.73286,37.70867],[-84.73258,37.70976],[-84.74578,37.71478],[-84.7442,37.71674],[-84.72678,37.71391],[-84.72444,37.71435],[-84.73072,37.72617],[-84.72836,37.72888],[-84.69934,37.72235],[-84.68998,37.72682],[-84.70564,37.73191],[-84.70737,37.73373],[-84.68813,37.73632],[-84.68865,37.74177],[-84.702,37.74548],[-84.70489,37.74777],[-84.69429,37.75903],[-84.69424,37.76356],[-84.71395,37.76793],[-84.71571,37.7696],[-84.70292,37.78664],[-84.70274,37.78751],[-84.71637,37.79979],[-84.71682,37.80026],[-84.71579,37.81518],[-84.71595,37.81553],[-84.67952,37.82987],[-84.6771,37.82838],[-84.67982,37.80132],[-84.6795,37.79834],[-84.66789,37.7834],[-84.66555,37.78298],[-84.64982,37.78901],[-84.64933,37.7907],[-84.65966,37.80897],[-84.65862,37.80952],[-84.61235,37.8017],[-84.61001,37.80071],[-84.60836,37.79271],[-84.60999,37.79165],[-84.64066,37.79291],[-84.64222,37.79201],[-84.64335,37.77918],[-84.64322,37.77846],[-84.60658,37.76066],[-84.60501,37.75974],[-84.61569,37.74642],[-84.61496,37.74584],[-84.60632,37.74281],[-84.60541,37.743],[-84.58968,37.75414],[-84.58728,37.75347],[-84.58816,37.73812],[-84.58776,37.73642],[-84.57019,37.72872],[-84.56928,37.72906],[-84.55705,37.74743],[-84.55591,37.74842],[-84.54004,37.75425],[-84.53923,37.75481],[-84.53656,37.76915],[-84.53602,37.76971],[-84.49641,37.78505],[-84.49565,37.78547],[-84.48348,37.80138],[-84.48291,37.80188],[-84.46464,37.79892],[-84.46412,37.79961],[-84.48413,37.83585],[-84.48467,37.83747],[-84.47809,37.85212],[-84.4773,37.85273],[-84.44594,37.84074],[-84.44411,37.84131],[-84.418,37.87157],[-84.41645,37.87212],[-84.39202,37.84668],[-84.39067,37.84596],[-84.37047,37.85387],[-84.36854,37.85455],[-84.38304,37.89289],[-84.38386,37.89473],[-84.37973,37.90109],[-84.37739,37.90174],[-84.34117,37.88224],[-84.34059,37.88272],[-84.33787,37.89163],[-84.33765,37.89193],[-84.34891,37.89836],[-84.34897,37.8986],[-84.33875,37.90712],[-84.33871,37.90733],[-84.34803,37.91488],[-84.34799,37.91512],[-84.33024,37.92249],[-84.32995,37.92392],[-84.33986,37.93097],[-84.33998,37.93131],[-84.33065,37.9368],[-84.3308,37.93723],[-84.33842,37.93906],[-84.33837,37.93921],[-84.31147,37.95185],[-84.31075,37.95217],[-84.32328,37.95589],[-84.32331,37.95603],[-84.31175,37.96302],[-84.31172,37.96332],[-84.32414,37.96579],[-84.32443,37.96645],[-84.31964,38.0023],[-84.28271,38.01912],[-84.29281,38.03333],[-84.29299,38.03361],[-84.28481,38.04006],[-84.28465,38.04043],[-84.28618,38.06663],[-84.28637,38.06701],[-84.08024,38.11516],[-84.02625,38.1526],[-83.99068,38.17484],[-83.9827,38.19287],[-83.98383,38.19515],[-83.97018,38.20314],[-83.96947,38.20948],[-83.98741,38.22013],[-83.98917,38.22015],[-83.9901,38.20293],[-83.99477,38.2039],[-84.00684,38.21538],[-84.0085,38.21993],[-84.04297,38.22488],[-84.06271,38.23463],[-84.06207,38.23689],[-84.05382,38.23906],[-84.05772,38.24953],[-84.05699,38.25722],[-84.06817,38.25509],[-84.07985,38.25704],[-84.07445,38.26378],[-84.07323,38.26603],[-84.07782,38.27107],[-84.08012,38.27336],[-84.08951,38.27301],[-84.09547,38.2681],[-84.09681,38.25905],[-84.10326,38.25912],[-84.10137,38.2659],[-84.10421,38.27046],[-84.11649,38.27242],[-84.11995,38.27517],[-84.10516,38.28271],[-84.1045,38.28633],[-84.11736,38.28829],[-84.12696,38.30789],[-84.13289,38.30478],[-84.16658,38.35501],[-84.19386,38.37162],[-84.10268,38.45943],[-84.10671,38.46884],[-84.10712,38.46916],[-84.13066,38.4746],[-84.13124,38.47465],[-84.131,38.48267],[-84.13163,38.48297],[-84.14244,38.47603],[-84.14319,38.47602],[-84.15141,38.48962],[-84.1521,38.48993],[-84.17199,38.4865],[-84.17319,38.48736],[-84.16006,38.50108],[-84.16124,38.50177],[-84.18289,38.49678],[-84.18345,38.49735],[-84.1794,38.52331],[-84.17804,38.53327],[-84.1643,38.54491],[-84.16177,38.55394],[-84.16816,38.559],[-84.20714,38.55125],[-84.20886,38.54992],[-84.21707,38.55729],[-84.21763,38.55813],[-84.20383,38.56432],[-84.20297,38.56516],[-84.20541,38.58206],[-84.20473,38.58794],[-84.19575,38.58834],[-84.1953,38.5883],[-84.20091,38.60377],[-84.2075,38.59749],[-84.23415,38.80739],[-84.23604,38.82232],[-84.23054,38.82744],[-84.23294,38.88603],[-84.23289,38.8871],[-84.2864,38.95228],[-84.28874,38.95567],[-84.30005,38.9935],[-84.30716,39.0073],[-84.33985,39.03437],[-84.34089,39.03501],[-84.42565,39.0527],[-84.42652,39.05322],[-84.43401,39.09569],[-84.43495,39.09977],[-84.45282,39.11925],[-84.45619,39.12054],[-84.4792,39.11807],[-84.48059,39.11742],[-84.50434,39.09592],[-84.50612,39.09511],[-84.54971,39.09972],[-84.55096,39.09949],[-84.57256,39.08215],[-84.57306,39.08191],[-84.61685,39.07323],[-84.61845,39.07327],[-84.65842,39.09552],[-84.65993,39.09614],[-84.68487,39.1003],[-84.68593,39.10077],[-84.71788,39.13641],[-84.71826,39.13682],[-84.75139,39.14753],[-84.75244,39.14726],[-84.7842,39.1179],[-84.7874,39.11544],[-84.83142,39.10085],[-84.83248,39.10036],[-84.89694,39.05747],[-84.89729,39.05747],[-84.83027,38.97417],[-84.83003,38.97305],[-84.83299,38.96042],[-84.83363,38.95943],[-84.8762,38.92254],[-84.87706,38.92147],[-84.87723,38.90954],[-84.87702,38.90901],[-84.8679,38.89921],[-84.86643,38.89871],[-84.8145,38.89546],[-84.81331,38.89523],[-84.78542,38.88075],[-84.78518,38.88001],[-84.78981,38.86206],[-84.79094,38.86057],[-84.82962,38.83112],[-84.82993,38.83037],[-84.81417,38.80034],[-84.81339,38.79851],[-84.81432,38.7847],[-84.8149,38.78428],[-84.88679,38.79463],[-84.88724,38.7948],[-84.93976,38.77602],[-84.94121,38.77565],[-84.99111,38.77842],[-84.99229,38.77815],[-85.10094,38.72662],[-85.10172,38.72651],[-85.13605,38.70062],[-85.1368,38.7001],[-85.17189,38.68836],[-85.17298,38.68807],[-85.21237,38.69501],[-85.21482,38.69625],[-85.2464,38.73147],[-85.24692,38.73194],[-85.2767,38.74135],[-85.27859,38.74159],[-85.36176,38.73051],[-85.3636,38.73037],[-85.41339,38.73683],[-85.41489,38.73677],[-85.43532,38.729],[-85.43609,38.7285],[-85.45169,38.71037],[-85.45184,38.7102],[-85.45673,38.68734],[-85.45665,38.68603],[-85.43897,38.65963],[-85.43854,38.65896],[-85.43832,38.60596],[-85.43824,38.60468],[-85.41528,38.55926],[-85.41489,38.55775],[-85.41777,38.53822],[-85.41777,38.53775],[-85.43188,38.52455],[-85.43291,38.52398],[-85.37901,38.51903],[-85.37859,38.51895],[-85.36594,38.50787],[-85.3657,38.5077],[-85.31944,38.49761],[-85.31592,38.49624],[-85.31416,38.49262],[-85.34598,38.45957],[-85.33133,38.44233],[-85.32496,38.4038],[-85.29568,38.37384],[-85.28281,38.35796],[-85.32459,38.30998],[-85.35159,38.30322],[-85.39057,38.30779],[-85.39323,38.30779],[-85.39558,38.30508],[-85.40906,38.30373],[-85.40791,38.29466],[-85.41025,38.29376],[-85.41318,38.29467],[-85.41669,38.30237],[-85.42255,38.30192],[-85.42666,38.30374],[-85.42491,38.29422],[-85.42725,38.29286],[-85.44718,38.30194],[-85.44894,38.3042],[-85.46127,38.28563],[-85.46713,38.28535],[-85.40596,38.26389],[-85.4051,38.26359],[-85.42905,38.11817],[-85.43035,38.10703],[-85.46195,38.09662],[-85.46954,38.09617],[-85.51222,38.01096],[-85.51689,38.01096],[-85.49995,37.99872],[-85.48886,37.99056],[-85.49995,37.98467],[-85.53381,37.96518],[-85.52563,37.95294],[-85.52972,37.94705],[-85.57987,37.91258],[-85.58395,37.91076],[-85.58042,37.88312],[-85.58683,37.87631],[-85.60548,37.87041],[-85.61364,37.86995],[-85.6107,37.85907],[-85.61828,37.85136],[-85.69802,37.81137],[-85.73414,37.81086],[-85.73833,37.81225],[-85.73833,37.84287],[-85.75207,37.84314],[-85.75241,37.87946],[-85.7737,37.87919],[-85.77541,37.97709],[-85.82382,37.9779],[-85.82399,37.99129],[-85.91154,37.99197],[-85.91171,38.00671],[-85.99891,37.99963],[-86.0305,37.99062],[-86.0317,37.96897],[-86.03703,37.95787],[-86.04904,37.95814],[-86.06569,37.97465],[-86.0832,38.00266],[-86.08252,37.80823],[-86.15172,37.79892],[-86.27537,37.5933]]],"terms_url":"https://kyfromabove.ky.gov/","terms_text":"KyFromAbove","description":"6-inch or 1-foot aerial imagery captured from 2012 to 2014 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI)."},{"id":"KYAPED_2019_6in","name":"KyFromAbove 2019 6in","type":"wms","template":"https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_2019_6IN_WGS84WM/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[-85.60121,36.87174],[-85.59544,36.86312],[-85.57471,36.8382],[-85.5816,36.82323],[-85.59596,36.81869],[-85.58844,36.77788],[-85.55282,36.77383],[-85.54248,36.77429],[-85.51834,36.73394],[-85.51891,36.73212],[-85.47298,36.73393],[-85.46954,36.73167],[-85.49653,36.69086],[-85.43633,36.61853],[-85.20834,36.62566],[-85.19537,36.6255],[-84.83859,36.60505],[-84.83005,36.60447],[-83.78902,36.58388],[-83.69071,36.58258],[-83.67461,36.60308],[-83.67311,36.60468],[-83.64951,36.61668],[-83.64831,36.62268],[-83.58451,36.64138],[-83.57731,36.64178],[-83.53149,36.6652],[-83.52961,36.66618],[-83.43171,36.66649],[-83.42371,36.66739],[-83.313,36.70909],[-83.3114,36.71029],[-83.19682,36.73862],[-83.1946,36.73949],[-83.13684,36.74303],[-83.13639,36.74309],[-83.13099,36.74979],[-83.12783,36.75083],[-83.12934,36.77714],[-83.13169,36.78149],[-83.10803,36.80218],[-83.10309,36.80669],[-83.10209,36.82819],[-83.10179,36.82909],[-83.07969,36.84059],[-83.07519,36.84089],[-83.07559,36.85059],[-83.07259,36.85459],[-83.04219,36.85439],[-83.02689,36.85549],[-83.01259,36.84729],[-83.00922,36.8473],[-83.00328,36.85224],[-82.99838,36.85663],[-82.91031,36.87405],[-82.90777,36.87471],[-82.87949,36.88909],[-82.87857,36.88958],[-82.87256,36.90338],[-82.87747,36.90796],[-82.85864,36.92779],[-82.85796,36.92953],[-82.8561,36.95247],[-82.85587,36.95385],[-82.86736,36.96318],[-82.87023,36.9655],[-82.86845,36.97648],[-82.86754,36.97752],[-82.83853,36.98729],[-82.83601,36.98884],[-82.83029,37.00352],[-82.82868,37.00574],[-82.78243,37.00824],[-82.78214,37.00824],[-82.76641,37.02311],[-82.75917,37.02733],[-82.75071,37.02411],[-82.74798,37.02521],[-82.74368,37.0414],[-82.74245,37.04298],[-82.72471,37.04276],[-82.72247,37.0451],[-82.72631,37.06687],[-82.72702,37.07302],[-82.71835,37.07571],[-82.71674,37.07722],[-82.7262,37.11588],[-82.7221,37.12017],[-82.63401,37.1542],[-82.63349,37.15426],[-82.59323,37.18206],[-82.59245,37.18285],[-82.5079,37.22273],[-82.49886,37.22704],[-82.35534,37.26522],[-82.34874,37.26794],[-82.34193,37.27398],[-82.34392,37.28071],[-82.32772,37.28285],[-82.32464,37.28295],[-81.9646,37.54275],[-81.96454,37.54325],[-81.97275,37.54688],[-81.97508,37.54657],[-81.99379,37.53806],[-81.99449,37.53795],[-81.99772,37.54339],[-81.9984,37.54335],[-82.00955,37.53309],[-82.01186,37.53314],[-82.04175,37.54822],[-82.04278,37.54809],[-82.04591,37.52811],[-82.04677,37.52816],[-82.04911,37.53482],[-82.04989,37.53531],[-82.06271,37.53592],[-82.06374,37.53618],[-82.07325,37.55502],[-82.07503,37.55582],[-82.09892,37.5533],[-82.10289,37.55305],[-82.10819,37.55991],[-82.11658,37.55959],[-82.13308,37.55291],[-82.1333,37.553],[-82.13349,37.56071],[-82.13395,37.56224],[-82.14456,37.56694],[-82.14465,37.56831],[-82.1296,37.57197],[-82.1273,37.57268],[-82.12648,37.58294],[-82.12732,37.58667],[-82.13034,37.59174],[-82.13198,37.59354],[-82.14843,37.59091],[-82.15672,37.59279],[-82.15672,37.60906],[-82.15674,37.6092],[-82.16814,37.60849],[-82.16906,37.60987],[-82.16458,37.6189],[-82.16419,37.62019],[-82.18083,37.62138],[-82.18143,37.62184],[-82.17264,37.6323],[-82.17245,37.63259],[-82.17463,37.64742],[-82.17526,37.64797],[-82.18799,37.64758],[-82.19144,37.64438],[-82.18669,37.62758],[-82.1873,37.62694],[-82.20969,37.6251],[-82.21349,37.62541],[-82.22611,37.65309],[-82.23939,37.66146],[-82.256,37.65679],[-82.25711,37.65675],[-82.28193,37.67534],[-82.2823,37.67583],[-82.28798,37.66844],[-82.28817,37.66823],[-82.29439,37.67796],[-82.29474,37.67828],[-82.30231,37.67555],[-82.30395,37.67576],[-82.29705,37.70084],[-82.29663,37.7024],[-82.30568,37.70671],[-82.30724,37.70767],[-82.3183,37.73305],[-82.31888,37.73376],[-82.33335,37.7412],[-82.33358,37.74328],[-82.31078,37.76269],[-82.31164,37.76429],[-82.32946,37.76239],[-82.33116,37.76313],[-82.323,37.77391],[-82.3237,37.77503],[-82.33722,37.77517],[-82.3376,37.77537],[-82.33838,37.78043],[-82.3397,37.78551],[-82.37487,37.80216],[-82.37739,37.80301],[-82.38526,37.81741],[-82.38659,37.81821],[-82.4015,37.81003],[-82.40165,37.81009],[-82.3996,37.82939],[-82.39968,37.82993],[-82.41737,37.84566],[-82.42048,37.84681],[-82.4148,37.85588],[-82.41465,37.85626],[-82.42351,37.86031],[-82.42426,37.86171],[-82.40844,37.86606],[-82.40746,37.86747],[-82.41632,37.86963],[-82.41768,37.87066],[-82.4192,37.88208],[-82.41978,37.88382],[-82.46149,37.91309],[-82.46288,37.91483],[-82.47252,37.89924],[-82.47457,37.90029],[-82.47497,37.91115],[-82.47553,37.91204],[-82.48802,37.91734],[-82.48819,37.91807],[-82.48019,37.92583],[-82.48047,37.92626],[-82.49827,37.92818],[-82.49936,37.92937],[-82.50201,37.93477],[-82.50127,37.93562],[-82.48916,37.93796],[-82.48905,37.93872],[-82.4973,37.94551],[-82.49668,37.9464],[-82.4751,37.95491],[-82.4718,37.95912],[-82.48441,37.9699],[-82.48384,37.97157],[-82.46407,37.98029],[-82.46426,37.98341],[-82.48329,37.98426],[-82.48387,37.9845],[-82.48757,37.99809],[-82.48773,37.99833],[-82.51597,37.99993],[-82.51735,38.0012],[-82.551,38.07045],[-82.55126,38.0708],[-82.58364,38.09032],[-82.58404,38.09066],[-82.5857,38.107],[-82.58778,38.10888],[-82.61945,38.12074],[-82.62035,38.12148],[-82.62138,38.13231],[-82.62212,38.13341],[-82.63647,38.13786],[-82.63731,38.13905],[-82.63895,38.15674],[-82.64474,38.16549],[-82.61323,38.1704],[-82.61134,38.17155],[-82.59885,38.20171],[-82.59844,38.21739],[-82.61252,38.23455],[-82.61226,38.23609],[-82.60713,38.24598],[-82.60533,38.2473],[-82.58643,38.24561],[-82.58606,38.24562],[-82.57812,38.25515],[-82.57466,38.26387],[-82.58282,38.29548],[-82.58306,38.29683],[-82.57188,38.31578],[-82.57269,38.3188],[-82.59652,38.34285],[-82.59798,38.34491],[-82.59574,38.41819],[-82.59342,38.42186],[-82.60406,38.45963],[-82.60409,38.45984],[-82.61278,38.47359],[-82.6138,38.47453],[-82.65438,38.49483],[-82.65705,38.49682],[-82.69957,38.54406],[-82.70005,38.54434],[-82.72485,38.5576],[-82.73096,38.55926],[-82.78915,38.55989],[-82.78978,38.55995],[-82.84072,38.58725],[-82.84195,38.58827],[-82.85392,38.61213],[-82.85429,38.61345],[-82.85881,38.6574],[-82.85936,38.65949],[-82.87693,38.68756],[-82.8772,38.68851],[-82.87018,38.73294],[-82.87013,38.73362],[-82.88572,38.75499],[-82.88609,38.7552],[-82.92519,38.74965],[-82.93347,38.74701],[-82.97128,38.72724],[-82.97157,38.72715],[-83.02798,38.72709],[-83.02983,38.72618],[-83.06051,38.69095],[-83.06213,38.68967],[-83.11053,38.67306],[-83.11247,38.67158],[-83.13402,38.63308],[-83.13495,38.63172],[-83.15165,38.6197],[-83.15332,38.6189],[-83.20318,38.6167],[-83.20471,38.61686],[-83.2449,38.62868],[-83.2465,38.62846],[-83.29282,38.59661],[-83.2946,38.59648],[-83.31529,38.60671],[-83.31692,38.60832],[-83.3272,38.63725],[-83.32773,38.63781],[-83.35707,38.65436],[-83.3582,38.65497],[-83.46575,38.67484],[-83.46796,38.67517],[-83.51888,38.70261],[-83.52062,38.70296],[-83.62488,38.67913],[-83.62707,38.67797],[-83.64426,38.63771],[-83.64507,38.63625],[-83.65677,38.6279],[-83.66005,38.62718],[-83.76049,38.65177],[-83.76354,38.65225],[-83.77283,38.65914],[-83.77371,38.6608],[-83.78446,38.69641],[-83.78661,38.69881],[-83.83487,38.71625],[-83.83641,38.71734],[-83.84621,38.74229],[-83.84873,38.74718],[-83.86406,38.75895],[-83.86653,38.7602],[-83.92529,38.77103],[-83.92636,38.77128],[-83.96134,38.78731],[-83.96219,38.78744],[-84.07001,38.77033],[-84.07075,38.77026],[-84.20063,38.80157],[-84.20559,38.80259],[-84.22895,38.82409],[-84.23019,38.82636],[-84.23185,38.87281],[-84.23208,38.8747],[-84.40671,38.80609],[-84.40781,38.80587],[-84.41876,38.80576],[-84.53176,38.78992],[-84.59728,38.79086],[-84.62429,38.80375],[-84.62962,38.80288],[-84.64568,38.79257],[-84.65574,38.79082],[-84.66003,38.77725],[-84.78056,38.76487],[-84.78572,38.72003],[-84.79289,38.72463],[-84.79397,38.72462],[-84.81239,38.71229],[-84.8134,38.71168],[-84.81128,38.70268],[-84.81181,38.70234],[-84.8319,38.71176],[-84.83359,38.71197],[-84.84386,38.69761],[-84.84456,38.69675],[-84.86581,38.70048],[-84.86882,38.6997],[-84.87241,38.68955],[-84.873,38.68906],[-84.88826,38.68696],[-84.88859,38.68663],[-84.88971,38.67664],[-84.89022,38.67633],[-84.90335,38.67861],[-84.90436,38.67833],[-84.91084,38.66879],[-84.91238,38.66864],[-84.92561,38.67334],[-84.92653,38.6728],[-84.93664,38.65111],[-84.93693,38.65071],[-84.96629,38.64951],[-84.96778,38.64925],[-84.97436,38.6368],[-84.97537,38.63592],[-84.98941,38.63129],[-84.99073,38.63078],[-85.01388,38.63223],[-85.015,38.63235],[-85.01229,38.62395],[-85.01238,38.62314],[-85.02384,38.6152],[-85.02494,38.61358],[-85.05726,38.61167],[-85.05904,38.61144],[-85.06828,38.60429],[-85.06855,38.60374],[-85.06624,38.59489],[-85.0664,38.59419],[-85.07359,38.59683],[-85.07448,38.59677],[-85.07605,38.58019],[-85.07588,38.57821],[-85.06841,38.56868],[-85.06543,38.56577],[-85.04279,38.57355],[-85.0409,38.57415],[-85.00371,38.55512],[-85.00205,38.55341],[-85.00987,38.54945],[-85.01199,38.54807],[-85.02979,38.50957],[-85.02938,38.50779],[-85.02305,38.50388],[-85.01919,38.50382],[-85.00387,38.51559],[-85.00155,38.5165],[-84.98068,38.51741],[-84.97816,38.51575],[-84.99218,38.49471],[-84.99226,38.49214],[-84.95469,38.47086],[-84.95383,38.46938],[-84.95149,38.46166],[-84.95136,38.45798],[-84.96355,38.43844],[-84.96376,38.43794],[-84.95917,38.43173],[-84.95749,38.43005],[-84.94321,38.42641],[-84.93882,38.42749],[-84.9372,38.45283],[-84.93543,38.45602],[-84.92632,38.46346],[-84.9226,38.46457],[-84.91306,38.46034],[-84.91196,38.45929],[-84.90898,38.45123],[-84.90943,38.44975],[-84.92806,38.43691],[-84.92748,38.4333],[-84.88133,38.4197],[-84.88054,38.41902],[-84.89759,38.38316],[-84.89891,38.37996],[-84.86692,38.36405],[-84.86684,38.36218],[-84.88198,38.3566],[-84.88437,38.35162],[-84.89256,38.35529],[-84.90649,38.37485],[-84.94563,38.35781],[-84.99716,38.33537],[-84.9567,38.33247],[-84.99875,38.27509],[-85.00762,38.17587],[-85.00938,38.17497],[-85.00479,38.16136],[-85.00598,38.15819],[-85.02373,38.1288],[-85.02257,38.12789],[-85.03489,38.12114],[-85.03958,38.11979],[-85.05148,38.08766],[-85.05388,38.07769],[-85.07271,38.05691],[-85.07745,38.04605],[-85.11203,38.02576],[-85.12021,38.02579],[-85.12321,38.01039],[-85.1291,37.99998],[-85.13903,38.00001],[-85.14077,38.00274],[-85.15076,37.98917],[-85.15193,37.98827],[-85.16301,37.99147],[-85.16122,38.00008],[-85.1618,38.00144],[-85.16882,37.99874],[-85.17001,37.99421],[-85.14945,37.89715],[-85.14714,37.8908],[-85.13839,37.89168],[-85.13192,37.9039],[-85.12544,37.91566],[-85.10622,37.90926],[-85.10747,37.8934],[-85.09758,37.88974],[-85.09409,37.88792],[-85.03458,37.89224],[-85.0305,37.89177],[-85.03114,37.88316],[-85.03115,37.8818],[-85.01031,37.85951],[-85.00043,37.85448],[-85.0029,37.8341],[-85.00872,37.83503],[-85.01175,37.81736],[-85.00594,37.81643],[-85.02984,37.63114],[-85.03909,37.54505],[-85.0425,37.46074],[-85.04454,37.41225],[-85.0648,37.4164],[-85.07234,37.41462],[-85.0799,37.40875],[-85.08343,37.39924],[-85.09561,37.39883],[-85.10605,37.3975],[-85.12001,37.38485],[-85.12812,37.38578],[-85.13111,37.3663],[-85.13229,37.36041],[-85.15681,37.31832],[-85.16495,37.31064],[-85.1107,37.28146],[-85.05648,37.2568],[-85.05337,37.19694],[-85.04304,37.18602],[-85.08958,37.12544],[-85.1656,37.03364],[-85.20264,37.00018],[-85.20553,36.99702],[-85.21078,36.98116],[-85.23229,36.92544],[-85.25013,36.92639],[-85.4516,36.93842],[-85.47465,36.89399],[-85.49997,36.87359],[-85.50745,36.8677],[-85.53678,36.8627],[-85.56035,36.85136],[-85.57532,36.8645],[-85.57993,36.86858],[-85.60121,36.87174]]],"terms_url":"https://kyfromabove.ky.gov/","terms_text":"KyFromAbove","description":"6-inch aerial imagery captured in 2019 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI)."},{"id":"kystverket-navigasjon","name":"Kystverket Navigational Aid overlay","type":"wms","template":"https://nfs.kystverket.no/arcgis/services/nfs/NFSSistOperativ/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=13,12,10,8,6,5,4,3&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[12,19],"polygon":[[[3.24857,56.08599],[2.60924,56.59428],[1.47215,58.45924],[1.77704,61.36251],[-0.49301,63.88665],[-13.73292,69.76376],[-12.43655,72.58741],[-5.11965,74.39626],[-3.60356,79.12998],[5.85587,82.34863],[34.98861,82.3401],[37.96874,78.62784],[37.99619,75.79673],[36.95796,73.68962],[32.07458,70.27336],[30.3511,69.56882],[21.46179,69.57098],[18.3032,68.36681],[14.47997,66.2558],[11.50266,63.28307],[11.50166,58.95444],[11.08246,58.96771],[10.03051,58.25173],[8.88244,57.69534],[3.24857,56.08599]]],"terms_url":"https://kystverket.no/Maritim-infrastruktur/Fyr-og-merker-/","terms_text":"© Kystverket","description":"Beacons, buoys, lights and fairways maintained by the Norwegian Coastal Administration","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg/143px-Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg.png","overlay":true},{"id":"osmse-ekonomiska","name":"Lantmäteriet Economic Map 1950–1980","type":"tms","template":"https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg","zoomExtent":[3,17],"polygon":[[[12.71117,55.2666],[14.38109,55.29163],[19.65453,57.24934],[19.85228,59.75087],[17.77587,61.13794],[18.06151,62.27815],[20.97289,63.5779],[24.35668,65.60842],[23.96117,66.79191],[20.61034,66.45189],[17.13866,63.96632],[11.99706,61.03702],[12.29369,60.31607],[10.70067,58.81375],[12.71117,55.2666]]],"terms_url":"https://www.lantmateriet.se","terms_text":"© Lantmäteriet","description":"Scan of \"Economic maps\" ca. 1950–1980","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lantmateriet-orto1960","name":"Lantmäteriet Historic Orthophoto 1960","type":"wms","template":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?LAYERS=OI.Histortho_60&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,19],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.lantmateriet.se/","terms_text":"© Lantmäteriet, CC0","description":"Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lantmateriet-orto1975","name":"Lantmäteriet Historic Orthophoto 1975","type":"wms","template":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?LAYERS=OI.Histortho_75&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,19],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[17.85131,60.87407],[14.74558,60.53889],[11.60239,59.56416],[10.51799,58.66559],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.lantmateriet.se/","terms_text":"© Lantmäteriet, CC0","description":"Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lantmateriet-topowebb","name":"Lantmäteriet Topographic Map","type":"tms","template":"https://api.lantmateriet.se/open/topowebb-ccby/v1/wmts/token/9b342b7d9f12d4ddb92277be9869d860/1.0.0/topowebb/default/3857/{zoom}/{y}/{x}.png","zoomExtent":[3,15],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.lantmateriet.se/","terms_text":"© Lantmäteriet, CC0","description":"Topographic map of Sweden 1:50 000","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lu.geoportail.opendata.ortholatest","name":"Latest available ortho geoportail.lu","type":"tms","template":"https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2019-08-22T00:00:00.000Z","startDate":"2019-07-04T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","best":true,"icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"CityOfLaunceston_2011","name":"Launceston OrthoPhoto 2011","type":"tms","template":"https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Dec2011_10cm/MapServer/tile/{zoom}/{y}/{x}","endDate":"2011-12-01T00:00:00.000Z","startDate":"2011-12-01T00:00:00.000Z","zoomExtent":[10,20],"polygon":[[[147.10456,-41.3946],[147.10541,-41.47525],[147.17433,-41.47514],[147.17428,-41.45584],[147.17533,-41.45584],[147.17501,-41.39451],[147.10456,-41.3946]]],"terms_text":"© City of Launceston","icon":"https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png"},{"id":"CityOfLaunceston_2013","name":"Launceston OrthoPhoto 2013","type":"tms","template":"https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Feb2013_10cm/MapServer/tile/{zoom}/{y}/{x}","endDate":"2013-02-15T00:00:00.000Z","startDate":"2013-02-15T00:00:00.000Z","zoomExtent":[12,20],"polygon":[[[147.06561,-41.5081],[147.06547,-41.36487],[147.23734,-41.36464],[147.23786,-41.50787],[147.06561,-41.5081]]],"terms_text":"© City of Launceston","icon":"https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png"},{"id":"Lausanne-2016","name":"Lausanne - Orthophoto 2016","type":"tms","template":"https://osmdata.asitvd.ch/tiles/lausanne2016/{zoom}/{x}/{y}.png","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[12,20],"polygon":[[[6.66668,46.49441],[6.61637,46.49406],[6.61636,46.49836],[6.60135,46.49825],[6.60131,46.50227],[6.55923,46.50194],[6.55773,46.59687],[6.72895,46.59805],[6.7304,46.49004],[6.67702,46.48978],[6.67703,46.49011],[6.67345,46.49006],[6.67347,46.49041],[6.66672,46.49036],[6.66668,46.49441]]],"terms_url":"http://carto.lausanne.ch/lausanne-gc/","terms_text":"Ville de Lausanne - Orthophoto 2016"},{"id":"lidingo-orto","name":"Lidingö Orthophoto","type":"wms","template":"https://karta.lidingo.se/wms?LAYERS=theme-ortofoto2012&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&servicename=wms_ortofoto_2012","projection":"EPSG:4326","zoomExtent":[5,21],"polygon":[[[18.08826,59.38201],[18.10006,59.39399],[18.13877,59.40347],[18.16255,59.38983],[18.30348,59.37265],[18.29515,59.36662],[18.25962,59.35918],[18.17521,59.32391],[18.11405,59.35761],[18.10367,59.3744],[18.08826,59.38201]]],"terms_url":"https://www.lidingo.se/oppnadata/oppnadata.4.3f8c1a7415bf516a427a636.html","terms_text":"© Lidingö municipality, CC0","best":true,"description":"Orthophotos from the municipality of Lidingö 2012, CC0 license","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Lidingö_kommunvapen_-_Riksarkivet_Sverige.png/207px-Lidingö_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"linkoping-orto","name":"Linköping Orthophoto","type":"wms","template":"http://kartan.linkoping.se/wms?servicename=wms_ortofoto&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Kommun_2010_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[13,20],"polygon":[[[15.36884,58.6305],[15.41279,58.65623],[15.46635,58.6339],[15.54291,58.64408],[15.54119,58.60672],[15.58376,58.6414],[15.7592,58.55267],[15.76675,58.52006],[15.91438,58.51755],[16.08089,58.37148],[15.82718,58.30588],[15.84915,58.21449],[15.65861,58.15513],[15.56763,58.19134],[15.55939,58.14661],[15.50171,58.07679],[15.37777,58.05881],[15.28713,58.1031],[15.27203,58.13483],[15.35889,58.16455],[15.32387,58.38012],[15.24971,58.40027],[15.3582,58.47288],[15.36884,58.6305]]],"terms_url":"https://www.linkoping.se/open/","terms_text":"© Linköping municipality","best":true,"description":"Orthophotos from the municipality of Linköping 2010, open data","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Linköping_vapen.svg/198px-Linköping_vapen.svg.png"},{"id":"LINZ_NZ_Aerial_Imagery","name":"LINZ NZ Aerial Imagery","type":"tms","template":"https://basemaps.linz.govt.nz/v1/tiles/aerial/EPSG:3857/{zoom}/{x}/{y}.jpg?api=d01egend5f8dv4zcbfj6z2t7rs3","zoomExtent":[0,21],"polygon":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"terms_url":"https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data","terms_text":"Sourced from LINZ CC-BY 4.0","best":true,"icon":"https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico"},{"id":"LINZ_NZ_Topo50_Gridless_Maps","name":"LINZ NZ Topo50 Gridless Maps","type":"tms","template":"https://map.cazzaserver.com/linz_topo/{zoom}/{x}/{y}.png","zoomExtent":[0,21],"polygon":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"terms_url":"https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps","terms_text":"CC BY 4.0 Land Information New Zealand","icon":"https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico"},{"id":"ORT10LT","name":"Lithuania - NŽT ORT10LT","type":"tms","template":"https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg","endDate":"2016-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[4,18],"polygon":[[[26.21384,55.85075],[26.38583,55.70453],[26.63036,55.68067],[26.62053,55.56892],[26.52422,55.50992],[26.55415,55.38883],[26.43993,55.34794],[26.79197,55.3212],[26.82913,55.27635],[26.74346,55.25399],[26.67648,55.15883],[26.46112,55.12856],[26.35774,55.15054],[26.22963,55.10732],[26.27138,55.07759],[26.20851,54.99741],[26.06191,54.94161],[25.85782,54.9276],[25.74298,54.81506],[25.76261,54.5769],[25.53194,54.34182],[25.67716,54.32381],[25.78573,54.23362],[25.78588,54.15506],[25.55508,54.14619],[25.51095,54.17503],[25.58967,54.22858],[25.51362,54.30785],[25.26893,54.27447],[25.0706,54.13363],[24.95737,54.17206],[24.81338,54.14486],[24.77902,54.09991],[24.87128,54.0349],[24.81957,53.99772],[24.68459,53.96211],[24.69787,54.01714],[24.62591,54.0105],[24.43426,53.90144],[24.35206,53.89679],[24.20161,53.97001],[23.96833,53.9267],[23.91302,53.96968],[23.77812,53.89892],[23.70977,53.93945],[23.53704,53.94307],[23.48224,53.98938],[23.52734,54.04735],[23.48586,54.15323],[23.38679,54.22484],[23.04212,54.31597],[23.01021,54.3828],[22.85469,54.4104],[22.792,54.36332],[22.70234,54.4529],[22.68386,54.58597],[22.74897,54.63198],[22.74297,54.72682],[22.88668,54.8135],[22.8204,54.91198],[22.6424,54.97134],[22.58924,55.07024],[22.0806,55.02448],[22.03241,55.0841],[21.91307,55.08168],[21.64919,55.18081],[21.50151,55.18682],[21.38437,55.2937],[21.27098,55.24501],[21.09836,55.25639],[20.94217,55.28245],[21.08635,55.56183],[21.03995,55.83636],[21.06403,56.06995],[21.20478,56.08117],[21.2308,56.16233],[21.5021,56.2955],[21.72359,56.31382],[21.83566,56.37162],[21.96954,56.37665],[22.0153,56.42428],[22.43727,56.4064],[22.68,56.35159],[22.91917,56.37902],[22.94668,56.41465],[23.09325,56.30464],[23.17034,56.36677],[23.30645,56.38305],[23.55717,56.33382],[23.7648,56.37332],[23.76669,56.32381],[24.019,56.32976],[24.12146,56.2489],[24.28574,56.30064],[24.45415,56.25816],[24.57947,56.28824],[24.62841,56.37533],[24.90238,56.48053],[25.12774,56.20591],[25.57714,56.18241],[25.67312,56.14937],[26.21384,55.85075]]],"terms_url":"https://www.geoportal.lt","terms_text":"NŽT ORT10LT","best":true},{"id":"mapbox_locator_overlay","name":"Locator Overlay","type":"tms","template":"https://api.mapbox.com/styles/v1/openstreetmap/ckasmteyi1tda1ipfis6wqhuq/tiles/256/{zoom}/{x}/{y}{@2x}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJja2JjaDZoMm8wMXU5MzJvMmZwOHY3ZHRyIn0.nzEnT3XUHOzDoZxawHYGxg","zoomExtent":[0,16],"overzoom":false,"terms_url":"https://www.mapbox.com/about/maps","terms_text":"Terms & Feedback","default":true,"description":"Shows major features to help orient you.","overlay":true},{"id":"Lodz-buildings","name":"Łódź: Buildings","type":"wms","template":"https://gis.mapa.lodz.pl/awiskts/services/WMS_publikowane/LODZ/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Budynki,Ulice,Adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"terms_text":"Urząd Miasta Łodzi","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"},{"id":"Lodz-2015","name":"Łódź: Orthophotomap 2015 (aerial image)","type":"wms","template":"https://gis.mapa.lodz.pl/awiskts/services/Ortofotomapa/Ortofotomapa/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"terms_text":"Urząd Miasta Łodzi","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"},{"id":"Lodz-2017","name":"Łódź: Orthophotomap 2017 (aerial image)","type":"wms","template":"https://mapa.lodz.pl/3/services/OGC/Ortofotomapa/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"terms_text":"Urząd Miasta Łodzi","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"},{"id":"Loire_Atlantique-Orthophotos-2016","name":"Loire-Atlantique - Orthophotos 2016 - 10 cm","type":"wms","template":"https://wms-vuduciel2.makina-corpus.net/geoserver/wms?LAYERS=cg44:ortho44-2016&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-1.48638,46.87691],[-1.54437,46.84873],[-1.73468,46.87246],[-1.89276,46.94234],[-1.95475,46.98084],[-2.07067,47.08521],[-2.2678,47.12656],[-2.22627,47.17124],[-2.19217,47.16914],[-2.19341,47.25546],[-2.29694,47.22769],[-2.41658,47.25336],[-2.54862,47.28575],[-2.63913,47.41678],[-2.50573,47.50812],[-2.31063,47.53021],[-2.24836,47.52384],[-2.23223,47.51499],[-2.12109,47.54674],[-2.11783,47.60126],[-2.1001,47.61123],[-2.09981,47.62005],[-2.11141,47.62873],[-2.10055,47.65141],[-2.08121,47.66578],[-1.98016,47.70751],[-1.83077,47.72419],[-1.67455,47.72544],[-1.63735,47.77463],[-1.49601,47.81752],[-1.49911,47.84166],[-1.38133,47.84415],[-1.346,47.81086],[-1.23007,47.78587],[-1.21643,47.75838],[-1.22635,47.73628],[-1.21086,47.7317],[-1.18668,47.73462],[-1.15196,47.69332],[-1.13151,47.63654],[-1.09121,47.6332],[-0.99265,47.6027],[-0.98459,47.58598],[-1.0317,47.55001],[-1.13585,47.55628],[-1.13275,47.5161],[-1.0317,47.51778],[-0.94863,47.50103],[-0.93686,47.47715],[-0.93376,47.43859],[-0.9009,47.39874],[-0.92694,47.37482],[-0.97157,47.35845],[-1.28339,47.32736],[-1.23379,47.26093],[-1.20032,47.26935],[-1.16498,47.24957],[-1.14143,47.1763],[-1.1563,47.15818],[-1.20652,47.12402],[-1.20838,47.10968],[-1.15568,47.10504],[-1.14081,47.08056],[-1.09431,47.0717],[-1.09989,47.03199],[-1.14453,47.01636],[-1.21582,47.02904],[-1.26727,47.06325],[-1.28524,47.02185],[-1.34972,47.02397],[-1.33918,46.969],[-1.3491,46.94446],[-1.45014,46.91186],[-1.47504,46.9176],[-1.48775,46.93063],[-1.49235,46.98433],[-1.48644,46.99943],[-1.49213,47.02722],[-1.52764,47.00541],[-1.52961,46.97252],[-1.50507,46.94439],[-1.50222,46.92973],[-1.51142,46.91371],[-1.48622,46.89724],[-1.48638,46.87691]]],"terms_url":"http://data2.loire-atlantique.fr/licences/","terms_text":"© Loire-Atlantique ouverture des données publiques"},{"id":"Lombardia-Italy-CTR","name":"Lombardia - Italy (C.T.R. 10000 - 1980-94)","type":"wms","template":"https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?LAYERS=C.T.R. 10000 - 1980-94&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[8.4816,45.28938],[8.63085,45.01372],[8.78009,44.98189],[8.86775,45.02712],[9.07148,44.80063],[9.14966,44.79055],[9.19467,44.67106],[9.31549,44.65758],[9.36997,44.698],[9.37945,44.82752],[9.33207,44.91483],[9.41025,45.03716],[9.78692,45.04386],[9.78692,45.00032],[9.93853,45.002],[9.93379,45.08903],[10.00013,45.09071],[10.00013,44.99697],[10.20149,45.002],[10.20149,44.95004],[10.40523,44.9534],[10.40523,44.90476],[10.49288,44.90308],[10.49288,44.8628],[10.6516,44.85776],[10.64686,44.90308],[11.35282,44.89469],[11.35519,44.93663],[11.45706,44.93328],[11.44758,44.97351],[11.3623,45.00032],[11.35282,45.09238],[11.25806,45.09572],[11.25806,45.13752],[11.16094,45.14253],[11.16094,45.18262],[11.05196,45.19097],[11.05196,45.23436],[10.9572,45.23269],[10.9572,45.28605],[10.8577,45.28438],[10.85534,45.32271],[10.74636,45.32937],[10.75347,45.47408],[10.64686,45.48073],[10.60301,45.51074],[10.57636,45.47379],[10.53549,45.50036],[10.59116,45.53148],[10.61666,45.61304],[10.87429,45.84001],[10.82217,45.85982],[10.67529,45.85817],[10.57342,45.8103],[10.58624,46.00773],[10.5016,46.01596],[10.59325,46.11529],[10.60896,46.35583],[10.65634,46.38688],[10.64686,46.46037],[10.4147,46.57285],[10.32705,46.56797],[10.25124,46.65422],[10.07357,46.62494],[10.02382,46.53212],[10.02855,46.43588],[10.07357,46.39832],[10.12095,46.39669],[10.0783,46.32802],[10.14464,46.26582],[10.10436,46.24781],[9.97407,46.40812],[9.71111,46.3689],[9.68742,46.32312],[9.61872,46.30675],[9.55712,46.32475],[9.50264,46.39015],[9.47895,46.5256],[9.25626,46.51582],[9.22546,46.44078],[9.27284,46.34438],[9.17098,46.19044],[9.04305,46.12808],[9.062,46.09195],[8.97435,46.04593],[8.98856,46.00152],[8.93882,45.97354],[9.04068,45.8961],[9.01936,45.84827],[8.84879,46.0081],[8.89854,46.07059],[8.8251,46.11823],[8.70902,46.11659],[8.67823,46.07552],[8.7185,46.01468],[8.55504,45.90434],[8.59768,45.83836],[8.53372,45.79378],[8.6877,45.49235],[8.78009,45.41591],[8.68533,45.37931],[8.71139,45.34103],[8.69481,45.32104],[8.62848,45.37765],[8.5124,45.35768],[8.4816,45.28938]]],"terms_url":"https://www.dati.gov.it/content/italian-open-data-license-v20","terms_text":"Regione Lombardia - Infrastruttura per l'informazione territoriale"},{"id":"Lombardia-Italy-CTR-DBT","name":"Lombardia - Italy (CTR DBT)","type":"wms","template":"https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sfondo%20C.T.R.%2010000&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[8.4816,45.28938],[8.63085,45.01372],[8.78009,44.98189],[8.86775,45.02712],[9.07148,44.80063],[9.14966,44.79055],[9.19467,44.67106],[9.31549,44.65758],[9.36997,44.698],[9.37945,44.82752],[9.33207,44.91483],[9.41025,45.03716],[9.78692,45.04386],[9.78692,45.00032],[9.93853,45.002],[9.93379,45.08903],[10.00013,45.09071],[10.00013,44.99697],[10.20149,45.002],[10.20149,44.95004],[10.40523,44.9534],[10.40523,44.90476],[10.49288,44.90308],[10.49288,44.8628],[10.6516,44.85776],[10.64686,44.90308],[11.35282,44.89469],[11.35519,44.93663],[11.45706,44.93328],[11.44758,44.97351],[11.3623,45.00032],[11.35282,45.09238],[11.25806,45.09572],[11.25806,45.13752],[11.16094,45.14253],[11.16094,45.18262],[11.05196,45.19097],[11.05196,45.23436],[10.9572,45.23269],[10.9572,45.28605],[10.8577,45.28438],[10.85534,45.32271],[10.74636,45.32937],[10.75347,45.47408],[10.64686,45.48073],[10.60301,45.51074],[10.57636,45.47379],[10.53549,45.50036],[10.59116,45.53148],[10.61666,45.61304],[10.87429,45.84001],[10.82217,45.85982],[10.67529,45.85817],[10.57342,45.8103],[10.58624,46.00773],[10.5016,46.01596],[10.59325,46.11529],[10.60896,46.35583],[10.65634,46.38688],[10.64686,46.46037],[10.4147,46.57285],[10.32705,46.56797],[10.25124,46.65422],[10.07357,46.62494],[10.02382,46.53212],[10.02855,46.43588],[10.07357,46.39832],[10.12095,46.39669],[10.0783,46.32802],[10.14464,46.26582],[10.10436,46.24781],[9.97407,46.40812],[9.71111,46.3689],[9.68742,46.32312],[9.61872,46.30675],[9.55712,46.32475],[9.50264,46.39015],[9.47895,46.5256],[9.25626,46.51582],[9.22546,46.44078],[9.27284,46.34438],[9.17098,46.19044],[9.04305,46.12808],[9.062,46.09195],[8.97435,46.04593],[8.98856,46.00152],[8.93882,45.97354],[9.04068,45.8961],[9.01936,45.84827],[8.84879,46.0081],[8.89854,46.07059],[8.8251,46.11823],[8.70902,46.11659],[8.67823,46.07552],[8.7185,46.01468],[8.55504,45.90434],[8.59768,45.83836],[8.53372,45.79378],[8.6877,45.49235],[8.78009,45.41591],[8.68533,45.37931],[8.71139,45.34103],[8.69481,45.32104],[8.62848,45.37765],[8.5124,45.35768],[8.4816,45.28938]]],"terms_url":"https://www.dati.gov.it/content/italian-open-data-license-v20","terms_text":"CTR DBT 10000 Regione Lombardia"},{"id":"londrina2011","name":"Londrina Ortofoto 2011","type":"tms","template":"https://siglon.londrina.pr.gov.br/arcgis/rest/services/Imagens/Ortofotos_2011_Paranacidade/MapServer/WMTS/tile/1.0.0/Imagens_Ortofotos_2011_Paranacidade/default/GoogleMapsCompatible/{zoom}/{y}/{x}","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[-51.10903,-23.39275],[-51.11015,-23.39112],[-51.11198,-23.3896],[-51.11358,-23.38977],[-51.121,-23.38593],[-51.12225,-23.38511],[-51.12483,-23.3835],[-51.12538,-23.38187],[-51.12482,-23.3777],[-51.12446,-23.37505],[-51.12437,-23.3723],[-51.12244,-23.37033],[-51.12302,-23.36643],[-51.12856,-23.36548],[-51.12832,-23.35884],[-51.12477,-23.35476],[-51.12703,-23.35091],[-51.12412,-23.3468],[-51.12025,-23.34781],[-51.11765,-23.33969],[-51.11265,-23.34129],[-51.1094,-23.33489],[-51.10756,-23.33409],[-51.10486,-23.33398],[-51.10253,-23.33419],[-51.09987,-23.33102],[-51.09801,-23.32936],[-51.09999,-23.32831],[-51.10323,-23.32532],[-51.10473,-23.32319],[-51.10466,-23.32129],[-51.10515,-23.31844],[-51.10636,-23.31575],[-51.10661,-23.31467],[-51.1105,-23.31167],[-51.11158,-23.30842],[-51.0995,-23.30947],[-51.0974,-23.30863],[-51.09512,-23.30745],[-51.09202,-23.30494],[-51.09036,-23.30371],[-51.09205,-23.29875],[-51.09269,-23.2975],[-51.09408,-23.29295],[-51.10074,-23.29332],[-51.10102,-23.28871],[-51.10068,-23.28837],[-51.10085,-23.28778],[-51.09938,-23.28664],[-51.09632,-23.27791],[-51.10285,-23.27302],[-51.10836,-23.27034],[-51.1131,-23.2684],[-51.1316,-23.26534],[-51.13188,-23.26201],[-51.13173,-23.25506],[-51.1329,-23.25468],[-51.13296,-23.25075],[-51.13474,-23.25127],[-51.13534,-23.25133],[-51.13517,-23.24359],[-51.13535,-23.24118],[-51.13752,-23.24219],[-51.13885,-23.2435],[-51.14109,-23.24521],[-51.14717,-23.24318],[-51.14761,-23.23828],[-51.14908,-23.23588],[-51.14977,-23.23681],[-51.15139,-23.23854],[-51.15289,-23.23884],[-51.15384,-23.23895],[-51.1582,-23.23814],[-51.16045,-23.23816],[-51.16035,-23.24658],[-51.15912,-23.24783],[-51.16131,-23.24777],[-51.16659,-23.24594],[-51.17193,-23.24582],[-51.17205,-23.24956],[-51.17424,-23.2484],[-51.17514,-23.24932],[-51.17686,-23.24816],[-51.17947,-23.25169],[-51.18135,-23.25381],[-51.18274,-23.25363],[-51.18379,-23.25326],[-51.18496,-23.2533],[-51.18627,-23.25215],[-51.18665,-23.24748],[-51.19118,-23.24914],[-51.19142,-23.25286],[-51.19369,-23.25278],[-51.19384,-23.26074],[-51.20097,-23.26055],[-51.20127,-23.2426],[-51.20994,-23.24278],[-51.2109,-23.26988],[-51.21969,-23.27222],[-51.22597,-23.27453],[-51.22934,-23.2786],[-51.23452,-23.2816],[-51.23498,-23.28325],[-51.23507,-23.28544],[-51.23371,-23.2859],[-51.23216,-23.28802],[-51.2287,-23.29229],[-51.2274,-23.2946],[-51.22679,-23.29548],[-51.2256,-23.29657],[-51.22393,-23.29721],[-51.22048,-23.30073],[-51.21864,-23.3013],[-51.21668,-23.30212],[-51.21424,-23.30441],[-51.21097,-23.30697],[-51.22328,-23.3183],[-51.22439,-23.31459],[-51.22521,-23.31289],[-51.22512,-23.31258],[-51.22521,-23.31251],[-51.22553,-23.31253],[-51.22595,-23.31239],[-51.22617,-23.31183],[-51.22936,-23.31489],[-51.22802,-23.31661],[-51.22789,-23.31902],[-51.22767,-23.32023],[-51.22723,-23.32151],[-51.22739,-23.32223],[-51.22725,-23.32285],[-51.23033,-23.32558],[-51.23046,-23.32671],[-51.22954,-23.32789],[-51.22916,-23.3305],[-51.22929,-23.33178],[-51.22681,-23.33447],[-51.22602,-23.33657],[-51.22473,-23.33839],[-51.2221,-23.34023],[-51.22257,-23.34196],[-51.22381,-23.34339],[-51.22384,-23.34531],[-51.22441,-23.347],[-51.22454,-23.34829],[-51.22404,-23.34968],[-51.22351,-23.35011],[-51.22382,-23.35077],[-51.22305,-23.35174],[-51.2226,-23.35296],[-51.22587,-23.35481],[-51.2265,-23.36706],[-51.22354,-23.36915],[-51.22367,-23.37968],[-51.22038,-23.38163],[-51.21647,-23.3817],[-51.21416,-23.37995],[-51.20928,-23.37395],[-51.20738,-23.36814],[-51.20629,-23.36723],[-51.20472,-23.36627],[-51.19823,-23.36668],[-51.19297,-23.36651],[-51.18986,-23.36544],[-51.18806,-23.36464],[-51.18718,-23.36453],[-51.1858,-23.36374],[-51.18304,-23.36359],[-51.18071,-23.36376],[-51.17907,-23.36158],[-51.17764,-23.35836],[-51.16684,-23.35626],[-51.16614,-23.35854],[-51.16476,-23.36039],[-51.16077,-23.35922],[-51.15983,-23.3666],[-51.16204,-23.36861],[-51.16276,-23.37416],[-51.15845,-23.3758],[-51.15505,-23.37631],[-51.15396,-23.37903],[-51.15299,-23.38105],[-51.15119,-23.38208],[-51.14917,-23.38251],[-51.14722,-23.38216],[-51.14518,-23.38259],[-51.1441,-23.38376],[-51.14512,-23.38808],[-51.1418,-23.3894],[-51.14031,-23.3888],[-51.14068,-23.39161],[-51.14127,-23.39354],[-51.14094,-23.39443],[-51.14046,-23.39536],[-51.13939,-23.3951],[-51.13739,-23.39315],[-51.13609,-23.3898],[-51.13429,-23.38976],[-51.13216,-23.39007],[-51.13172,-23.39286],[-51.12259,-23.38864],[-51.12228,-23.39166],[-51.11883,-23.39317],[-51.11568,-23.39335],[-51.10903,-23.39275]],[[-51.13829,-23.41601],[-51.13331,-23.41867],[-51.13209,-23.41644],[-51.13002,-23.41829],[-51.12869,-23.41901],[-51.12824,-23.42103],[-51.12696,-23.42186],[-51.12533,-23.42269],[-51.12445,-23.42097],[-51.12151,-23.42411],[-51.12063,-23.42327],[-51.11971,-23.42312],[-51.11977,-23.42157],[-51.1188,-23.42155],[-51.11643,-23.42084],[-51.11943,-23.41917],[-51.11787,-23.41678],[-51.11655,-23.41731],[-51.1157,-23.4157],[-51.11512,-23.41309],[-51.11908,-23.41111],[-51.1196,-23.4117],[-51.12052,-23.41489],[-51.12148,-23.41714],[-51.12309,-23.41863],[-51.12755,-23.41654],[-51.12803,-23.4174],[-51.1312,-23.41557],[-51.1308,-23.41477],[-51.13279,-23.41264],[-51.13522,-23.41106],[-51.13586,-23.41096],[-51.13682,-23.41119],[-51.13721,-23.41158],[-51.1373,-23.41324],[-51.13743,-23.41471],[-51.13829,-23.41601]],[[-51.18929,-23.61469],[-51.18869,-23.61385],[-51.18818,-23.61339],[-51.18731,-23.61302],[-51.18629,-23.61314],[-51.18402,-23.61396],[-51.18349,-23.61397],[-51.18183,-23.61284],[-51.1814,-23.61344],[-51.18063,-23.61314],[-51.18001,-23.61409],[-51.17866,-23.61329],[-51.18065,-23.6106],[-51.17972,-23.61018],[-51.18062,-23.60849],[-51.18212,-23.6085],[-51.18261,-23.60775],[-51.1832,-23.60804],[-51.18415,-23.60628],[-51.18511,-23.60666],[-51.18649,-23.6047],[-51.18902,-23.6061],[-51.18821,-23.60742],[-51.18919,-23.60802],[-51.1889,-23.60953],[-51.18962,-23.60993],[-51.19119,-23.61119],[-51.19015,-23.61245],[-51.19054,-23.61276],[-51.19029,-23.61378],[-51.18929,-23.61469]],[[-51.08006,-23.52984],[-51.07962,-23.52205],[-51.08468,-23.52194],[-51.08582,-23.52404],[-51.08589,-23.52704],[-51.08579,-23.52777],[-51.0853,-23.52806],[-51.08514,-23.52857],[-51.08512,-23.52982],[-51.08471,-23.53024],[-51.08343,-23.53024],[-51.0833,-23.52978],[-51.08006,-23.52984]]],"terms_url":"http://siglon.londrina.pr.gov.br","terms_text":"Prefeitura do Londrinas, PR"},{"id":"itu-lotes","name":"Lotes da cidade de Itu, SP","type":"wms","template":"https://services.urbithings.com/geoserver/RmlzO8a8xQ/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-5275511.41033,-2654027.68546],[-5280097.63203,-2660907.01801],[-5279142.16917,-2677818.71052],[-5270351.91092,-2685462.41334],[-5246943.07101,-2683933.67278],[-5248758.45043,-2677245.4328],[-5241974.66417,-2658709.45344],[-5245509.87673,-2653932.13918],[-5275511.41033,-2654027.68546]]],"terms_url":"http://addressforall.org","terms_text":"Instituto AddressForAll","overlay":true},{"id":"Arenda_OAM","name":"Lupang Arenda, Taytay Drone Imagery","type":"tms","template":"https://tiles.openaerialmap.org/5d25d7bf161a790005c03e6e/0/5d25d7bf161a790005c03e6f/{zoom}/{x}/{y}.png","zoomExtent":[16,22],"polygon":[[[121.11444,14.5407],[121.11236,14.54131],[121.10965,14.54186],[121.10884,14.54093],[121.10824,14.53808],[121.10841,14.53675],[121.1079,14.53542],[121.10779,14.53295],[121.10792,14.5312],[121.1089,14.53069],[121.11431,14.53035],[121.1153,14.53085],[121.11541,14.53166],[121.11528,14.53388],[121.1145,14.53395],[121.1138,14.53366],[121.1135,14.5343],[121.11435,14.53631],[121.11457,14.53796],[121.11472,14.53901],[121.11459,14.53985],[121.11444,14.5407]]],"best":true},{"id":"orthophoto_lyon_2012","name":"Lyon Orthophoto 2012-03 10cm","type":"wms","template":"https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2012_vue_ensemble_20cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-03-01T00:00:00.000Z","startDate":"2012-03-01T00:00:00.000Z","polygon":[[[4.69049,45.54652],[4.83131,45.54652],[4.83131,45.57131],[4.88344,45.57131],[4.88344,45.59745],[5.16622,45.59745],[5.16622,45.74533],[5.10793,45.74533],[5.10793,45.88145],[4.90698,45.88145],[4.90698,45.92107],[4.84377,45.92107],[4.84377,45.94011],[4.71543,45.94011],[4.71543,45.87018],[4.67458,45.87018],[4.67458,45.7178],[4.69567,45.7178],[4.69049,45.54652]]],"terms_url":"https://data.grandlyon.com/jeux-de-donnees/orthophotographie-2012-metropole-lyon/info","terms_text":"Grand Lyon Smart Data DSIT","description":"Orthophotographie 2012 du Grand Lyon"},{"id":"orthophoto_lyon","name":"Lyon Orthophoto 2015 (8cm)","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/lyon/{zoom}/{x}/{y}","endDate":"2015-05-01T00:00:00.000Z","startDate":"2015-05-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[4.66489,45.54688],[4.88253,45.54348],[4.88435,45.59745],[5.16623,45.59242],[5.17217,45.74532],[5.10793,45.74653],[5.11305,45.88145],[4.90698,45.88508],[4.90822,45.92106],[4.84377,45.92212],[4.84497,45.9581],[4.67729,45.96069],[4.66489,45.54688]]],"terms_url":"https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2015-metropole-lyon-format-ecw/info","terms_text":"Métropole de Lyon DINSI"},{"id":"orthophoto_lyon_2018","name":"Lyon Orthophoto 2018 (8cm)","type":"wms","template":"https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2018_Dalle_unique_8cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-04-20T00:00:00.000Z","startDate":"2018-04-17T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[4.67728,45.9607],[4.66438,45.54676],[4.88308,45.54291],[4.8848,45.59698],[5.16666,45.59194],[5.17284,45.74596],[5.10796,45.74692],[5.11311,45.8814],[4.90677,45.88499],[4.90849,45.9213],[4.84394,45.92202],[4.84531,45.95831],[4.67728,45.9607]]],"terms_url":"https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2018-metropole-lyon-format-ecw/info","terms_text":"Métropole de Lyon","best":true,"description":"Orthophotographie 2018 de la Métropole de Lyon"},{"id":"MainRoadsWA_Road_Hierarchy","name":"Main Roads WA Road Hierarchy","type":"wms","template":"https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Transport/MapServer/WMSServer?LAYERS=8&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}","projection":"EPSG:3857","zoomExtent":[0,21],"polygon":[[[129.00009,-31.68764],[128.99872,-14.58225],[127.08984,-12.29707],[124.76074,-12.98315],[121.24512,-15.70766],[119.0918,-17.60214],[115.53223,-18.85431],[112.41211,-20.46819],[111.24756,-22.83695],[111.00586,-25.62172],[111.64307,-29.66896],[111.68701,-32.3614],[112.14844,-34.47034],[113.35693,-36.10238],[116.98242,-36.70366],[119.44336,-36.94989],[122.27783,-36.61553],[125.99121,-35.40696],[127.59521,-34.57895],[128.86963,-33.59632],[129.00009,-31.68764]]],"terms_url":"https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy","terms_text":"Main Roads Western Australia","overlay":true},{"id":"mainzlatestaerialimagery","name":"Mainz latest aerial imagery","type":"wms","template":"https://geodaten.mainz.de/map/service?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortho_2018&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[12,22],"polygon":[[[8.10355,49.865],[8.38356,49.865],[8.38356,50.0466],[8.10355,50.0466],[8.10355,49.865]]],"terms_url":"https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos","terms_text":"Vermessung und Geoinformation Mainz","icon":"https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png"},{"id":"Mapbox","name":"Mapbox Satellite","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/mapbox.satellite/{zoom}/{x}/{y}@2x.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ","tileSize":512,"zoomExtent":[0,22],"terms_url":"https://www.mapbox.com/about/maps","terms_text":"Terms & Feedback","default":true,"description":"Satellite and aerial imagery.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/MapBoxSatellite.png"},{"id":"Maps4BW-LGL_BW","name":"Maps4BW (LGL-BW, www.lgl-bw.de)","type":"wms","template":"https://owsproxy.lgl-bw.de/owsproxy/ows/WMS_Maps4BW?LAYERS=webatlasde&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[9.06954,49.57679],[9.10577,49.57952],[9.16079,49.58263],[9.24212,49.58402],[9.27192,49.63515],[9.30454,49.65561],[9.36753,49.65893],[9.38253,49.64341],[9.41191,49.66033],[9.39602,49.67143],[9.41828,49.69706],[9.40378,49.71957],[9.37769,49.70357],[9.35828,49.70334],[9.29438,49.73958],[9.31467,49.76859],[9.42435,49.79099],[9.50417,49.78962],[9.51808,49.78214],[9.65623,49.79286],[9.65317,49.73944],[9.63435,49.70076],[9.67054,49.69515],[9.67721,49.71846],[9.71079,49.72918],[9.8014,49.73429],[9.83728,49.70237],[9.87656,49.61362],[9.83362,49.55607],[9.84954,49.54793],[9.87463,49.5836],[9.91419,49.58955],[9.93066,49.56097],[9.92482,49.48951],[10.01787,49.48673],[10.03352,49.52978],[10.06372,49.55129],[10.09052,49.54218],[10.12792,49.51192],[10.11027,49.49272],[10.16753,49.38589],[10.12627,49.3809],[10.14385,49.32772],[10.16061,49.27043],[10.13569,49.26189],[10.14311,49.20387],[10.25161,49.15031],[10.26279,49.12959],[10.26869,49.05202],[10.36527,49.02557],[10.45894,48.93581],[10.46208,48.83947],[10.42886,48.74973],[10.46648,48.73627],[10.49761,48.68581],[10.45007,48.66277],[10.3553,48.65068],[10.32297,48.68241],[10.26028,48.67842],[10.32542,48.60763],[10.31448,48.52323],[10.17973,48.45977],[10.12892,48.45301],[10.10938,48.47445],[10.06355,48.45381],[10.03918,48.45125],[10.04492,48.43158],[10.0152,48.40323],[9.98709,48.38565],[9.97328,48.37944],[9.97549,48.36558],[9.99071,48.3734],[10.00265,48.3632],[9.99992,48.35572],[10.06698,48.28172],[10.08111,48.2253],[10.11306,48.12632],[10.13966,48.11307],[10.14695,48.07455],[10.13763,48.01938],[10.11725,47.9755],[10.11359,47.93422],[10.10709,47.86711],[10.14174,47.80956],[10.0732,47.78686],[10.11825,47.76126],[10.14213,47.70165],[10.13262,47.67678],[10.07445,47.63472],[10.06303,47.66923],[10.00359,47.67526],[9.95808,47.64376],[9.84481,47.67533],[9.83488,47.66042],[9.74926,47.60206],[9.70817,47.60007],[9.65788,47.60599],[9.64742,47.58931],[9.61389,47.57809],[9.56602,47.53274],[9.51199,47.53246],[9.25717,47.65752],[9.18684,47.65697],[9.17591,47.65379],[9.17028,47.65474],[9.15555,47.666],[9.1494,47.66713],[9.13947,47.66367],[9.02005,47.68616],[8.94127,47.65569],[8.89825,47.64821],[8.88263,47.65327],[8.87474,47.6545],[8.87235,47.66971],[8.84949,47.68089],[8.84993,47.70233],[8.81816,47.71242],[8.80108,47.72811],[8.77231,47.71606],[8.81295,47.6959],[8.79373,47.67216],[8.7533,47.68997],[8.72575,47.6917],[8.71002,47.68829],[8.68937,47.69318],[8.67046,47.68235],[8.65783,47.68883],[8.66161,47.71454],[8.70596,47.71584],[8.70932,47.73275],[8.73033,47.75527],[8.72003,47.76273],[8.68871,47.75314],[8.67898,47.78306],[8.64981,47.79435],[8.65592,47.76948],[8.63132,47.75749],[8.61918,47.76216],[8.61351,47.78451],[8.61686,47.79705],[8.568,47.79977],[8.57611,47.79015],[8.57847,47.78102],[8.56315,47.77654],[8.48889,47.76458],[8.45742,47.74126],[8.4623,47.72909],[8.44929,47.71663],[8.41471,47.69991],[8.4273,47.68562],[8.41061,47.6743],[8.46839,47.6568],[8.52474,47.64677],[8.5269,47.66373],[8.56441,47.67261],[8.57853,47.66373],[8.60454,47.6751],[8.63333,47.65212],[8.62386,47.63922],[8.60395,47.63193],[8.61281,47.61327],[8.57951,47.59306],[8.5602,47.59867],[8.56765,47.61442],[8.53394,47.62984],[8.51208,47.61641],[8.46581,47.60137],[8.46631,47.58666],[8.48985,47.59139],[8.5,47.58062],[8.43414,47.5629],[8.39882,47.57559],[8.38525,47.56408],[8.32701,47.56893],[8.29483,47.59077],[8.2948,47.60497],[8.26293,47.60823],[8.22435,47.60446],[8.18644,47.60508],[8.16904,47.59394],[8.13615,47.58246],[8.10503,47.56795],[8.09873,47.55933],[8.08261,47.55624],[8.07095,47.56299],[8.0274,47.54931],[7.94632,47.54209],[7.90966,47.54825],[7.90676,47.5603],[7.88681,47.58765],[7.83987,47.58122],[7.79648,47.55517],[7.69208,47.53137],[7.66583,47.53403],[7.63159,47.56044],[7.63879,47.56619],[7.68607,47.57205],[7.65278,47.59418],[7.62247,47.57767],[7.60473,47.57822],[7.58771,47.59015],[7.52156,47.65161],[7.50399,47.70235],[7.52096,47.77685],[7.55712,47.84839],[7.54946,47.8792],[7.57461,47.93028],[7.61318,47.96804],[7.6119,47.9871],[7.56124,48.03836],[7.57491,48.1258],[7.59534,48.15977],[7.63305,48.19717],[7.66275,48.22473],[7.68466,48.30305],[7.76346,48.49158],[7.80046,48.5126],[7.79958,48.5878],[7.83409,48.64439],[7.91211,48.68899],[7.96723,48.75716],[8.02069,48.78879],[8.04302,48.7956],[8.08647,48.81306],[8.13644,48.89782],[8.19706,48.96021],[8.28161,48.9949],[8.29967,49.02597],[8.31243,49.05996],[8.38654,49.23497],[8.46083,49.28407],[8.48783,49.29326],[8.47577,49.3079],[8.44839,49.31693],[8.45152,49.33135],[8.46288,49.3869],[8.49407,49.40186],[8.49762,49.41583],[8.50721,49.43414],[8.49834,49.44187],[8.47977,49.44391],[8.46414,49.44151],[8.44696,49.44516],[8.43947,49.45214],[8.44407,49.46085],[8.45992,49.46498],[8.46312,49.47135],[8.4554,49.48107],[8.44184,49.49297],[8.41194,49.55852],[8.42193,49.5843],[8.44117,49.59081],[8.45482,49.59157],[8.47738,49.5874],[8.56161,49.52237],[8.61486,49.54175],[8.59165,49.59179],[8.58706,49.61156],[8.65189,49.6209],[8.69494,49.62762],[8.70105,49.59869],[8.68726,49.57096],[8.72597,49.53085],[8.78493,49.51775],[8.81467,49.53187],[8.88863,49.51091],[8.90168,49.50363],[8.90315,49.486],[8.87995,49.46561],[8.83117,49.42147],[8.80845,49.40981],[8.82075,49.39647],[8.83009,49.41316],[8.85107,49.39663],[8.90247,49.44632],[8.93863,49.48179],[8.95154,49.50562],[8.98498,49.51153],[9.03553,49.50079],[9.05731,49.532],[9.10023,49.52728],[9.11009,49.51213],[9.12424,49.51722],[9.11286,49.53337],[9.08284,49.54211],[9.06694,49.56433],[9.06954,49.57679]]],"terms_url":"https://www.lgl-bw.de/","terms_text":"Datengrundlage: LGL, www.lgl-bw.de"},{"id":"MassGIS-2019-Orthos","name":"MassGIS 2019 Orthos","type":"tms","template":"https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/USGS_Orthos_2019/MapServer/tile/{zoom}/{y}/{x}","endDate":"2019-04-25T00:00:00.000Z","startDate":"2019-03-24T00:00:00.000Z","zoomExtent":[7,20],"polygon":[[[-72.13569,42.03025],[-72.53156,42.03458],[-72.57278,42.03022],[-72.58216,42.02474],[-72.60717,42.02515],[-72.60797,42.03108],[-72.64019,42.03205],[-72.69933,42.03696],[-72.75714,42.03635],[-72.75868,42.02439],[-72.76572,42.02276],[-72.76673,42.00327],[-72.81705,41.99769],[-72.81378,42.03674],[-73.03678,42.03929],[-73.43281,42.05059],[-73.49688,42.04968],[-73.50814,42.08626],[-73.26496,42.74594],[-72.6872,42.73348],[-71.97286,42.71307],[-71.69663,42.70572],[-71.29464,42.69704],[-71.27894,42.71136],[-71.26787,42.72603],[-71.25526,42.73659],[-71.24598,42.74231],[-71.23732,42.74491],[-71.22391,42.74643],[-71.18181,42.73732],[-71.18617,42.79088],[-71.16667,42.80891],[-71.13277,42.82145],[-71.06442,42.80626],[-71.05395,42.83337],[-71.04483,42.84869],[-71.03128,42.85924],[-70.96702,42.86887],[-70.94967,42.87588],[-70.92973,42.88504],[-70.91465,42.88661],[-70.90348,42.88671],[-70.88566,42.88288],[-70.84776,42.86088],[-70.82963,42.86875],[-70.81567,42.87204],[-70.45842,42.67694],[-70.8759,42.35302],[-69.88713,42.0519],[-69.89537,41.21643],[-70.81959,41.23192],[-71.09996,41.43386],[-71.12047,41.49717],[-71.13131,41.59231],[-71.14059,41.6051],[-71.14047,41.62389],[-71.13569,41.6284],[-71.13291,41.6601],[-71.17605,41.6681],[-71.17588,41.67154],[-71.1954,41.67514],[-71.26139,41.7523],[-71.32885,41.7811],[-71.33407,41.79455],[-71.34156,41.79817],[-71.33914,41.80842],[-71.3472,41.8231],[-71.3449,41.828],[-71.3352,41.8355],[-71.3422,41.8448],[-71.33392,41.86229],[-71.34086,41.87872],[-71.33865,41.89865],[-71.38174,41.8932],[-71.38127,42.01885],[-71.49744,42.01725],[-71.52888,42.01499],[-71.79925,42.00807],[-71.80067,42.02351],[-72.0635,42.02735],[-72.13569,42.03025]]],"terms_url":"https://docs.digital.mass.gov/dataset/massgis-data-usgs-color-ortho-imagery-2019","terms_text":"MassGIS 2019 Orthos, 2019-04","best":true},{"id":"MassGIS-L3-Parcels","name":"MassGIS L3 Parcels","type":"tms","template":"https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/MassGIS_Level3_Parcels/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[15,20],"polygon":[[[-72.13569,42.03025],[-72.53156,42.03458],[-72.57278,42.03022],[-72.58216,42.02474],[-72.60717,42.02515],[-72.60797,42.03108],[-72.64019,42.03205],[-72.69933,42.03696],[-72.75714,42.03635],[-72.75868,42.02439],[-72.76572,42.02276],[-72.76673,42.00327],[-72.81705,41.99769],[-72.81378,42.03674],[-73.03678,42.03929],[-73.43281,42.05059],[-73.49688,42.04968],[-73.50814,42.08626],[-73.26496,42.74594],[-72.6872,42.73348],[-71.97286,42.71307],[-71.69663,42.70572],[-71.29464,42.69704],[-71.27894,42.71136],[-71.26787,42.72603],[-71.25526,42.73659],[-71.24598,42.74231],[-71.23732,42.74491],[-71.22391,42.74643],[-71.18181,42.73732],[-71.18617,42.79088],[-71.16667,42.80891],[-71.13277,42.82145],[-71.06442,42.80626],[-71.05395,42.83337],[-71.04483,42.84869],[-71.03128,42.85924],[-70.96702,42.86887],[-70.94967,42.87588],[-70.92973,42.88504],[-70.91465,42.88661],[-70.90348,42.88671],[-70.88566,42.88288],[-70.84776,42.86088],[-70.82963,42.86875],[-70.81567,42.87204],[-70.45842,42.67694],[-70.8759,42.35302],[-69.88713,42.0519],[-69.89537,41.21643],[-70.81959,41.23192],[-71.09996,41.43386],[-71.12047,41.49717],[-71.13131,41.59231],[-71.14059,41.6051],[-71.14047,41.62389],[-71.13569,41.6284],[-71.13291,41.6601],[-71.17605,41.6681],[-71.17588,41.67154],[-71.1954,41.67514],[-71.26139,41.7523],[-71.32885,41.7811],[-71.33407,41.79455],[-71.34156,41.79817],[-71.33914,41.80842],[-71.3472,41.8231],[-71.3449,41.828],[-71.3352,41.8355],[-71.3422,41.8448],[-71.33392,41.86229],[-71.34086,41.87872],[-71.33865,41.89865],[-71.38174,41.8932],[-71.38127,42.01885],[-71.49744,42.01725],[-71.52888,42.01499],[-71.79925,42.00807],[-71.80067,42.02351],[-72.0635,42.02735],[-72.13569,42.03025]]],"terms_url":"https://docs.digital.mass.gov/dataset/massgis-data-standardized-assessors-parcels","terms_text":"MassGIS L3 Parcels","overlay":true},{"id":"Maxar_19-20_Australian_Bushfires_PreEvent","name":"Maxar 2019-2020 Australian Bushfires Pre-event","type":"tms","template":"https://cogeoxyz.b-cdn.net/6b6f479fbacd9a42e9e38bc5c0c6889f009beae13b07742ec4a1648f/{zoom}/{x}/{y}.jpg","endDate":"2019-10-18T00:00:00.000Z","startDate":"2018-01-20T00:00:00.000Z","zoomExtent":[11,19],"polygon":[[[149.88647,-32.97641],[149.88785,-34.04583],[150.08835,-34.02421],[150.09264,-34.66569],[150.06758,-34.66604],[150.06775,-34.67733],[149.91669,-34.67952],[149.91806,-34.80365],[150.09247,-34.80478],[150.09796,-34.976],[149.44977,-34.9625],[149.44565,-35.46514],[149.20807,-35.48527],[149.2012,-35.96689],[148.98834,-35.98467],[148.99246,-37.02229],[149.96338,-37.02996],[150.53192,-36.02911],[150.78735,-35.29719],[151.37237,-33.75403],[151.35864,-31.96847],[150.35614,-31.9475],[150.35339,-32.45415],[150.04028,-32.4472],[150.04852,-32.96258],[149.88647,-32.97641]]],"terms_url":"https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires","terms_text":"©2020 DigitalGlobe"},{"id":"Maxar-Premium","name":"Maxar Premium Imagery (Beta)","type":"tms","template":"7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f041cc9f8df06b0345600376663e7dc1cdbc7df16876d8b5d006ed5782e6af4bfe2ff5a292","terms_url":"https://wiki.openstreetmap.org/wiki/DigitalGlobe","terms_text":"Terms & Feedback","default":true,"description":"Maxar Premium is a mosaic composed of Maxar basemap with select regions filled with +Vivid or custom area of interest imagery, 50cm resolution or better, and refreshed more frequently with ongoing updates.","encrypted":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png"},{"id":"Maxar-Standard","name":"Maxar Standard Imagery (Beta)","type":"tms","template":"7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f010c8c9d7fb6b534560012461377dc1cdb672f16827dfe0d005bf5685b7ac4ea97cf5f795","terms_url":"https://wiki.openstreetmap.org/wiki/DigitalGlobe","terms_text":"Terms & Feedback","default":true,"description":"Maxar Standard is a curated set of imagery covering 86% of the earth’s landmass, with 30-60cm resolution where available, backfilled by Landsat. Average age is 2.31 years, with some areas updated 2x per year.","encrypted":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png"},{"id":"geodata.md.gov-MD_SixInchImagery","name":"MD Latest 6 Inch Aerial Imagery","type":"wms","template":"https://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer?LAYERS=MD_SixInchImagery&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-76.23413,37.92037],[-76.59805,38.15832],[-76.94,38.27053],[-77.03819,38.41379],[-77.23526,38.33627],[-77.31216,38.41056],[-77.26273,38.56642],[-77.043,38.71338],[-77.04987,38.7937],[-76.92627,38.8925],[-77.04094,38.9845],[-77.12162,38.92523],[-77.15012,38.95514],[-77.25243,38.97543],[-77.25929,39.02425],[-77.34581,39.05492],[-77.46185,39.07038],[-77.53738,39.13965],[-77.47421,39.22481],[-77.57275,39.30428],[-77.72347,39.32899],[-77.77702,39.46323],[-77.86148,39.51622],[-77.84088,39.60886],[-77.95624,39.59299],[-78.16635,39.69556],[-78.27003,39.62156],[-78.3387,39.64007],[-78.46641,39.52364],[-78.6628,39.54006],[-78.79875,39.60622],[-78.9814,39.4468],[-79.06723,39.47649],[-79.48505,39.19954],[-79.48557,39.72158],[-75.78836,39.72181],[-75.69099,38.46058],[-75.04924,38.45816],[-75.04984,38.40222],[-75.08151,38.32321],[-75.09773,38.30907],[-75.187,38.09755],[-75.23798,38.0224],[-75.61821,37.98967],[-75.86369,37.90953],[-76.23413,37.92037]]],"terms_url":"http://imap.maryland.gov/Pages/imagery-products.aspx","terms_text":"DoIT, MD iMap, MDP","description":"Six Inch resolution aerial imagery for the State of Maryland"},{"id":"geodata.md.gov-MD_ThreeInchImagery","name":"MD Three Inch Aerial Imagery","type":"wms","template":"https://geodata.md.gov/imap/services/Imagery/MD_ThreeInchImagery/MapServer/WmsServer?LAYERS=MD_ThreeInchImagery&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[-76.46299,38.9808],[-76.46326,38.94779],[-76.49499,38.9369],[-76.51617,38.93697],[-76.54763,38.9591],[-76.54745,38.98667],[-76.51559,39.00306],[-76.4839,39.00292],[-76.46299,38.9808]],[[-76.09548,38.84133],[-76.0428,38.8409],[-76.04289,38.8298],[-76.03229,38.8297],[-76.03277,38.79667],[-76.02545,38.79664],[-76.02541,38.77462],[-76.03308,38.77472],[-76.03366,38.73073],[-76.05462,38.73094],[-76.0548,38.72005],[-76.10753,38.72043],[-76.10714,38.75338],[-76.11754,38.75346],[-76.11701,38.79731],[-76.09601,38.79715],[-76.09548,38.84133]],[[-77.23397,39.16838],[-77.25516,39.14647],[-77.25496,39.11343],[-77.18093,39.05337],[-77.14907,39.0477],[-77.12798,39.04779],[-77.10683,39.05325],[-77.10688,39.0917],[-77.11775,39.10827],[-77.16011,39.12485],[-77.15975,39.15214],[-77.17048,39.16302],[-77.21284,39.17272],[-77.23397,39.16838]]],"terms_url":"http://imap.maryland.gov/Pages/imagery-products.aspx","terms_text":"DoIT, MD iMap, MDP","description":"Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis"},{"id":"geodata.md.gov-MD_ColorBasemap","name":"MD Transportation Basemap","type":"wms","template":"https://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=MD_ColorBasemap&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-76.23413,37.92037],[-76.59805,38.15832],[-76.94,38.27053],[-77.03819,38.41379],[-77.23526,38.33627],[-77.31216,38.41056],[-77.26273,38.56642],[-77.043,38.71338],[-77.04987,38.7937],[-76.92627,38.8925],[-77.04094,38.9845],[-77.12162,38.92523],[-77.15012,38.95514],[-77.25243,38.97543],[-77.25929,39.02425],[-77.34581,39.05492],[-77.46185,39.07038],[-77.53738,39.13965],[-77.47421,39.22481],[-77.57275,39.30428],[-77.72347,39.32899],[-77.77702,39.46323],[-77.86148,39.51622],[-77.84088,39.60886],[-77.95624,39.59299],[-78.16635,39.69556],[-78.27003,39.62156],[-78.3387,39.64007],[-78.46641,39.52364],[-78.6628,39.54006],[-78.79875,39.60622],[-78.9814,39.4468],[-79.06723,39.47649],[-79.48505,39.19954],[-79.48557,39.72158],[-75.78836,39.72181],[-75.69099,38.46058],[-75.04924,38.45816],[-75.04984,38.40222],[-75.08151,38.32321],[-75.09773,38.30907],[-75.187,38.09755],[-75.23798,38.0224],[-75.61821,37.98967],[-75.86369,37.90953],[-76.23413,37.92037]]],"terms_url":"http://imap.maryland.gov/Pages/imagery-products.aspx","terms_text":"DoIT, MD iMap, MDP","description":"Maryland State Highway Administration road features and additional Maryland focused landmarks"},{"id":"MCGIS-County-NAIP-Imagery-2015","name":"Mesa County GIS NAIP 2015","type":"wms","template":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/MesaCounty_2015/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"terms_url":"https://gis.mesacounty.us/","terms_text":"Mesa County GIS","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"},{"id":"MCGIS-County-NAIP-Imagery-2017","name":"Mesa County GIS NAIP 2017","type":"wms","template":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/NAIP_2017/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-10-24T00:00:00.000Z","startDate":"2017-08-26T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"terms_url":"https://gis.mesacounty.us/","terms_text":"Mesa County GIS","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"},{"id":"MCGIS-County-Valleywide-Imagery-2018","name":"Mesa County GIS Valleywide 2018","type":"wms","template":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/City_Color_2018/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-108.93915,39.23931],[-108.86841,39.23846],[-108.86843,39.23734],[-108.81245,39.23666],[-108.81274,39.22256],[-108.79405,39.22234],[-108.79432,39.20857],[-108.70096,39.20745],[-108.70123,39.1939],[-108.60764,39.19277],[-108.60791,39.17906],[-108.58915,39.17884],[-108.58943,39.1649],[-108.53332,39.16422],[-108.53361,39.14993],[-108.51461,39.14971],[-108.51489,39.13611],[-108.44076,39.13522],[-108.44104,39.12109],[-108.42192,39.12086],[-108.42201,39.1163],[-108.3984,39.11602],[-108.39798,39.13708],[-108.32446,39.13619],[-108.32416,39.15107],[-108.30718,39.15087],[-108.3066,39.18],[-108.28866,39.17979],[-108.28807,39.20939],[-108.26868,39.20916],[-108.26957,39.16484],[-108.2864,39.16505],[-108.28699,39.13571],[-108.30312,39.13591],[-108.3038,39.10194],[-108.32335,39.10218],[-108.32328,39.10574],[-108.32914,39.10581],[-108.32943,39.09121],[-108.34736,39.09142],[-108.34764,39.07715],[-108.36637,39.07738],[-108.36666,39.06268],[-108.38569,39.06291],[-108.38599,39.04799],[-108.42216,39.04843],[-108.42245,39.03377],[-108.44051,39.03399],[-108.44137,38.99101],[-108.42193,38.99077],[-108.42252,38.96127],[-108.44162,38.9615],[-108.44133,38.97595],[-108.46034,38.97618],[-108.46006,38.99024],[-108.47877,38.99047],[-108.47848,39.00485],[-108.51515,39.0053],[-108.51519,39.00287],[-108.51825,39.00291],[-108.51821,39.00517],[-108.53414,39.00536],[-108.53397,39.0139],[-108.54342,39.01401],[-108.54336,39.01733],[-108.5455,39.01735],[-108.54548,39.01855],[-108.65864,39.01991],[-108.65778,39.06287],[-108.67867,39.06313],[-108.67837,39.07793],[-108.69699,39.07816],[-108.69671,39.09203],[-108.71557,39.09225],[-108.71529,39.10619],[-108.7388,39.10648],[-108.73853,39.12033],[-108.75744,39.12056],[-108.75686,39.14927],[-108.79422,39.14972],[-108.79393,39.16386],[-108.83224,39.16432],[-108.83196,39.17845],[-108.85061,39.17868],[-108.85033,39.19302],[-108.86938,39.19325],[-108.86906,39.20925],[-108.90237,39.20965],[-108.90208,39.22384],[-108.93946,39.22429],[-108.93915,39.23931]]],"terms_url":"https://gis.mesacounty.us/","terms_text":"Mesa County GIS","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"},{"id":"Metropole_Ruhr_RVR-DOP10","name":"Metropole Ruhr: Luftbilder (10 cm)","type":"wms","template":"https://geodaten.metropoleruhr.de/dop/dop?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DOP&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[6.51691,51.81714],[6.52258,51.81469],[6.52281,51.81041],[6.52834,51.81053],[6.53991,51.80134],[6.5511,51.799],[6.56818,51.78992],[6.57476,51.79606],[6.58457,51.79369],[6.59102,51.8024],[6.60911,51.80019],[6.61081,51.79423],[6.63264,51.79981],[6.65946,51.7892],[6.66837,51.77738],[6.7138,51.78084],[6.70876,51.77131],[6.72131,51.76899],[6.7475,51.77035],[6.74862,51.77551],[6.75824,51.77656],[6.7698,51.76649],[6.77219,51.74596],[6.78862,51.74884],[6.79861,51.74217],[6.81927,51.74341],[6.81956,51.73741],[6.82683,51.72983],[6.8403,51.73694],[6.84995,51.73712],[6.85551,51.73636],[6.8586,51.72956],[6.9103,51.74592],[6.90861,51.75275],[6.91511,51.76144],[6.9157,51.7786],[6.93527,51.7738],[6.95606,51.77245],[6.97559,51.79936],[6.98794,51.80129],[6.99485,51.80141],[6.99497,51.79884],[7.02118,51.80014],[7.0244,51.7899],[7.03141,51.78745],[7.0316,51.78317],[7.03847,51.78414],[7.05392,51.77839],[7.06079,51.77936],[7.0609,51.77679],[7.07333,51.777],[7.07867,51.78137],[7.11433,51.78795],[7.13435,51.80542],[7.1616,51.81528],[7.16419,51.8196],[7.19177,51.82174],[7.2141,51.81694],[7.22121,51.81191],[7.23658,51.80785],[7.23668,51.80528],[7.24916,51.80461],[7.2535,51.79953],[7.26179,51.79966],[7.26485,51.79198],[7.26245,51.78252],[7.27229,51.77838],[7.26002,51.77391],[7.26012,51.77134],[7.2688,51.76118],[7.27577,51.75957],[7.27889,51.75019],[7.31079,51.74636],[7.3151,51.74214],[7.31519,51.73957],[7.31102,51.74036],[7.3125,51.73781],[7.32081,51.73707],[7.31169,51.72237],[7.29963,51.71277],[7.2985,51.70589],[7.31069,51.71207],[7.30825,51.70346],[7.32762,51.70202],[7.33057,51.69692],[7.34427,51.69969],[7.34599,51.69028],[7.33919,51.68761],[7.35589,51.68356],[7.35877,51.68017],[7.3781,51.67959],[7.39086,51.66947],[7.40617,51.6654],[7.41031,51.66545],[7.4101,51.67145],[7.43089,51.6683],[7.43892,51.67527],[7.44854,51.67625],[7.44933,51.69341],[7.44094,51.69673],[7.43792,51.7044],[7.42406,51.70593],[7.42245,51.71277],[7.43451,51.72321],[7.44825,51.72511],[7.46718,51.7365],[7.47273,51.73572],[7.4771,51.72892],[7.4826,51.72985],[7.47877,51.72037],[7.48435,51.71872],[7.48449,51.71444],[7.49119,51.72053],[7.49947,51.72063],[7.50214,51.72324],[7.51738,51.72172],[7.51788,51.70629],[7.53035,51.70473],[7.52922,51.69701],[7.53349,51.69277],[7.54458,51.6912],[7.5378,51.68768],[7.54477,51.6852],[7.5528,51.69301],[7.56651,51.69575],[7.56642,51.69832],[7.58706,51.70029],[7.59379,51.70551],[7.6048,51.7065],[7.60743,51.71082],[7.6143,51.71176],[7.61419,51.71518],[7.62663,51.71447],[7.62814,51.7102],[7.64321,51.71381],[7.6531,51.70621],[7.65428,51.71308],[7.668,51.71581],[7.66915,51.72353],[7.68832,51.72889],[7.69283,51.71608],[7.7012,51.71275],[7.71352,51.71631],[7.71481,51.71976],[7.71899,51.71809],[7.71749,51.72236],[7.72163,51.7224],[7.72555,51.73016],[7.73659,51.73028],[7.73638,51.73799],[7.75154,51.73901],[7.7699,51.72378],[7.77119,51.72722],[7.78908,51.72912],[7.79037,51.73256],[7.80282,51.73183],[7.80137,51.73439],[7.80825,51.73531],[7.81228,51.73964],[7.82058,51.73887],[7.82457,51.74491],[7.83287,51.74413],[7.83314,51.73385],[7.83739,51.72961],[7.85815,51.72724],[7.85822,51.72467],[7.86374,51.72472],[7.87187,51.7308],[7.87745,51.72828],[7.88038,51.72145],[7.88875,51.7181],[7.88912,51.70267],[7.90148,51.70536],[7.90568,51.70283],[7.91249,51.70632],[7.92768,51.7056],[7.92912,51.70305],[7.94014,51.704],[7.93746,51.70055],[7.94296,51.70146],[7.96108,51.69305],[7.97631,51.69061],[7.97779,51.68633],[7.9875,51.68385],[7.98761,51.67871],[7.99732,51.67622],[7.9974,51.67279],[7.98365,51.67096],[7.96286,51.67592],[7.95466,51.67242],[7.95366,51.65612],[7.94689,51.65092],[7.94984,51.64237],[7.94443,51.63804],[7.93477,51.6388],[7.93224,51.62935],[7.92406,51.62585],[7.92414,51.62242],[7.91195,51.61374],[7.91632,51.60349],[7.91378,51.59489],[7.87529,51.59282],[7.86837,51.59446],[7.85742,51.59179],[7.85889,51.58837],[7.82749,51.57863],[7.84327,51.55307],[7.83262,51.53925],[7.83277,51.53325],[7.84115,51.52819],[7.8345,51.51955],[7.83755,51.50758],[7.83212,51.50496],[7.83912,51.49988],[7.83923,51.4956],[7.84474,51.49479],[7.8506,51.48028],[7.83418,51.4784],[7.82198,51.47228],[7.80819,51.47471],[7.79876,51.46776],[7.78906,51.47109],[7.76169,51.46823],[7.74785,51.47237],[7.7425,51.46717],[7.73567,51.46623],[7.72864,51.47216],[7.69838,51.4744],[7.67525,51.46728],[7.65606,51.46621],[7.65347,51.46103],[7.63843,51.45914],[7.63589,51.45226],[7.62083,51.45122],[7.61407,51.44772],[7.61977,51.44092],[7.62525,51.44099],[7.62127,51.43666],[7.62825,51.43245],[7.62561,51.42899],[7.63125,51.42391],[7.61633,51.41859],[7.62183,51.4178],[7.62196,51.41352],[7.63313,51.40679],[7.61322,51.38512],[7.60485,51.39017],[7.60609,51.39447],[7.59647,51.39521],[7.58704,51.38995],[7.59,51.38313],[7.58465,51.37878],[7.58644,51.36509],[7.59234,51.35144],[7.59934,51.34638],[7.59257,51.34373],[7.59407,51.33946],[7.58186,51.33588],[7.58334,51.33247],[7.57655,51.33067],[7.57816,51.32298],[7.58373,51.31962],[7.57837,51.31612],[7.58134,51.30844],[7.58547,51.30763],[7.58305,51.29732],[7.56826,51.28942],[7.56582,51.27996],[7.55089,51.27635],[7.54977,51.26862],[7.52923,51.27008],[7.52797,51.26663],[7.51302,51.26387],[7.51049,51.25784],[7.50371,51.25604],[7.50385,51.25175],[7.49563,51.2525],[7.49438,51.24906],[7.49708,51.24995],[7.50271,51.24488],[7.50143,51.24229],[7.48262,51.23262],[7.469,51.23158],[7.46505,51.22724],[7.45129,51.23049],[7.44191,51.22522],[7.44478,51.22098],[7.43534,51.21742],[7.43816,51.21489],[7.43413,51.21312],[7.42995,51.21563],[7.42962,51.22506],[7.42408,51.22756],[7.41182,51.22653],[7.41342,51.2197],[7.39824,51.22463],[7.39521,51.23317],[7.40319,51.23928],[7.3934,51.246],[7.38793,51.24593],[7.38672,51.24162],[7.37853,51.24151],[7.37289,51.24657],[7.35526,51.2429],[7.35405,51.23859],[7.34849,51.24109],[7.339,51.23924],[7.33872,51.24695],[7.32904,51.25024],[7.3238,51.24417],[7.31284,51.24487],[7.31027,51.24054],[7.30481,51.24046],[7.29643,51.24549],[7.29764,51.24979],[7.28262,51.24957],[7.27541,51.25975],[7.2715,51.25455],[7.26734,51.25621],[7.26578,51.26133],[7.27623,51.27434],[7.26764,51.2845],[7.25531,51.28518],[7.26537,51.30847],[7.26521,51.31276],[7.25974,51.31268],[7.26511,51.31533],[7.26365,51.31788],[7.23393,51.308],[7.22973,51.31051],[7.2271,51.3079],[7.22296,51.3087],[7.22309,51.30527],[7.20682,51.30159],[7.20026,51.29463],[7.18792,51.2953],[7.18232,51.29864],[7.16869,51.29757],[7.18065,51.30633],[7.16674,51.31211],[7.16924,51.31815],[7.16503,51.32066],[7.1662,51.32582],[7.15645,51.32996],[7.15351,51.33505],[7.14807,51.33411],[7.14927,51.33842],[7.14513,51.33921],[7.15292,51.34962],[7.14882,51.34956],[7.14731,51.35296],[7.15665,51.35911],[7.15911,51.36601],[7.15189,51.37532],[7.14634,51.37695],[7.13957,51.37513],[7.13802,51.37939],[7.13262,51.37759],[7.127,51.38093],[7.12163,51.37827],[7.12153,51.38084],[7.11742,51.38078],[7.11626,51.37561],[7.11215,51.37555],[7.11205,51.37812],[7.1039,51.37627],[7.09853,51.37361],[7.10004,51.37021],[7.0919,51.36836],[7.08765,51.37172],[7.08088,51.3699],[7.07796,51.37414],[7.0552,51.36176],[7.04973,51.36167],[7.04404,51.36671],[7.03604,51.36144],[7.01944,51.36544],[7.01,51.36185],[7.00745,51.35752],[6.98689,51.35803],[6.98301,51.35282],[6.97743,51.35529],[6.97621,51.35184],[6.96545,51.34737],[6.95033,51.34882],[6.94748,51.35134],[6.9257,51.34839],[6.92422,51.35093],[6.92825,51.35272],[6.92137,51.35346],[6.92391,51.35779],[6.90565,51.36775],[6.90022,51.3668],[6.8904,51.37176],[6.87848,51.36297],[6.86745,51.36449],[6.85115,51.36162],[6.84552,51.36495],[6.84991,51.35903],[6.83385,51.35101],[6.82295,51.34995],[6.81731,51.35328],[6.81615,51.34897],[6.80939,51.34713],[6.80649,51.3505],[6.7941,51.35198],[6.79314,51.34339],[6.77673,51.34308],[6.7475,51.35281],[6.73831,51.34492],[6.72749,51.34214],[6.71287,51.33328],[6.69193,51.34144],[6.66428,51.3469],[6.65435,51.35356],[6.65789,51.36477],[6.67409,51.36938],[6.67794,51.3746],[6.67511,51.37626],[6.6684,51.37356],[6.67309,51.38908],[6.66081,51.38798],[6.65693,51.38362],[6.64602,51.38254],[6.64443,51.3868],[6.63626,51.38577],[6.63586,51.39348],[6.611,51.39726],[6.59479,51.39265],[6.57148,51.39302],[6.56618,51.38948],[6.55797,51.38931],[6.55496,51.39439],[6.54679,51.39337],[6.54505,51.40019],[6.53816,51.4009],[6.52939,51.41101],[6.52596,51.42379],[6.5149,51.42527],[6.51453,51.43213],[6.51987,51.43481],[6.52092,51.44084],[6.51119,51.4432],[6.50821,51.44743],[6.50273,51.44731],[6.50198,51.46101],[6.50709,51.46798],[6.49868,51.47123],[6.49698,51.4772],[6.49012,51.47705],[6.48714,51.48127],[6.4818,51.47859],[6.47608,51.48275],[6.47404,51.49471],[6.46699,51.49799],[6.46245,51.50561],[6.45407,51.508],[6.45497,51.51659],[6.44796,51.51901],[6.45326,51.52255],[6.44876,51.52931],[6.45562,51.52946],[6.47816,51.51966],[6.47499,51.52731],[6.48673,51.53871],[6.46262,51.55191],[6.49612,51.56806],[6.46176,51.56732],[6.42276,51.5759],[6.41912,51.56725],[6.40847,51.56101],[6.38918,51.56144],[6.37657,51.56545],[6.36951,51.56872],[6.36916,51.57471],[6.37726,51.57747],[6.37284,51.58251],[6.37372,51.59111],[6.35235,51.60349],[6.33482,51.59709],[6.32362,51.60026],[6.32067,51.60363],[6.33275,51.60905],[6.33392,51.6125],[6.30035,51.62117],[6.30143,51.62633],[6.29113,51.63725],[6.29225,51.64156],[6.29903,51.64343],[6.32563,51.63632],[6.32819,51.63981],[6.35403,51.64554],[6.35313,51.66095],[6.36553,51.66123],[6.36262,51.66374],[6.37069,51.66735],[6.38091,51.6813],[6.38062,51.68643],[6.37195,51.6931],[6.35808,51.6945],[6.35482,51.703],[6.3682,51.71016],[6.37642,51.7112],[6.38041,51.71387],[6.37731,51.7198],[6.38829,51.7209],[6.38789,51.72775],[6.40932,51.73937],[6.41055,51.74197],[6.40346,51.74524],[6.40597,51.74959],[6.40178,51.75035],[6.40287,51.75552],[6.41405,51.75319],[6.42134,51.7465],[6.42188,51.73708],[6.40877,51.72478],[6.40921,51.71708],[6.4164,51.71209],[6.44839,51.70765],[6.46246,51.70281],[6.47677,51.71855],[6.48908,51.72053],[6.48418,51.73414],[6.48942,51.7394],[6.48908,51.74539],[6.48171,51.75381],[6.53363,51.76434],[6.52478,51.77444],[6.50784,51.78094],[6.4898,51.80714],[6.48961,51.81056],[6.51162,51.81274],[6.51691,51.81714]]],"terms_url":"https://www.metropoleruhr.de/regionalverband-ruhr.html","terms_text":"Datengrundlage: Regionalverband Ruhr"},{"id":"miljodirektoratet-vern","name":"Miljødirektoratet Protected Areas overlay","type":"wms","template":"https://kart.miljodirektoratet.no/arcgis/services/vern/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=naturvern_klasser_omrade&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,22],"polygon":[[[-10.95725,71.60964],[-6.16765,71.62095],[-6.13756,70.30991],[-10.92717,70.29784],[-10.95725,71.60964]],[[16.81947,74.9482],[21.25771,74.94213],[21.23712,73.8918],[16.79889,73.89828],[16.81947,74.9482]],[[4.04288,79.93593],[20.65421,81.54417],[36.6503,80.40108],[26.76265,75.8129],[13.88667,75.79135],[4.04288,79.93593]],[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kart.naturbase.no","terms_text":"© Miljødirektoratet","description":"Norwegian national parks, nature reserves and other protected areas and objects from Naturbase, including Svalbard/Spitsbergen","icon":"https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png","overlay":true},{"id":"miljodirektoratet-friluftsomrader","name":"Miljødirektoratet Public Recreation Areas overlay","type":"wms","template":"https://kart.miljodirektoratet.no/arcgis/services/friluftsliv_statlig_sikra/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=friluftsliv_statlig_sikra&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kartkatalog.miljodirektoratet.no/Dataset/Details/30","terms_text":"© Miljødirektoratet","description":"Public recreation areas with State ownership (\"friluftsområder\").","icon":"https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png","overlay":true},{"id":"mml-tausta","name":"MML Background Map","type":"tms","template":"https://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg","zoomExtent":[2,19],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://www.maanmittauslaitos.fi/en","terms_text":"© Maanmittauslaitos","description":"Background map from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png"},{"id":"mml-orto","name":"MML Orthophoto","type":"tms","template":"https://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg","zoomExtent":[2,19],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://www.maanmittauslaitos.fi/en","terms_text":"© Maanmittauslaitos","best":true,"description":"Ortophotos from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png"},{"id":"mml-topo","name":"MML Topographic Map","type":"tms","template":"https://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg","zoomExtent":[2,19],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://www.maanmittauslaitos.fi/en","terms_text":"© Maanmittauslaitos","description":"Topographic map from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png"},{"id":"mtbmap-no","name":"MTBmap.no","type":"tms","template":"https://mtbmap.no/tiles/osm/mtbmap/{zoom}/{x}/{y}.jpg","tileSize":512,"zoomExtent":[3,14],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.mtbmap.no/","terms_text":"© MTBmap.no","description":"Norwegian mountain biking map from OSM (max zoom 14-16, varies per region)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/no/MTBmapno.png"},{"id":"Mulhouse_2018","name":"Mulhouse - 2018","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/mulhouse_2018/{zoom}/{x}/{y}","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[7.53731,47.78041],[7.57439,47.84128],[7.57301,47.85602],[7.55035,47.86201],[7.53525,47.84588],[7.5016,47.85141],[7.45972,47.84174],[7.4556,47.83252],[7.4453,47.83114],[7.43088,47.84128],[7.41549,47.83831],[7.39174,47.84727],[7.38007,47.83851],[7.33475,47.83989],[7.34024,47.89563],[7.31758,47.91082],[7.28737,47.89977],[7.28462,47.88412],[7.24686,47.88228],[7.23724,47.87629],[7.23312,47.86431],[7.2139,47.86524],[7.183,47.85786],[7.17613,47.84819],[7.21115,47.82284],[7.18986,47.81085],[7.19948,47.78179],[7.16789,47.77025],[7.183,47.73517],[7.17682,47.72362],[7.19467,47.69451],[7.21802,47.68527],[7.24548,47.68527],[7.25166,47.69497],[7.2448,47.70376],[7.2551,47.71392],[7.27844,47.713],[7.27982,47.70237],[7.26814,47.69405],[7.26883,47.68434],[7.28531,47.67094],[7.30247,47.66308],[7.32376,47.65984],[7.33337,47.66724],[7.3732,47.65383],[7.39242,47.65475],[7.40822,47.6603],[7.39723,47.67648],[7.42744,47.68666],[7.47551,47.69821],[7.5222,47.69636],[7.55104,47.71531],[7.56134,47.73517],[7.53731,47.78041]]],"terms_url":"https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/","terms_text":"Mulhouse Alsace Agglomération 2018"},{"id":"MunichLatestAerialImagery","name":"Munich latest aerial imagery 60cm","type":"wms","template":"https://ogc.muenchen.de/wms/opendata_luftbild?LAYERS=bgl0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[11,22],"polygon":[[[11.48878,48.053],[11.55589,48.05323],[11.55583,48.06224],[11.56915,48.06229],[11.56908,48.07128],[11.64986,48.07155],[11.64993,48.06256],[11.70326,48.06274],[11.70313,48.08074],[11.71673,48.08079],[11.71667,48.08968],[11.7299,48.08972],[11.72963,48.12566],[11.74313,48.1257],[11.74292,48.15276],[11.72943,48.15271],[11.72936,48.16152],[11.71612,48.16147],[11.71592,48.18859],[11.7027,48.18855],[11.70263,48.19752],[11.67558,48.19743],[11.67537,48.22446],[11.66176,48.22441],[11.66169,48.23355],[11.64863,48.2335],[11.64857,48.24246],[11.54064,48.2421],[11.54058,48.25093],[11.52735,48.25088],[11.52728,48.26001],[11.47335,48.25983],[11.47356,48.23291],[11.46014,48.23287],[11.46021,48.22373],[11.43336,48.22364],[11.43343,48.21439],[11.3798,48.21421],[11.37987,48.20518],[11.36607,48.20514],[11.36621,48.18741],[11.35259,48.18737],[11.35266,48.17817],[11.33946,48.17813],[11.33973,48.14216],[11.36684,48.14225],[11.36697,48.12443],[11.38083,48.12448],[11.3809,48.11558],[11.44769,48.1158],[11.44804,48.07087],[11.46186,48.07091],[11.46193,48.06193],[11.48872,48.06202],[11.48878,48.053]]],"terms_url":"https://www.muenchen.de/rathaus/Stadtverwaltung/Kommunalreferat/geodatenservice.html","terms_text":"Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de","icon":"https://www.muenchen.de/media/css/images/favicon_114x114.png"},{"id":"openlabs-geoportal-public-transport","name":"Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)","type":"tms","template":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[19.73762,41.30154],[19.88628,41.27213],[19.86877,41.38582],[19.68338,41.3732],[19.73762,41.30154]]],"terms_url":"https://geoportal.openlabs.cc/","terms_text":"Data provided by the Muncipality of Tirana hosted by Open Labs","description":"Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs","overlay":true},{"id":"openlabs-geoportal-tirana","name":"Municipality of Tirana (Open Labs GeoPortal)","type":"tms","template":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[19.70226,41.1404],[19.77573,41.11868],[19.86431,41.12126],[20.24986,41.3495],[20.03082,41.41184],[19.92577,41.5204],[19.88869,41.50755],[19.88937,41.42265],[19.81659,41.46177],[19.7335,41.43037],[19.74174,41.37887],[19.65797,41.37475],[19.57214,41.24322],[19.61815,41.22567],[19.67171,41.22722],[19.70226,41.1404]]],"terms_url":"https://geoportal.openlabs.cc","terms_text":"Data provided by the Muncipality of Tirana hosted by Open Labs","description":"Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs"},{"id":"USDA-NAIP","name":"National Agriculture Imagery Program","type":"wms","template":"https://gis.apfo.usda.gov/arcgis/services/NAIP/USDA_CONUS_PRIME/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[12,20],"polygon":[[[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-122.94196,48.43484],[-122.94196,48.37208],[-122.88062,48.37208],[-122.88062,48.30948],[-122.81676,48.30948],[-122.81676,48.19046],[-123.00411,48.19046],[-123.00411,48.12759],[-123.05842,48.12759],[-123.05842,48.19051],[-123.25411,48.19051],[-123.25411,48.1275],[-123.37066,48.1275],[-123.37066,48.19084],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-124.75551,48.1915],[-124.81853,48.1915],[-124.81853,48.12284],[-124.7553,48.12284],[-124.7553,47.55353],[-124.38121,47.55353],[-124.38121,47.12187],[-124.19289,47.12187],[-124.19289,43.75694],[-124.44434,43.75694],[-124.44434,43.14256],[-124.63989,43.14256],[-124.63989,42.61945],[-124.44385,42.61945],[-124.44385,39.80807],[-123.88157,39.80807],[-123.88157,39.11028],[-123.75805,39.11028],[-123.75805,38.49688],[-123.27028,38.49688],[-123.27028,37.93319],[-122.81481,37.93319],[-122.81481,37.80196],[-122.56643,37.80196],[-122.56643,36.93196],[-121.8784,36.93196],[-121.8784,36.68976],[-122.00347,36.68976],[-122.00347,36.43411],[-121.94142,36.43411],[-121.94142,35.92976],[-121.5041,35.92976],[-121.5041,35.81003],[-121.37903,35.81003],[-121.37903,35.42392],[-120.94265,35.42392],[-120.94265,35.18497],[-120.8172,35.18497],[-120.8172,35.12199],[-120.69184,35.12199],[-120.69184,34.49668],[-120.50459,34.49668],[-120.50459,34.43397],[-120.00788,34.43397],[-120.00788,34.36826],[-119.52835,34.36826],[-119.52835,34.05764],[-119.0061,34.05764],[-119.0061,33.99753],[-118.50463,33.99753],[-118.50463,33.86946],[-118.44132,33.86946],[-118.44132,33.68653],[-118.06691,33.68653],[-118.06691,33.30638],[-117.503,33.30638],[-117.503,33.05003],[-117.31882,33.05003],[-117.31882,32.62059],[-117.1917,32.62059],[-117.1917,32.49746],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-114.88081,32.62649],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.43399],[-111.4419,31.43399],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-97.11389,27.68092],[-97.0571,27.68092],[-97.0571,27.81082],[-95.58108,27.81082],[-95.58108,28.74688],[-94.27104,28.74688],[-94.27104,29.55941],[-92.50299,29.55941],[-92.50299,29.49748],[-91.87762,29.49748],[-91.87762,29.3727],[-91.37842,29.3727],[-91.37842,29.24683],[-91.3154,29.24683],[-91.3154,29.18443],[-91.12947,29.18443],[-91.12947,29.12326],[-91.00526,29.12326],[-91.00526,28.99684],[-89.45002,28.99684],[-89.45002,28.86774],[-88.81043,28.86774],[-88.81043,30.18419],[-85.87915,30.18419],[-85.87915,29.5455],[-84.83681,29.5455],[-84.83681,29.62252],[-84.74828,29.62252],[-84.74828,29.68362],[-84.68589,29.68362],[-84.68589,29.74684],[-83.6297,29.74684],[-83.6297,29.43244],[-83.31749,29.43244],[-83.31749,29.05794],[-82.87966,29.05794],[-82.87966,27.74535],[-82.81828,27.74535],[-82.81828,26.92909],[-82.37968,26.92909],[-82.37968,26.36942],[-81.87771,26.36942],[-81.87771,25.80597],[-81.50369,25.80597],[-81.50369,25.74748],[-81.44055,25.74748],[-81.44055,25.68515],[-81.31559,25.68515],[-81.31559,25.5601],[-81.25385,25.5601],[-81.25385,25.43424],[-81.1902,25.43424],[-81.1902,25.12343],[-81.12881,25.12343],[-81.12881,25.06194],[-81.06492,25.06194],[-81.06492,24.81578],[-81.62895,24.81578],[-81.62895,24.75384],[-81.69072,24.75384],[-81.69072,24.68994],[-81.81732,24.68994],[-81.81732,24.62792],[-82.191,24.62792],[-82.191,24.49629],[-81.62166,24.49629],[-81.62166,24.55948],[-81.37201,24.55948],[-81.37201,24.62207],[-81.05933,24.62207],[-81.05933,24.68483],[-80.93471,24.68483],[-80.93471,24.74748],[-80.74711,24.74748],[-80.74711,24.81006],[-80.36299,24.81006],[-80.36299,25.11759],[-80.12234,25.11759],[-80.12234,25.74724],[-80.05885,25.74724],[-80.05885,26.37083],[-79.99584,26.37083],[-79.99584,26.9398],[-80.05873,26.9398],[-80.05873,27.12775],[-80.12263,27.12775],[-80.12263,27.25343],[-80.1847,27.25343],[-80.1847,27.37812],[-80.24617,27.37812],[-80.24617,27.56587],[-80.30948,27.56587],[-80.30948,27.75303],[-80.37215,27.75303],[-80.37215,27.87745],[-80.43515,27.87745],[-80.43515,28.00334],[-80.49661,28.00334],[-80.49661,28.12773],[-80.55872,28.12773],[-80.55872,28.37235],[-80.49663,28.37235],[-80.49663,29.51603],[-81.12136,29.51603],[-81.12136,31.6847],[-80.60187,31.6847],[-80.60187,32.24753],[-79.4921,32.24753],[-79.4921,32.99703],[-79.11165,32.99703],[-79.11165,33.37295],[-78.61536,33.37295],[-78.61536,33.80976],[-77.9317,33.80976],[-77.9317,33.87182],[-77.86923,33.87182],[-77.86923,34.05525],[-77.68264,34.05525],[-77.68264,34.29746],[-77.24535,34.29746],[-77.24535,34.55986],[-76.49733,34.55986],[-76.49733,34.6228],[-76.43376,34.6228],[-76.43376,34.68493],[-76.37321,34.68493],[-76.37321,34.74677],[-76.30594,34.74677],[-76.30594,34.80855],[-76.2468,34.80855],[-76.2468,34.87284],[-76.18259,34.87284],[-76.18259,34.93353],[-76.12081,34.93353],[-76.12081,34.99524],[-75.9979,34.99524],[-75.9979,35.05782],[-75.87034,35.05782],[-75.87034,35.12191],[-75.74622,35.12191],[-75.74622,35.18189],[-75.49297,35.18189],[-75.49297,35.3083],[-75.43257,35.3083],[-75.43257,35.75425],[-75.49699,35.75425],[-75.49699,37.81056],[-75.3083,37.81056],[-75.3083,37.87201],[-75.2456,37.87201],[-75.2456,37.99548],[-75.18288,37.99548],[-75.18288,38.05851],[-75.11848,38.05851],[-75.11848,38.24691],[-75.05921,38.24691],[-75.05921,38.37043],[-74.99481,38.37043],[-74.99481,38.87184],[-74.48783,38.87184],[-74.48783,39.30894],[-74.17663,39.30894],[-74.17663,39.62247],[-74.0567,39.62247],[-74.0567,39.93318],[-73.9959,39.93318],[-73.9959,40.18549],[-73.93416,40.18549],[-73.93416,40.49595],[-73.8723,40.49595],[-73.8723,40.55271],[-71.80745,40.55271],[-71.80745,41.3088],[-70.88251,41.3088],[-70.88251,41.18498],[-70.74619,41.18498],[-70.74619,41.30919],[-70.43376,41.30919],[-70.43376,41.49639],[-69.93343,41.49639],[-69.93343,41.62308],[-69.86986,41.62308],[-69.86986,41.87769],[-69.93579,41.87769],[-69.93579,42.00323],[-69.99758,42.00323],[-69.99758,42.06502],[-70.06061,42.06502],[-70.06061,42.12943],[-70.55729,42.12943],[-70.55729,43.24871],[-70.49741,43.24871],[-70.49741,43.30922],[-70.37042,43.30922],[-70.37042,43.37196],[-70.30857,43.37196],[-70.30857,43.49699],[-70.18392,43.49699],[-70.18392,43.62235],[-70.05758,43.62235],[-70.05758,43.68502],[-69.74552,43.68502],[-69.74552,43.74766],[-69.24728,43.74766],[-69.24728,43.8107],[-69.05607,43.8107],[-69.05607,43.87172],[-68.99505,43.87172],[-68.99505,43.9982],[-68.49637,43.9982],[-68.49637,44.05974],[-68.3081,44.05974],[-68.3081,44.12214],[-68.18518,44.12214],[-68.18518,44.30814],[-67.9956,44.30814],[-67.9956,44.37275],[-67.8103,44.37275],[-67.8103,44.43518],[-67.49653,44.43518],[-67.49653,44.49688],[-67.37102,44.49688],[-67.37102,44.56006],[-67.18488,44.56006],[-67.18488,44.62133],[-67.12212,44.62133],[-67.12212,44.68679],[-67.05936,44.68679],[-67.05936,44.74737],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.69099],[-75.62902,44.69099],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.44276,44.06537],[-76.44276,43.99638],[-76.31703,43.99638],[-76.31703,43.94146],[-76.50766,43.94146],[-76.50766,43.87233],[-76.383,43.87233],[-76.383,43.80919],[-76.25341,43.80919],[-76.25341,43.56652],[-76.50648,43.56652],[-76.50648,43.50339],[-76.63312,43.50339],[-76.63312,43.44323],[-76.69511,43.44323],[-76.69511,43.37869],[-76.81778,43.37869],[-76.81778,43.31807],[-77.682,43.31807],[-77.682,43.37894],[-78.05659,43.37894],[-78.05659,43.43969],[-78.43897,43.43969],[-78.43897,43.37944],[-78.88034,43.37944],[-78.88034,43.31497],[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.12999],[-79.12989,43.12999],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-79.06944,42.75422],[-79.06944,42.69416],[-79.13344,42.69416],[-79.13344,42.6297],[-79.19475,42.6297],[-79.19475,42.56635],[-79.37868,42.56635],[-79.37868,42.50334],[-79.4443,42.50334],[-79.4443,42.44106],[-79.56799,42.44106],[-79.56799,42.37753],[-79.69062,42.37753],[-79.69062,42.31711],[-79.81646,42.31711],[-79.81646,42.25345],[-80.00524,42.25345],[-80.00524,42.19092],[-80.19168,42.19092],[-80.19168,42.12726],[-80.3168,42.12726],[-80.3168,42.06699],[-80.50632,42.06699],[-80.50632,42.00343],[-80.69305,42.00343],[-80.69305,41.94151],[-80.94404,41.94151],[-80.94404,41.87812],[-81.19427,41.87812],[-81.19427,41.81665],[-81.31901,41.81665],[-81.31901,41.75455],[-81.44184,41.75455],[-81.44184,41.69096],[-81.50535,41.69096],[-81.50535,41.63016],[-82.74701,41.63016],[-82.74701,41.75369],[-82.88391,41.75369],[-82.88391,41.56561],[-82.99572,41.56561],[-82.99572,41.62704],[-83.12578,41.62704],[-83.12578,41.68784],[-83.24747,41.68784],[-83.24747,41.75369],[-83.37373,41.75369],[-83.37373,41.80928],[-83.3106,41.80928],[-83.3106,41.87161],[-83.24747,41.87161],[-83.24747,41.93614],[-83.18434,41.93614],[-83.18434,41.99609],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.80722,42.37177],[-82.80722,42.55855],[-82.75537,42.55855],[-82.75537,42.49549],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.43289,43.06481],[-82.43289,43.19176],[-82.49475,43.19176],[-82.49475,43.50346],[-82.55713,43.50346],[-82.55713,43.81609],[-82.61979,43.81609],[-82.61979,43.94221],[-82.68395,43.94221],[-82.68395,44.00226],[-82.74653,44.00226],[-82.74653,44.06705],[-82.87087,44.06705],[-82.87087,44.12919],[-83.00852,44.12919],[-83.00852,44.06648],[-83.13361,44.06648],[-83.13361,44.00539],[-83.24145,44.00539],[-83.24145,44.9962],[-83.18061,44.9962],[-83.18061,45.0673],[-83.24552,45.0673],[-83.24552,45.12874],[-83.30659,45.12874],[-83.30659,45.25515],[-83.37061,45.25515],[-83.37061,45.31659],[-83.43256,45.31659],[-83.43256,45.37921],[-83.61784,45.37921],[-83.61784,45.44197],[-83.80843,45.44197],[-83.80843,45.50362],[-84.05507,45.50362],[-84.05507,45.56479],[-84.12352,45.56479],[-84.12352,45.62878],[-84.18075,45.62878],[-84.18075,45.69147],[-84.31116,45.69147],[-84.31116,45.93371],[-83.821,45.93371],[-83.821,45.87251],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.49627,46.00169],[-83.49627,46.06682],[-83.56,46.06682],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.99657,46.50453],[-84.99657,46.68429],[-84.92982,46.68429],[-84.92982,46.81808],[-85.31659,46.81808],[-85.31659,46.75358],[-87.55626,46.75358],[-87.55626,47.44074],[-87.68254,47.44074],[-87.68254,47.50356],[-88.25607,47.50356],[-88.25607,47.44337],[-88.44174,47.44337],[-88.44174,47.37899],[-88.50683,47.37899],[-88.50683,47.31539],[-88.63128,47.31539],[-88.63128,47.25398],[-88.75696,47.25398],[-88.75696,47.19347],[-88.88383,47.19347],[-88.88383,47.12847],[-88.94342,47.12847],[-88.94342,47.06621],[-89.07087,47.06621],[-89.07087,47.00268],[-89.25656,47.00268],[-89.25656,46.94108],[-90.36777,46.94108],[-90.36777,47.68448],[-90.307,47.68448],[-90.307,47.74602],[-89.99486,47.74602],[-89.99486,47.80827],[-89.80486,47.80827],[-89.80486,47.87006],[-89.67977,47.87006],[-89.67977,47.93396],[-89.49338,47.93396],[-89.49338,47.9958],[-89.42847,47.9958],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62869],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-122.81748,49.06561],[-122.81748,49.00291],[-122.87952,49.00291],[-122.87952,48.9347],[-122.81746,48.9347],[-122.81746,48.8102],[-122.75389,48.8102],[-122.75389,48.75338],[-122.87129,48.75338],[-122.87129,48.81539],[-123.00554,48.81539],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529]],[[-122.93417,37.75215],[-122.93475,37.6842],[-123.0679,37.6849],[-123.06737,37.74753],[-123.12926,37.74785],[-123.12869,37.81569],[-123.05907,37.81532],[-123.05959,37.75281],[-122.93417,37.75215]],[[-71.62995,41.25409],[-71.49665,41.25414],[-71.49656,41.12297],[-71.62986,41.12291],[-71.62995,41.25409]],[[-70.31843,41.37752],[-70.31834,41.24482],[-70.19066,41.24487],[-70.19062,41.1886],[-69.9336,41.1887],[-69.93373,41.37919],[-69.99507,41.37917],[-69.99511,41.44316],[-70.07078,41.44313],[-70.0707,41.31449],[-70.24617,41.31443],[-70.24621,41.37755],[-70.31843,41.37752]],[[-68.94034,43.94041],[-68.68569,43.9405],[-68.68565,43.87218],[-68.74654,43.87216],[-68.7465,43.81025],[-68.80908,43.81023],[-68.80903,43.74673],[-68.87731,43.7467],[-68.87735,43.81178],[-68.94025,43.81176],[-68.94034,43.94041]],[[-123.12915,49.06451],[-122.99542,49.06451],[-122.99542,48.93432],[-123.12915,48.93432],[-123.12915,49.06451]],[[-82.94071,24.75359],[-82.87194,24.75359],[-82.87194,24.69057],[-82.74462,24.69057],[-82.74462,24.62146],[-82.8088,24.62146],[-82.8088,24.55949],[-82.94071,24.55949],[-82.94071,24.75359]]],"description":"The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USDA.png"},{"id":"NC-US","name":"NC Latest Orthoimagery","type":"wms","template":"https://services.nconemap.gov/secure/services/Imagery/Orthoimagery_Latest/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","polygon":[[[-81.6792,36.5974],[-80.25359,36.54793],[-75.8409,36.5671],[-75.4323,35.6441],[-75.50475,35.18806],[-75.70525,35.17684],[-76.14745,34.94077],[-76.53472,34.55487],[-76.69676,34.66789],[-77.27904,34.53224],[-77.68828,34.26482],[-77.9435,33.8269],[-78.21288,33.89402],[-78.5301,33.8304],[-79.6693,34.7916],[-80.8122,34.8085],[-80.84685,34.96329],[-80.95122,35.05552],[-81.06383,35.01729],[-81.07482,35.13417],[-82.3632,35.1805],[-82.9989,34.9919],[-84.3333,34.9767],[-84.27184,35.28229],[-84.09056,35.27332],[-83.91478,35.53301],[-83.55498,35.5911],[-83.2556,35.73392],[-82.98644,35.81414],[-82.92327,35.96767],[-82.67882,36.0854],[-82.60192,36.08984],[-82.536,35.96989],[-82.35472,36.14752],[-82.04436,36.14309],[-81.90428,36.33803],[-81.74224,36.37342],[-81.6792,36.5974]]],"description":"Most recent true color imagery for the state of North Carolina. The imagery has a pixel resolution of 6 inches and is comprised of imagery flown in 2010, 2012, 2013, and 2014"},{"id":"img.nj.gov-Infrared2015","name":"NJ 2015 Aerial Imagery (Infrared)","type":"wms","template":"https://img.nj.gov/imagerywms/Infrared2015?LAYERS=Infrared2015&STYLES=&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-05-03T00:00:00.000Z","startDate":"2015-03-29T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"terms_url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D","terms_text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","description":"Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution"},{"id":"img.nj.gov-Natural2015","name":"NJ 2015 Aerial Imagery (Natural Color)","type":"wms","template":"https://img.nj.gov/imagerywms/Natural2015?LAYERS=Natural2015&STYLES=&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-05-03T00:00:00.000Z","startDate":"2015-03-29T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"terms_url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D","terms_text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","description":"Digital orthophotography of New Jersey, Natural Color, 1 foot resolution"},{"id":"NLSC-EMAP5","name":"NLSC General Map with Contour line","type":"tms","template":"https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","description":"The emap from Taiwan National Land Surveying and Mapping Center","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"IBGE_Salvador_Streets","name":"Nomes de Ruas IBGE Salvador-BA","type":"tms","template":"https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g","zoomExtent":[0,20],"polygon":[[[-38.48974,-12.81113],[-38.54485,-13.01392],[-38.47755,-13.03466],[-38.33473,-12.94685],[-38.30006,-12.90669],[-38.33954,-12.90435],[-38.35482,-12.83021],[-38.38091,-12.82184],[-38.40717,-12.86754],[-38.46537,-12.81599],[-38.48974,-12.81113]]],"description":"Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.","overlay":true},{"id":"kelkkareitit","name":"Nordic snowmobile overlay","type":"tms","template":"https://tiles.kelkkareitit.fi/kelkkareitit/{zoom}/{x}/{y}.png","zoomExtent":[3,18],"polygon":[[[27.53173,60.21799],[31.35496,62.51233],[31.63513,62.90773],[30.09154,64.91889],[30.21239,65.87473],[29.13573,66.90422],[30.19041,67.67609],[28.70726,68.42748],[29.02587,68.9505],[31.04735,69.53452],[31.78344,70.44784],[28.32274,71.32192],[23.76342,71.29023],[17.1826,69.99806],[12.10691,68.01581],[9.97556,64.85828],[4.13084,61.95963],[4.57029,59.00664],[6.21826,57.95859],[8.14086,57.8506],[10.41502,58.75682],[12.63702,56.0383],[12.7716,55.25095],[14.2932,55.19769],[18.58886,56.84297],[20.69823,59.3444],[27.53173,60.21799]]],"terms_url":"https://kelkkareitit.fi/","terms_text":"© Kelkkareitit.fi","description":"Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)","icon":"https://kelkkareitit.fi/img/favicon.png","overlay":true},{"id":"geovekst-nib","name":"Norway Orthophoto","type":"tms","template":"https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5","zoomExtent":[0,21],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://www.norgeibilder.no","terms_text":"© Geovekst","best":true,"description":"Norwegian orthophotos (max zoom 21), courtesy of Geovekst and Norkart.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"},{"id":"geovekst-nib2","name":"Norway Orthophoto (more recent, less zoom)","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_nib_web_mercator_wmts_v2?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Nibcache_web_mercator_v2&STYLE=default&FORMAT=image/jpgpng&tileMatrixSet=default028mm&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,19],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://www.norgeibilder.no","terms_text":"© Geovekst","best":true,"description":"Most recent Norwegian orthophotos (max zoom 19), courtesy of Geovekst and Kartverket.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"},{"id":"npd-offshore","name":"NPD Offshore Installations overlay","type":"wms","template":"https://gis.npd.no/ogc/factmaps/2_0?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fclFixed,pplAll,fldByStatus&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,20],"polygon":[[[8.51989,57.6454],[3.25195,56.08737],[2.61185,56.59434],[1.96321,57.90482],[1.48178,58.42936],[1.98303,60.31063],[1.78802,61.35659],[-0.49061,63.88725],[1.36226,67.01603],[14.99771,74.50082],[36.99371,74.50155],[36.99989,73.68633],[32.06909,70.27429],[23.97215,70.47356],[16.25974,68.58447],[12.12888,64.81157],[5.38328,61.92862],[5.7678,58.85355],[8.51989,57.6454]]],"terms_url":"https://www.npd.no/no/Kart/Faktakart/","terms_text":"© Oljedirektoratet","description":"Production platforms and oil/natural gas fields on the Norwegian continental shelf","icon":"https://register.geonorge.no/data/organizations/870917732_od_liten.png","overlay":true},{"id":"nrw_dtm_wms","name":"NRW DTM Hillshade","type":"wms","template":"https://www.wms.nrw.de/geobasis/wms_nw_dgm-schummerung?LAYERS=nw_dgm-schummerung_pan&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[6.48,50.32],[6.48,50.24],[6.4,50.24],[6.4,50.32],[6.32,50.32],[6.32,50.48],[6.16,50.48],[6.16,50.64],[6,50.64],[6,50.72],[5.92,50.72],[5.92,50.88],[6,50.88],[6,50.96],[5.84,50.96],[5.84,51.12],[6,51.12],[6,51.28],[6.08,51.28],[6.08,51.36],[6.16,51.36],[6.16,51.52],[6.08,51.52],[6.08,51.6],[6,51.6],[6,51.68],[5.92,51.68],[5.92,51.92],[6.64,51.92],[6.64,52.08],[6.72,52.08],[6.72,52.16],[6.8,52.16],[6.8,52.24],[7.04,52.24],[7.04,52.32],[7.36,52.32],[7.36,52.4],[7.52,52.4],[7.52,52.48],[7.76,52.48],[7.76,52.4],[8,52.4],[8,52.24],[8.08,52.24],[8.08,52.16],[8.4,52.16],[8.4,52.32],[8.24,52.32],[8.24,52.48],[8.4,52.48],[8.4,52.56],[8.72,52.56],[8.72,52.48],[8.96,52.48],[8.96,52.56],[9.2,52.56],[9.2,52.32],[9.12,52.32],[9.12,52.16],[9.2,52.16],[9.2,52.08],[9.28,52.08],[9.28,52],[9.36,52],[9.36,51.92],[9.52,51.92],[9.52,51.76],[9.44,51.76],[9.44,51.68],[9.52,51.68],[9.52,51.6],[9.44,51.6],[9.44,51.52],[9.36,51.52],[9.36,51.44],[9.2,51.44],[9.2,51.36],[9.04,51.36],[9.04,51.44],[8.96,51.44],[8.96,51.36],[8.72,51.36],[8.72,51.28],[8.8,51.28],[8.8,51.04],[8.56,51.04],[8.56,50.96],[8.48,50.96],[8.48,50.88],[8.4,50.88],[8.4,50.8],[8.24,50.8],[8.24,50.64],[8,50.64],[8,50.72],[7.92,50.72],[7.92,50.8],[7.76,50.8],[7.76,50.72],[7.52,50.72],[7.52,50.64],[7.36,50.64],[7.36,50.56],[7.04,50.56],[7.04,50.48],[6.96,50.48],[6.96,50.4],[6.88,50.4],[6.88,50.32],[6.48,50.32]]],"description":"Darstellung der DGM Schummerung in Graustufen. Die imaginäre Lichtquelle befindet sich im Nordwesten. Eine Erhebung erscheint am Nordwesthang hell und am Südosthang dunkel. Ebenen sind mit mittlerer Helligkeit gefärbt."},{"id":"nrw_ortho_wms","name":"NRW Orthophoto","type":"wms","template":"https://www.wms.nrw.de/geobasis/wms_nw_dop?LAYERS=nw_dop_rgb&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[6.48,50.32],[6.48,50.24],[6.4,50.24],[6.4,50.32],[6.32,50.32],[6.32,50.48],[6.16,50.48],[6.16,50.64],[6,50.64],[6,50.72],[5.92,50.72],[5.92,50.88],[6,50.88],[6,50.96],[5.84,50.96],[5.84,51.12],[6,51.12],[6,51.28],[6.08,51.28],[6.08,51.36],[6.16,51.36],[6.16,51.52],[6.08,51.52],[6.08,51.6],[6,51.6],[6,51.68],[5.92,51.68],[5.92,51.92],[6.64,51.92],[6.64,52.08],[6.72,52.08],[6.72,52.16],[6.8,52.16],[6.8,52.24],[7.04,52.24],[7.04,52.32],[7.36,52.32],[7.36,52.4],[7.52,52.4],[7.52,52.48],[7.76,52.48],[7.76,52.4],[8,52.4],[8,52.24],[8.08,52.24],[8.08,52.16],[8.4,52.16],[8.4,52.32],[8.24,52.32],[8.24,52.48],[8.4,52.48],[8.4,52.56],[8.72,52.56],[8.72,52.48],[8.96,52.48],[8.96,52.56],[9.2,52.56],[9.2,52.32],[9.12,52.32],[9.12,52.16],[9.2,52.16],[9.2,52.08],[9.28,52.08],[9.28,52],[9.36,52],[9.36,51.92],[9.52,51.92],[9.52,51.76],[9.44,51.76],[9.44,51.68],[9.52,51.68],[9.52,51.6],[9.44,51.6],[9.44,51.52],[9.36,51.52],[9.36,51.44],[9.2,51.44],[9.2,51.36],[9.04,51.36],[9.04,51.44],[8.96,51.44],[8.96,51.36],[8.72,51.36],[8.72,51.28],[8.8,51.28],[8.8,51.04],[8.56,51.04],[8.56,50.96],[8.48,50.96],[8.48,50.88],[8.4,50.88],[8.4,50.8],[8.24,50.8],[8.24,50.64],[8,50.64],[8,50.72],[7.92,50.72],[7.92,50.8],[7.76,50.8],[7.76,50.72],[7.52,50.72],[7.52,50.64],[7.36,50.64],[7.36,50.56],[7.04,50.56],[7.04,50.48],[6.96,50.48],[6.96,50.4],[6.88,50.4],[6.88,50.32],[6.48,50.32]]],"best":true,"description":"RGB-/Colorbild - Normale farbliche Darstellung."},{"id":"nve-snoskred","name":"NVE Avalanche Danger Areas overlay","type":"wms","template":"https://gis3.nve.no/map/services/SkredSnoAktR/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Snoskred-Aktsomhetsomrader&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[5,13],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/flaum-og-skred/kartlegging/aktsemdkart/aktsomhetskart-for-snoskred/","terms_text":"© NVE","description":"Potential snowslide areas, computed from theoretical height model. Valid for drops higher than 20-50 meters. Dark red=trigger area.","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"nve-nettanlegg","name":"NVE Electricity Network overlay","type":"wms","template":"https://gis3.nve.no/map/services/Nettanlegg2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sentralnett,Regionalnett,Distribusjonsnett,Sjokabler,Master og stolper,Transformatorstasjoner&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/karttjenester/","terms_text":"© NVE","description":"Power lines (high voltage network) including transformers, submarine cables and pylons. Local distribution network is not included.","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"nve-vannkraft","name":"NVE Hydropower Plants overlay","type":"wms","template":"https://gis3.nve.no/map/services/Vannkraft1/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vannkraftverk,Vannvei,Dam&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/karttjenester/","terms_text":"© NVE","description":"Hydropower plants including waterways (tunnel, canal, pipeline) and dams","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"nve-vindkraft","name":"NVE Wind Power Plants overlay","type":"wms","template":"https://gis3.nve.no/map/services/Vindkraft2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vindkraft_konsesjon_gitt_ikke_utbygd,Vindkraft_under_bygging,Vindkraft_utbygd,Vindkraftomrade,Vindturbin&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/karttjenester/","terms_text":"© NVE","description":"Wind power turbines, farms and concession areas (blue: planned, light green: construction, dark green: built).","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"orthos.dhses.ny.gov_latest","name":"NYS Orthos Online","type":"wms","template":"https://orthos.dhses.ny.gov/arcgis/services/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[-74.91231,45.03606],[-73.47788,45.02996],[-73.33846,45.03098],[-73.31978,45.00558],[-73.32265,44.98525],[-73.34852,44.9283],[-73.36721,44.8397],[-73.34277,44.81727],[-73.34565,44.77647],[-73.37296,44.73463],[-73.37008,44.67946],[-73.39739,44.64471],[-73.39308,44.60276],[-73.39739,44.54543],[-73.34996,44.51264],[-73.34565,44.49521],[-73.37871,44.4706],[-73.30828,44.43572],[-73.30397,44.41827],[-73.33271,44.33917],[-73.30828,44.27128],[-73.30828,44.25172],[-73.38014,44.14868],[-73.40458,44.04133],[-73.3399,43.79596],[-73.28097,43.64222],[-73.2091,43.54957],[-73.21342,43.51206],[-73.24647,42.67557],[-73.45919,42.14284],[-73.47069,42.03938],[-73.48794,41.73764],[-73.49944,41.64319],[-73.47788,41.62708],[-73.43189,41.57979],[-73.42614,41.56366],[-73.42685,41.45926],[-73.43979,41.40322],[-73.44985,41.38328],[-73.43835,41.37033],[-73.42757,41.35901],[-73.41751,41.3439],[-73.41895,41.27642],[-73.43045,41.24455],[-73.46566,41.19752],[-73.52962,41.14505],[-73.55477,41.13368],[-73.61586,41.13531],[-73.62664,41.10878],[-73.62736,41.05407],[-73.63958,40.99118],[-73.61873,40.98195],[-73.59933,40.96568],[-73.59933,40.93474],[-73.63455,40.91682],[-73.68054,40.89183],[-73.69851,40.87988],[-73.68629,40.87064],[-73.66257,40.87934],[-73.63814,40.90541],[-73.59789,40.91193],[-73.57562,40.9179],[-73.52675,40.92388],[-73.50159,40.94288],[-73.4901,40.95374],[-73.41751,40.96079],[-73.38374,40.96133],[-73.33702,40.95591],[-73.30828,40.93637],[-73.27091,40.92659],[-73.2091,40.91953],[-73.18682,40.92714],[-73.16814,40.93148],[-73.16598,40.95971],[-73.16886,40.97002],[-73.12933,40.98195],[-73.10777,40.98195],[-73.06681,40.9749],[-72.8584,40.97436],[-72.71826,40.98195],[-72.65574,41.00528],[-72.64424,41.00473],[-72.62628,40.99226],[-72.54148,41.03889],[-72.4768,41.06328],[-72.45811,41.08928],[-72.41859,41.09308],[-72.36612,41.13856],[-72.36037,41.1418],[-72.32229,41.15479],[-72.29067,41.16399],[-72.21449,41.18238],[-72.20083,41.19157],[-72.04848,41.25914],[-72.02548,41.2937],[-71.93924,41.30774],[-71.92343,41.30666],[-71.90259,41.2991],[-71.90187,41.28939],[-71.99458,41.24509],[-72.10453,41.19806],[-72.18287,41.16723],[-72.18934,41.16237],[-72.25186,41.12232],[-72.30432,41.10445],[-72.31582,41.09524],[-72.27917,41.08441],[-72.2727,41.08062],[-72.26839,41.04973],[-72.21736,41.04811],[-72.19652,41.04215],[-72.18646,41.05298],[-72.17137,41.0584],[-72.14981,41.05895],[-72.15628,41.09633],[-72.15268,41.1077],[-72.14909,41.14667],[-72.134,41.14505],[-72.07076,41.10553],[-72.07435,41.05678],[-72.08657,41.03185],[-72.10957,41.0069],[-72.08729,41.01287],[-72.06213,41.02534],[-72.04561,41.03239],[-72.01902,41.03293],[-72.00895,41.04215],[-72.00177,41.05136],[-71.96368,41.07737],[-71.922,41.08874],[-71.88966,41.08766],[-71.85588,41.08062],[-71.84582,41.07466],[-71.85588,41.05298],[-71.89038,41.03727],[-71.91625,41.03022],[-71.99099,41.00365],[-72.07938,40.97273],[-72.31941,40.88205],[-72.4423,40.8402],[-72.62771,40.7869],[-72.76569,40.75043],[-72.88499,40.71286],[-72.95973,40.68671],[-73.03735,40.66],[-73.08118,40.64855],[-73.22994,40.61637],[-73.32193,40.6131],[-73.35211,40.61855],[-73.55477,40.56944],[-73.75959,40.57708],[-73.88248,40.54815],[-73.9335,40.53449],[-73.945,40.53395],[-73.94572,40.56289],[-74.08227,40.56234],[-74.08011,40.54924],[-74.12251,40.52084],[-74.15772,40.51373],[-74.18719,40.50117],[-74.22887,40.48696],[-74.26121,40.48532],[-74.2763,40.4957],[-74.27918,40.54378],[-74.26983,40.56671],[-74.25834,40.57217],[-74.22528,40.57217],[-74.226,40.58309],[-74.25115,40.59564],[-74.25259,40.62237],[-74.24324,40.64091],[-74.2339,40.64909],[-74.20228,40.654],[-74.12538,40.65673],[-74.11532,40.69107],[-74.09951,40.68998],[-74.07795,40.71068],[-74.06286,40.7183],[-74.05208,40.7439],[-74.02549,40.79288],[-73.98094,40.86901],[-73.96225,40.92551],[-73.94931,40.96459],[-73.94644,40.99877],[-73.98165,41.01612],[-74.04561,41.04323],[-74.18072,41.09524],[-74.30792,41.14938],[-74.44087,41.21537],[-74.52783,41.25914],[-74.61335,41.30234],[-74.65791,41.31098],[-74.70246,41.33581],[-74.76714,41.38975],[-74.79661,41.41023],[-74.85338,41.42263],[-74.90728,41.43179],[-74.99783,41.47111],[-75.04167,41.52708],[-75.08479,41.59323],[-75.08407,41.61848],[-75.07329,41.66467],[-75.08766,41.70278],[-75.08766,41.71351],[-75.12144,41.76177],[-75.11928,41.79232],[-75.13078,41.81696],[-75.18755,41.83838],[-75.25295,41.84962],[-75.28745,41.85497],[-75.29823,41.88227],[-75.30613,41.9304],[-75.34063,41.94003],[-75.3665,41.9566],[-75.37225,41.97744],[-75.58066,41.97957],[-75.58137,41.92399],[-75.78906,41.92666],[-75.78691,41.98278],[-79.77687,41.98118],[-79.7819,42.20994],[-79.77184,42.28017],[-79.72153,42.29824],[-79.57349,42.36731],[-79.42976,42.46599],[-79.3737,42.49991],[-79.25728,42.54546],[-79.18973,42.5624],[-79.16529,42.56981],[-79.12074,42.62483],[-79.0963,42.64598],[-79.06899,42.6967],[-79.03162,42.71043],[-78.98851,42.72311],[-78.88358,42.77693],[-78.88646,42.8149],[-78.93964,42.88655],[-78.93964,42.93603],[-79.04887,42.96969],[-79.04743,43.05167],[-79.09343,43.05272],[-79.09199,43.09262],[-79.08624,43.26556],[-79.06468,43.27602],[-78.84909,43.33041],[-78.72979,43.35237],[-78.63924,43.37013],[-78.54869,43.37953],[-78.47826,43.38789],[-77.95508,43.38476],[-77.73158,43.34714],[-77.71146,43.34034],[-77.66259,43.31159],[-77.61516,43.28387],[-77.55336,43.253],[-77.5282,43.25509],[-77.45634,43.27864],[-77.42256,43.28492],[-77.16385,43.29433],[-77.0503,43.29381],[-76.94178,43.29329],[-76.91447,43.30793],[-76.85051,43.3163],[-76.80236,43.32832],[-76.75996,43.35184],[-76.64785,43.42809],[-76.54509,43.48026],[-76.51993,43.49486],[-76.44304,43.52717],[-76.4222,43.53811],[-76.28206,43.53863],[-76.23822,43.55686],[-76.24038,43.74147],[-76.30649,43.82915],[-76.31152,43.8675],[-76.34602,43.8618],[-76.40064,43.86128],[-76.47178,43.88408],[-76.46675,43.90893],[-76.4186,43.93119],[-76.37189,43.93223],[-76.36974,43.90272],[-76.33308,43.92964],[-76.27847,43.92964],[-76.27847,43.90427],[-76.26697,43.89599],[-76.23607,43.91204],[-76.19295,43.93326],[-76.19007,43.95086],[-76.21523,43.96017],[-76.25044,43.94982],[-76.31224,43.94775],[-76.30578,43.9762],[-76.33093,44.00464],[-76.39561,44.0248],[-76.39848,44.06251],[-76.37548,44.06457],[-76.3762,44.0909],[-76.47107,44.09297],[-76.46604,44.10948],[-76.44232,44.1296],[-76.39848,44.13218],[-76.39776,44.20435],[-76.3762,44.21671],[-76.23966,44.21929],[-76.23966,44.22804],[-76.21738,44.22856],[-76.21523,44.3479],[-76.11893,44.37103],[-76.04634,44.39157],[-75.93423,44.43418],[-75.83721,44.50341],[-75.76822,44.55823],[-75.69923,44.60379],[-75.63168,44.64829],[-75.56772,44.70501],[-75.50448,44.74586],[-75.45274,44.78157],[-75.31763,44.8723],[-75.15378,44.93745],[-75.09054,44.97305],[-74.97411,45.02793],[-74.91985,45.03682],[-74.91231,45.03606]]],"terms_url":"https://gis.ny.gov/gateway/orthoprogram/index.cfm","terms_text":"New York State Statewide Digital Orthoimagery Program","description":"New York State High Resolution Digital Orthoimagery, 1 foot resolution","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/ny/NYS_Orthos_Online.png"},{"id":"openrailwaymap-maxspeeds","name":"OpenRailwayMap Maxspeeds","type":"tms","template":"https://{switch:a,b,c}.tiles.openrailwaymap.org/maxspeed/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"terms_url":"https://www.openrailwaymap.org/","terms_text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","description":"Overlay imagery showing railway speed limits based on OpenStreetMap data","icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","overlay":true},{"id":"openrailwaymap-signalling","name":"OpenRailwayMap Signalling","type":"tms","template":"https://{switch:a,b,c}.tiles.openrailwaymap.org/signals/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"terms_url":"https://www.openrailwaymap.org/","terms_text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","description":"Overlay imagery showing railway signals based on OpenStreetMap data","icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","overlay":true},{"id":"osmbe-nl","name":"OpenStreetMap (Belgian Style - Dutch)","type":"tms","template":"https://tile.openstreetmap.be/osmbe-nl/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"terms_url":"https://openstreetmap.org/","terms_text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"},{"id":"osmbe-fr","name":"OpenStreetMap (Belgian Style - French)","type":"tms","template":"https://tile.openstreetmap.be/osmbe-fr/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"terms_url":"https://openstreetmap.org/","terms_text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"},{"id":"MAPNIK","name":"OpenStreetMap (Standard)","type":"tms","template":"https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png","zoomExtent":[0,19],"terms_url":"https://www.openstreetmap.org","terms_text":"© OpenStreetMap contributors, CC-BY-SA 2.0","default":true,"description":"The default OpenStreetMap layer.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"},{"id":"osm-gps","name":"OpenStreetMap GPS traces","type":"tms","template":"https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"terms_url":"https://www.openstreetmap.org/copyright","terms_text":"© OpenStreetMap contributors","terms_html":"GPS Direction: ©
    OpenStreetMap contributors.","description":"Public GPS traces uploaded to OpenStreetMap.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","overlay":true},{"id":"osm-hu-ortho","name":"openstreetmap.hu orthophotos","type":"tms","template":"http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/openstreetmap.hu.orthophotos/mercator/{zoom}/{x}/{y}.png","zoomExtent":[0,21],"polygon":[[[18.8577,47.44553],[18.86169,47.44883],[18.86491,47.44704],[18.8609,47.44373],[18.8577,47.44553]],[[18.80614,47.59304],[18.81376,47.5974],[18.82295,47.59011],[18.81533,47.58574],[18.80614,47.59304]],[[17.66691,46.92167],[17.66369,46.93033],[17.67207,46.93178],[17.67529,46.92312],[17.66691,46.92167]],[[17.6725,46.93546],[17.67529,46.92708],[17.68409,46.92845],[17.68129,46.93683],[17.6725,46.93546]],[[17.82155,46.96075],[17.82507,46.9547],[17.83347,46.95701],[17.82995,46.96304],[17.82155,46.96075]],[[18.62796,47.19818],[18.63943,47.20324],[18.64953,47.1926],[18.63806,47.18753],[18.62796,47.19818]],[[17.51223,46.8789],[17.51406,46.88166],[17.5214,46.87939],[17.51957,46.87662],[17.51223,46.8789]],[[17.67724,46.91844],[17.68718,46.92344],[17.70594,46.90603],[17.69249,46.89926],[17.68144,46.90951],[17.68275,46.90595],[17.68198,46.90582],[17.68667,46.89926],[17.67947,46.89686],[17.67405,46.90445],[17.67131,46.90398],[17.66666,46.91662],[17.67724,46.91844]],[[18.80776,47.55615],[18.81638,47.55969],[18.81351,47.56305],[18.80473,47.55949],[18.80776,47.55615]],[[18.98706,47.46989],[18.97962,47.47042],[18.98056,47.47648],[18.988,47.47595],[18.98706,47.46989]],[[18.98356,47.41149],[19.00839,47.42511],[19.01568,47.41932],[18.9907,47.40518],[18.98356,47.41149]],[[19.02652,47.87563],[19.03163,47.87613],[19.03305,47.86957],[19.02793,47.86907],[19.02652,47.87563]],[[18.00803,46.86674],[18.01095,46.86028],[18.01323,46.86064],[18.01626,46.8536],[18.01682,46.85371],[18.01852,46.84948],[18.02021,46.84631],[18.02961,46.84829],[18.02742,46.85392],[18.03388,46.85534],[18.03056,46.86395],[18.03367,46.86456],[18.03058,46.87154],[18.00803,46.86674]],[[17.99509,46.87632],[17.98585,46.87595],[17.98535,46.88397],[17.98599,46.88412],[17.98531,46.88537],[17.95829,46.87876],[17.96077,46.87351],[17.92868,46.86631],[17.92467,46.87372],[17.93136,46.87535],[17.92995,46.87822],[17.9553,46.88415],[17.9946,46.89341],[17.99786,46.88671],[17.98771,46.88443],[17.98774,46.88411],[17.99415,46.88442],[17.99509,46.87632]],[[18.86533,47.42808],[18.87291,47.42455],[18.87701,47.42871],[18.86799,47.43238],[18.86774,47.43208],[18.86517,47.43317],[18.86477,47.4327],[18.86441,47.43285],[18.86288,47.43108],[18.86328,47.43092],[18.86288,47.43046],[18.86516,47.42947],[18.86448,47.42875],[18.86553,47.42829],[18.86533,47.42808]],[[19.16232,47.59776],[19.16893,47.59033],[19.17815,47.59512],[19.17291,47.60068],[19.16232,47.59776]],[[18.13162,47.02619],[18.14103,47.02111],[18.13923,47.01957],[18.15704,47.01044],[18.16271,47.00242],[18.16463,46.99571],[18.16639,46.9959],[18.16702,46.99363],[18.17101,46.99454],[18.1722,46.99571],[18.16977,47.00416],[18.17656,47.00709],[18.1761,47.00771],[18.17639,47.00781],[18.17057,47.01414],[18.1748,47.01815],[18.17782,47.01428],[18.18518,47.01746],[18.17933,47.0239],[18.17589,47.02268],[18.17277,47.02434],[18.17219,47.02377],[18.17159,47.02407],[18.16938,47.0221],[18.16216,47.02596],[18.16485,47.02832],[18.16245,47.02947],[18.16323,47.03025],[18.1521,47.03554],[18.15156,47.03498],[18.1503,47.03563],[18.14513,47.03112],[18.14337,47.0322],[18.1454,47.03419],[18.14441,47.03467],[18.14522,47.03539],[18.14168,47.03697],[18.13111,47.02745],[18.13226,47.0269],[18.13162,47.02619]],[[17.79852,46.81745],[17.79178,46.81585],[17.79601,46.80664],[17.7948,46.80598],[17.79693,46.80056],[17.80109,46.79993],[17.80736,46.80225],[17.79852,46.81745]],[[17.7788,46.81461],[17.78446,46.80714],[17.79083,46.80925],[17.7853,46.81683],[17.7788,46.81461]]],"terms_text":"openstreetmap.hu"},{"id":"lu.openstreetmap.lidar.hillshade.2019.classy","name":"openstreetmap.lu \"mapper’s delight\" hillshade lidar 2019 with unclassified points","type":"tms","template":"https://lidar-hillshade-2019.openstreetmap.lu/layer/mappers_delight_lidar_hillshade_2019_withunclassified/{zoom}/{x}/{y}.png","startDate":"2019-02-15T00:00:00.000Z","zoomExtent":[5,22],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/fr/datasets/lidar-2019-releve-3d-du-territoire-luxembourgeois","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"OpenTopoMap","name":"OpenTopoMap","type":"tms","template":"https://{switch:a,b,c}.tile.opentopomap.org/{zoom}/{x}/{y}.png","zoomExtent":[3,17],"terms_url":"https://tile.opentopomap.org/about#verwendung","terms_text":"Kartendaten: © OpenStreetMap-Mitwirkende, SRTM | Kartendarstellung: © OpenTopoMap (CC-BY-SA)","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenTopoMap.png"},{"id":"lu.geoportail.opendata.ortho2017","name":"Ortho 2017 geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2017-06-22T00:00:00.000Z","startDate":"2017-06-14T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"lu.geoportail.opendata.ortho2018","name":"Ortho 2018 geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2018/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2018-08-05T00:00:00.000Z","startDate":"2018-07-02T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"ORTOFOTO_V1","name":"Orthophoto 1st cycle (1994-1999) - Latvia","type":"wms","template":"https://services.lgia.gov.lv/arcfree/services/Ortofoto_v1/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"terms_text":"Latvijas Ģeotelpiskās informācijas aģentūras brīvais WMS serviss 1994 - 1999.gada Latvijas ortofotokarte"},{"id":"ortofotomozaika-sr","name":"Ortofotomozaika SR","type":"tms","template":"https://ofmozaika.tiles.freemap.sk/{zoom}/{x}/{y}.jpg","zoomExtent":[0,19],"polygon":[[[19.83682,49.25529],[19.80075,49.42385],[19.60437,49.48058],[19.49179,49.63961],[19.21831,49.52604],[19.16778,49.42521],[19.00308,49.42236],[18.97611,49.5308],[18.54685,49.51425],[18.31432,49.33818],[18.15913,49.2961],[18.05564,49.11134],[17.56396,48.84938],[17.17929,48.88816],[17.058,48.81105],[16.90426,48.61947],[16.79685,48.38561],[17.06762,48.01116],[17.32787,47.97749],[17.51699,47.82535],[17.74776,47.73093],[18.29515,47.72075],[18.67959,47.75541],[18.89755,47.81203],[18.79463,47.88245],[18.84318,48.04046],[19.46212,48.05333],[19.62064,48.22938],[19.89585,48.09387],[20.33766,48.2643],[20.55395,48.52358],[20.82335,48.55714],[21.10271,48.47096],[21.45863,48.55513],[21.74536,48.31435],[22.15293,48.37179],[22.61255,49.08914],[22.09997,49.23814],[21.9686,49.36363],[21.6244,49.46989],[21.06873,49.46402],[20.94336,49.31088],[20.73052,49.44006],[20.22804,49.41714],[20.05234,49.23052],[19.83682,49.25529]]],"terms_text":"© GKÚ, NLC 2017-2019"},{"id":"ORTOS_DGRF_2004_06","name":"Ortofotos DGRF 2004-2006 (WMS)","type":"wms","template":"http://mapas.dgterritorio.pt:8888/wms/produtos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2006-01-01T00:00:00.000Z","startDate":"2004-01-01T00:00:00.000Z","zoomExtent":[14,19],"polygon":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"terms_url":"http://www.dgterritorio.pt/dados_abertos/ortofotos/","terms_text":"Direcção-Geral do Território","icon":"http://www.igeo.pt/favicon.ico"},{"id":"ORTOS_DGT_2014_15","name":"Ortofotos Litoral DGT 2014-2015 (WMS)","type":"wms","template":"http://ows.dgterritorio.pt/wss/service/ortos2014-2015-wms/guest?LAYERS=Ortoimagens_2014-2015_Litoral&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LANGUAGE=por","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-7.38968,37.19205],[-7.52426,37.18002],[-7.89505,36.98171],[-8.15186,37.10886],[-8.65036,37.14062],[-8.95111,37.03545],[-8.78632,37.34833],[-8.76434,37.55111],[-8.7561,38.38258],[-8.47664,38.33466],[-8.47183,38.40141],[-8.66066,38.46596],[-8.66959,38.60882],[-9.142,38.53689],[-8.81104,38.67372],[-8.79318,38.85468],[-8.95935,38.9829],[-9.18732,38.84934],[-9.2395,38.72838],[-9.37821,38.74659],[-9.38233,39.07891],[-9.29169,39.2514],[-9.31915,39.33642],[-9.17084,39.38526],[-9.06372,39.48815],[-9.02252,39.69662],[-8.78632,40.14529],[-8.86322,40.2093],[-8.72589,40.53155],[-8.64075,40.50858],[-8.62427,40.63063],[-8.53089,40.6004],[-8.535,40.71292],[-8.61466,40.89275],[-8.61878,41.10419],[-8.53089,41.16728],[-8.66959,41.21689],[-8.72315,41.41081],[-8.76984,41.65958],[-8.66547,41.73955],[-8.81104,41.72316],[-8.81104,41.85217],[-8.74649,41.9125],[-8.83576,41.93089],[-8.91815,41.84501],[-8.89343,41.70778],[-8.82065,41.50755],[-8.73139,41.16315],[-8.67508,41.069],[-8.68469,40.90729],[-8.93326,40.17573],[-8.88107,40.12219],[-9.11453,39.64694],[-9.11865,39.5623],[-9.3013,39.40543],[-9.43039,39.37571],[-9.34799,39.23864],[-9.45099,39.04799],[-9.45786,38.89317],[-9.53201,38.78835],[-9.50043,38.68551],[-9.28894,38.663],[-9.19418,38.54172],[-9.25324,38.38473],[-9.03488,38.42347],[-8.92502,38.46757],[-8.81241,38.35997],[-8.7973,38.14968],[-8.91953,37.95286],[-8.84262,37.8651],[-8.83988,37.40617],[-9.02664,37.01023],[-8.92914,36.97513],[-8.61466,37.099],[-8.15048,37.05956],[-7.8923,36.93672],[-7.48993,37.15156],[-7.39105,37.15813],[-7.38968,37.19205]]],"terms_url":"http://www.dgterritorio.pt/","terms_text":"Direcção-Geral do Território","icon":"http://www.igeo.pt/favicon.ico"},{"id":"OS-OpenData_Locator","name":"OS OpenData Locator","type":"tms","template":"https://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png","zoomExtent":[0,22],"polygon":[[[-0.88639,61.11666],[-9.24009,57.92465],[-6.61235,55.46835],[-6.1039,55.40191],[-5.61358,55.06607],[-5.40088,54.90562],[-5.29371,54.77201],[-5.11832,54.5911],[-4.92368,54.38599],[-4.94067,53.59884],[-5.44172,52.27725],[-6.03376,51.6012],[-7.54473,49.33762],[-2.59721,50.2588],[0.65674,50.64047],[1.32419,50.83256],[1.87586,51.19234],[2.05883,52.88863],[-1.61452,56.47933],[-1.21085,57.64972],[-1.69525,59.08903],[0.21543,60.43058],[-0.88639,61.11666]]],"overlay":true},{"id":"OS-OpenData_StreetView","name":"OS OpenData StreetView","type":"tms","template":"https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png","zoomExtent":[1,18],"polygon":[[[-5.82929,50.02297],[-5.82929,50.25482],[-5.37336,50.25482],[-5.37336,50.35306],[-5.1756,50.35306],[-5.1756,50.59254],[-4.99707,50.59254],[-4.99707,50.69356],[-4.79657,50.69356],[-4.79657,50.78221],[-4.69495,50.78221],[-4.69495,50.96074],[-4.60431,50.96074],[-4.60431,51.06921],[-4.37922,51.06921],[-4.37922,51.25218],[-3.90393,51.25218],[-3.90393,51.2917],[-3.71717,51.2917],[-3.71717,51.2453],[-3.14862,51.2453],[-3.14862,51.36207],[-3.74463,51.36207],[-3.74463,51.43404],[-3.82978,51.43404],[-3.82978,51.52982],[-4.08521,51.52982],[-4.08521,51.49393],[-4.37922,51.49393],[-4.37922,51.54272],[-5.14442,51.54272],[-5.14442,51.6296],[-5.73871,51.6296],[-5.73871,51.77404],[-5.50954,51.77404],[-5.50954,51.98026],[-5.1988,51.98026],[-5.1988,52.09734],[-4.88806,52.09734],[-4.88806,52.18316],[-4.49575,52.18316],[-4.49575,52.29257],[-4.30154,52.29257],[-4.30154,52.36853],[-4.18112,52.36853],[-4.18112,52.79337],[-4.44137,52.79337],[-4.44137,52.73696],[-4.85698,52.73696],[-4.85698,52.93173],[-4.7288,52.93173],[-4.7288,53.50386],[-4.15782,53.50386],[-4.15782,53.41135],[-3.31105,53.41135],[-3.31105,53.50386],[-3.23337,53.50386],[-3.23337,54.01592],[-3.39262,54.01592],[-3.39262,54.1981],[-3.55964,54.1981],[-3.55964,54.43373],[-3.7189,54.43373],[-3.7189,54.7219],[-4.30154,54.7219],[-4.30154,54.61407],[-5.04731,54.61407],[-5.04731,54.75329],[-5.22987,54.75329],[-5.22987,55.21908],[-5.65326,55.21908],[-5.65326,55.25009],[-5.89796,55.25009],[-5.89796,55.48225],[-6.59332,55.48225],[-6.59332,56.30134],[-7.17277,56.30134],[-7.17277,56.56018],[-6.81717,56.56018],[-6.81717,56.69917],[-6.53153,56.69917],[-6.53153,56.9067],[-6.81168,56.9067],[-6.81168,57.37166],[-6.8721,57.37166],[-6.8721,57.55189],[-7.09732,57.55189],[-7.09732,57.24111],[-7.17423,57.24111],[-7.17423,56.9067],[-7.37198,56.9067],[-7.37198,56.80759],[-7.5203,56.80759],[-7.5203,56.71425],[-7.83068,56.71425],[-7.83068,56.89946],[-7.64941,56.89946],[-7.64941,57.47396],[-7.83068,57.47396],[-7.83068,57.79156],[-7.47362,57.79156],[-7.47362,58.08606],[-7.18798,58.08606],[-7.18798,58.3672],[-6.80346,58.3672],[-6.80346,58.41558],[-6.63866,58.41558],[-6.63866,58.46733],[-6.51781,58.46733],[-6.51781,58.56256],[-6.05362,58.56256],[-6.05362,58.15688],[-6.14701,58.15688],[-6.14701,58.11059],[-6.27998,58.11059],[-6.27998,57.71227],[-6.15913,57.71227],[-6.15913,57.66676],[-5.93391,57.66676],[-5.93391,57.88925],[-5.80643,57.88925],[-5.80643,57.96218],[-5.61417,57.96218],[-5.61417,58.09112],[-5.49082,58.09112],[-5.49082,58.37333],[-5.31991,58.37333],[-5.31991,58.75015],[-3.572,58.75015],[-3.572,59.20918],[-3.19445,59.20918],[-3.19445,59.47592],[-2.24358,59.47592],[-2.24358,59.13887],[-2.4611,59.13887],[-2.4611,58.81859],[-2.74077,58.81859],[-2.74077,58.58047],[-2.91167,58.58047],[-2.91167,58.11575],[-3.48654,58.11575],[-3.48654,57.74039],[-1.71532,57.74039],[-1.71532,57.22256],[-1.97945,57.22256],[-1.97945,56.87607],[-2.1659,56.87607],[-2.1659,56.63332],[-2.36011,56.63332],[-2.36011,56.04775],[-1.97945,56.04775],[-1.97945,55.86509],[-1.4745,55.86509],[-1.4745,55.24999],[-1.3222,55.24999],[-1.3222,54.82217],[-1.055,54.82217],[-1.055,54.67466],[-0.66188,54.67466],[-0.66188,54.55275],[-0.32476,54.55275],[-0.32476,54.28652],[0.00928,54.28652],[0.00928,53.79385],[0.2082,53.79385],[0.2082,53.52177],[0.41635,53.52177],[0.41635,53.02989],[1.42734,53.02989],[1.42734,52.92021],[1.83339,52.92021],[1.83339,52.04249],[1.52355,52.04249],[1.52355,51.82613],[1.2697,51.82613],[1.2697,51.69675],[1.11665,51.69675],[1.11665,51.44035],[1.52355,51.44035],[1.52355,51.33318],[1.45076,51.33318],[1.45076,51.02076],[1.06999,51.02076],[1.06999,50.90084],[0.77881,50.90084],[0.77881,50.72984],[-0.7256,50.72984],[-0.7256,50.70384],[-1.00744,50.70384],[-1.00744,50.57363],[-2.36253,50.57363],[-2.36253,50.48464],[-2.49878,50.48464],[-2.49878,50.57363],[-3.40964,50.57363],[-3.40964,50.20578],[-3.69224,50.20578],[-3.69224,50.13477],[-5.00547,50.13477],[-5.00547,49.94745],[-5.28395,49.94745],[-5.28395,50.02297],[-5.82929,50.02297]],[[-6.45807,49.86736],[-6.45807,49.94999],[-6.39788,49.94999],[-6.39788,50.00538],[-6.17996,50.00538],[-6.17996,49.91686],[-6.25402,49.91686],[-6.25402,49.86736],[-6.45807,49.86736]],[[-5.83432,49.93216],[-5.83432,49.97546],[-5.76833,49.97546],[-5.76833,49.93216],[-5.83432,49.93216]],[[-1.94838,60.68857],[-1.94838,60.30588],[-1.75431,60.30588],[-1.75431,60.12844],[-1.57549,60.12844],[-1.57549,59.79792],[-1.0317,59.79792],[-1.0317,60.03545],[-0.66269,60.03545],[-0.66269,60.91039],[-1.10344,60.91039],[-1.10344,60.804],[-1.35063,60.804],[-1.35063,60.68857],[-1.94838,60.68857]],[[-2.20338,60.19686],[-2.20338,60.09294],[-1.9864,60.09294],[-1.9864,60.19686],[-2.20338,60.19686]],[[-1.75431,59.56983],[-1.75431,59.46394],[-1.53733,59.46394],[-1.53733,59.56983],[-1.75431,59.56983]],[[-4.5586,59.13705],[-4.5586,58.95691],[-4.2867,58.95691],[-4.2867,59.13705],[-4.5586,59.13705]],[[-6.27877,59.20257],[-6.27877,59.02278],[-5.66506,59.02278],[-5.66506,59.20257],[-6.27877,59.20257]],[[-8.71635,57.94406],[-8.71635,57.73059],[-8.35929,57.73059],[-8.35929,57.94406],[-8.71635,57.94406]],[[-7.6077,50.4021],[-7.6077,50.26887],[-7.39072,50.26887],[-7.39072,50.4021],[-7.6077,50.4021]],[[-7.73043,58.35799],[-7.73043,58.24831],[-7.51345,58.24831],[-7.51345,58.35799],[-7.73043,58.35799]]]},{"id":"OSIP_1ft","name":"OSIP 1ft Imagery Most Current Available","type":"wms","template":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/osip_best_avail_1ft/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-83.1356,41.75081],[-83.08101,41.7511],[-83.0796,41.62936],[-82.95011,41.54404],[-82.89032,41.54404],[-82.89032,41.69462],[-82.8494,41.7463],[-82.76758,41.73925],[-82.75184,41.63584],[-82.64799,41.62408],[-82.68575,41.50634],[-82.49063,41.40492],[-82.0217,41.53462],[-81.72901,41.52048],[-81.39541,41.7369],[-81.10587,41.84484],[-80.50161,41.99939],[-80.51105,40.62127],[-80.6275,40.59021],[-80.58344,40.49933],[-80.58973,40.2812],[-80.85095,39.625],[-81.19399,39.37974],[-81.38912,39.31159],[-81.45521,39.38704],[-81.515,39.35054],[-81.54333,39.26288],[-81.72586,39.19461],[-81.73216,38.9258],[-81.9021,38.85477],[-81.95875,38.89397],[-81.9084,38.93315],[-82.02799,38.99922],[-82.11611,38.92336],[-82.12555,38.8278],[-82.19794,38.78856],[-82.16647,38.72475],[-82.16017,38.58712],[-82.26718,38.57236],[-82.29865,38.43198],[-82.57875,38.39745],[-82.73925,38.53545],[-82.8494,38.56006],[-82.91235,38.73212],[-83.00676,38.71002],[-83.14524,38.59942],[-83.30575,38.58466],[-83.39387,38.64368],[-83.46625,38.64614],[-83.54178,38.69283],[-83.65193,38.61172],[-83.74635,38.63385],[-83.9635,38.76403],[-84.08624,38.75421],[-84.22157,38.7812],[-84.34117,38.99922],[-84.49223,39.07255],[-84.64015,39.05545],[-84.74086,39.11164],[-84.84471,39.08477],[-84.82898,41.70637],[-83.44737,41.76038],[-83.13438,41.64959],[-83.1356,41.75081]]],"terms_url":"https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx","terms_text":"Ohio Statewide Imagery Program","description":"Most recent available 1-foot orthoimagery from the Ohio Statewide Imagery Program."},{"id":"OSIP_6in","name":"OSIP 6in Imagery Most Current Available","type":"wms","template":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/OSIP_6in_best_avail/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2018-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-83.1356,41.75081],[-83.08101,41.7511],[-83.0796,41.62936],[-82.95011,41.54404],[-82.89032,41.54404],[-82.89032,41.69462],[-82.8494,41.7463],[-82.76758,41.73925],[-82.75184,41.63584],[-82.64799,41.62408],[-82.68575,41.50634],[-82.49063,41.40492],[-82.0217,41.53462],[-81.72901,41.52048],[-81.39541,41.7369],[-81.10587,41.84484],[-80.50161,41.99939],[-80.51105,40.62127],[-80.6275,40.59021],[-80.58344,40.49933],[-80.58973,40.2812],[-80.85095,39.625],[-81.19399,39.37974],[-81.38912,39.31159],[-81.45521,39.38704],[-81.515,39.35054],[-81.54333,39.26288],[-81.72586,39.19461],[-81.73216,38.9258],[-81.9021,38.85477],[-81.95875,38.89397],[-81.9084,38.93315],[-82.02799,38.99922],[-82.11611,38.92336],[-82.12555,38.8278],[-82.19794,38.78856],[-82.16647,38.72475],[-82.16017,38.58712],[-82.26718,38.57236],[-82.29865,38.43198],[-82.57875,38.39745],[-82.73925,38.53545],[-82.8494,38.56006],[-82.91235,38.73212],[-83.00676,38.71002],[-83.14524,38.59942],[-83.30575,38.58466],[-83.39387,38.64368],[-83.46625,38.64614],[-83.54178,38.69283],[-83.65193,38.61172],[-83.74635,38.63385],[-83.9635,38.76403],[-84.08624,38.75421],[-84.22157,38.7812],[-84.34117,38.99922],[-84.49223,39.07255],[-84.64015,39.05545],[-84.74086,39.11164],[-84.84471,39.08477],[-84.82898,41.70637],[-83.44737,41.76038],[-83.13438,41.64959],[-83.1356,41.75081]]],"terms_url":"https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx","terms_text":"Ohio Statewide Imagery Program","description":"Most recent available 6-inch orthoimagery from the Ohio Statewide Imagery Program."},{"id":"osm-hr-knin-2007","name":"osm-hr: Knin 2007 Aerial imagery","type":"tms","template":"https://tms.osm-hr.org/knin-2007/{zoom}/{x}/{-y}.png","endDate":"2007-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[16.21712,44.08054],[16.22916,44.08041],[16.22938,44.06055],[16.2303,44.05757],[16.23715,44.04213],[16.23715,44.03615],[16.23041,44.03599],[16.22494,44.03627],[16.2243,44.03599],[16.22404,44.03504],[16.21608,44.02178],[16.21286,44.01661],[16.20391,44.01672],[16.19269,44.02601],[16.18003,44.03662],[16.18011,44.03772],[16.21129,44.06685],[16.21712,44.08054]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-orbview","name":"osm-hr: Orbview","type":"tms","template":"https://tms.osm-hr.org/orbview/{zoom}/{x}/{-y}.png","endDate":"2007-01-01T00:00:00.000Z","startDate":"2003-01-01T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[19.59394,45.00171],[19.70329,45.00547],[19.70441,43.01839],[19.77633,43.02304],[19.77427,42.11507],[19.66935,42.11019],[19.66656,42.98104],[19.59377,42.97665],[19.59394,45.00171]],[[21.49434,44.00064],[21.60243,44.00519],[21.60273,41.98521],[21.49527,41.97908],[21.49434,44.00064]],[[15.48386,45.51525],[15.59338,45.5102],[15.59355,44.51169],[15.66994,44.5156],[15.672,45.25531],[15.77499,45.25411],[15.77568,44.47642],[15.75886,44.47618],[15.75611,44.24569],[15.82169,44.2452],[15.82203,44.51156],[15.92279,44.51046],[15.92245,44.2618],[15.98837,44.26094],[15.98614,44.51022],[16.09531,44.5156],[16.09016,43.4736],[15.9918,43.4746],[15.98991,43.99825],[15.92365,43.99924],[15.92674,43.48132],[15.64453,43.46987],[15.65277,43.97898],[15.48385,43.97602],[15.48042,44.2393],[15.56145,44.24274],[15.55904,44.4725],[15.48489,44.47201],[15.48386,45.51525]],[[18.79237,44.00158],[18.90404,44.00813],[18.8994,42.19012],[18.79864,42.18821],[18.79237,44.00158]],[[19.39593,42.03272],[19.50138,42.03734],[19.50056,44.59982],[19.39748,44.59838],[19.39593,42.03272]],[[21.35021,45.06504],[21.46076,45.04982],[21.21554,44.33975],[21.11795,44.35651],[21.35021,45.06504]],[[16.90521,45.22606],[17.02057,45.22606],[17.01713,46.01461],[16.92238,46.02128],[16.92032,46.16889],[17.01096,46.16937],[17.01507,46.7963],[16.92169,46.79677],[16.92169,47.01397],[16.53511,47.01818],[16.53717,46.48397],[16.45889,46.48705],[16.46061,47.01561],[15.98305,47.01608],[15.98339,46.95542],[15.90031,46.95143],[15.90752,45.84399],[16.00965,45.84339],[16.00914,45.97334],[16.37031,45.97549],[16.36825,46.23258],[16.44379,46.23305],[16.44722,45.96452],[16.64978,45.95736],[16.64978,45.97358],[16.90315,45.97072],[16.90521,45.22606]],[[15.29674,45.59698],[15.40112,45.59795],[15.39974,45.00632],[15.2988,45.00632],[15.29674,45.59698]],[[15.97412,45.78345],[16.13153,45.78446],[16.13814,45.69833],[15.97936,45.69959],[15.97412,45.78345]],[[20.4847,44.95994],[20.67661,44.96091],[20.67541,44.65815],[20.48658,44.65937],[20.4847,44.95994]],[[18.98403,47.01631],[19.27586,47.01631],[19.27654,45.97788],[19.16977,45.97549],[19.17114,46.48965],[19.09098,46.48906],[19.09115,46.23329],[18.98678,46.23246],[18.98403,47.01631]],[[13.59695,45.63229],[14.01031,45.61884],[14.01581,44.96893],[13.70441,44.96796],[13.70407,44.87461],[13.59283,44.87242],[13.59695,45.63229]],[[16.30663,45.51074],[16.51623,45.51429],[16.51211,44.73015],[16.4043,44.73417],[16.4043,45.24903],[16.30955,45.25],[16.30663,45.51074]],[[20.33295,44.96067],[20.44933,44.9597],[20.4483,44.65449],[20.33535,44.65937],[20.33295,44.96067]],[[19.35362,47.01502],[19.46005,47.01549],[19.46056,45.96845],[19.35379,45.96666],[19.35362,47.01502]],[[16.15505,44.50899],[16.26595,44.51585],[16.26217,44.24077],[16.32465,44.24151],[16.32397,44.5112],[16.4352,44.51658],[16.42997,43.47553],[16.24535,43.47385],[16.24466,43.72707],[16.16055,43.72794],[16.15505,44.50899]],[[19.92714,43.97651],[20.03632,43.98244],[20.03717,46.00686],[20.0116,46.00573],[20.02052,47.02474],[19.533,47.01397],[19.53953,45.97382],[19.73556,45.97096],[19.73848,46.73951],[19.81007,46.7361],[19.81676,45.97442],[19.92336,45.97334],[19.92714,43.97651]],[[21.98055,42.96107],[21.98038,44.79377],[22.08801,44.79329],[22.08681,44.5868],[22.1517,44.58594],[22.14809,45.01542],[22.25933,45.01967],[22.25281,44.12407],[22.31872,44.12358],[22.31666,44.75697],[22.39357,44.75844],[22.39494,45.0022],[22.59484,45.01606],[22.5927,43.60377],[22.49382,43.60526],[22.49382,43.76961],[22.4231,43.7701],[22.42378,43.53312],[22.49794,43.53212],[22.50069,43.31818],[22.58789,43.31619],[22.5872,43.27521],[22.60368,43.27371],[22.603,42.97602],[22.5872,42.97451],[22.58446,42.88502],[22.48764,42.88603],[22.48695,42.97099],[22.22465,42.94587],[22.22603,42.97501],[21.98055,42.96107]],[[15.90666,45.64165],[16.00965,45.64201],[16.01352,44.96404],[15.90314,44.95927],[15.90666,45.64165]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-ustopo50","name":"osm-hr: US Topo 50","type":"tms","template":"https://tms.osm-hr.org/ustopo/{zoom}/{x}/{y}.png","endDate":"2002-01-01T00:00:00.000Z","startDate":"1992-01-01T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[14.70005,45.75004],[15.00046,45.75004],[15.00046,45.50081],[14.70005,45.50033],[14.70005,45.75004]],[[20.99995,42.00004],[20.99899,41.49932],[21.90262,41.49932],[21.8985,41.7498],[22.19993,41.75004],[22.19959,41.50061],[22.80006,41.50086],[22.79938,41.99982],[22.50069,42.00084],[22.49931,42.24987],[22.19994,42.24987],[22.19788,42.00186],[21.59912,42.00084],[21.59981,42.24987],[21.30043,42.24987],[21.29974,42.00033],[20.99995,42.00004]],[[13.49962,46.50217],[13.49945,45.50009],[14.09958,45.50105],[14.09958,45.75028],[13.79883,45.75028],[13.8002,45.99982],[14.39964,46.0003],[14.40102,46.2492],[14.09958,46.24967],[14.10026,46.49981],[13.49962,46.50217]],[[15.89996,46.75115],[16.19968,46.75048],[16.19917,46.5004],[15.89979,46.5004],[15.89996,46.75115]],[[15.59964,45.25006],[16.80084,45.25],[16.80016,45.49985],[16.50009,45.50009],[16.49975,45.75004],[16.79981,45.75004],[16.80018,45.50012],[17.0997,45.50009],[17.10005,45.24988],[18.89854,45.25193],[18.89992,45.75052],[18.6002,45.75052],[18.60054,45.99982],[19.49936,45.99887],[19.49867,46.24944],[20.39921,46.24896],[20.39886,46.00006],[20.69893,45.99959],[20.69824,45.50009],[20.99899,45.50009],[21.00037,45.25024],[21.29837,45.25169],[21.297,45.00171],[21.60187,45.00171],[21.59912,44.74673],[21.89438,44.74673],[21.89987,44.50238],[22.1965,44.49944],[22.20062,44.75064],[22.49863,44.74868],[22.49863,43.50075],[22.798,43.49876],[22.79938,43.25021],[23.09875,43.2492],[23.1015,43.00164],[22.49588,42.99963],[22.49863,42.50045],[21.89712,42.50045],[21.90262,42.74903],[21.59775,42.74802],[21.59775,42.50147],[21.30112,42.50147],[21.29837,42.74903],[20.99762,42.75105],[20.99899,43.00063],[20.69961,43.00063],[20.69961,42.75105],[19.80148,42.75206],[19.80423,42.50248],[19.49936,42.49944],[19.50073,42.00237],[18.88962,42.00033],[18.88824,42.24987],[18.29773,42.24784],[18.2991,42.49944],[17.70035,42.50147],[17.69897,42.74903],[17.3996,42.75004],[17.40234,43.00164],[17.10022,43.00063],[17.10022,43.50075],[16.79947,43.50275],[16.80084,43.74927],[16.50284,43.74828],[16.49872,43.50374],[16.20209,43.50075],[16.19797,43.74927],[16.49803,43.75082],[16.49872,44.00121],[15.90134,43.99973],[15.89928,44.49993],[15.60059,44.49944],[15.59964,45.25006]],[[14.40033,45.25024],[14.69902,45.25024],[14.70002,44.99997],[14.4017,45.00074],[14.40033,45.25024]],[[21.59997,41.25002],[21.89996,41.25052],[21.90056,41.00218],[21.60118,41.00115],[21.59997,41.25002]],[[14.69996,46.49996],[14.99984,46.50017],[14.99951,46.25039],[14.69962,46.25005],[14.69996,46.49996]],[[13.7996,45.25018],[14.09992,45.25048],[14.10027,44.74966],[13.80089,44.75063],[13.7996,45.25018]],[[20.39886,41.75185],[20.40024,41.00218],[21.29974,41.00011],[21.29837,41.25045],[20.7003,41.25097],[20.69824,41.74929],[20.39886,41.75185]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-zagreb-2012","name":"osm-hr: Zagreb 2012 Aerial imagery","type":"tms","template":"https://tms.osm-hr.org/zagreb-2012/{zoom}/{x}/{-y}.png","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[16.15334,45.96857],[16.17462,45.94041],[16.17599,45.91796],[16.18595,45.90793],[16.18423,45.89789],[16.19728,45.8924],[16.22578,45.86085],[16.22097,45.85248],[16.22938,45.84638],[16.22921,45.84148],[16.24088,45.83645],[16.21719,45.83885],[16.20655,45.82784],[16.19865,45.77638],[16.1602,45.79554],[16.12827,45.80224],[16.13033,45.79434],[16.12278,45.78716],[16.10081,45.7862],[16.07677,45.77303],[16.0572,45.75746],[16.03901,45.76082],[16.03695,45.7577],[16.03935,45.75411],[16.02699,45.75507],[16.01772,45.74453],[16.01772,45.71936],[15.98785,45.71601],[15.96554,45.69131],[15.96725,45.67236],[15.95077,45.65125],[15.95077,45.63589],[15.94768,45.62989],[15.94288,45.63109],[15.93395,45.62172],[15.92606,45.61932],[15.92125,45.6138],[15.90031,45.62244],[15.90717,45.63229],[15.89619,45.63565],[15.87421,45.65557],[15.83885,45.66517],[15.81722,45.67044],[15.8131,45.67716],[15.77568,45.68915],[15.77396,45.7081],[15.78941,45.73398],[15.79285,45.73159],[15.80898,45.7383],[15.81001,45.73063],[15.82237,45.72344],[15.83473,45.72871],[15.85155,45.71673],[15.87078,45.73159],[15.84434,45.73159],[15.84469,45.76465],[15.83834,45.76764],[15.81276,45.76764],[15.80555,45.77543],[15.80538,45.80403],[15.8325,45.80391],[15.82993,45.80762],[15.83319,45.81062],[15.82289,45.82581],[15.82186,45.83837],[15.82975,45.84136],[15.84074,45.83992],[15.8452,45.84112],[15.84434,45.84459],[15.84984,45.84805],[15.85052,45.85236],[15.85979,45.85511],[15.86031,45.85308],[15.86477,45.85272],[15.87301,45.85451],[15.87378,45.85755],[15.87328,45.86081],[15.87816,45.8621],[15.87782,45.86563],[15.88263,45.8618],[15.88649,45.86306],[15.88529,45.86545],[15.89026,45.87603],[15.89709,45.88143],[15.9082,45.88642],[15.92125,45.88953],[15.9288,45.88762],[15.93876,45.89359],[15.92194,45.89431],[15.91988,45.89789],[15.92983,45.90339],[15.94768,45.90434],[15.95352,45.90554],[15.95524,45.91223],[15.97412,45.91271],[15.99918,45.92369],[16.00811,45.9299],[16.02802,45.93324],[16.03043,45.93611],[16.04313,45.93969],[16.05206,45.93563],[16.05171,45.94447],[16.06476,45.94661],[16.06579,45.95115],[16.0778,45.95569],[16.09325,45.95903],[16.09497,45.95449],[16.10767,45.95688],[16.11317,45.96165],[16.11282,45.96762],[16.12038,45.96905],[16.13205,45.96475],[16.1372,45.96523],[16.13823,45.96786],[16.15334,45.96857]]],"terms_url":"https://geoportal.zagreb.hr/","terms_text":"Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-zagreb-2018","name":"osm-hr: Zagreb 2018 Aerial imagery","type":"tms","template":"https://tms.osm-hr.org/zagreb-2018/{zoom}/{x}/{-y}.png","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[15.87649,45.87423],[15.87739,45.87821],[15.88087,45.88248],[15.88503,45.8849],[15.88773,45.88741],[15.89112,45.88953],[15.89357,45.89019],[15.89773,45.89311],[15.90151,45.8944],[15.90687,45.89527],[15.91116,45.89652],[15.91455,45.89691],[15.91953,45.89837],[15.92378,45.89891],[15.92786,45.89849],[15.93035,45.90133],[15.9343,45.90408],[15.93854,45.90599],[15.94155,45.90817],[15.94567,45.9096],[15.9509,45.91008],[15.95326,45.91166],[15.95605,45.91378],[15.96138,45.9159],[15.96507,45.92053],[15.96923,45.92298],[15.97734,45.92536],[15.98232,45.92814],[15.9873,45.9305],[15.99047,45.93104],[15.99463,45.93405],[16.00287,45.93802],[16.00687,45.93924],[16.01219,45.93945],[16.01648,45.93996],[16.01789,45.94056],[16.0191,45.94262],[16.02219,45.9447],[16.02579,45.94605],[16.03141,45.94721],[16.03618,45.94834],[16.04103,45.94849],[16.04352,45.95094],[16.04759,45.95267],[16.05025,45.95339],[16.05326,45.95401],[16.05609,45.95673],[16.06008,45.95876],[16.06536,45.9598],[16.06819,45.96252],[16.07167,45.96407],[16.07549,45.96493],[16.07931,45.96508],[16.08141,45.96538],[16.08411,45.96669],[16.08707,45.96744],[16.09076,45.96762],[16.0936,45.96729],[16.09566,45.96657],[16.09755,45.96562],[16.09922,45.96463],[16.10034,45.96475],[16.10089,45.96565],[16.10098,45.96693],[16.10132,45.97027],[16.1027,45.97281],[16.10527,45.97504],[16.10827,45.97648],[16.11205,45.9774],[16.11407,45.97755],[16.11669,45.97803],[16.11948,45.97815],[16.12334,45.97758],[16.12707,45.97633],[16.12939,45.97603],[16.13179,45.9754],[16.13402,45.97618],[16.13703,45.97683],[16.13892,45.97698],[16.14145,45.97743],[16.14428,45.9774],[16.14557,45.97722],[16.1481,45.97767],[16.15145,45.97761],[16.15415,45.97797],[16.15724,45.97797],[16.1599,45.97734],[16.16235,45.97663],[16.16458,45.97525],[16.16651,45.97334],[16.16793,45.9712],[16.16844,45.9689],[16.16896,45.96726],[16.16913,45.96529],[16.17123,45.96443],[16.17376,45.96264],[16.17621,45.96076],[16.1778,45.95888],[16.17866,45.95664],[16.17866,45.95524],[16.17956,45.95321],[16.17964,45.95082],[16.17986,45.94945],[16.18278,45.94736],[16.18462,45.94521],[16.18582,45.94276],[16.18595,45.94065],[16.18578,45.93874],[16.18509,45.93727],[16.18582,45.93506],[16.18617,45.93256],[16.18578,45.93059],[16.18608,45.92721],[16.18728,45.92548],[16.18771,45.9228],[16.19067,45.92077],[16.1923,45.91856],[16.19308,45.91644],[16.19329,45.91515],[16.19535,45.91309],[16.19698,45.91059],[16.19741,45.90784],[16.19737,45.90605],[16.19647,45.90378],[16.19651,45.90279],[16.19951,45.9027],[16.20359,45.90163],[16.20625,45.90022],[16.20827,45.89822],[16.2117,45.89365],[16.21505,45.88854],[16.21664,45.88553],[16.21977,45.88338],[16.22204,45.8806],[16.22591,45.87531],[16.2338,45.86969],[16.2359,45.86862],[16.23874,45.86626],[16.24032,45.86327],[16.24071,45.85983],[16.2405,45.85855],[16.24002,45.85598],[16.23904,45.85409],[16.23779,45.85281],[16.23972,45.85122],[16.24093,45.84949],[16.2417,45.84737],[16.24487,45.84641],[16.24779,45.84474],[16.25041,45.84231],[16.25191,45.8401],[16.25247,45.83795],[16.25204,45.83517],[16.26826,45.83511],[16.26831,45.8236],[16.22974,45.82356],[16.2299,45.78591],[16.21109,45.78616],[16.21101,45.78447],[16.21243,45.7827],[16.21333,45.78039],[16.21333,45.77797],[16.2123,45.77558],[16.2099,45.77309],[16.20788,45.77129],[16.20543,45.76977],[16.20217,45.76878],[16.19934,45.76827],[16.19552,45.76851],[16.19174,45.7695],[16.17531,45.77818],[16.16934,45.78081],[16.1578,45.78497],[16.1508,45.78692],[16.14394,45.78701],[16.14368,45.77965],[16.11181,45.69503],[16.07629,45.69513],[16.07624,45.69708],[16.02624,45.69689],[16.01491,45.70991],[16.01129,45.70996],[16.00871,45.71028],[16.00373,45.71008],[15.99841,45.70879],[15.99472,45.70513],[15.99386,45.70237],[15.99172,45.69914],[15.9888,45.69698],[15.98657,45.69581],[15.98369,45.69365],[15.97949,45.69185],[15.97923,45.68954],[15.97803,45.68739],[15.98022,45.68427],[15.98077,45.68091],[15.98043,45.67911],[15.9797,45.67755],[15.97944,45.6756],[15.97858,45.67314],[15.97906,45.6711],[15.97871,45.66844],[15.97704,45.66604],[15.97459,45.66379],[15.97305,45.66196],[15.97052,45.65968],[15.97034,45.65614],[15.96846,45.6526],[15.96627,45.65023],[15.96215,45.64795],[15.96223,45.64567],[15.96288,45.64225],[15.96271,45.64],[15.96335,45.63724],[15.96279,45.63478],[15.95987,45.63049],[15.95944,45.6273],[15.95768,45.62454],[15.95429,45.62211],[15.95163,45.62118],[15.94803,45.62061],[15.94494,45.61761],[15.94082,45.61515],[15.93799,45.61389],[15.93408,45.61305],[15.93099,45.60935],[15.92764,45.60704],[15.92322,45.60542],[15.91816,45.605],[15.91352,45.60596],[15.91181,45.60671],[15.90885,45.6074],[15.90387,45.6083],[15.90074,45.60989],[15.89812,45.6114],[15.89464,45.61263],[15.89194,45.61431],[15.8885,45.61665],[15.8864,45.61911],[15.88554,45.62199],[15.88584,45.6246],[15.88747,45.62697],[15.88816,45.62808],[15.88464,45.63013],[15.88224,45.63256],[15.88134,45.63436],[15.88095,45.63577],[15.87778,45.63718],[15.87554,45.63859],[15.87215,45.64033],[15.86984,45.64267],[15.86821,45.64525],[15.86666,45.64738],[15.86318,45.64744],[15.85962,45.64807],[15.85696,45.64912],[15.85413,45.6502],[15.85138,45.65014],[15.84731,45.65104],[15.84426,45.65242],[15.84224,45.65395],[15.83967,45.65515],[15.83417,45.6562],[15.83027,45.65755],[15.82709,45.65923],[15.8246,45.66118],[15.82044,45.66112],[15.81563,45.66136],[15.81048,45.66271],[15.80641,45.66514],[15.80435,45.66796],[15.80306,45.67008],[15.79851,45.67149],[15.79529,45.67338],[15.7928,45.6735],[15.78817,45.6747],[15.78349,45.67632],[15.77521,45.67992],[15.76791,45.6837],[15.76525,45.68649],[15.76431,45.68909],[15.76427,45.69158],[15.76379,45.69539],[15.76405,45.69944],[15.76281,45.70246],[15.76079,45.70606],[15.7607,45.70957],[15.76221,45.71289],[15.76598,45.71652],[15.76856,45.72287],[15.77143,45.72748],[15.77345,45.73264],[15.77748,45.73713],[15.77989,45.73985],[15.78371,45.74183],[15.78787,45.74282],[15.79169,45.74255],[15.79551,45.74387],[15.79808,45.74474],[15.8013,45.74617],[15.80615,45.74716],[15.80438,45.87573],[15.83911,45.87594],[15.84298,45.8754],[15.84322,45.85968],[15.84542,45.86074],[15.84866,45.86191],[15.85106,45.86268],[15.85246,45.86304],[15.85518,45.86382],[15.85733,45.86421],[15.8599,45.86422],[15.8617,45.86397],[15.8637,45.86682],[15.86499,45.86781],[15.86726,45.87077],[15.87035,45.87286],[15.87301,45.8737],[15.87649,45.87423]]],"terms_url":"https://geoportal.zagreb.hr/","terms_text":"Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osmie_tie_not_counties","name":"OSMIE T.ie Land not in Counties","type":"tms","template":"https://www.townlands.ie/tiles/not_counties/{zoom}/{x}/{y}.png","zoomExtent":[2,19],"polygon":[[[-6.32987,52.38838],[-6.16508,52.58073],[-5.9893,52.9811],[-6.05796,53.31713],[-5.9838,53.50704],[-6.24473,53.86326],[-6.35459,53.91182],[-6.31614,53.98133],[-6.13487,53.97002],[-5.61851,54.23574],[-5.3878,54.44708],[-5.53886,54.67641],[-6.07444,55.21277],[-6.21452,55.33168],[-6.78306,55.17828],[-6.9506,55.25505],[-7.17582,55.35355],[-7.22526,55.45024],[-7.50816,55.28791],[-7.63999,55.28009],[-8.02451,55.2206],[-8.25797,55.27853],[-8.28269,55.172],[-8.58482,55.01168],[-8.38432,54.86021],[-8.69743,54.78901],[-8.85124,54.67641],[-8.46946,54.57942],[-8.17008,54.62397],[-8.33763,54.4854],[-8.68644,54.36556],[-8.62876,54.27625],[-9.04075,54.3051],[-9.13688,54.23614],[-9.2852,54.33834],[-9.90043,54.32233],[-10.15037,54.2245],[-10.27397,53.94578],[-9.98832,53.85678],[-10.3289,53.60982],[-10.22727,53.39418],[-9.78233,53.21857],[-8.96934,53.26952],[-9.04624,53.1762],[-9.2852,53.15644],[-9.40879,52.99433],[-9.57084,52.75562],[-9.97321,52.54316],[-9.70405,52.57071],[-9.69444,52.4855],[-9.97733,52.41854],[-9.87296,52.33387],[-9.92378,52.2381],[-10.06523,52.34478],[-10.15586,52.30113],[-10.65849,52.07212],[-9.90318,52.12274],[-10.45799,51.88772],[-10.39344,51.82411],[-10.56098,51.76635],[-10.32478,51.79014],[-10.25749,51.70937],[-9.80705,51.81816],[-10.28289,51.57045],[-9.89631,51.60032],[-9.51454,51.70256],[-9.83177,51.55082],[-9.83039,51.43368],[-9.43351,51.50468],[-9.53788,51.41741],[-8.63151,51.59179],[-7.70316,51.95209],[-7.46421,52.12105],[-6.33537,52.17667],[-6.32987,52.38838]],[[-9.89082,53.14368],[-9.51042,53.03605],[-9.45274,53.08557],[-9.82902,53.18279],[-9.89082,53.14368]]],"icon":"https://www.townlands.ie/static/logo_small.png"},{"id":"Pangasinan_Bulacan_HiRes","name":"Pangasinán/Bulacan (Philippines HiRes)","type":"tms","template":"https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png","zoomExtent":[12,19],"polygon":[[[120.33659,15.98577],[120.44599,15.984],[120.44613,15.97446],[120.47646,15.97459],[120.59425,15.94683],[120.59806,16.09079],[120.59654,16.198],[120.36854,16.21853],[120.34758,16.04231],[120.33659,15.98577]],[[120.8268,15.3658],[121.2684,15.2602],[121.2699,14.7025],[120.695,14.8423],[120.8268,15.3658]]]},{"id":"PCN-Italy-2006","name":"PCN 2006 - Italy","type":"wms","template":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&LAYERS=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2006-01-01T00:00:00.000Z","startDate":"2006-01-01T00:00:00.000Z","polygon":[[[7.54795,43.73118],[8.10697,43.86701],[8.73593,44.38944],[10.18338,43.85116],[9.55016,43.13605],[10.27725,42.27515],[11.69748,42.08118],[12.90059,40.84897],[14.97466,40.20869],[16.04773,38.8953],[13.1086,38.74113],[11.77717,37.93605],[14.40624,36.74299],[15.13467,36.59364],[15.42867,37.027],[15.21993,37.43376],[15.4836,37.92936],[16.01644,37.8036],[17.21669,38.87425],[17.21669,39.40468],[16.55477,39.78775],[17.05464,40.45144],[18.32906,39.70539],[18.68773,40.0587],[18.04964,40.67064],[16.00545,41.52122],[16.38448,41.85964],[15.51837,42.1537],[14.57997,42.2461],[13.56099,43.65128],[12.57889,44.0867],[12.28795,44.62204],[12.56398,44.97092],[12.34151,45.17458],[12.41696,45.40557],[13.09252,45.62826],[13.69549,45.70806],[13.78445,45.5825],[13.9191,45.6322],[13.8235,45.7176],[13.59784,45.8072],[13.64307,45.98326],[13.52963,45.96588],[13.47474,46.00546],[13.66472,46.17392],[13.47587,46.22725],[13.42218,46.20758],[13.37671,46.29668],[13.59777,46.44137],[13.68684,46.43881],[13.7148,46.5222],[12.9151,46.60953],[12.38708,46.71529],[12.27591,46.88651],[12.17486,46.90895],[12.11675,47.01241],[12.21781,47.03996],[12.19254,47.09331],[11.74789,46.98484],[11.33355,46.99862],[11.10618,46.92966],[11.00764,46.76896],[10.72974,46.78972],[10.75753,46.82258],[10.66405,46.87614],[10.47197,46.85698],[10.38659,46.67847],[10.49375,46.62049],[10.46136,46.53164],[10.25309,46.57432],[10.23674,46.63484],[10.10307,46.61003],[10.03715,46.44479],[10.165,46.41051],[10.10506,46.3372],[10.17862,46.25626],[10.07055,46.21668],[9.95249,46.38045],[9.73086,46.35071],[9.71273,46.29266],[9.57015,46.2958],[9.46117,46.37481],[9.45936,46.50873],[9.40487,46.46621],[9.36128,46.5081],[9.28136,46.49685],[9.24503,46.23616],[8.95601,45.96503],[9.09065,45.89906],[9.0298,45.82127],[8.90992,45.8333],[8.9408,45.86682],[8.88904,45.95465],[8.78551,45.99063],[8.85617,46.0748],[8.62242,46.12112],[8.45032,46.26869],[8.42464,46.46367],[8.08814,46.26692],[8.15493,46.1834],[8.11383,46.11577],[8.02906,46.10331],[7.98881,45.99867],[7.9049,45.99945],[7.85949,45.91485],[7.56343,45.97421],[7.10685,45.85653],[7.04151,45.92435],[6.95315,45.85163],[6.80785,45.83265],[6.80785,45.71864],[6.98948,45.63869],[7.00037,45.509],[7.18019,45.40071],[7.10572,45.32924],[7.13115,45.25386],[6.85144,45.13226],[6.7697,45.16044],[6.62803,45.11175],[6.66981,45.02324],[6.74791,45.01939],[6.75518,44.89915],[7.02217,44.82519],[7.07484,44.68073],[6.95133,44.66264],[6.85507,44.53072],[6.94504,44.43112],[6.88784,44.42043],[6.89171,44.36637],[7.00764,44.23736],[7.36364,44.11882],[7.68694,44.17487],[7.72508,44.07578],[7.49355,43.86551],[7.54795,43.73118]],[[8.17134,39.14848],[8.62453,38.75119],[9.09831,39.03764],[9.03102,39.13144],[9.26585,39.18575],[9.64076,39.0227],[9.89894,40.67991],[9.50068,41.39257],[8.30317,40.91071],[8.41304,41.16139],[8.21254,41.13864],[8.07521,40.59862],[8.36154,40.35],[8.27914,39.98585],[8.38283,39.6536],[8.17134,39.14848]],[[12.51489,35.53423],[12.64054,35.5306],[12.63861,35.48641],[12.51296,35.49005],[12.51489,35.53423]],[[11.91218,36.85688],[12.08179,36.85523],[12.07958,36.70974],[11.90998,36.71139],[11.91218,36.85688]],[[12.84019,35.88131],[12.89186,35.88145],[12.89198,35.85003],[12.84031,35.84989],[12.84019,35.88131]]],"terms_url":"http://www.sitr.regione.sicilia.it","terms_text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale"},{"id":"PCN-Lazio_Umbria-2008","name":"PCN 2008 - IT Lazio+Umbria","type":"wms","template":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&LAYERS=OI.ORTOIMMAGINI.2008.33&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2008-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","polygon":[[[12.33149,41.64637],[12.41178,41.64791],[12.41499,41.54635],[12.49574,41.54789],[12.4985,41.49619],[12.57948,41.49843],[12.58062,41.42932],[12.60632,41.4288],[12.60746,41.39663],[12.8293,41.39818],[12.83159,41.34688],[12.9128,41.34843],[12.9151,41.29726],[12.99585,41.2983],[12.99791,41.19636],[13.1679,41.19808],[13.16721,41.24692],[13.41337,41.24829],[13.4152,41.19705],[13.8341,41.19808],[13.83341,41.2476],[13.91737,41.24847],[13.91668,41.39749],[14.0011,41.39784],[13.99996,41.49774],[14.08415,41.49826],[14.08346,41.65014],[14.00087,41.6498],[13.99973,41.75051],[13.83433,41.74965],[13.83364,41.80047],[13.75151,41.79978],[13.7499,41.84987],[13.41841,41.8497],[13.41681,41.95027],[13.33445,41.94959],[13.3333,42.00041],[13.25141,41.99973],[13.25003,42.05051],[13.08509,42.04966],[13.08394,42.097],[13.33399,42.09819],[13.33376,42.1472],[13.41772,42.14822],[13.41635,42.25052],[13.33399,42.24984],[13.33353,42.30094],[13.25141,42.29992],[13.25003,42.54699],[13.41795,42.54817],[13.41589,42.75065],[13.33468,42.74947],[13.33307,42.90056],[13.16836,42.89938],[13.16721,42.95079],[12.96419,42.95012],[12.96258,43.0003],[12.91877,42.9998],[12.91601,43.25078],[12.83526,43.24994],[12.83228,43.50107],[12.66321,43.4994],[12.66482,43.45112],[12.58567,43.44996],[12.58246,43.5508],[12.50171,43.5498],[12.49987,43.65131],[12.16242,43.64915],[12.16494,43.60132],[12.07891,43.5995],[12.0819,43.45196],[11.99541,43.44913],[11.99862,43.34661],[12.07891,43.34795],[12.08075,43.30189],[11.9961,43.29955],[11.99862,43.20214],[11.91237,43.19929],[11.91466,43.15212],[11.83207,43.14944],[11.8323,43.09653],[11.91099,43.09837],[11.91466,42.90191],[11.82909,42.89922],[11.83139,42.85231],[11.74582,42.84945],[11.74811,42.65236],[11.6731,42.64966],[11.67493,42.6105],[11.49485,42.59936],[11.49852,42.49593],[11.57812,42.49796],[11.58156,42.45244],[11.41226,42.44872],[11.41524,42.34656],[11.49599,42.34792],[11.49921,42.29636],[11.57835,42.29822],[11.58225,42.24628],[11.66185,42.24832],[11.66621,42.09649],[11.74536,42.09819],[11.74903,41.99666],[11.91443,41.99922],[11.91535,41.98626],[11.99403,41.98745],[11.99862,41.89685],[12.07868,41.89907],[12.08144,41.84594],[12.16311,41.84799],[12.16563,41.6964],[12.3292,41.69863],[12.33149,41.64637]]],"terms_url":"http://www.sitr.regione.sicilia.it","terms_text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale"},{"id":"PCN-Italy-2012","name":"PCN 2012 - Italy","type":"wms","template":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_12.map&LAYERS=OI.ORTOIMMAGINI.2012.32,OI.ORTOIMMAGINI.2012.33&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[7.54795,43.73118],[8.10697,43.86701],[8.73593,44.38944],[10.18338,43.85116],[9.55016,43.13605],[10.27725,42.27515],[11.69748,42.08118],[12.90059,40.84897],[14.97466,40.20869],[16.04773,38.8953],[13.1086,38.74113],[11.77717,37.93605],[14.40624,36.74299],[15.13467,36.59364],[15.42867,37.027],[15.21993,37.43376],[15.4836,37.92936],[16.01644,37.8036],[17.21669,38.87425],[17.21669,39.40468],[16.55477,39.78775],[17.05464,40.45144],[18.32906,39.70539],[18.68773,40.0587],[18.04964,40.67064],[16.00545,41.52122],[16.38448,41.85964],[15.51837,42.1537],[14.57997,42.2461],[13.56099,43.65128],[12.57889,44.0867],[12.28795,44.62204],[12.56398,44.97092],[12.34151,45.17458],[12.41696,45.40557],[13.09252,45.62826],[13.69549,45.70806],[13.78445,45.5825],[13.9191,45.6322],[13.8235,45.7176],[13.59784,45.8072],[13.64307,45.98326],[13.52963,45.96588],[13.47474,46.00546],[13.66472,46.17392],[13.47587,46.22725],[13.42218,46.20758],[13.37671,46.29668],[13.59777,46.44137],[13.68684,46.43881],[13.7148,46.5222],[12.9151,46.60953],[12.38708,46.71529],[12.27591,46.88651],[12.17486,46.90895],[12.11675,47.01241],[12.21781,47.03996],[12.19254,47.09331],[11.74789,46.98484],[11.33355,46.99862],[11.10618,46.92966],[11.00764,46.76896],[10.72974,46.78972],[10.75753,46.82258],[10.66405,46.87614],[10.47197,46.85698],[10.38659,46.67847],[10.49375,46.62049],[10.46136,46.53164],[10.25309,46.57432],[10.23674,46.63484],[10.10307,46.61003],[10.03715,46.44479],[10.165,46.41051],[10.10506,46.3372],[10.17862,46.25626],[10.07055,46.21668],[9.95249,46.38045],[9.73086,46.35071],[9.71273,46.29266],[9.57015,46.2958],[9.46117,46.37481],[9.45936,46.50873],[9.40487,46.46621],[9.36128,46.5081],[9.28136,46.49685],[9.24503,46.23616],[8.95601,45.96503],[9.09065,45.89906],[9.0298,45.82127],[8.90992,45.8333],[8.9408,45.86682],[8.88904,45.95465],[8.78551,45.99063],[8.85617,46.0748],[8.62242,46.12112],[8.45032,46.26869],[8.42464,46.46367],[8.08814,46.26692],[8.15493,46.1834],[8.11383,46.11577],[8.02906,46.10331],[7.98881,45.99867],[7.9049,45.99945],[7.85949,45.91485],[7.56343,45.97421],[7.10685,45.85653],[7.04151,45.92435],[6.95315,45.85163],[6.80785,45.83265],[6.80785,45.71864],[6.98948,45.63869],[7.00037,45.509],[7.18019,45.40071],[7.10572,45.32924],[7.13115,45.25386],[6.85144,45.13226],[6.7697,45.16044],[6.62803,45.11175],[6.66981,45.02324],[6.74791,45.01939],[6.75518,44.89915],[7.02217,44.82519],[7.07484,44.68073],[6.95133,44.66264],[6.85507,44.53072],[6.94504,44.43112],[6.88784,44.42043],[6.89171,44.36637],[7.00764,44.23736],[7.36364,44.11882],[7.68694,44.17487],[7.72508,44.07578],[7.49355,43.86551],[7.54795,43.73118]],[[8.17134,39.14848],[8.62453,38.75119],[9.09831,39.03764],[9.03102,39.13144],[9.26585,39.18575],[9.64076,39.0227],[9.89894,40.67991],[9.50068,41.39257],[8.30317,40.91071],[8.41304,41.16139],[8.21254,41.13864],[8.07521,40.59862],[8.36154,40.35],[8.27914,39.98585],[8.38283,39.6536],[8.17134,39.14848]],[[12.51489,35.53423],[12.64054,35.5306],[12.63861,35.48641],[12.51296,35.49005],[12.51489,35.53423]],[[11.91218,36.85688],[12.08179,36.85523],[12.07958,36.70974],[11.90998,36.71139],[11.91218,36.85688]],[[12.84019,35.88131],[12.89186,35.88145],[12.89198,35.85003],[12.84031,35.84989],[12.84019,35.88131]]],"terms_url":"http://www.sitr.regione.sicilia.it","terms_text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale"},{"id":"Actueel_ortho25_WMS","name":"PDOK aerial imagery Beeldmateriaal.nl 25cm latest","type":"tms","template":"https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts?FORMAT=image/jpeg&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Actueel_ortho25&STYLE=&FORMAT=image/jpeg&tileMatrixSet=OGC:1.0:GoogleMapsCompatible&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,19],"polygon":[[[3.14377,51.35984],[3.1575,51.24113],[3.33878,51.11544],[3.91281,51.05851],[4.65714,51.28067],[4.89334,51.26348],[5.17899,51.12579],[5.38498,51.13096],[5.54428,51.05678],[5.42069,50.85956],[5.46738,50.70326],[5.65689,50.61926],[6.14853,50.62143],[6.30234,50.85782],[6.29959,50.95438],[6.26389,51.01835],[6.37238,51.09259],[6.40122,51.20114],[6.37375,51.25102],[6.44516,51.31587],[6.42044,51.5496],[6.34354,51.67922],[6.79672,51.76429],[7.04666,51.91024],[7.07138,52.04559],[7.27188,52.17041],[7.30759,52.38551],[7.20596,52.53195],[7.28287,52.61458],[7.29935,52.77853],[7.44217,52.97827],[7.43393,53.28314],[7.04392,53.55159],[6.78299,53.63635],[6.23917,53.54016],[5.6871,53.51241],[5.17349,53.43885],[4.81644,53.23384],[4.65164,53.06583],[4.54178,52.48598],[4.32205,52.19568],[4.08104,52.01369],[4.02199,52.01623],[3.93684,51.96379],[3.95195,51.88079],[3.84483,51.84942],[3.62373,51.70752],[3.65532,51.66069],[3.63335,51.62746],[3.54683,51.62234],[3.39577,51.56091],[3.38203,51.51735],[3.49876,51.43267],[3.32985,51.38556],[3.14377,51.35984]]],"terms_url":"https://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/search?facet.q=license%2FCC-BY&isChild=%27false%27&resultType=details&any_OR_title_OR_keyword=luchtfoto&fast=index&_content_type=json&from=1&to=20&sortBy=relevance","terms_text":"Kadaster / Beeldmateriaal.nl, CC BY 4.0","best":true,"description":"Nationwide data set 25cm resolution color aerial imagery of the most recent year.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/nl/PDOK-Luchtfoto-Beeldmateriaal-25cm-latest.png"},{"id":"PNOA-Spain-TMS","name":"PNOA Spain","type":"tms","template":"https://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}","zoomExtent":[0,20],"polygon":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]],"terms_text":"PNOA","best":true},{"id":"e-mapa.net-buildings","name":"polska.e-mapa.net: Buildings","type":"wms","template":"https://integracja02.gugik.gov.pl/cgi-bin/KrajowaIntegracjaEwidencjiGruntow?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://polska.e-mapa.net/","terms_text":"polska.e-mapa.net - Geoportal otwartych danych przestrzennych","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/polskae-mapanetBuildings.png"},{"id":"debicki-buildings","name":"Powiat dębicki: Buildings","type":"wms","template":"https://debica.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,adresy,EBU,EBT,S&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[21.53768,50.01085],[21.51944,50.05423],[21.58099,50.1233],[21.48804,50.18059],[21.13725,50.14835],[21.13939,50.12721],[21.18058,50.12101],[21.14315,50.05965],[21.15356,49.92854],[21.27892,49.92554],[21.22448,49.8861],[21.22362,49.84258],[21.35177,49.8349],[21.36368,49.86838],[21.41585,49.82003],[21.47943,49.8398],[21.52679,49.88911],[21.47689,50.00135],[21.53768,50.01085]]],"terms_text":"Powiat dębicki","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"lancucki-buildings","name":"Powiat łańcucki: Buildings","type":"wms","template":"https://lancut.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.17224,50.10121],[22.12574,50.1079],[22.0823,50.17206],[22.13591,50.1867],[22.173,50.18117],[22.18418,50.22914],[22.235,50.24718],[22.3856,50.16031],[22.40346,50.13331],[22.45275,50.12745],[22.45275,50.10676],[22.41768,50.08997],[22.38364,50.08915],[22.38542,50.05393],[22.35315,50.05067],[22.3562,50.00627],[22.31478,49.99451],[22.32139,49.94614],[22.29979,49.92455],[22.24161,49.92847],[22.20901,49.93728],[22.22382,49.96085],[22.16683,50.00412],[22.1387,50.00251],[22.12015,50.04626],[22.17224,50.10121]]],"terms_text":"Powiat łańcucki","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"lubaczowski-buildings","name":"Powiat lubaczowski: Buildings","type":"wms","template":"https://lubaczow.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=S,EBT,adresy,budynki_ewid&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[23.29224,50.09693],[23.55763,50.25704],[23.51394,50.26643],[23.522,50.29892],[23.40991,50.3083],[23.44482,50.35653],[23.38072,50.3699],[23.38829,50.4058],[23.35821,50.41105],[23.2527,50.36601],[23.19379,50.40529],[23.01962,50.2928],[22.84161,50.30574],[22.83572,50.27037],[22.82426,50.26923],[22.79651,50.20933],[22.86603,50.18949],[22.87414,50.13786],[22.93233,50.1678],[22.88954,50.11501],[22.95351,50.07178],[23.05556,50.04967],[22.99884,49.99028],[23.14951,49.97563],[23.29224,50.09693]]],"terms_text":"Powiat lubaczowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"poznanski-buildings","name":"Powiat poznański: Buildings","type":"wms","template":"http://wms.podgik.poznan.pl/cgi-bin/poznan?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[16.9585,52.46312],[17.03946,52.33605],[16.84291,52.36501],[16.78596,52.46566],[16.70022,52.53819],[16.6415,52.5288],[16.44898,52.36793],[16.47775,52.2696],[16.5659,52.26813],[16.58375,52.17007],[17.08099,52.14981],[17.37124,52.34522],[17.39853,52.44037],[17.35338,52.53949],[17.13689,52.57783],[17.13126,52.6419],[17.01608,52.68366],[16.9158,52.65079],[16.85814,52.58191],[16.7367,52.57459],[16.70022,52.53824],[16.78598,52.46567],[16.9585,52.46312]]],"terms_text":"PODGIK Poznań","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatpoznaskiOrthophotomap(aerialimage).png"},{"id":"sropczyce-buildings","name":"Powiat ropczycko-sędziszowski: Buildings","type":"wms","template":"https://spropczyce.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[21.60041,50.21025],[21.74199,50.16538],[21.792,50.17829],[21.81459,50.15264],[21.78741,50.10859],[21.82597,50.09149],[21.82552,50.02925],[21.78666,49.97585],[21.70632,49.96022],[21.683,49.92431],[21.60062,49.91793],[21.54249,49.8862],[21.5188,49.89119],[21.45315,49.99268],[21.50364,50.0198],[21.49298,50.07161],[21.55535,50.11909],[21.50429,50.16559],[21.59816,50.17866],[21.60041,50.21025]]],"terms_text":"Powiat ropczycko-sędziszowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"rzeszowski-buildings","name":"Powiat rzeszowski: Buildings","type":"wms","template":"https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,EBT,EBU&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.18219,50.17339],[22.09834,50.17176],[22.18016,50.09784],[22.13779,50.00695],[22.09444,50.00841],[22.02839,50.06668],[21.9354,50.06636],[21.98164,49.94977],[22.05278,50.0097],[22.1771,50.00555],[22.23319,49.96829],[22.31144,49.87008],[22.34961,49.72826],[21.99951,49.82808],[21.84961,49.95739],[21.7495,49.96981],[21.78503,50.14212],[21.93307,50.24748],[22.08291,50.26471],[21.98553,50.31545],[22.0901,50.37369],[22.19821,50.35265],[22.2536,50.2647],[22.18219,50.17339]]],"terms_text":"Powiat rzeszowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"rzeszowski-aerial","name":"Powiat rzeszowski: Orthophotomap (aerial image)","type":"wms","template":"https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.18219,50.17339],[22.09834,50.17176],[22.18016,50.09784],[22.13779,50.00695],[22.09444,50.00841],[22.02839,50.06668],[21.9354,50.06636],[21.98164,49.94977],[22.05278,50.0097],[22.1771,50.00555],[22.23319,49.96829],[22.31144,49.87008],[22.34961,49.72826],[21.99951,49.82808],[21.84961,49.95739],[21.7495,49.96981],[21.78503,50.14212],[21.93307,50.24748],[22.08291,50.26471],[21.98553,50.31545],[22.0901,50.37369],[22.19821,50.35265],[22.2536,50.2647],[22.18219,50.17339]]],"terms_text":"Powiat rzeszowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"stalowowolski-buildings","name":"Powiat stalowowolski: Buildings","type":"wms","template":"https://stalowawola.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,adresy,budynki,centroidy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.017,50.35811],[22.09292,50.44916],[22.06785,50.51434],[22.09722,50.54302],[22.16347,50.52686],[22.23795,50.5503],[22.26768,50.60465],[22.22757,50.6653],[22.16235,50.66969],[22.20843,50.75403],[22.16239,50.80039],[22.0546,50.82234],[21.94394,50.77639],[21.86228,50.80439],[21.83413,50.75035],[21.87465,50.70066],[21.84046,50.65749],[21.97582,50.53164],[21.84797,50.47196],[21.88045,50.3913],[22.017,50.35811]]],"terms_text":"Powiat stalowowolski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"poznan-buildings","name":"Poznań: Buildings","type":"wms","template":"http://wms2.geopoz.poznan.pl:8080/geoserver/sip/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki_ewidencyjne_sql&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},{"id":"poznan-ortofotomapa2014","name":"Poznań: Orthophotomap 2014 (aerial image)","type":"wms","template":"http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapa_2014/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa_2014_image&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},{"id":"poznan-ortofotomapa2016","name":"Poznań: Orthophotomap 2016 (aerial image)","type":"wms","template":"http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapy/MapServer/WmsServer?LAYERS=ortofotomapa_2016_image&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},{"id":"poznan-ortofotomapaBiezaca","name":"Poznań: Orthophotomap Bieżąca (aerial image)","type":"wms","template":"http://wms2.geopoz.poznan.pl/geoserver/ortogpkg/wms?LAYERS=ortofotomapa_biezaca&STYLES=raster&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ","terms_html":"https://www.geopoz.pl/","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/geopoz-logo.png"},{"id":"PrahaIPRlatestorthophoto","name":"Praha IPR latest orthophoto","type":"wms","template":"http://giswa1.mag.mepnet.cz/arcgis/services/MAP/letecke_snimky_posledni_snimkovani_cache/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[1,20],"polygon":[[[14.81232,49.93089],[14.18755,49.87687],[14.12025,50.19882],[14.74502,50.25247],[14.81232,49.93089]]]},{"id":"PrahaIPRlow-vegetationorthophoto","name":"Praha IPR low-vegetation orthophoto","type":"wms","template":"http://giswa1.mag.mepnet.cz/arcgis/services/MAP/mimovegetacni_snimkovani_cache/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[1,20],"polygon":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]]},{"id":"przemysl-buildings","name":"Przemyśl: Buildings","type":"wms","template":"http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=adresy,budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.72268,49.76885],[22.73002,49.76787],[22.73097,49.77612],[22.72027,49.77662],[22.71787,49.78062],[22.73104,49.78553],[22.7244,49.79043],[22.73458,49.80441],[22.73167,49.81429],[22.7261,49.8165],[22.72762,49.82124],[22.74395,49.8187],[22.75952,49.80939],[22.79042,49.81462],[22.81169,49.80571],[22.79738,49.80146],[22.80384,49.79247],[22.83118,49.79664],[22.85752,49.78561],[22.84549,49.76746],[22.82485,49.77105],[22.82004,49.75674],[22.77358,49.74439],[22.73838,49.75895],[22.72205,49.74644],[22.71065,49.76288],[22.72268,49.76885]]],"terms_text":"Miasto Przemyśl","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"przemysl-aerial","name":"Przemyśl: Ortophotomap (aerial image)","type":"wms","template":"http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[22.72268,49.76885],[22.73002,49.76787],[22.73097,49.77612],[22.72027,49.77662],[22.71787,49.78062],[22.73104,49.78553],[22.7244,49.79043],[22.73458,49.80441],[22.73167,49.81429],[22.7261,49.8165],[22.72762,49.82124],[22.74395,49.8187],[22.75952,49.80939],[22.79042,49.81462],[22.81169,49.80571],[22.79738,49.80146],[22.80384,49.79247],[22.83118,49.79664],[22.85752,49.78561],[22.84549,49.76746],[22.82485,49.77105],[22.82004,49.75674],[22.77358,49.74439],[22.73838,49.75895],[22.72205,49.74644],[22.71065,49.76288],[22.72268,49.76885]]],"terms_text":"Miasto Przemyśl","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"RABA-KGZ-3000","name":"RABA-KGZ: Slovenia built-up areas","type":"tms","template":"https://wms.openstreetmap.de/tms/RABA3000/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ","terms_text":"Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png"},{"id":"RABA-KGZ","name":"RABA-KGZ: Slovenia farmland use","type":"tms","template":"https://wms.openstreetmap.de/tms/RABA/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ","terms_text":"Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png"},{"id":"riksantikvaren-kulturminner","name":"Riksantikvaren Heritage Sites overlay","type":"wms","template":"https://kart.ra.no/arcgis/services/Distribusjon/Kulturminner20180301/MapServer/WmsServer?LAYERS=Enkeltminner,Enkeltminneikoner&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[15,22],"polygon":[[[-10.95725,71.60964],[-6.16765,71.62095],[-6.13756,70.30991],[-10.92717,70.29784],[-10.95725,71.60964]],[[16.81947,74.9482],[21.25771,74.94213],[21.23712,73.8918],[16.79889,73.89828],[16.81947,74.9482]],[[4.04288,79.93593],[20.65421,81.54417],[36.6503,80.40108],[26.76265,75.8129],[13.88667,75.79135],[4.04288,79.93593]],[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.riksantikvaren.no/Veiledning/Data-og-tjenester/Karttjenester","terms_text":"© Riksantikvaren","description":"Archeological and architectural monuments/sites and cultural environments protected by law (''enkeltminner'') from the Norwegian Directorate for Cultural Heritage","icon":"https://www.riksantikvaren.no/extension/riksantikvaren/design/internetsite/images/logo_na.png","overlay":true},{"id":"rio2013","name":"Rio Mosaic 2013","type":"wms","template":"http://geo.rio.rj.gov.br/ArcGIS/services/Imagens/Mosaico_2013/MapServer/WMSServer?LAYERS=1&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[-43.17709,-22.96971],[-43.14586,-22.96959],[-43.14605,-22.92719],[-43.15625,-22.92731],[-43.15647,-22.87557],[-43.17739,-22.87494],[-43.17742,-22.88553],[-43.19804,-22.88571],[-43.19804,-22.85429],[-43.21875,-22.85444],[-43.21901,-22.83365],[-43.22937,-22.83365],[-43.22934,-22.82371],[-43.19869,-22.82353],[-43.19856,-22.83413],[-43.18826,-22.83398],[-43.18804,-22.84448],[-43.16667,-22.84442],[-43.16683,-22.83404],[-43.15638,-22.83407],[-43.15654,-22.81336],[-43.10436,-22.81306],[-43.10446,-22.80288],[-43.09387,-22.80276],[-43.0941,-22.73998],[-43.13599,-22.73992],[-43.13569,-22.75067],[-43.12573,-22.75055],[-43.12556,-22.77118],[-43.14595,-22.77109],[-43.14612,-22.76055],[-43.17771,-22.76088],[-43.17758,-22.77115],[-43.18807,-22.7713],[-43.18807,-22.78166],[-43.25067,-22.78163],[-43.25057,-22.79198],[-43.28054,-22.79282],[-43.30343,-22.79312],[-43.33353,-22.79297],[-43.33347,-22.80258],[-43.38574,-22.8024],[-43.38542,-22.81255],[-43.41691,-22.81285],[-43.41675,-22.82341],[-43.42717,-22.82335],[-43.4274,-22.83374],[-43.45844,-22.83362],[-43.45864,-22.81276],[-43.48984,-22.813],[-43.48994,-22.7965],[-43.50208,-22.79746],[-43.51543,-22.79737],[-43.52078,-22.79591],[-43.54169,-22.79603],[-43.54179,-22.80234],[-43.54653,-22.80246],[-43.54666,-22.81189],[-43.55251,-22.81279],[-43.56991,-22.81294],[-43.56998,-22.8197],[-43.57361,-22.82326],[-43.58348,-22.82329],[-43.58352,-22.83347],[-43.59391,-22.83374],[-43.59394,-22.85468],[-43.66099,-22.85459],[-43.66099,-22.85983],[-43.70852,-22.86019],[-43.70836,-22.86503],[-43.72206,-22.86488],[-43.72213,-22.86847],[-43.75015,-22.86859],[-43.75009,-22.8753],[-43.76038,-22.87527],[-43.75992,-22.8785],[-43.75976,-22.88457],[-43.76132,-22.88586],[-43.78129,-22.8858],[-43.78126,-22.89591],[-43.80213,-22.89621],[-43.80135,-22.91137],[-43.80119,-22.92758],[-43.79213,-22.92776],[-43.7922,-22.93822],[-43.78191,-22.93799],[-43.78184,-22.94869],[-43.75067,-22.94845],[-43.7506,-22.95909],[-43.72986,-22.95886],[-43.72966,-22.97984],[-43.70904,-22.97966],[-43.70891,-22.99033],[-43.69846,-22.99006],[-43.69836,-23.00065],[-43.66735,-23.00044],[-43.66726,-23.01117],[-43.63125,-23.00937],[-43.63131,-23.02079],[-43.63586,-23.02091],[-43.63602,-23.03164],[-43.67771,-23.03164],[-43.67765,-23.04233],[-43.67086,-23.0423],[-43.67109,-23.0631],[-43.64599,-23.06304],[-43.64605,-23.05276],[-43.60475,-23.05255],[-43.60452,-23.06307],[-43.58381,-23.06289],[-43.58368,-23.08404],[-43.54186,-23.08383],[-43.54195,-23.06319],[-43.52147,-23.06301],[-43.5213,-23.07352],[-43.50043,-23.07337],[-43.50043,-23.04218],[-43.45877,-23.04221],[-43.4587,-23.03194],[-43.43782,-23.03182],[-43.43776,-23.02154],[-43.3235,-23.02121],[-43.3233,-23.04212],[-43.31291,-23.04195],[-43.31275,-23.05267],[-43.30239,-23.05258],[-43.30236,-23.04227],[-43.29194,-23.04215],[-43.29197,-23.03194],[-43.27109,-23.03182],[-43.27119,-23.01093],[-43.26061,-23.01087],[-43.26067,-23.00059],[-43.25057,-23.00047],[-43.25054,-23.01126],[-43.23989,-23.01102],[-43.23986,-23.00062],[-43.21908,-23.0005],[-43.21904,-22.99021],[-43.20901,-22.99009],[-43.20862,-23.08389],[-43.18768,-23.08377],[-43.18761,-23.07334],[-43.13582,-23.07337],[-43.13589,-23.05249],[-43.17732,-23.05255],[-43.17709,-22.96971]]],"terms_url":"https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer","terms_text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."},{"id":"rio2015","name":"Rio Mosaic 2015","type":"wms","template":"https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2015_UTM/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-42.30363,-22.43698],[-44.10842,-22.06579],[-44.5313,-23.7863],[-42.70469,-24.16178],[-42.30363,-22.43698]]],"terms_url":"https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer","terms_text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."},{"id":"route500","name":"Route 500","type":"tms","template":"https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE","terms_text":"Tiles © cquest@Openstreetmap France, data © IGN, LO/OL","description":"Routes du réseau classé (autoroutes, nationales, départementales)","overlay":true},{"id":"Ruda_Slaska-aerial_image","name":"Ruda Śląska: Orthophotomap (aerial image)","type":"wms","template":"https://rudaslaska.geoportal2.pl/map/wmsorto/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[18.84294,50.32508],[18.84008,50.33091],[18.85132,50.33437],[18.86262,50.3305],[18.88693,50.333],[18.89493,50.3319],[18.90045,50.32562],[18.89713,50.31146],[18.89312,50.31149],[18.89114,50.30778],[18.8972,50.2999],[18.89073,50.29586],[18.90211,50.29204],[18.90706,50.28637],[18.90853,50.27823],[18.93583,50.27379],[18.94106,50.25859],[18.93848,50.25317],[18.95086,50.24267],[18.96531,50.24084],[18.94611,50.22907],[18.89932,50.22516],[18.90251,50.21749],[18.89075,50.21557],[18.89292,50.20913],[18.86474,50.20512],[18.85673,50.22078],[18.85258,50.22331],[18.84619,50.21761],[18.83341,50.21715],[18.83533,50.22307],[18.83051,50.23099],[18.82411,50.23055],[18.81641,50.23709],[18.81619,50.24125],[18.80635,50.24596],[18.80344,50.24293],[18.78831,50.24456],[18.79552,50.2768],[18.81681,50.27732],[18.81919,50.28794],[18.83893,50.29795],[18.83849,50.3004],[18.82699,50.30342],[18.82691,50.32073],[18.83007,50.32371],[18.84294,50.32508]]],"terms_text":"Urząd Miasta Ruda Śląska"},{"id":"Rzeszow-buildings","name":"Rzeszów: Buildings","type":"wms","template":"http://wms.erzeszow.pl/?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=komunikacja,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.09538,50.08157],[22.0947,50.05584],[22.08892,50.05589],[22.08874,50.03671],[22.09505,50.03682],[22.09435,49.98723],[22.0609,49.98754],[22.0605,49.96525],[22.04757,49.96509],[22.04724,49.95792],[22.03139,49.95845],[22.0312,49.9574],[22.0014,49.95833],[22.00019,49.9375],[22.0014,49.93746],[22.00029,49.92047],[21.96799,49.92088],[21.969,49.93683],[21.95393,49.93706],[21.95441,49.94373],[21.94192,49.94378],[21.94253,49.96646],[21.93676,49.9665],[21.93776,49.97828],[21.92898,49.97858],[21.92951,49.98858],[21.91606,49.9888],[21.9165,50.01192],[21.90572,50.01195],[21.90653,50.04136],[21.87425,50.04183],[21.87546,50.06072],[21.90465,50.06083],[21.90672,50.0835],[22.09538,50.08157]]],"terms_text":"Urząd Miasta Rzeszowa"},{"id":"Rzeszow-aerial_image","name":"Rzeszów: Orthophotomap (aerial image)","type":"wms","template":"http://wms.erzeszow.pl/?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=rastry&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[22.09538,50.08157],[22.0947,50.05584],[22.08892,50.05589],[22.08874,50.03671],[22.09505,50.03682],[22.09435,49.98723],[22.0609,49.98754],[22.0605,49.96525],[22.04757,49.96509],[22.04724,49.95792],[22.03139,49.95845],[22.0312,49.9574],[22.0014,49.95833],[22.00019,49.9375],[22.0014,49.93746],[22.00029,49.92047],[21.96799,49.92088],[21.969,49.93683],[21.95393,49.93706],[21.95441,49.94373],[21.94192,49.94378],[21.94253,49.96646],[21.93676,49.9665],[21.93776,49.97828],[21.92898,49.97858],[21.92951,49.98858],[21.91606,49.9888],[21.9165,50.01192],[21.90572,50.01195],[21.90653,50.04136],[21.87425,50.04183],[21.87546,50.06072],[21.90465,50.06083],[21.90672,50.0835],[22.09538,50.08157]]],"terms_text":"Urząd Miasta Rzeszowa"},{"id":"san_antonio_river_2016_wms","name":"San Antonio River Authority Imagery 2016","type":"wms","template":"https://webservices.tnris.org/arcgis/services/StratMap/StratMap16_NC_CIR_12in_SARA/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[-97.06376,27.84293],[-97.06374,27.84373],[-97.06373,27.84453],[-97.06371,27.84532],[-97.0637,27.84612],[-97.06368,27.84692],[-97.06367,27.84772],[-97.06365,27.84851],[-97.06364,27.84931],[-97.06362,27.85011],[-97.06361,27.8509],[-97.06359,27.8517],[-97.06358,27.8525],[-97.06356,27.85329],[-97.06355,27.85409],[-97.06353,27.85489],[-97.06352,27.85568],[-97.0635,27.85648],[-97.06349,27.85728],[-97.06347,27.85807],[-97.06346,27.85887],[-97.06344,27.85967],[-97.06343,27.86046],[-97.06249,27.86045],[-97.06156,27.86044],[-97.06062,27.86042],[-97.05968,27.86041],[-97.05875,27.86039],[-97.05781,27.86038],[-97.05687,27.86037],[-97.05593,27.86035],[-97.055,27.86034],[-97.05406,27.86033],[-97.05312,27.86031],[-97.05219,27.8603],[-97.05125,27.86028],[-97.05031,27.86027],[-97.04938,27.86026],[-97.04844,27.86024],[-97.0481,27.86024],[-97.04809,27.86095],[-97.04807,27.86175],[-97.04806,27.86254],[-97.04804,27.86334],[-97.04803,27.86414],[-97.04801,27.86493],[-97.048,27.86573],[-97.04799,27.86653],[-97.04797,27.86733],[-97.04796,27.86812],[-97.04794,27.86892],[-97.04793,27.86972],[-97.04791,27.87051],[-97.0479,27.87131],[-97.04788,27.87211],[-97.04787,27.8729],[-97.04785,27.8737],[-97.04784,27.87418],[-97.04814,27.87418],[-97.04812,27.87498],[-97.04811,27.87578],[-97.04809,27.87657],[-97.04808,27.87737],[-97.04806,27.87817],[-97.04805,27.87897],[-97.04803,27.87976],[-97.04802,27.88056],[-97.048,27.88136],[-97.04799,27.88215],[-97.04797,27.88295],[-97.04796,27.88375],[-97.04794,27.88454],[-97.04793,27.88534],[-97.04791,27.88614],[-97.0479,27.88693],[-97.04788,27.88773],[-97.04787,27.88853],[-97.04785,27.88933],[-97.04784,27.8898],[-97.04814,27.88981],[-97.04812,27.89061],[-97.04811,27.8914],[-97.04809,27.8922],[-97.04808,27.893],[-97.04806,27.89379],[-97.04805,27.89459],[-97.04803,27.89539],[-97.04802,27.89618],[-97.048,27.89698],[-97.04799,27.89778],[-97.04797,27.89857],[-97.04796,27.89937],[-97.04794,27.90017],[-97.04793,27.90097],[-97.04791,27.90176],[-97.0479,27.90256],[-97.04788,27.90336],[-97.04787,27.90415],[-97.04785,27.90495],[-97.04784,27.90543],[-97.04814,27.90543],[-97.04812,27.90623],[-97.04811,27.90703],[-97.04809,27.90782],[-97.04808,27.90862],[-97.04806,27.90942],[-97.04805,27.91022],[-97.04803,27.91101],[-97.04802,27.91181],[-97.048,27.91261],[-97.04799,27.9134],[-97.04797,27.9142],[-97.04796,27.915],[-97.04794,27.91579],[-97.04793,27.91659],[-97.04791,27.91739],[-97.0479,27.91818],[-97.04788,27.91898],[-97.04787,27.91978],[-97.04785,27.92057],[-97.04784,27.92105],[-97.04814,27.92106],[-97.04812,27.92186],[-97.04811,27.92265],[-97.04809,27.92345],[-97.04808,27.92425],[-97.04806,27.92504],[-97.04805,27.92584],[-97.04803,27.92664],[-97.04802,27.92743],[-97.048,27.92823],[-97.04799,27.92903],[-97.04797,27.92982],[-97.04796,27.93062],[-97.04794,27.93142],[-97.04793,27.93222],[-97.04791,27.93301],[-97.0479,27.93381],[-97.04788,27.93461],[-97.04787,27.9354],[-97.04785,27.9362],[-97.04784,27.93668],[-97.04814,27.93668],[-97.04812,27.93748],[-97.04811,27.93828],[-97.04809,27.93907],[-97.04808,27.93987],[-97.04806,27.94067],[-97.04805,27.94147],[-97.04803,27.94226],[-97.04802,27.94306],[-97.048,27.94386],[-97.04799,27.94465],[-97.04797,27.94545],[-97.04796,27.94625],[-97.04794,27.94704],[-97.04793,27.94784],[-97.04791,27.94864],[-97.0479,27.94943],[-97.04788,27.95023],[-97.04787,27.95103],[-97.04785,27.95182],[-97.04784,27.95262],[-97.04782,27.95342],[-97.04781,27.95422],[-97.04687,27.9542],[-97.04593,27.95419],[-97.045,27.95417],[-97.04406,27.95416],[-97.04312,27.95415],[-97.04218,27.95413],[-97.04125,27.95412],[-97.04031,27.9541],[-97.03937,27.95409],[-97.03844,27.95408],[-97.0375,27.95406],[-97.03656,27.95405],[-97.03562,27.95403],[-97.03469,27.95402],[-97.03375,27.95401],[-97.03281,27.95399],[-97.03219,27.95398],[-97.03218,27.95422],[-97.03124,27.9542],[-97.03031,27.95419],[-97.02937,27.95417],[-97.02843,27.95416],[-97.02749,27.95415],[-97.02656,27.95413],[-97.02562,27.95412],[-97.02468,27.9541],[-97.02375,27.95409],[-97.02281,27.95408],[-97.02187,27.95406],[-97.02093,27.95405],[-97.02,27.95403],[-97.01906,27.95402],[-97.01812,27.95401],[-97.01718,27.95399],[-97.01656,27.95398],[-97.01655,27.95422],[-97.01562,27.9542],[-97.01468,27.95419],[-97.01374,27.95418],[-97.01281,27.95416],[-97.01187,27.95415],[-97.01093,27.95413],[-97.00999,27.95412],[-97.00906,27.95411],[-97.00812,27.95409],[-97.00718,27.95408],[-97.00624,27.95406],[-97.00531,27.95405],[-97.00437,27.95403],[-97.00343,27.95402],[-97.0025,27.95401],[-97.00156,27.95399],[-97.00124,27.95399],[-97.00122,27.9547],[-97.00121,27.9555],[-97.00119,27.9563],[-97.00118,27.95709],[-97.00116,27.95789],[-97.00115,27.95869],[-97.00113,27.95948],[-97.00111,27.96028],[-97.0011,27.96108],[-97.00108,27.96188],[-97.00107,27.96267],[-97.00105,27.96347],[-97.00104,27.96427],[-97.00102,27.96506],[-97.00101,27.96586],[-97.00099,27.96666],[-97.00098,27.96746],[-97.00097,27.96793],[-97.00127,27.96794],[-97.00125,27.96873],[-97.00124,27.96953],[-97.00122,27.97033],[-97.00121,27.97112],[-97.00119,27.97192],[-97.00118,27.97272],[-97.00116,27.97351],[-97.00115,27.97431],[-97.00113,27.97511],[-97.00111,27.97591],[-97.0011,27.9767],[-97.00108,27.9775],[-97.00107,27.9783],[-97.00105,27.97909],[-97.00104,27.97989],[-97.00102,27.98069],[-97.00101,27.98148],[-97.00099,27.98228],[-97.00098,27.98308],[-97.00097,27.98356],[-97.00127,27.98356],[-97.00125,27.98436],[-97.00124,27.98515],[-97.00122,27.98595],[-97.00121,27.98675],[-97.00119,27.98755],[-97.00118,27.98834],[-97.00116,27.98914],[-97.00115,27.98994],[-97.00113,27.99073],[-97.00111,27.99153],[-97.0011,27.99233],[-97.00108,27.99312],[-97.00107,27.99392],[-97.00105,27.99472],[-97.00104,27.99552],[-97.00102,27.99631],[-97.00101,27.99711],[-97.00099,27.99791],[-97.00098,27.9987],[-97.00096,27.9995],[-97.00095,28.0003],[-97.00093,28.0011],[-96.99999,28.00108],[-96.99906,28.00107],[-96.99812,28.00105],[-96.99718,28.00104],[-96.99624,28.00102],[-96.9953,28.00101],[-96.99437,28.001],[-96.99343,28.00098],[-96.99249,28.00097],[-96.99155,28.00095],[-96.99062,28.00094],[-96.98968,28.00092],[-96.98874,28.00091],[-96.9878,28.0009],[-96.98687,28.00088],[-96.98593,28.00087],[-96.98561,28.00086],[-96.9856,28.00158],[-96.98558,28.00237],[-96.98557,28.00317],[-96.98555,28.00397],[-96.98554,28.00476],[-96.98552,28.00556],[-96.98551,28.00636],[-96.98549,28.00716],[-96.98548,28.00795],[-96.98546,28.00875],[-96.98545,28.00955],[-96.98543,28.01034],[-96.98541,28.01114],[-96.9854,28.01194],[-96.98538,28.01274],[-96.98537,28.01353],[-96.98535,28.01433],[-96.98534,28.01481],[-96.98565,28.01481],[-96.98563,28.01561],[-96.98562,28.0164],[-96.9856,28.0172],[-96.98559,28.018],[-96.98557,28.0188],[-96.98555,28.01959],[-96.98554,28.02039],[-96.98552,28.02119],[-96.98551,28.02199],[-96.98549,28.02278],[-96.98548,28.02358],[-96.98546,28.02438],[-96.98545,28.02518],[-96.98543,28.02597],[-96.98541,28.02677],[-96.9854,28.02757],[-96.98538,28.02837],[-96.98537,28.02916],[-96.98535,28.02996],[-96.98534,28.03076],[-96.98532,28.03156],[-96.98531,28.03235],[-96.98437,28.03234],[-96.98343,28.03232],[-96.98249,28.03231],[-96.98156,28.0323],[-96.98062,28.03228],[-96.97968,28.03227],[-96.97874,28.03225],[-96.97781,28.03224],[-96.97687,28.03222],[-96.97593,28.03221],[-96.97499,28.03219],[-96.97405,28.03218],[-96.97312,28.03217],[-96.97218,28.03215],[-96.97124,28.03214],[-96.9703,28.03212],[-96.96999,28.03212],[-96.96998,28.03283],[-96.96996,28.03363],[-96.96995,28.03443],[-96.96993,28.03522],[-96.96992,28.03602],[-96.9699,28.03682],[-96.96988,28.03761],[-96.96987,28.03841],[-96.96985,28.03921],[-96.96984,28.04],[-96.96982,28.0408],[-96.96981,28.0416],[-96.96979,28.0424],[-96.96978,28.04319],[-96.96976,28.04399],[-96.96974,28.04479],[-96.96973,28.04558],[-96.96972,28.04606],[-96.97003,28.04606],[-96.97001,28.04686],[-96.96999,28.04766],[-96.96998,28.04845],[-96.96996,28.04925],[-96.96995,28.05005],[-96.96993,28.05084],[-96.96992,28.05164],[-96.9699,28.05244],[-96.96989,28.05324],[-96.96987,28.05403],[-96.96985,28.05483],[-96.96984,28.05563],[-96.96982,28.05643],[-96.96981,28.05722],[-96.96979,28.05802],[-96.96978,28.05882],[-96.96976,28.05961],[-96.96975,28.06041],[-96.96973,28.06121],[-96.96971,28.06201],[-96.9697,28.0628],[-96.96968,28.0636],[-96.96874,28.06359],[-96.96781,28.06357],[-96.96687,28.06356],[-96.96593,28.06354],[-96.96499,28.06353],[-96.96406,28.06351],[-96.96312,28.0635],[-96.96218,28.06349],[-96.96124,28.06347],[-96.9603,28.06346],[-96.95937,28.06344],[-96.95843,28.06343],[-96.95749,28.06341],[-96.95655,28.0634],[-96.95561,28.06338],[-96.95468,28.06337],[-96.95406,28.06336],[-96.95406,28.0636],[-96.95312,28.06359],[-96.95218,28.06357],[-96.95124,28.06356],[-96.9503,28.06354],[-96.94937,28.06353],[-96.94843,28.06351],[-96.94749,28.0635],[-96.94655,28.06348],[-96.94561,28.06347],[-96.94468,28.06346],[-96.94374,28.06344],[-96.9428,28.06343],[-96.94186,28.06341],[-96.94092,28.0634],[-96.93999,28.06338],[-96.93905,28.06337],[-96.93875,28.06336],[-96.93873,28.06408],[-96.93872,28.06488],[-96.9387,28.06567],[-96.93868,28.06647],[-96.93867,28.06727],[-96.93865,28.06806],[-96.93864,28.06886],[-96.93862,28.06966],[-96.9386,28.07046],[-96.93859,28.07125],[-96.93857,28.07205],[-96.93856,28.07285],[-96.93854,28.07365],[-96.93852,28.07444],[-96.93851,28.07524],[-96.93849,28.07604],[-96.93848,28.07684],[-96.93847,28.07731],[-96.93878,28.07731],[-96.93877,28.07811],[-96.93875,28.07891],[-96.93873,28.0797],[-96.93872,28.0805],[-96.9387,28.0813],[-96.93869,28.0821],[-96.93867,28.08289],[-96.93865,28.08369],[-96.93864,28.08449],[-96.93862,28.08529],[-96.93861,28.08608],[-96.93859,28.08688],[-96.93858,28.08768],[-96.93856,28.08848],[-96.93854,28.08927],[-96.93853,28.09007],[-96.93851,28.09087],[-96.9385,28.09166],[-96.93848,28.09246],[-96.93847,28.09293],[-96.93878,28.09293],[-96.93877,28.09373],[-96.93875,28.09453],[-96.93873,28.09533],[-96.93872,28.09612],[-96.9387,28.09692],[-96.93869,28.09772],[-96.93867,28.09852],[-96.93865,28.09931],[-96.93864,28.10011],[-96.93862,28.10091],[-96.93861,28.10171],[-96.93859,28.1025],[-96.93857,28.1033],[-96.93856,28.1041],[-96.93854,28.1049],[-96.93853,28.10569],[-96.93851,28.10649],[-96.9385,28.10729],[-96.93848,28.10809],[-96.93848,28.10831],[-96.9394,28.10833],[-96.94033,28.10834],[-96.94127,28.10836],[-96.94221,28.10837],[-96.94315,28.10839],[-96.94409,28.1084],[-96.94502,28.10842],[-96.94596,28.10843],[-96.9469,28.10844],[-96.94784,28.10846],[-96.94878,28.10847],[-96.94971,28.10849],[-96.95065,28.1085],[-96.95159,28.10852],[-96.9522,28.10853],[-96.95221,28.10829],[-96.95315,28.1083],[-96.95408,28.10831],[-96.95502,28.10833],[-96.95596,28.10834],[-96.9569,28.10836],[-96.95783,28.10837],[-96.95877,28.10839],[-96.95971,28.1084],[-96.96065,28.10842],[-96.96159,28.10843],[-96.96252,28.10845],[-96.96346,28.10846],[-96.9644,28.10847],[-96.96534,28.10849],[-96.96627,28.1085],[-96.96721,28.10852],[-96.96783,28.10853],[-96.96783,28.10829],[-96.96877,28.1083],[-96.96971,28.10832],[-96.97065,28.10833],[-96.97158,28.10835],[-96.97252,28.10836],[-96.97346,28.10837],[-96.9744,28.10839],[-96.97534,28.1084],[-96.97627,28.10842],[-96.97721,28.10843],[-96.97815,28.10845],[-96.97909,28.10846],[-96.98002,28.10848],[-96.98096,28.10849],[-96.9819,28.1085],[-96.98284,28.10852],[-96.98345,28.10853],[-96.98346,28.10829],[-96.9844,28.1083],[-96.98533,28.10832],[-96.98627,28.10833],[-96.98721,28.10835],[-96.98815,28.10836],[-96.98908,28.10837],[-96.99002,28.10839],[-96.99096,28.1084],[-96.9919,28.10842],[-96.99283,28.10843],[-96.99377,28.10845],[-96.99471,28.10846],[-96.99565,28.10847],[-96.99658,28.10849],[-96.99752,28.1085],[-96.99846,28.10852],[-96.99908,28.10853],[-96.99908,28.10829],[-97.00002,28.1083],[-97.00096,28.10832],[-97.0019,28.10833],[-97.00283,28.10835],[-97.00377,28.10836],[-97.00471,28.10838],[-97.00565,28.10839],[-97.00658,28.1084],[-97.00752,28.10842],[-97.00846,28.10843],[-97.00939,28.10845],[-97.01033,28.10846],[-97.01127,28.10847],[-97.01221,28.10849],[-97.01314,28.1085],[-97.01408,28.10852],[-97.01502,28.10853],[-97.01596,28.10854],[-97.01689,28.10856],[-97.01688,28.10936],[-97.01686,28.11015],[-97.01685,28.11095],[-97.01683,28.11175],[-97.01682,28.11254],[-97.0168,28.11334],[-97.01679,28.11414],[-97.01677,28.11494],[-97.01676,28.11573],[-97.01674,28.11653],[-97.01673,28.11733],[-97.01671,28.11812],[-97.0167,28.11892],[-97.01668,28.11972],[-97.01666,28.12051],[-97.01665,28.12131],[-97.01663,28.12211],[-97.01662,28.12291],[-97.0166,28.1237],[-97.01659,28.12418],[-97.01689,28.12418],[-97.01688,28.12498],[-97.01686,28.12578],[-97.01685,28.12658],[-97.01683,28.12737],[-97.01682,28.12817],[-97.0168,28.12897],[-97.01679,28.12976],[-97.01677,28.13056],[-97.01676,28.13136],[-97.01674,28.13216],[-97.01672,28.13295],[-97.01671,28.13375],[-97.01669,28.13455],[-97.01668,28.13534],[-97.01666,28.13614],[-97.01665,28.13694],[-97.01663,28.13773],[-97.01662,28.13853],[-97.0166,28.13933],[-97.0166,28.13957],[-97.01752,28.13959],[-97.01846,28.1396],[-97.01939,28.13961],[-97.02033,28.13963],[-97.02127,28.13964],[-97.0222,28.13966],[-97.02314,28.13967],[-97.02408,28.13968],[-97.02502,28.1397],[-97.02595,28.13971],[-97.02689,28.13973],[-97.02783,28.13974],[-97.02877,28.13975],[-97.0297,28.13977],[-97.03064,28.13978],[-97.03158,28.1398],[-97.03251,28.13981],[-97.0325,28.14061],[-97.03248,28.1414],[-97.03247,28.1422],[-97.03245,28.143],[-97.03244,28.14379],[-97.03242,28.14459],[-97.03241,28.14539],[-97.03239,28.14619],[-97.03238,28.14698],[-97.03236,28.14778],[-97.03235,28.14858],[-97.03233,28.14937],[-97.03232,28.15017],[-97.0323,28.15097],[-97.03229,28.15176],[-97.03227,28.15256],[-97.03226,28.15336],[-97.03224,28.15415],[-97.03223,28.15495],[-97.03222,28.15543],[-97.03252,28.15543],[-97.0325,28.15623],[-97.03249,28.15703],[-97.03247,28.15782],[-97.03246,28.15862],[-97.03244,28.15942],[-97.03243,28.16022],[-97.03241,28.16101],[-97.0324,28.16181],[-97.03238,28.16261],[-97.03237,28.1634],[-97.03235,28.1642],[-97.03233,28.165],[-97.03232,28.16579],[-97.0323,28.16659],[-97.03229,28.16739],[-97.03227,28.16818],[-97.03226,28.16898],[-97.03224,28.16978],[-97.03223,28.17058],[-97.03222,28.17082],[-97.03314,28.17084],[-97.03408,28.17085],[-97.03502,28.17087],[-97.03595,28.17088],[-97.03689,28.17089],[-97.03783,28.17091],[-97.03877,28.17092],[-97.0397,28.17094],[-97.04064,28.17095],[-97.04158,28.17096],[-97.04252,28.17098],[-97.04345,28.17099],[-97.04439,28.17101],[-97.04533,28.17102],[-97.04595,28.17103],[-97.04596,28.1708],[-97.04689,28.17081],[-97.04783,28.17082],[-97.04877,28.17084],[-97.0497,28.17085],[-97.05064,28.17087],[-97.05158,28.17088],[-97.05252,28.17089],[-97.05345,28.17091],[-97.05439,28.17092],[-97.05533,28.17094],[-97.05626,28.17095],[-97.0572,28.17096],[-97.05814,28.17098],[-97.05908,28.17099],[-97.06001,28.171],[-97.06095,28.17102],[-97.06158,28.17103],[-97.06158,28.1708],[-97.06252,28.17081],[-97.06346,28.17083],[-97.06439,28.17084],[-97.06533,28.17085],[-97.06627,28.17087],[-97.0672,28.17088],[-97.06814,28.1709],[-97.06908,28.17091],[-97.07001,28.17092],[-97.07095,28.17094],[-97.07189,28.17095],[-97.07282,28.17096],[-97.07376,28.17098],[-97.0747,28.17099],[-97.07564,28.17101],[-97.07657,28.17102],[-97.07691,28.17102],[-97.07692,28.17031],[-97.07694,28.16951],[-97.07695,28.16872],[-97.07697,28.16792],[-97.07698,28.16713],[-97.077,28.16633],[-97.07701,28.16553],[-97.07703,28.16474],[-97.07704,28.16394],[-97.07706,28.16314],[-97.07707,28.16235],[-97.07709,28.16155],[-97.0771,28.16075],[-97.07712,28.15996],[-97.07713,28.15916],[-97.07715,28.15836],[-97.07716,28.15757],[-97.07717,28.15677],[-97.07719,28.15597],[-97.0772,28.15518],[-97.07814,28.15519],[-97.07908,28.1552],[-97.08002,28.15522],[-97.08095,28.15523],[-97.08189,28.15524],[-97.08283,28.15526],[-97.08376,28.15527],[-97.0847,28.15529],[-97.08564,28.1553],[-97.08657,28.15531],[-97.08751,28.15533],[-97.08845,28.15534],[-97.08939,28.15535],[-97.09032,28.15537],[-97.09126,28.15538],[-97.0922,28.15539],[-97.09283,28.1554],[-97.09283,28.15518],[-97.09377,28.15519],[-97.0947,28.1552],[-97.09564,28.15522],[-97.09658,28.15523],[-97.09751,28.15525],[-97.09845,28.15526],[-97.09939,28.15527],[-97.10032,28.15529],[-97.10126,28.1553],[-97.1022,28.15531],[-97.10314,28.15533],[-97.10407,28.15534],[-97.10501,28.15535],[-97.10595,28.15537],[-97.10688,28.15538],[-97.10782,28.15539],[-97.10817,28.1554],[-97.10818,28.15469],[-97.10819,28.15389],[-97.10821,28.15309],[-97.10822,28.1523],[-97.10824,28.1515],[-97.10825,28.1507],[-97.10827,28.14991],[-97.10828,28.14911],[-97.1083,28.14832],[-97.10831,28.14752],[-97.10832,28.14672],[-97.10834,28.14593],[-97.10835,28.14513],[-97.10837,28.14433],[-97.10838,28.14354],[-97.1084,28.14274],[-97.10841,28.14194],[-97.10843,28.14115],[-97.10844,28.14035],[-97.10846,28.13955],[-97.10939,28.13957],[-97.11033,28.13958],[-97.11127,28.13959],[-97.1122,28.13961],[-97.11314,28.13962],[-97.11408,28.13963],[-97.11501,28.13965],[-97.11595,28.13966],[-97.11689,28.13967],[-97.11782,28.13969],[-97.11876,28.1397],[-97.1197,28.13971],[-97.12063,28.13973],[-97.12157,28.13974],[-97.12251,28.13975],[-97.12344,28.13977],[-97.12408,28.13978],[-97.12408,28.13956],[-97.12502,28.13957],[-97.12595,28.13958],[-97.12689,28.1396],[-97.12783,28.13961],[-97.12876,28.13962],[-97.1297,28.13964],[-97.13064,28.13965],[-97.13157,28.13966],[-97.13251,28.13968],[-97.13345,28.13969],[-97.13438,28.1397],[-97.13532,28.13972],[-97.13625,28.13973],[-97.13719,28.13974],[-97.13813,28.13976],[-97.13906,28.13977],[-97.13942,28.13977],[-97.13943,28.13906],[-97.13945,28.13827],[-97.13946,28.13747],[-97.13948,28.13667],[-97.13949,28.13588],[-97.13951,28.13508],[-97.13952,28.13429],[-97.13953,28.13349],[-97.13955,28.13269],[-97.13956,28.1319],[-97.13958,28.1311],[-97.13959,28.1303],[-97.13961,28.12951],[-97.13962,28.12871],[-97.13963,28.12791],[-97.13965,28.12712],[-97.13966,28.12632],[-97.13968,28.12553],[-97.13969,28.12473],[-97.13971,28.12393],[-97.14064,28.12395],[-97.14158,28.12396],[-97.14252,28.12397],[-97.14345,28.12399],[-97.14439,28.124],[-97.14532,28.12401],[-97.14626,28.12403],[-97.1472,28.12404],[-97.14813,28.12405],[-97.14907,28.12406],[-97.15001,28.12408],[-97.15094,28.12409],[-97.15188,28.1241],[-97.15282,28.12412],[-97.15375,28.12413],[-97.15469,28.12414],[-97.15505,28.12415],[-97.15506,28.12344],[-97.15508,28.12264],[-97.15509,28.12184],[-97.15511,28.12105],[-97.15512,28.12025],[-97.15513,28.11946],[-97.15515,28.11866],[-97.15516,28.11786],[-97.15518,28.11707],[-97.15519,28.11627],[-97.1552,28.11548],[-97.15522,28.11468],[-97.15523,28.11388],[-97.15525,28.11309],[-97.15526,28.11229],[-97.15528,28.11149],[-97.15529,28.1107],[-97.1553,28.1099],[-97.15532,28.10911],[-97.15533,28.10831],[-97.15627,28.10832],[-97.1572,28.10834],[-97.15814,28.10835],[-97.15908,28.10836],[-97.16001,28.10838],[-97.16095,28.10839],[-97.16188,28.1084],[-97.16282,28.10841],[-97.16376,28.10843],[-97.16469,28.10844],[-97.16563,28.10845],[-97.16656,28.10847],[-97.1675,28.10848],[-97.16844,28.10849],[-97.16937,28.10851],[-97.17031,28.10852],[-97.17095,28.10853],[-97.17096,28.10831],[-97.17189,28.10833],[-97.17283,28.10834],[-97.17376,28.10835],[-97.1747,28.10836],[-97.17564,28.10838],[-97.17657,28.10839],[-97.17751,28.1084],[-97.17845,28.10842],[-97.17938,28.10843],[-97.18032,28.10844],[-97.18125,28.10846],[-97.18219,28.10847],[-97.18313,28.10848],[-97.18406,28.10849],[-97.185,28.10851],[-97.18593,28.10852],[-97.1863,28.10852],[-97.18632,28.10781],[-97.18633,28.10702],[-97.18634,28.10622],[-97.18636,28.10543],[-97.18637,28.10463],[-97.18639,28.10383],[-97.1864,28.10304],[-97.18641,28.10224],[-97.18643,28.10145],[-97.18644,28.10065],[-97.18646,28.09985],[-97.18647,28.09906],[-97.18648,28.09826],[-97.1865,28.09746],[-97.18651,28.09667],[-97.18653,28.09587],[-97.18654,28.09508],[-97.18655,28.09428],[-97.18657,28.09348],[-97.18658,28.09269],[-97.18752,28.0927],[-97.18845,28.09271],[-97.18939,28.09273],[-97.19033,28.09274],[-97.19126,28.09275],[-97.1922,28.09277],[-97.19313,28.09278],[-97.19407,28.09279],[-97.195,28.0928],[-97.19594,28.09282],[-97.19688,28.09283],[-97.19781,28.09284],[-97.19875,28.09286],[-97.19968,28.09287],[-97.20062,28.09288],[-97.20156,28.09289],[-97.20193,28.0929],[-97.20194,28.09219],[-97.20196,28.09139],[-97.20197,28.0906],[-97.20198,28.0898],[-97.202,28.089],[-97.20201,28.08821],[-97.20203,28.08741],[-97.20204,28.08662],[-97.20205,28.08582],[-97.20207,28.08502],[-97.20208,28.08423],[-97.20209,28.08343],[-97.20211,28.08264],[-97.20212,28.08184],[-97.20214,28.08105],[-97.20215,28.08025],[-97.20216,28.07945],[-97.20218,28.07866],[-97.20219,28.07786],[-97.2022,28.07707],[-97.20314,28.07708],[-97.20408,28.07709],[-97.20501,28.0771],[-97.20595,28.07712],[-97.20688,28.07713],[-97.20782,28.07714],[-97.20876,28.07715],[-97.20969,28.07717],[-97.21063,28.07718],[-97.21156,28.07719],[-97.2125,28.07721],[-97.21343,28.07722],[-97.21437,28.07723],[-97.21531,28.07724],[-97.21624,28.07726],[-97.21718,28.07727],[-97.21756,28.07727],[-97.21757,28.07656],[-97.21758,28.07577],[-97.2176,28.07497],[-97.21761,28.07418],[-97.21762,28.07338],[-97.21764,28.07258],[-97.21765,28.07179],[-97.21767,28.07099],[-97.21768,28.0702],[-97.21769,28.0694],[-97.21771,28.06861],[-97.21772,28.06781],[-97.21773,28.06701],[-97.21775,28.06622],[-97.21776,28.06542],[-97.21777,28.06463],[-97.21779,28.06383],[-97.2178,28.06303],[-97.21782,28.06224],[-97.21783,28.06144],[-97.21876,28.06146],[-97.2197,28.06147],[-97.22064,28.06148],[-97.22157,28.06149],[-97.22251,28.06151],[-97.22344,28.06152],[-97.22438,28.06153],[-97.22531,28.06154],[-97.22625,28.06156],[-97.22719,28.06157],[-97.22812,28.06158],[-97.22906,28.06159],[-97.22999,28.06161],[-97.23093,28.06162],[-97.23186,28.06163],[-97.2328,28.06164],[-97.23319,28.06165],[-97.2332,28.06094],[-97.23321,28.06014],[-97.23323,28.05935],[-97.23324,28.05855],[-97.23325,28.05776],[-97.23327,28.05696],[-97.23328,28.05617],[-97.23329,28.05537],[-97.23331,28.05457],[-97.23332,28.05378],[-97.23333,28.05298],[-97.23335,28.05219],[-97.23336,28.05139],[-97.23337,28.05059],[-97.23339,28.0498],[-97.2334,28.049],[-97.23341,28.04821],[-97.23343,28.04741],[-97.23344,28.04662],[-97.23346,28.04582],[-97.23439,28.04583],[-97.23533,28.04584],[-97.23626,28.04586],[-97.2372,28.04587],[-97.23813,28.04588],[-97.23907,28.04589],[-97.24,28.04591],[-97.24094,28.04592],[-97.24188,28.04593],[-97.24281,28.04594],[-97.24375,28.04596],[-97.24468,28.04597],[-97.24562,28.04598],[-97.24655,28.04599],[-97.24749,28.04601],[-97.24842,28.04602],[-97.24936,28.04603],[-97.25029,28.04604],[-97.25123,28.04606],[-97.25122,28.04685],[-97.2512,28.04765],[-97.25119,28.04844],[-97.25118,28.04924],[-97.25116,28.05004],[-97.25115,28.05083],[-97.25114,28.05163],[-97.25112,28.05242],[-97.25111,28.05322],[-97.2511,28.05401],[-97.25108,28.05481],[-97.25107,28.05561],[-97.25106,28.0564],[-97.25104,28.0572],[-97.25103,28.05799],[-97.25102,28.05879],[-97.251,28.05959],[-97.25099,28.06038],[-97.25098,28.06118],[-97.25097,28.06147],[-97.25189,28.06148],[-97.25282,28.0615],[-97.25376,28.06151],[-97.25469,28.06152],[-97.25563,28.06153],[-97.25656,28.06155],[-97.2575,28.06156],[-97.25843,28.06157],[-97.25937,28.06158],[-97.26031,28.0616],[-97.26124,28.06161],[-97.26218,28.06162],[-97.26311,28.06163],[-97.26405,28.06164],[-97.26498,28.06166],[-97.26592,28.06167],[-97.26685,28.06168],[-97.26684,28.06248],[-97.26683,28.06327],[-97.26681,28.06407],[-97.2668,28.06486],[-97.26679,28.06566],[-97.26677,28.06646],[-97.26676,28.06725],[-97.26675,28.06805],[-97.26673,28.06884],[-97.26672,28.06964],[-97.26671,28.07043],[-97.26669,28.07123],[-97.26668,28.07203],[-97.26667,28.07282],[-97.26665,28.07362],[-97.26664,28.07441],[-97.26663,28.07521],[-97.26661,28.076],[-97.2666,28.0768],[-97.2666,28.0771],[-97.26751,28.07711],[-97.26845,28.07712],[-97.26938,28.07714],[-97.27032,28.07715],[-97.27125,28.07716],[-97.27219,28.07717],[-97.27312,28.07719],[-97.27406,28.0772],[-97.275,28.07721],[-97.27593,28.07722],[-97.27687,28.07723],[-97.2778,28.07725],[-97.27874,28.07726],[-97.27967,28.07727],[-97.28033,28.07728],[-97.28033,28.07708],[-97.28127,28.07709],[-97.2822,28.0771],[-97.28314,28.07711],[-97.28407,28.07712],[-97.28501,28.07714],[-97.28594,28.07715],[-97.28688,28.07716],[-97.28781,28.07717],[-97.28875,28.07719],[-97.28968,28.0772],[-97.29062,28.07721],[-97.29155,28.07722],[-97.29249,28.07723],[-97.29342,28.07725],[-97.29436,28.07726],[-97.29529,28.07727],[-97.29623,28.07728],[-97.29716,28.07729],[-97.2981,28.07731],[-97.29809,28.0781],[-97.29807,28.0789],[-97.29806,28.07969],[-97.29805,28.08049],[-97.29803,28.08128],[-97.29802,28.08208],[-97.29801,28.08288],[-97.29799,28.08367],[-97.29798,28.08447],[-97.29797,28.08526],[-97.29796,28.08606],[-97.29794,28.08685],[-97.29793,28.08765],[-97.29792,28.08844],[-97.2979,28.08924],[-97.29789,28.09004],[-97.29788,28.09083],[-97.29786,28.09163],[-97.29785,28.09242],[-97.29785,28.09273],[-97.29876,28.09274],[-97.2997,28.09275],[-97.30063,28.09276],[-97.30157,28.09278],[-97.3025,28.09279],[-97.30344,28.0928],[-97.30437,28.09281],[-97.30531,28.09282],[-97.30624,28.09284],[-97.30718,28.09285],[-97.30811,28.09286],[-97.30905,28.09287],[-97.30998,28.09288],[-97.31092,28.0929],[-97.31158,28.0929],[-97.31158,28.09271],[-97.31251,28.09272],[-97.31345,28.09273],[-97.31438,28.09274],[-97.31532,28.09275],[-97.31625,28.09277],[-97.31719,28.09278],[-97.31812,28.09279],[-97.31906,28.0928],[-97.31999,28.09281],[-97.32093,28.09283],[-97.32186,28.09284],[-97.3228,28.09285],[-97.32373,28.09286],[-97.32467,28.09287],[-97.3256,28.09289],[-97.32654,28.0929],[-97.32747,28.09291],[-97.32841,28.09292],[-97.32934,28.09293],[-97.32933,28.09373],[-97.32932,28.09452],[-97.32931,28.09532],[-97.32929,28.09611],[-97.32928,28.09691],[-97.32927,28.0977],[-97.32925,28.0985],[-97.32924,28.0993],[-97.32923,28.10009],[-97.32922,28.10089],[-97.3292,28.10168],[-97.32919,28.10248],[-97.32918,28.10327],[-97.32917,28.10407],[-97.32915,28.10486],[-97.32914,28.10566],[-97.32913,28.10645],[-97.32911,28.10725],[-97.3291,28.10804],[-97.3291,28.10836],[-97.33001,28.10837],[-97.33094,28.10838],[-97.33188,28.10839],[-97.33281,28.1084],[-97.33375,28.10842],[-97.33468,28.10843],[-97.33562,28.10844],[-97.33655,28.10845],[-97.33749,28.10846],[-97.33842,28.10847],[-97.33936,28.10849],[-97.34029,28.1085],[-97.34123,28.10851],[-97.34216,28.10852],[-97.34283,28.10853],[-97.34283,28.10833],[-97.34376,28.10835],[-97.3447,28.10836],[-97.34563,28.10837],[-97.34657,28.10838],[-97.3475,28.10839],[-97.34844,28.1084],[-97.34937,28.10842],[-97.35031,28.10843],[-97.35124,28.10844],[-97.35218,28.10845],[-97.35311,28.10846],[-97.35405,28.10847],[-97.35498,28.10849],[-97.35592,28.1085],[-97.35685,28.10851],[-97.35779,28.10852],[-97.35845,28.10853],[-97.35845,28.10833],[-97.35939,28.10835],[-97.36032,28.10836],[-97.36126,28.10837],[-97.36219,28.10838],[-97.36313,28.10839],[-97.36406,28.1084],[-97.365,28.10842],[-97.36593,28.10843],[-97.36686,28.10844],[-97.3678,28.10845],[-97.36873,28.10846],[-97.36967,28.10847],[-97.3706,28.10849],[-97.37154,28.1085],[-97.37247,28.10851],[-97.37341,28.10852],[-97.37407,28.10853],[-97.37408,28.10834],[-97.37501,28.10835],[-97.37595,28.10836],[-97.37688,28.10837],[-97.37782,28.10838],[-97.37875,28.1084],[-97.37968,28.10841],[-97.38062,28.10842],[-97.38155,28.10843],[-97.38249,28.10844],[-97.38342,28.10845],[-97.38436,28.10846],[-97.38529,28.10848],[-97.38623,28.10849],[-97.38716,28.1085],[-97.3881,28.10851],[-97.38903,28.10852],[-97.38946,28.10853],[-97.38947,28.10782],[-97.38948,28.10702],[-97.38949,28.10623],[-97.3895,28.10543],[-97.38952,28.10464],[-97.38953,28.10384],[-97.38954,28.10305],[-97.38955,28.10225],[-97.38957,28.10146],[-97.38958,28.10066],[-97.38959,28.09987],[-97.3896,28.09907],[-97.38962,28.09828],[-97.38963,28.09749],[-97.38964,28.09669],[-97.38965,28.0959],[-97.38966,28.0951],[-97.38968,28.09431],[-97.38969,28.09351],[-97.3897,28.09272],[-97.39064,28.09273],[-97.39157,28.09274],[-97.39251,28.09275],[-97.39344,28.09276],[-97.39437,28.09277],[-97.39531,28.09278],[-97.39624,28.09279],[-97.39718,28.09281],[-97.39811,28.09282],[-97.39905,28.09283],[-97.39998,28.09284],[-97.40092,28.09285],[-97.40185,28.09286],[-97.40278,28.09287],[-97.40372,28.09289],[-97.40465,28.0929],[-97.40559,28.09291],[-97.40652,28.09292],[-97.40746,28.09293],[-97.40745,28.09373],[-97.40743,28.09452],[-97.40742,28.09532],[-97.40741,28.09611],[-97.4074,28.09691],[-97.40738,28.0977],[-97.40737,28.0985],[-97.40736,28.09929],[-97.40735,28.10009],[-97.40734,28.10088],[-97.40732,28.10168],[-97.40731,28.10247],[-97.4073,28.10327],[-97.40729,28.10406],[-97.40727,28.10486],[-97.40726,28.10565],[-97.40725,28.10645],[-97.40724,28.10724],[-97.40723,28.10804],[-97.40722,28.10837],[-97.40813,28.10838],[-97.40907,28.10839],[-97.41,28.1084],[-97.41093,28.10841],[-97.41187,28.10842],[-97.4128,28.10843],[-97.41374,28.10844],[-97.41467,28.10846],[-97.41561,28.10847],[-97.41654,28.10848],[-97.41747,28.10849],[-97.41841,28.1085],[-97.41934,28.10851],[-97.42028,28.10852],[-97.42095,28.10853],[-97.42095,28.10834],[-97.42189,28.10836],[-97.42282,28.10837],[-97.42375,28.10838],[-97.42469,28.10839],[-97.42562,28.1084],[-97.42656,28.10841],[-97.42749,28.10842],[-97.42843,28.10843],[-97.42936,28.10844],[-97.43029,28.10846],[-97.43123,28.10847],[-97.43216,28.10848],[-97.4331,28.10849],[-97.43403,28.1085],[-97.43496,28.10851],[-97.4359,28.10852],[-97.43683,28.10853],[-97.43777,28.10854],[-97.4387,28.10856],[-97.43869,28.10935],[-97.43868,28.11015],[-97.43867,28.11094],[-97.43865,28.11173],[-97.43864,28.11253],[-97.43863,28.11332],[-97.43862,28.11412],[-97.43861,28.11491],[-97.43859,28.11571],[-97.43858,28.1165],[-97.43857,28.1173],[-97.43856,28.11809],[-97.43855,28.11889],[-97.43853,28.11968],[-97.43852,28.12048],[-97.43851,28.12127],[-97.4385,28.12207],[-97.43849,28.12286],[-97.43847,28.12366],[-97.43847,28.12399],[-97.43938,28.124],[-97.44031,28.12402],[-97.44125,28.12403],[-97.44218,28.12404],[-97.44312,28.12405],[-97.44405,28.12406],[-97.44498,28.12407],[-97.44592,28.12408],[-97.44685,28.12409],[-97.44779,28.1241],[-97.44872,28.12411],[-97.44965,28.12413],[-97.45059,28.12414],[-97.45152,28.12415],[-97.45246,28.12416],[-97.45339,28.12417],[-97.45433,28.12418],[-97.45431,28.12497],[-97.4543,28.12577],[-97.45429,28.12656],[-97.45428,28.12736],[-97.45427,28.12815],[-97.45425,28.12895],[-97.45424,28.12974],[-97.45423,28.13054],[-97.45422,28.13133],[-97.45421,28.13213],[-97.45419,28.13292],[-97.45418,28.13372],[-97.45417,28.13451],[-97.45416,28.13531],[-97.45415,28.1361],[-97.45414,28.1369],[-97.45412,28.13769],[-97.45411,28.13849],[-97.4541,28.13928],[-97.4541,28.13962],[-97.455,28.13963],[-97.45594,28.13964],[-97.45687,28.13965],[-97.45781,28.13966],[-97.45874,28.13968],[-97.45967,28.13969],[-97.46061,28.1397],[-97.46154,28.13971],[-97.46248,28.13972],[-97.46341,28.13973],[-97.46434,28.13974],[-97.46528,28.13975],[-97.46621,28.13976],[-97.46715,28.13977],[-97.46782,28.13978],[-97.46783,28.1396],[-97.46876,28.13961],[-97.46969,28.13962],[-97.47063,28.13963],[-97.47156,28.13964],[-97.47249,28.13965],[-97.47343,28.13966],[-97.47436,28.13968],[-97.4753,28.13969],[-97.47623,28.1397],[-97.47716,28.13971],[-97.4781,28.13972],[-97.47903,28.13973],[-97.47997,28.13974],[-97.4809,28.13975],[-97.48183,28.13976],[-97.48277,28.13977],[-97.4837,28.13978],[-97.48464,28.13979],[-97.48557,28.1398],[-97.48556,28.1406],[-97.48555,28.14139],[-97.48554,28.14219],[-97.48552,28.14298],[-97.48551,28.14378],[-97.4855,28.14457],[-97.48549,28.14537],[-97.48548,28.14616],[-97.48547,28.14696],[-97.48545,28.14775],[-97.48544,28.14854],[-97.48543,28.14934],[-97.48542,28.15013],[-97.48541,28.15093],[-97.4854,28.15172],[-97.48538,28.15252],[-97.48537,28.15331],[-97.48536,28.15411],[-97.48535,28.1549],[-97.48534,28.15525],[-97.48625,28.15526],[-97.48719,28.15527],[-97.48812,28.15528],[-97.48905,28.15529],[-97.48999,28.1553],[-97.49092,28.15531],[-97.49186,28.15532],[-97.49279,28.15533],[-97.49372,28.15534],[-97.49466,28.15535],[-97.49559,28.15537],[-97.49652,28.15538],[-97.49746,28.15539],[-97.49839,28.1554],[-97.49885,28.1554],[-97.49886,28.1547],[-97.49887,28.1539],[-97.49888,28.15311],[-97.49889,28.15231],[-97.4989,28.15152],[-97.49892,28.15072],[-97.49893,28.14993],[-97.49894,28.14914],[-97.49895,28.14834],[-97.49896,28.14755],[-97.49897,28.14675],[-97.49898,28.14596],[-97.499,28.14516],[-97.49901,28.14437],[-97.49902,28.14358],[-97.49903,28.14278],[-97.49904,28.14199],[-97.49905,28.14119],[-97.49907,28.1404],[-97.49908,28.1396],[-97.50001,28.13961],[-97.50094,28.13963],[-97.50188,28.13964],[-97.50281,28.13965],[-97.50374,28.13966],[-97.50468,28.13967],[-97.50561,28.13968],[-97.50655,28.13969],[-97.50748,28.1397],[-97.50841,28.13971],[-97.50935,28.13972],[-97.51028,28.13973],[-97.51121,28.13974],[-97.51215,28.13975],[-97.51308,28.13976],[-97.51401,28.13977],[-97.5147,28.13978],[-97.5147,28.1396],[-97.51564,28.13962],[-97.51657,28.13963],[-97.5175,28.13964],[-97.51844,28.13965],[-97.51937,28.13966],[-97.5203,28.13967],[-97.52124,28.13968],[-97.52217,28.13969],[-97.5231,28.1397],[-97.52404,28.13971],[-97.52497,28.13972],[-97.5259,28.13973],[-97.52684,28.13974],[-97.52777,28.13975],[-97.5287,28.13976],[-97.52964,28.13977],[-97.53057,28.13978],[-97.5315,28.13979],[-97.53244,28.1398],[-97.53243,28.1406],[-97.53242,28.14139],[-97.5324,28.14219],[-97.53239,28.14298],[-97.53238,28.14377],[-97.53237,28.14457],[-97.53236,28.14536],[-97.53235,28.14616],[-97.53234,28.14695],[-97.53233,28.14775],[-97.53231,28.14854],[-97.5323,28.14934],[-97.53229,28.15013],[-97.53228,28.15092],[-97.53227,28.15172],[-97.53226,28.15251],[-97.53225,28.15331],[-97.53224,28.1541],[-97.53222,28.1549],[-97.53222,28.15525],[-97.53313,28.15526],[-97.53406,28.15527],[-97.53499,28.15528],[-97.53593,28.15529],[-97.53686,28.1553],[-97.53779,28.15531],[-97.53873,28.15532],[-97.53966,28.15533],[-97.54059,28.15535],[-97.54153,28.15536],[-97.54246,28.15537],[-97.54339,28.15538],[-97.54433,28.15539],[-97.54526,28.1554],[-97.54619,28.15541],[-97.54713,28.15542],[-97.54806,28.15543],[-97.54805,28.15622],[-97.54804,28.15702],[-97.54803,28.15781],[-97.54801,28.1586],[-97.548,28.1594],[-97.54799,28.16019],[-97.54798,28.16099],[-97.54797,28.16178],[-97.54796,28.16258],[-97.54795,28.16337],[-97.54794,28.16416],[-97.54793,28.16496],[-97.54791,28.16575],[-97.5479,28.16655],[-97.54789,28.16734],[-97.54788,28.16814],[-97.54787,28.16893],[-97.54786,28.16972],[-97.54785,28.17052],[-97.54784,28.17105],[-97.54806,28.17106],[-97.54805,28.17185],[-97.54804,28.17264],[-97.54803,28.17344],[-97.54802,28.17423],[-97.548,28.17503],[-97.54799,28.17582],[-97.54798,28.17661],[-97.54797,28.17741],[-97.54796,28.1782],[-97.54795,28.179],[-97.54794,28.17979],[-97.54793,28.18058],[-97.54792,28.18138],[-97.5479,28.18217],[-97.54789,28.18297],[-97.54788,28.18376],[-97.54787,28.18456],[-97.54786,28.18535],[-97.54785,28.18614],[-97.54784,28.18694],[-97.54783,28.18773],[-97.54782,28.18853],[-97.54688,28.18852],[-97.54595,28.18851],[-97.54501,28.18849],[-97.54408,28.18848],[-97.54315,28.18847],[-97.54221,28.18846],[-97.54128,28.18845],[-97.54035,28.18844],[-97.53941,28.18843],[-97.53848,28.18842],[-97.53755,28.18841],[-97.53661,28.1884],[-97.53568,28.18839],[-97.53475,28.18838],[-97.53381,28.18837],[-97.53288,28.18836],[-97.53241,28.18836],[-97.5324,28.18906],[-97.53239,28.18986],[-97.53238,28.19065],[-97.53237,28.19144],[-97.53236,28.19224],[-97.53235,28.19303],[-97.53234,28.19383],[-97.53233,28.19462],[-97.53231,28.19542],[-97.5323,28.19621],[-97.53229,28.197],[-97.53228,28.1978],[-97.53227,28.19859],[-97.53226,28.19939],[-97.53225,28.20018],[-97.53224,28.20098],[-97.53222,28.20177],[-97.53221,28.20257],[-97.5322,28.20336],[-97.53219,28.20415],[-97.53126,28.20414],[-97.53032,28.20413],[-97.52939,28.20412],[-97.52846,28.20411],[-97.52752,28.2041],[-97.52659,28.20409],[-97.52565,28.20408],[-97.52472,28.20407],[-97.52379,28.20406],[-97.52285,28.20405],[-97.52192,28.20404],[-97.52099,28.20403],[-97.52005,28.20402],[-97.51912,28.20401],[-97.51819,28.204],[-97.51725,28.20399],[-97.51679,28.20398],[-97.51678,28.20469],[-97.51677,28.20548],[-97.51676,28.20628],[-97.51675,28.20707],[-97.51674,28.20786],[-97.51672,28.20866],[-97.51671,28.20945],[-97.5167,28.21025],[-97.51669,28.21104],[-97.51668,28.21184],[-97.51667,28.21263],[-97.51666,28.21343],[-97.51664,28.21422],[-97.51663,28.21501],[-97.51662,28.21581],[-97.51661,28.2166],[-97.5166,28.2174],[-97.51659,28.21793],[-97.51681,28.21793],[-97.5168,28.21872],[-97.51679,28.21952],[-97.51678,28.22031],[-97.51677,28.22111],[-97.51676,28.2219],[-97.51675,28.2227],[-97.51673,28.22349],[-97.51672,28.22428],[-97.51671,28.22508],[-97.5167,28.22587],[-97.51669,28.22667],[-97.51668,28.22746],[-97.51667,28.22826],[-97.51666,28.22905],[-97.51664,28.22984],[-97.51663,28.23064],[-97.51662,28.23143],[-97.51661,28.23223],[-97.5166,28.23302],[-97.51659,28.23382],[-97.51658,28.23461],[-97.51656,28.23541],[-97.51563,28.2354],[-97.5147,28.23538],[-97.51376,28.23537],[-97.51283,28.23536],[-97.5119,28.23535],[-97.51096,28.23534],[-97.51003,28.23533],[-97.50909,28.23532],[-97.50816,28.23531],[-97.50723,28.2353],[-97.50629,28.23529],[-97.50536,28.23528],[-97.50442,28.23527],[-97.50349,28.23526],[-97.50256,28.23525],[-97.50162,28.23524],[-97.50117,28.23523],[-97.50116,28.23594],[-97.50115,28.23673],[-97.50114,28.23753],[-97.50112,28.23832],[-97.50111,28.23912],[-97.5011,28.23991],[-97.50109,28.2407],[-97.50108,28.2415],[-97.50107,28.24229],[-97.50106,28.24309],[-97.50104,28.24388],[-97.50103,28.24468],[-97.50102,28.24547],[-97.50101,28.24627],[-97.501,28.24706],[-97.50099,28.24786],[-97.50097,28.24865],[-97.50096,28.24944],[-97.50095,28.25024],[-97.50094,28.25103],[-97.50001,28.25102],[-97.49907,28.25101],[-97.49814,28.251],[-97.4972,28.25099],[-97.49627,28.25098],[-97.49534,28.25097],[-97.4944,28.25096],[-97.49347,28.25095],[-97.49253,28.25094],[-97.4916,28.25093],[-97.49067,28.25092],[-97.48973,28.25091],[-97.4888,28.25089],[-97.48786,28.25088],[-97.48693,28.25087],[-97.486,28.25086],[-97.48555,28.25086],[-97.48554,28.25156],[-97.48552,28.25236],[-97.48551,28.25315],[-97.4855,28.25395],[-97.48549,28.25474],[-97.48548,28.25554],[-97.48547,28.25633],[-97.48545,28.25712],[-97.48544,28.25792],[-97.48543,28.25871],[-97.48542,28.25951],[-97.48541,28.2603],[-97.4854,28.2611],[-97.48538,28.26189],[-97.48537,28.26269],[-97.48536,28.26348],[-97.48535,28.26428],[-97.48534,28.26507],[-97.48533,28.26586],[-97.48531,28.26666],[-97.48438,28.26665],[-97.48345,28.26664],[-97.48251,28.26663],[-97.48158,28.26662],[-97.48064,28.26661],[-97.47971,28.26659],[-97.47878,28.26658],[-97.47784,28.26657],[-97.47691,28.26656],[-97.47597,28.26655],[-97.47504,28.26654],[-97.47411,28.26653],[-97.47317,28.26652],[-97.47224,28.26651],[-97.4713,28.2665],[-97.47037,28.26649],[-97.46992,28.26648],[-97.46991,28.26719],[-97.4699,28.26798],[-97.46989,28.26878],[-97.46988,28.26957],[-97.46987,28.27037],[-97.46985,28.27116],[-97.46984,28.27196],[-97.46983,28.27275],[-97.46982,28.27354],[-97.46981,28.27434],[-97.4698,28.27513],[-97.46978,28.27593],[-97.46977,28.27672],[-97.46976,28.27752],[-97.46975,28.27831],[-97.46974,28.27911],[-97.46973,28.2799],[-97.46972,28.28043],[-97.46995,28.28043],[-97.46994,28.28122],[-97.46992,28.28202],[-97.46991,28.28281],[-97.4699,28.28361],[-97.46989,28.2844],[-97.46988,28.2852],[-97.46987,28.28599],[-97.46985,28.28679],[-97.46984,28.28758],[-97.46983,28.28838],[-97.46982,28.28917],[-97.46981,28.28996],[-97.4698,28.29076],[-97.46978,28.29155],[-97.46977,28.29235],[-97.46976,28.29314],[-97.46975,28.29394],[-97.46974,28.29473],[-97.46972,28.29553],[-97.46971,28.29632],[-97.4697,28.29712],[-97.46969,28.29791],[-97.46876,28.2979],[-97.46782,28.29789],[-97.46689,28.29788],[-97.46595,28.29787],[-97.46502,28.29786],[-97.46408,28.29785],[-97.46315,28.29784],[-97.46222,28.29782],[-97.46128,28.29781],[-97.46035,28.2978],[-97.45941,28.29779],[-97.45848,28.29778],[-97.45754,28.29777],[-97.45661,28.29776],[-97.45568,28.29775],[-97.45474,28.29774],[-97.4543,28.29773],[-97.45429,28.29844],[-97.45428,28.29923],[-97.45427,28.30003],[-97.45425,28.30082],[-97.45424,28.30162],[-97.45423,28.30241],[-97.45422,28.30321],[-97.45421,28.304],[-97.45419,28.3048],[-97.45418,28.30559],[-97.45417,28.30639],[-97.45416,28.30718],[-97.45415,28.30798],[-97.45414,28.30877],[-97.45412,28.30957],[-97.45411,28.31036],[-97.4541,28.31115],[-97.45409,28.31195],[-97.45408,28.31274],[-97.45406,28.31354],[-97.45313,28.31353],[-97.4522,28.31352],[-97.45126,28.31351],[-97.45033,28.3135],[-97.44939,28.31348],[-97.44846,28.31347],[-97.44752,28.31346],[-97.44659,28.31345],[-97.44566,28.31344],[-97.44472,28.31343],[-97.44379,28.31342],[-97.44285,28.31341],[-97.44192,28.3134],[-97.44098,28.31339],[-97.44005,28.31337],[-97.43911,28.31336],[-97.43868,28.31336],[-97.43867,28.31406],[-97.43866,28.31486],[-97.43864,28.31565],[-97.43863,28.31645],[-97.43862,28.31724],[-97.43861,28.31804],[-97.4386,28.31883],[-97.43858,28.31963],[-97.43857,28.32042],[-97.43856,28.32122],[-97.43855,28.32201],[-97.43854,28.32281],[-97.43852,28.3236],[-97.43851,28.3244],[-97.4385,28.32519],[-97.43849,28.32599],[-97.43848,28.32678],[-97.43846,28.32758],[-97.43845,28.32837],[-97.43844,28.32917],[-97.43751,28.32915],[-97.43657,28.32914],[-97.43564,28.32913],[-97.4347,28.32912],[-97.43377,28.32911],[-97.43283,28.3291],[-97.4319,28.32909],[-97.43096,28.32908],[-97.43003,28.32907],[-97.42909,28.32905],[-97.42816,28.32904],[-97.42722,28.32903],[-97.42629,28.32902],[-97.42536,28.32901],[-97.42442,28.329],[-97.42349,28.32899],[-97.42306,28.32898],[-97.42305,28.32969],[-97.42303,28.33048],[-97.42302,28.33128],[-97.42301,28.33207],[-97.423,28.33287],[-97.42299,28.33366],[-97.42297,28.33446],[-97.42296,28.33525],[-97.42295,28.33605],[-97.42294,28.33684],[-97.42292,28.33764],[-97.42291,28.33843],[-97.4229,28.33923],[-97.42289,28.34002],[-97.42288,28.34082],[-97.42286,28.34161],[-97.42285,28.34241],[-97.42284,28.34293],[-97.42308,28.34293],[-97.42307,28.34373],[-97.42306,28.34452],[-97.42304,28.34532],[-97.42303,28.34611],[-97.42302,28.3469],[-97.42301,28.3477],[-97.423,28.34849],[-97.42298,28.34929],[-97.42297,28.35008],[-97.42296,28.35088],[-97.42295,28.35167],[-97.42293,28.35247],[-97.42292,28.35326],[-97.42291,28.35406],[-97.4229,28.35485],[-97.42289,28.35565],[-97.42287,28.35644],[-97.42286,28.35724],[-97.42285,28.35803],[-97.42284,28.35883],[-97.42283,28.35962],[-97.42281,28.36042],[-97.42188,28.36041],[-97.42094,28.3604],[-97.42001,28.36038],[-97.41908,28.36037],[-97.41814,28.36036],[-97.41721,28.36035],[-97.41627,28.36034],[-97.41534,28.36033],[-97.4144,28.36032],[-97.41347,28.36031],[-97.41253,28.36029],[-97.4116,28.36028],[-97.41066,28.36027],[-97.40973,28.36026],[-97.40879,28.36025],[-97.40786,28.36024],[-97.40743,28.36023],[-97.40742,28.36094],[-97.40741,28.36174],[-97.4074,28.36253],[-97.40739,28.36333],[-97.40737,28.36412],[-97.40736,28.36491],[-97.40735,28.36571],[-97.40734,28.3665],[-97.40733,28.3673],[-97.40731,28.36809],[-97.4073,28.36889],[-97.40729,28.36968],[-97.40728,28.37048],[-97.40726,28.37127],[-97.40725,28.37207],[-97.40724,28.37286],[-97.40723,28.37366],[-97.40722,28.37445],[-97.4072,28.37525],[-97.40719,28.37604],[-97.40626,28.37603],[-97.40532,28.37602],[-97.40439,28.37601],[-97.40345,28.376],[-97.40252,28.37599],[-97.40158,28.37598],[-97.40065,28.37596],[-97.39971,28.37595],[-97.39878,28.37594],[-97.39784,28.37593],[-97.39691,28.37592],[-97.39597,28.37591],[-97.39504,28.3759],[-97.3941,28.37588],[-97.39317,28.37587],[-97.39223,28.37586],[-97.39157,28.37585],[-97.39157,28.37605],[-97.39063,28.37604],[-97.3897,28.37602],[-97.38876,28.37601],[-97.38783,28.376],[-97.38689,28.37599],[-97.38596,28.37598],[-97.38502,28.37597],[-97.38409,28.37596],[-97.38315,28.37594],[-97.38222,28.37593],[-97.38128,28.37592],[-97.38035,28.37591],[-97.37941,28.3759],[-97.37848,28.37589],[-97.37754,28.37588],[-97.3766,28.37586],[-97.37594,28.37586],[-97.37594,28.37605],[-97.375,28.37604],[-97.37407,28.37603],[-97.37313,28.37601],[-97.3722,28.376],[-97.37126,28.37599],[-97.37033,28.37598],[-97.36939,28.37597],[-97.36846,28.37596],[-97.36752,28.37594],[-97.36659,28.37593],[-97.36565,28.37592],[-97.36472,28.37591],[-97.36378,28.3759],[-97.36285,28.37589],[-97.36191,28.37588],[-97.36098,28.37586],[-97.36057,28.37586],[-97.36056,28.37657],[-97.36054,28.37736],[-97.36053,28.37816],[-97.36052,28.37895],[-97.3605,28.37975],[-97.36049,28.38054],[-97.36048,28.38134],[-97.36047,28.38213],[-97.36045,28.38293],[-97.36044,28.38372],[-97.36043,28.38452],[-97.36042,28.38531],[-97.3604,28.38611],[-97.36039,28.3869],[-97.36038,28.3877],[-97.36037,28.3885],[-97.36035,28.38929],[-97.36034,28.39009],[-97.36033,28.39088],[-97.36032,28.39168],[-97.35938,28.39166],[-97.35845,28.39165],[-97.35751,28.39164],[-97.35657,28.39163],[-97.35564,28.39162],[-97.3547,28.39161],[-97.35377,28.3916],[-97.35283,28.39158],[-97.3519,28.39157],[-97.35096,28.39156],[-97.35003,28.39155],[-97.34909,28.39154],[-97.34816,28.39153],[-97.34722,28.39151],[-97.34629,28.3915],[-97.34535,28.39149],[-97.34494,28.39148],[-97.34493,28.39219],[-97.34492,28.39299],[-97.34491,28.39378],[-97.34489,28.39458],[-97.34488,28.39537],[-97.34487,28.39617],[-97.34486,28.39696],[-97.34484,28.39776],[-97.34483,28.39856],[-97.34482,28.39935],[-97.34481,28.40015],[-97.34479,28.40094],[-97.34478,28.40174],[-97.34477,28.40253],[-97.34475,28.40333],[-97.34474,28.40412],[-97.34473,28.40492],[-97.34472,28.40571],[-97.3447,28.40651],[-97.34469,28.4073],[-97.34376,28.40729],[-97.34282,28.40728],[-97.34188,28.40727],[-97.34095,28.40726],[-97.34001,28.40724],[-97.33908,28.40723],[-97.33814,28.40722],[-97.33721,28.40721],[-97.33627,28.4072],[-97.33534,28.40719],[-97.3344,28.40717],[-97.33347,28.40716],[-97.33253,28.40715],[-97.3316,28.40714],[-97.33066,28.40713],[-97.32972,28.40711],[-97.32932,28.40711],[-97.32931,28.40782],[-97.3293,28.40861],[-97.32928,28.40941],[-97.32927,28.4102],[-97.32926,28.411],[-97.32924,28.41179],[-97.32923,28.41259],[-97.32922,28.41338],[-97.32921,28.41418],[-97.32919,28.41498],[-97.32918,28.41577],[-97.32917,28.41657],[-97.32915,28.41736],[-97.32914,28.41816],[-97.32913,28.41895],[-97.32912,28.41975],[-97.3291,28.42054],[-97.32909,28.42134],[-97.32908,28.42213],[-97.32906,28.42293],[-97.32813,28.42292],[-97.32719,28.4229],[-97.32626,28.42289],[-97.32532,28.42288],[-97.32439,28.42287],[-97.32345,28.42286],[-97.32252,28.42284],[-97.32158,28.42283],[-97.32064,28.42282],[-97.31971,28.42281],[-97.31877,28.4228],[-97.31784,28.42279],[-97.3169,28.42277],[-97.31597,28.42276],[-97.31503,28.42275],[-97.3141,28.42274],[-97.31344,28.42273],[-97.31344,28.42293],[-97.3125,28.42292],[-97.31157,28.42291],[-97.31063,28.42289],[-97.3097,28.42288],[-97.30876,28.42287],[-97.30783,28.42286],[-97.30689,28.42285],[-97.30595,28.42283],[-97.30502,28.42282],[-97.30408,28.42281],[-97.30315,28.4228],[-97.30221,28.42279],[-97.30128,28.42277],[-97.30034,28.42276],[-97.2994,28.42275],[-97.29847,28.42274],[-97.29808,28.42273],[-97.29806,28.42344],[-97.29805,28.42424],[-97.29804,28.42503],[-97.29802,28.42583],[-97.29801,28.42662],[-97.298,28.42742],[-97.29799,28.42821],[-97.29797,28.42901],[-97.29796,28.4298],[-97.29795,28.4306],[-97.29793,28.43139],[-97.29792,28.43219],[-97.29791,28.43298],[-97.29789,28.43378],[-97.29788,28.43458],[-97.29787,28.43537],[-97.29785,28.43617],[-97.29784,28.43696],[-97.29783,28.43776],[-97.29781,28.43855],[-97.29688,28.43854],[-97.29594,28.43853],[-97.29501,28.43852],[-97.29407,28.4385],[-97.29314,28.43849],[-97.2922,28.43848],[-97.29127,28.43847],[-97.29033,28.43845],[-97.2894,28.43844],[-97.28846,28.43843],[-97.28753,28.43842],[-97.28659,28.43841],[-97.28566,28.43839],[-97.28472,28.43838],[-97.28379,28.43837],[-97.28285,28.43836],[-97.28246,28.43835],[-97.28244,28.43906],[-97.28243,28.43986],[-97.28242,28.44065],[-97.2824,28.44145],[-97.28239,28.44225],[-97.28238,28.44304],[-97.28236,28.44384],[-97.28235,28.44463],[-97.28234,28.44543],[-97.28232,28.44623],[-97.28231,28.44702],[-97.2823,28.44782],[-97.28228,28.44861],[-97.28227,28.44941],[-97.28226,28.45021],[-97.28224,28.451],[-97.28223,28.4518],[-97.28222,28.4526],[-97.28221,28.45339],[-97.28219,28.45419],[-97.28126,28.45418],[-97.28032,28.45416],[-97.27938,28.45415],[-97.27845,28.45414],[-97.27751,28.45413],[-97.27657,28.45411],[-97.27564,28.4541],[-97.2747,28.45409],[-97.27377,28.45408],[-97.27283,28.45407],[-97.27189,28.45405],[-97.27096,28.45404],[-97.27002,28.45403],[-97.26908,28.45402],[-97.26815,28.454],[-97.26721,28.45399],[-97.26657,28.45398],[-97.26657,28.45419],[-97.26563,28.45418],[-97.2647,28.45417],[-97.26376,28.45415],[-97.26282,28.45414],[-97.26189,28.45413],[-97.26095,28.45412],[-97.26001,28.4541],[-97.25908,28.45409],[-97.25814,28.45408],[-97.2572,28.45407],[-97.25627,28.45405],[-97.25533,28.45404],[-97.25439,28.45403],[-97.25346,28.45402],[-97.25252,28.45401],[-97.25159,28.45399],[-97.25121,28.45399],[-97.25119,28.45469],[-97.25118,28.45549],[-97.25117,28.45629],[-97.25115,28.45708],[-97.25114,28.45788],[-97.25113,28.45867],[-97.25111,28.45947],[-97.2511,28.46027],[-97.25109,28.46106],[-97.25107,28.46186],[-97.25106,28.46265],[-97.25105,28.46345],[-97.25103,28.46424],[-97.25102,28.46504],[-97.25101,28.46584],[-97.25099,28.46663],[-97.25098,28.46743],[-97.25097,28.46793],[-97.25123,28.46793],[-97.25122,28.46873],[-97.25121,28.46952],[-97.25119,28.47032],[-97.25118,28.47111],[-97.25117,28.47191],[-97.25115,28.47271],[-97.25114,28.4735],[-97.25113,28.4743],[-97.25111,28.47509],[-97.2511,28.47589],[-97.25109,28.47668],[-97.25107,28.47748],[-97.25106,28.47828],[-97.25105,28.47907],[-97.25103,28.47987],[-97.25102,28.48066],[-97.25101,28.48146],[-97.25099,28.48225],[-97.25098,28.48305],[-97.25097,28.48385],[-97.25095,28.48464],[-97.25094,28.48544],[-97.25,28.48543],[-97.24907,28.48541],[-97.24813,28.4854],[-97.24719,28.48539],[-97.24626,28.48538],[-97.24532,28.48536],[-97.24439,28.48535],[-97.24345,28.48534],[-97.24251,28.48533],[-97.24158,28.48531],[-97.24064,28.4853],[-97.23971,28.48529],[-97.23877,28.48528],[-97.23783,28.48526],[-97.2369,28.48525],[-97.23596,28.48524],[-97.23532,28.48523],[-97.23531,28.48544],[-97.23438,28.48543],[-97.23344,28.48542],[-97.2325,28.4854],[-97.23157,28.48539],[-97.23063,28.48538],[-97.2297,28.48537],[-97.22876,28.48535],[-97.22782,28.48534],[-97.22689,28.48533],[-97.22595,28.48532],[-97.22501,28.4853],[-97.22408,28.48529],[-97.22314,28.48528],[-97.22221,28.48527],[-97.22127,28.48525],[-97.22033,28.48524],[-97.21969,28.48523],[-97.21969,28.48544],[-97.21875,28.48543],[-97.21781,28.48542],[-97.21688,28.4854],[-97.21594,28.48539],[-97.21501,28.48538],[-97.21407,28.48537],[-97.21313,28.48535],[-97.2122,28.48534],[-97.21126,28.48533],[-97.21032,28.48532],[-97.20939,28.4853],[-97.20845,28.48529],[-97.20751,28.48528],[-97.20658,28.48526],[-97.20564,28.48525],[-97.20471,28.48524],[-97.20407,28.48523],[-97.20406,28.48545],[-97.20313,28.48543],[-97.20219,28.48542],[-97.20126,28.48541],[-97.20032,28.48539],[-97.19938,28.48538],[-97.19845,28.48537],[-97.19751,28.48536],[-97.19657,28.48534],[-97.19564,28.48533],[-97.1947,28.48532],[-97.19376,28.4853],[-97.19283,28.48529],[-97.19189,28.48528],[-97.19095,28.48527],[-97.19002,28.48525],[-97.18908,28.48524],[-97.18844,28.48523],[-97.18844,28.48545],[-97.1875,28.48543],[-97.18657,28.48542],[-97.18563,28.48541],[-97.18469,28.4854],[-97.18376,28.48538],[-97.18282,28.48537],[-97.18188,28.48536],[-97.18095,28.48534],[-97.18001,28.48533],[-97.17907,28.48532],[-97.17814,28.48531],[-97.1772,28.48529],[-97.17626,28.48528],[-97.17533,28.48527],[-97.17439,28.48525],[-97.17345,28.48524],[-97.17282,28.48523],[-97.17281,28.48545],[-97.17188,28.48544],[-97.17094,28.48542],[-97.17,28.48541],[-97.16907,28.4854],[-97.16813,28.48538],[-97.16719,28.48537],[-97.16626,28.48536],[-97.16532,28.48535],[-97.16438,28.48533],[-97.16344,28.48532],[-97.16251,28.48531],[-97.16157,28.48529],[-97.16063,28.48528],[-97.1597,28.48527],[-97.15876,28.48525],[-97.15782,28.48524],[-97.15719,28.48523],[-97.15719,28.48545],[-97.15625,28.48544],[-97.15531,28.48542],[-97.15438,28.48541],[-97.15344,28.4854],[-97.1525,28.48538],[-97.15157,28.48537],[-97.15063,28.48536],[-97.14969,28.48535],[-97.14876,28.48533],[-97.14782,28.48532],[-97.14688,28.48531],[-97.14595,28.48529],[-97.14501,28.48528],[-97.14407,28.48527],[-97.14313,28.48525],[-97.1422,28.48524],[-97.14157,28.48523],[-97.14156,28.48545],[-97.14062,28.48544],[-97.13969,28.48543],[-97.13875,28.48541],[-97.13781,28.4854],[-97.13688,28.48539],[-97.13594,28.48537],[-97.135,28.48536],[-97.13407,28.48535],[-97.13313,28.48533],[-97.13219,28.48532],[-97.13125,28.48531],[-97.13032,28.48529],[-97.12938,28.48528],[-97.12844,28.48527],[-97.12751,28.48525],[-97.12657,28.48524],[-97.12594,28.48523],[-97.12594,28.48545],[-97.125,28.48544],[-97.12406,28.48543],[-97.12313,28.48541],[-97.12219,28.4854],[-97.12125,28.48539],[-97.12031,28.48537],[-97.11938,28.48536],[-97.11844,28.48535],[-97.1175,28.48533],[-97.11657,28.48532],[-97.11563,28.48531],[-97.11469,28.48529],[-97.11375,28.48528],[-97.11282,28.48527],[-97.11188,28.48525],[-97.11094,28.48524],[-97.11032,28.48523],[-97.11031,28.48546],[-97.10938,28.48544],[-97.10844,28.48543],[-97.1075,28.48542],[-97.10656,28.4854],[-97.10563,28.48539],[-97.10469,28.48538],[-97.10375,28.48536],[-97.10281,28.48535],[-97.10188,28.48534],[-97.10094,28.48532],[-97.1,28.48531],[-97.09907,28.4853],[-97.09813,28.48528],[-97.09719,28.48527],[-97.09625,28.48526],[-97.09532,28.48524],[-97.09469,28.48523],[-97.09469,28.48546],[-97.09375,28.48545],[-97.09281,28.48543],[-97.09188,28.48542],[-97.09094,28.4854],[-97.09,28.48539],[-97.08906,28.48538],[-97.08813,28.48536],[-97.08719,28.48535],[-97.08625,28.48534],[-97.08531,28.48532],[-97.08438,28.48531],[-97.08344,28.4853],[-97.0825,28.48528],[-97.08156,28.48527],[-97.08063,28.48526],[-97.07969,28.48524],[-97.07875,28.48523],[-97.07782,28.48522],[-97.07688,28.4852],[-97.07689,28.4844],[-97.07691,28.48361],[-97.07692,28.48281],[-97.07694,28.48202],[-97.07695,28.48122],[-97.07697,28.48042],[-97.07698,28.47963],[-97.077,28.47883],[-97.07701,28.47803],[-97.07703,28.47724],[-97.07704,28.47644],[-97.07706,28.47564],[-97.07707,28.47485],[-97.07709,28.47405],[-97.0771,28.47325],[-97.07712,28.47246],[-97.07713,28.47166],[-97.07714,28.47086],[-97.07716,28.47007],[-97.07716,28.46981],[-97.07625,28.46979],[-97.07531,28.46978],[-97.07438,28.46977],[-97.07344,28.46975],[-97.0725,28.46974],[-97.07156,28.46973],[-97.07063,28.46971],[-97.06969,28.4697],[-97.06875,28.46968],[-97.06781,28.46967],[-97.06687,28.46966],[-97.06594,28.46964],[-97.065,28.46963],[-97.06406,28.46962],[-97.06344,28.46961],[-97.06344,28.46984],[-97.0625,28.46982],[-97.06156,28.46981],[-97.06062,28.4698],[-97.05969,28.46978],[-97.05875,28.46977],[-97.05781,28.46976],[-97.05687,28.46974],[-97.05594,28.46973],[-97.055,28.46971],[-97.05406,28.4697],[-97.05312,28.46969],[-97.05219,28.46967],[-97.05125,28.46966],[-97.05031,28.46965],[-97.04937,28.46963],[-97.04844,28.46962],[-97.04782,28.46961],[-97.04781,28.46984],[-97.04687,28.46983],[-97.04594,28.46981],[-97.045,28.4698],[-97.04406,28.46978],[-97.04312,28.46977],[-97.04219,28.46976],[-97.04125,28.46974],[-97.04031,28.46973],[-97.03937,28.46971],[-97.03843,28.4697],[-97.0375,28.46969],[-97.03656,28.46967],[-97.03562,28.46966],[-97.03468,28.46965],[-97.03374,28.46963],[-97.03281,28.46962],[-97.03187,28.4696],[-97.03093,28.46959],[-97.02999,28.46958],[-97.03001,28.46878],[-97.03002,28.46798],[-97.03004,28.46719],[-97.03005,28.46639],[-97.03007,28.46559],[-97.03008,28.46479],[-97.0301,28.464],[-97.03011,28.4632],[-97.03013,28.4624],[-97.03015,28.46161],[-97.03016,28.46081],[-97.03018,28.46001],[-97.03019,28.45922],[-97.03021,28.45842],[-97.03022,28.45762],[-97.03024,28.45683],[-97.03025,28.45603],[-97.03027,28.45523],[-97.03028,28.45444],[-97.03029,28.45419],[-97.02937,28.45417],[-97.02843,28.45416],[-97.0275,28.45415],[-97.02656,28.45413],[-97.02562,28.45412],[-97.02468,28.4541],[-97.02375,28.45409],[-97.02281,28.45408],[-97.02187,28.45406],[-97.02093,28.45405],[-97.01999,28.45403],[-97.01906,28.45402],[-97.01812,28.45401],[-97.01718,28.45399],[-97.01656,28.45398],[-97.01656,28.45422],[-97.01562,28.4542],[-97.01468,28.45419],[-97.01375,28.45418],[-97.01281,28.45416],[-97.01187,28.45415],[-97.01093,28.45413],[-97.01,28.45412],[-97.00906,28.45411],[-97.00812,28.45409],[-97.00718,28.45408],[-97.00624,28.45406],[-97.00531,28.45405],[-97.00437,28.45404],[-97.00343,28.45402],[-97.00249,28.45401],[-97.00155,28.45399],[-97.00094,28.45398],[-97.00094,28.45422],[-97,28.45421],[-96.99906,28.45419],[-96.99812,28.45418],[-96.99718,28.45416],[-96.99625,28.45415],[-96.99531,28.45413],[-96.99437,28.45412],[-96.99343,28.45411],[-96.99249,28.45409],[-96.99156,28.45408],[-96.99062,28.45406],[-96.98968,28.45405],[-96.98874,28.45404],[-96.9878,28.45402],[-96.98687,28.45401],[-96.98593,28.45399],[-96.98532,28.45398],[-96.98531,28.45422],[-96.98437,28.45421],[-96.98343,28.45419],[-96.9825,28.45418],[-96.98156,28.45417],[-96.98062,28.45415],[-96.97968,28.45414],[-96.97874,28.45412],[-96.97781,28.45411],[-96.97687,28.45409],[-96.97593,28.45408],[-96.97499,28.45406],[-96.97405,28.45405],[-96.97311,28.45404],[-96.97218,28.45402],[-96.97124,28.45401],[-96.9703,28.45399],[-96.96969,28.45398],[-96.96968,28.45422],[-96.96875,28.45421],[-96.96781,28.45419],[-96.96687,28.45418],[-96.96593,28.45417],[-96.96499,28.45415],[-96.96405,28.45414],[-96.96312,28.45412],[-96.96218,28.45411],[-96.96124,28.45409],[-96.9603,28.45408],[-96.95936,28.45406],[-96.95843,28.45405],[-96.95749,28.45404],[-96.95655,28.45402],[-96.95561,28.45401],[-96.95467,28.45399],[-96.95406,28.45398],[-96.95406,28.45423],[-96.95312,28.45421],[-96.95218,28.4542],[-96.95124,28.45418],[-96.95031,28.45417],[-96.94937,28.45415],[-96.94843,28.45414],[-96.94749,28.45413],[-96.94655,28.45411],[-96.94561,28.4541],[-96.94468,28.45408],[-96.94374,28.45407],[-96.9428,28.45405],[-96.94186,28.45404],[-96.94092,28.45402],[-96.93998,28.45401],[-96.93905,28.45399],[-96.93844,28.45398],[-96.93843,28.45423],[-96.9375,28.45421],[-96.93656,28.4542],[-96.93562,28.45418],[-96.93468,28.45417],[-96.93374,28.45415],[-96.9328,28.45414],[-96.93187,28.45412],[-96.93093,28.45411],[-96.92999,28.45409],[-96.92905,28.45408],[-96.92811,28.45407],[-96.92717,28.45405],[-96.92623,28.45404],[-96.9253,28.45402],[-96.92436,28.45401],[-96.92342,28.45399],[-96.92282,28.45398],[-96.92281,28.45423],[-96.92187,28.45422],[-96.92093,28.4542],[-96.91999,28.45419],[-96.91906,28.45417],[-96.91812,28.45416],[-96.91718,28.45414],[-96.91624,28.45413],[-96.9153,28.45411],[-96.91436,28.4541],[-96.91342,28.45408],[-96.91248,28.45407],[-96.91155,28.45405],[-96.91061,28.45404],[-96.90967,28.45402],[-96.90873,28.45401],[-96.90779,28.45399],[-96.90719,28.45398],[-96.90719,28.45423],[-96.90625,28.45422],[-96.90531,28.4542],[-96.90437,28.45419],[-96.90343,28.45417],[-96.90249,28.45416],[-96.90155,28.45414],[-96.90061,28.45413],[-96.89967,28.45411],[-96.89874,28.4541],[-96.8978,28.45408],[-96.89686,28.45407],[-96.89592,28.45405],[-96.89498,28.45404],[-96.89404,28.45402],[-96.8931,28.45401],[-96.89216,28.45399],[-96.89156,28.45398],[-96.89156,28.45423],[-96.89062,28.45422],[-96.88968,28.4542],[-96.88874,28.45419],[-96.8878,28.45417],[-96.88686,28.45416],[-96.88592,28.45414],[-96.88499,28.45413],[-96.88405,28.45411],[-96.88311,28.4541],[-96.88217,28.45408],[-96.88123,28.45407],[-96.88029,28.45405],[-96.87935,28.45404],[-96.87841,28.45402],[-96.87748,28.45401],[-96.87654,28.45399],[-96.87626,28.45399],[-96.87625,28.4547],[-96.87623,28.4555],[-96.87621,28.4563],[-96.8762,28.4571],[-96.87618,28.4579],[-96.87617,28.45869],[-96.87615,28.45949],[-96.87613,28.46029],[-96.87612,28.46109],[-96.8761,28.46188],[-96.87608,28.46268],[-96.87607,28.46348],[-96.87605,28.46428],[-96.87603,28.46507],[-96.87602,28.46587],[-96.876,28.46667],[-96.87598,28.46747],[-96.87598,28.46793],[-96.8763,28.46794],[-96.87628,28.46873],[-96.87626,28.46953],[-96.87625,28.47033],[-96.87623,28.47113],[-96.87621,28.47192],[-96.8762,28.47272],[-96.87618,28.47352],[-96.87616,28.47432],[-96.87615,28.47511],[-96.87613,28.47591],[-96.87612,28.47671],[-96.8761,28.47751],[-96.87608,28.47831],[-96.87607,28.4791],[-96.87605,28.4799],[-96.87603,28.4807],[-96.87602,28.4815],[-96.876,28.48229],[-96.87598,28.48309],[-96.87597,28.48356],[-96.8763,28.48356],[-96.87628,28.48436],[-96.87626,28.48516],[-96.87625,28.48596],[-96.87623,28.48675],[-96.87621,28.48755],[-96.8762,28.48835],[-96.87618,28.48915],[-96.87616,28.48994],[-96.87615,28.49074],[-96.87613,28.49154],[-96.87611,28.49234],[-96.8761,28.49313],[-96.87608,28.49393],[-96.87607,28.49473],[-96.87605,28.49553],[-96.87603,28.49632],[-96.87602,28.49712],[-96.876,28.49792],[-96.87598,28.49872],[-96.87597,28.49918],[-96.87629,28.49919],[-96.87628,28.49998],[-96.87626,28.50078],[-96.87625,28.50158],[-96.87623,28.50238],[-96.87621,28.50318],[-96.8762,28.50397],[-96.87618,28.50477],[-96.87616,28.50557],[-96.87615,28.50637],[-96.87613,28.50716],[-96.87611,28.50796],[-96.8761,28.50876],[-96.87608,28.50956],[-96.87607,28.51035],[-96.87605,28.51115],[-96.87603,28.51195],[-96.87602,28.51275],[-96.876,28.51355],[-96.87598,28.51434],[-96.87597,28.51481],[-96.87629,28.51481],[-96.87628,28.51561],[-96.87626,28.51641],[-96.87625,28.5172],[-96.87623,28.518],[-96.87621,28.5188],[-96.8762,28.5196],[-96.87618,28.5204],[-96.87616,28.52119],[-96.87615,28.52199],[-96.87613,28.52279],[-96.87611,28.52359],[-96.8761,28.52438],[-96.87608,28.52518],[-96.87606,28.52598],[-96.87605,28.52678],[-96.87603,28.52757],[-96.87602,28.52837],[-96.876,28.52917],[-96.87598,28.52997],[-96.87597,28.53043],[-96.8763,28.53044],[-96.87628,28.53123],[-96.87626,28.53203],[-96.87625,28.53283],[-96.87623,28.53363],[-96.87621,28.53442],[-96.8762,28.53522],[-96.87618,28.53602],[-96.87617,28.53682],[-96.87615,28.53762],[-96.87613,28.53841],[-96.87612,28.53921],[-96.8761,28.54001],[-96.87608,28.54081],[-96.87607,28.5416],[-96.87605,28.5424],[-96.87603,28.5432],[-96.87602,28.544],[-96.876,28.54479],[-96.87599,28.54559],[-96.87598,28.54606],[-96.8763,28.54606],[-96.87628,28.54686],[-96.87626,28.54766],[-96.87625,28.54846],[-96.87623,28.54925],[-96.87621,28.55005],[-96.8762,28.55085],[-96.87618,28.55165],[-96.87617,28.55244],[-96.87615,28.55324],[-96.87613,28.55404],[-96.87612,28.55484],[-96.8761,28.55563],[-96.87608,28.55643],[-96.87607,28.55723],[-96.87605,28.55803],[-96.87603,28.55882],[-96.87602,28.55962],[-96.876,28.56042],[-96.87598,28.56122],[-96.87597,28.56201],[-96.87595,28.56281],[-96.87594,28.56361],[-96.875,28.56359],[-96.87406,28.56358],[-96.87312,28.56356],[-96.87218,28.56355],[-96.87124,28.56353],[-96.8703,28.56352],[-96.86936,28.5635],[-96.86842,28.56349],[-96.86748,28.56347],[-96.86654,28.56346],[-96.8656,28.56344],[-96.86467,28.56343],[-96.86373,28.56341],[-96.86279,28.5634],[-96.86185,28.56338],[-96.86091,28.56337],[-96.86031,28.56336],[-96.86031,28.56361],[-96.85937,28.5636],[-96.85843,28.56358],[-96.85749,28.56357],[-96.85655,28.56355],[-96.85561,28.56354],[-96.85467,28.56352],[-96.85373,28.5635],[-96.85279,28.56349],[-96.85186,28.56347],[-96.85092,28.56346],[-96.84998,28.56344],[-96.84904,28.56343],[-96.8481,28.56341],[-96.84716,28.5634],[-96.84622,28.56338],[-96.84528,28.56337],[-96.84469,28.56336],[-96.84468,28.56361],[-96.84374,28.5636],[-96.84281,28.56358],[-96.84187,28.56357],[-96.84093,28.56355],[-96.83999,28.56354],[-96.83905,28.56352],[-96.83811,28.56351],[-96.83717,28.56349],[-96.83623,28.56348],[-96.83529,28.56346],[-96.83435,28.56345],[-96.83341,28.56343],[-96.83247,28.56341],[-96.83153,28.5634],[-96.83059,28.56338],[-96.82965,28.56337],[-96.82906,28.56336],[-96.82906,28.56362],[-96.82812,28.5636],[-96.82718,28.56359],[-96.82624,28.56357],[-96.8253,28.56356],[-96.82436,28.56354],[-96.82342,28.56352],[-96.82248,28.56351],[-96.82154,28.56349],[-96.8206,28.56348],[-96.81966,28.56346],[-96.81872,28.56345],[-96.81778,28.56343],[-96.81684,28.56342],[-96.8159,28.5634],[-96.81497,28.56339],[-96.81403,28.56337],[-96.81344,28.56336],[-96.81344,28.56362],[-96.8125,28.5636],[-96.81156,28.56359],[-96.81062,28.56357],[-96.80968,28.56356],[-96.80874,28.56354],[-96.8078,28.56353],[-96.80686,28.56351],[-96.80592,28.56349],[-96.80498,28.56348],[-96.80404,28.56346],[-96.8031,28.56345],[-96.80216,28.56343],[-96.80122,28.56342],[-96.80028,28.5634],[-96.79934,28.56339],[-96.7984,28.56337],[-96.79746,28.56335],[-96.79652,28.56334],[-96.79558,28.56332],[-96.7956,28.56252],[-96.79562,28.56173],[-96.79563,28.56093],[-96.79565,28.56013],[-96.79567,28.55933],[-96.79568,28.55853],[-96.7957,28.55774],[-96.79572,28.55694],[-96.79574,28.55614],[-96.79575,28.55534],[-96.79577,28.55454],[-96.79579,28.55375],[-96.7958,28.55295],[-96.79582,28.55215],[-96.79584,28.55135],[-96.79585,28.55055],[-96.79587,28.54976],[-96.79589,28.54896],[-96.79591,28.54816],[-96.79592,28.5477],[-96.79558,28.5477],[-96.7956,28.5469],[-96.79562,28.5461],[-96.79563,28.5453],[-96.79565,28.54451],[-96.79567,28.54371],[-96.79568,28.54291],[-96.7957,28.54211],[-96.79572,28.54131],[-96.79574,28.54052],[-96.79575,28.53972],[-96.79577,28.53892],[-96.79579,28.53812],[-96.7958,28.53732],[-96.79582,28.53653],[-96.79584,28.53573],[-96.79585,28.53493],[-96.79587,28.53413],[-96.79589,28.53333],[-96.79591,28.53253],[-96.79592,28.53208],[-96.79558,28.53207],[-96.7956,28.53127],[-96.79562,28.53047],[-96.79563,28.52968],[-96.79565,28.52888],[-96.79567,28.52808],[-96.79568,28.52728],[-96.7957,28.52649],[-96.79572,28.52569],[-96.79574,28.52489],[-96.79575,28.52409],[-96.79577,28.52329],[-96.79579,28.5225],[-96.7958,28.5217],[-96.79582,28.5209],[-96.79584,28.5201],[-96.79585,28.5193],[-96.79587,28.51851],[-96.79589,28.51771],[-96.79591,28.51691],[-96.79591,28.51671],[-96.79499,28.5167],[-96.79405,28.51668],[-96.79311,28.51667],[-96.79217,28.51665],[-96.79123,28.51664],[-96.79029,28.51662],[-96.78935,28.5166],[-96.78841,28.51659],[-96.78747,28.51657],[-96.78653,28.51656],[-96.78559,28.51654],[-96.78465,28.51653],[-96.78371,28.51651],[-96.78277,28.51649],[-96.78183,28.51648],[-96.78089,28.51646],[-96.77995,28.51645],[-96.77997,28.51565],[-96.77999,28.51485],[-96.78001,28.51405],[-96.78002,28.51325],[-96.78004,28.51246],[-96.78006,28.51166],[-96.78007,28.51086],[-96.78009,28.51006],[-96.78011,28.50926],[-96.78013,28.50847],[-96.78014,28.50767],[-96.78016,28.50687],[-96.78018,28.50607],[-96.78019,28.50527],[-96.78021,28.50448],[-96.78023,28.50368],[-96.78025,28.50288],[-96.78026,28.50208],[-96.78028,28.50128],[-96.78028,28.50109],[-96.77936,28.50108],[-96.77842,28.50106],[-96.77748,28.50104],[-96.77654,28.50103],[-96.7756,28.50101],[-96.77467,28.501],[-96.77373,28.50098],[-96.77279,28.50097],[-96.77185,28.50095],[-96.77091,28.50093],[-96.76997,28.50092],[-96.76903,28.5009],[-96.76809,28.50089],[-96.76715,28.50087],[-96.76621,28.50085],[-96.76527,28.50084],[-96.76433,28.50082],[-96.76435,28.50002],[-96.76436,28.49923],[-96.76438,28.49843],[-96.7644,28.49763],[-96.76441,28.49683],[-96.76443,28.49603],[-96.76445,28.49524],[-96.76447,28.49444],[-96.76448,28.49364],[-96.7645,28.49284],[-96.76452,28.49204],[-96.76454,28.49124],[-96.76455,28.49045],[-96.76457,28.48965],[-96.76459,28.48885],[-96.7646,28.48805],[-96.76462,28.48725],[-96.76464,28.48646],[-96.76466,28.48566],[-96.76467,28.4852],[-96.76433,28.4852],[-96.76434,28.4844],[-96.76436,28.4836],[-96.76438,28.4828],[-96.7644,28.482],[-96.76441,28.48121],[-96.76443,28.48041],[-96.76445,28.47961],[-96.76447,28.47881],[-96.76448,28.47801],[-96.7645,28.47721],[-96.76452,28.47642],[-96.76453,28.47562],[-96.76455,28.47482],[-96.76457,28.47402],[-96.76459,28.47322],[-96.7646,28.47243],[-96.76462,28.47163],[-96.76464,28.47083],[-96.76465,28.47003],[-96.76466,28.46984],[-96.76374,28.46983],[-96.7628,28.46981],[-96.76186,28.4698],[-96.76092,28.46978],[-96.75998,28.46976],[-96.75904,28.46975],[-96.7581,28.46973],[-96.75716,28.46972],[-96.75622,28.4697],[-96.75528,28.46968],[-96.75434,28.46967],[-96.7534,28.46965],[-96.75246,28.46964],[-96.75152,28.46962],[-96.75094,28.46961],[-96.75093,28.46987],[-96.74999,28.46986],[-96.74905,28.46984],[-96.74811,28.46983],[-96.74717,28.46981],[-96.74623,28.4698],[-96.74529,28.46978],[-96.74435,28.46976],[-96.74341,28.46975],[-96.74247,28.46973],[-96.74153,28.46971],[-96.74059,28.4697],[-96.73965,28.46968],[-96.73871,28.46967],[-96.73777,28.46965],[-96.73683,28.46963],[-96.73589,28.46962],[-96.73495,28.4696],[-96.73401,28.46959],[-96.73307,28.46957],[-96.73309,28.46877],[-96.73311,28.46797],[-96.73312,28.46718],[-96.73314,28.46638],[-96.73316,28.46558],[-96.73318,28.46478],[-96.73319,28.46398],[-96.73321,28.46318],[-96.73323,28.46239],[-96.73325,28.46159],[-96.73326,28.46079],[-96.73328,28.45999],[-96.7333,28.45919],[-96.73332,28.45839],[-96.73333,28.4576],[-96.73335,28.4568],[-96.73337,28.456],[-96.73339,28.4552],[-96.7334,28.4544],[-96.73341,28.45395],[-96.73307,28.45395],[-96.73309,28.45315],[-96.73311,28.45235],[-96.73312,28.45155],[-96.73314,28.45075],[-96.73316,28.44995],[-96.73318,28.44915],[-96.73319,28.44836],[-96.73321,28.44756],[-96.73323,28.44676],[-96.73325,28.44596],[-96.73326,28.44516],[-96.73328,28.44436],[-96.7333,28.44356],[-96.73332,28.44277],[-96.73333,28.44197],[-96.73335,28.44117],[-96.73337,28.44037],[-96.73339,28.43957],[-96.7334,28.43877],[-96.73341,28.43859],[-96.73249,28.43858],[-96.73155,28.43856],[-96.73061,28.43854],[-96.72967,28.43853],[-96.72873,28.43851],[-96.72779,28.43849],[-96.72685,28.43848],[-96.72591,28.43846],[-96.72497,28.43845],[-96.72403,28.43843],[-96.72309,28.43841],[-96.72215,28.4384],[-96.72121,28.43838],[-96.72027,28.43837],[-96.71933,28.43835],[-96.71839,28.43833],[-96.71745,28.43832],[-96.71746,28.43752],[-96.71748,28.43672],[-96.7175,28.43592],[-96.71752,28.43512],[-96.71753,28.43433],[-96.71755,28.43353],[-96.71757,28.43273],[-96.71759,28.43193],[-96.7176,28.43113],[-96.71762,28.43033],[-96.71764,28.42954],[-96.71766,28.42874],[-96.71768,28.42794],[-96.71769,28.42714],[-96.71771,28.42634],[-96.71773,28.42555],[-96.71775,28.42475],[-96.71776,28.42395],[-96.71778,28.42315],[-96.71778,28.42297],[-96.71686,28.42296],[-96.71592,28.42294],[-96.71498,28.42292],[-96.71404,28.42291],[-96.7131,28.42289],[-96.71216,28.42288],[-96.71122,28.42286],[-96.71028,28.42284],[-96.70934,28.42283],[-96.7084,28.42281],[-96.70746,28.42279],[-96.70652,28.42278],[-96.70558,28.42276],[-96.70464,28.42275],[-96.70406,28.42274],[-96.70406,28.42301],[-96.70312,28.42299],[-96.70217,28.42297],[-96.70123,28.42296],[-96.70029,28.42294],[-96.69935,28.42293],[-96.69841,28.42291],[-96.69747,28.42289],[-96.69653,28.42288],[-96.69559,28.42286],[-96.69465,28.42284],[-96.69371,28.42283],[-96.69277,28.42281],[-96.69183,28.42279],[-96.69089,28.42278],[-96.68995,28.42276],[-96.68901,28.42275],[-96.68807,28.42273],[-96.68713,28.42271],[-96.68619,28.4227],[-96.68621,28.4219],[-96.68622,28.4211],[-96.68624,28.4203],[-96.68626,28.4195],[-96.68628,28.4187],[-96.6863,28.4179],[-96.68631,28.41711],[-96.68633,28.41631],[-96.68635,28.41551],[-96.68637,28.41471],[-96.68639,28.41391],[-96.6864,28.41311],[-96.68642,28.41231],[-96.68644,28.41152],[-96.68646,28.41072],[-96.68648,28.40992],[-96.68649,28.40912],[-96.68651,28.40832],[-96.68653,28.40752],[-96.68653,28.40735],[-96.68561,28.40733],[-96.68467,28.40732],[-96.68373,28.4073],[-96.68279,28.40728],[-96.68185,28.40727],[-96.68091,28.40725],[-96.67997,28.40723],[-96.67903,28.40722],[-96.67809,28.4072],[-96.67715,28.40719],[-96.67621,28.40717],[-96.67526,28.40715],[-96.67432,28.40714],[-96.67338,28.40712],[-96.67244,28.4071],[-96.6715,28.40709],[-96.67056,28.40707],[-96.67058,28.40627],[-96.6706,28.40547],[-96.67062,28.40467],[-96.67063,28.40388],[-96.67065,28.40308],[-96.67067,28.40228],[-96.67069,28.40148],[-96.67071,28.40068],[-96.67072,28.39988],[-96.67074,28.39908],[-96.67076,28.39829],[-96.67078,28.39749],[-96.6708,28.39669],[-96.67081,28.39589],[-96.67083,28.39509],[-96.67085,28.39429],[-96.67087,28.39349],[-96.67089,28.3927],[-96.6709,28.3919],[-96.67091,28.39145],[-96.67056,28.39144],[-96.67058,28.39065],[-96.6706,28.38985],[-96.67062,28.38905],[-96.67064,28.38825],[-96.67065,28.38745],[-96.67067,28.38665],[-96.67069,28.38585],[-96.67071,28.38506],[-96.67073,28.38426],[-96.67074,28.38346],[-96.67076,28.38266],[-96.67078,28.38186],[-96.6708,28.38106],[-96.67082,28.38026],[-96.67083,28.37946],[-96.67085,28.37867],[-96.67087,28.37787],[-96.67089,28.37707],[-96.67091,28.37627],[-96.67091,28.3761],[-96.66998,28.37609],[-96.66904,28.37607],[-96.6681,28.37605],[-96.66716,28.37604],[-96.66622,28.37602],[-96.66528,28.376],[-96.66434,28.37599],[-96.6634,28.37597],[-96.66246,28.37595],[-96.66152,28.37594],[-96.66058,28.37592],[-96.65964,28.37591],[-96.6587,28.37589],[-96.65776,28.37587],[-96.65719,28.37586],[-96.65718,28.37614],[-96.65624,28.37612],[-96.6553,28.37611],[-96.65436,28.37609],[-96.65342,28.37607],[-96.65248,28.37606],[-96.65154,28.37604],[-96.6506,28.37602],[-96.64966,28.37601],[-96.64871,28.37599],[-96.64777,28.37597],[-96.64683,28.37596],[-96.64589,28.37594],[-96.64495,28.37592],[-96.64401,28.37591],[-96.64307,28.37589],[-96.64213,28.37587],[-96.64156,28.37586],[-96.64155,28.37614],[-96.64061,28.37612],[-96.63967,28.37611],[-96.63873,28.37609],[-96.63779,28.37607],[-96.63685,28.37606],[-96.63591,28.37604],[-96.63497,28.37602],[-96.63403,28.376],[-96.63308,28.37599],[-96.63214,28.37597],[-96.6312,28.37595],[-96.63026,28.37594],[-96.62932,28.37592],[-96.62838,28.3759],[-96.62744,28.37589],[-96.6265,28.37587],[-96.62593,28.37586],[-96.62592,28.37614],[-96.62498,28.37613],[-96.62404,28.37611],[-96.6231,28.37609],[-96.62216,28.37608],[-96.62122,28.37606],[-96.62028,28.37604],[-96.61934,28.37602],[-96.6184,28.37601],[-96.61746,28.37599],[-96.61652,28.37597],[-96.61558,28.37596],[-96.61464,28.37594],[-96.6137,28.37592],[-96.61276,28.37591],[-96.61182,28.37589],[-96.61088,28.37587],[-96.61031,28.37586],[-96.6103,28.37614],[-96.60936,28.37613],[-96.60842,28.37611],[-96.60748,28.37609],[-96.60654,28.37608],[-96.6056,28.37606],[-96.60466,28.37604],[-96.60372,28.37603],[-96.60278,28.37601],[-96.60184,28.37599],[-96.60089,28.37597],[-96.59995,28.37596],[-96.59901,28.37594],[-96.59807,28.37592],[-96.59713,28.37591],[-96.59619,28.37589],[-96.59525,28.37587],[-96.59469,28.37586],[-96.59468,28.37614],[-96.59374,28.37613],[-96.5928,28.37611],[-96.59186,28.37609],[-96.59091,28.37608],[-96.58997,28.37606],[-96.58903,28.37604],[-96.58809,28.37602],[-96.58715,28.37601],[-96.58621,28.37599],[-96.58527,28.37597],[-96.58433,28.37596],[-96.58339,28.37594],[-96.58245,28.37592],[-96.5815,28.3759],[-96.58056,28.37589],[-96.57962,28.37587],[-96.57943,28.37587],[-96.57941,28.37659],[-96.57939,28.37739],[-96.57937,28.37819],[-96.57935,28.37898],[-96.57933,28.37978],[-96.57932,28.38058],[-96.5793,28.38138],[-96.57928,28.38218],[-96.57926,28.38298],[-96.57924,28.38378],[-96.57922,28.38458],[-96.5792,28.38538],[-96.57918,28.38618],[-96.57917,28.38698],[-96.57915,28.38778],[-96.57913,28.38858],[-96.57911,28.38938],[-96.57909,28.39017],[-96.57907,28.39097],[-96.57905,28.39177],[-96.57811,28.39176],[-96.57717,28.39174],[-96.57623,28.39172],[-96.57529,28.3917],[-96.57435,28.39169],[-96.57341,28.39167],[-96.57247,28.39165],[-96.57152,28.39164],[-96.57058,28.39162],[-96.56964,28.3916],[-96.5687,28.39158],[-96.56776,28.39157],[-96.56682,28.39155],[-96.56588,28.39153],[-96.56494,28.39151],[-96.56399,28.3915],[-96.56344,28.39149],[-96.56343,28.39178],[-96.56249,28.39176],[-96.56155,28.39174],[-96.5606,28.39172],[-96.55966,28.39171],[-96.55872,28.39169],[-96.55778,28.39167],[-96.55684,28.39165],[-96.5559,28.39164],[-96.55496,28.39162],[-96.55401,28.3916],[-96.55307,28.39158],[-96.55213,28.39157],[-96.55119,28.39155],[-96.55025,28.39153],[-96.54931,28.39151],[-96.54837,28.3915],[-96.54818,28.39149],[-96.54816,28.39221],[-96.54814,28.39301],[-96.54812,28.39381],[-96.54811,28.39461],[-96.54809,28.39541],[-96.54807,28.39621],[-96.54805,28.39701],[-96.54803,28.39781],[-96.54801,28.39861],[-96.54799,28.39941],[-96.54797,28.40021],[-96.54795,28.40101],[-96.54794,28.40181],[-96.54792,28.40261],[-96.5479,28.40341],[-96.54788,28.40421],[-96.54786,28.405],[-96.54784,28.4058],[-96.54782,28.4066],[-96.5478,28.4074],[-96.54686,28.40739],[-96.54592,28.40737],[-96.54498,28.40735],[-96.54404,28.40733],[-96.5431,28.40732],[-96.54215,28.4073],[-96.54121,28.40728],[-96.54027,28.40726],[-96.53933,28.40725],[-96.53839,28.40723],[-96.53745,28.40721],[-96.5365,28.40719],[-96.53556,28.40718],[-96.53462,28.40716],[-96.53368,28.40714],[-96.53274,28.40712],[-96.53218,28.40711],[-96.53218,28.4074],[-96.53124,28.40739],[-96.53029,28.40737],[-96.52935,28.40735],[-96.52841,28.40733],[-96.52747,28.40732],[-96.52653,28.4073],[-96.52559,28.40728],[-96.52465,28.40726],[-96.5237,28.40725],[-96.52276,28.40723],[-96.52182,28.40721],[-96.52088,28.40719],[-96.51994,28.40718],[-96.519,28.40716],[-96.51806,28.40714],[-96.51711,28.40712],[-96.51694,28.40712],[-96.51692,28.40784],[-96.5169,28.40864],[-96.51688,28.40944],[-96.51686,28.41024],[-96.51684,28.41104],[-96.51682,28.41184],[-96.5168,28.41264],[-96.51678,28.41344],[-96.51677,28.41424],[-96.51675,28.41504],[-96.51673,28.41584],[-96.51671,28.41663],[-96.51669,28.41743],[-96.51667,28.41823],[-96.51665,28.41903],[-96.51663,28.41983],[-96.51661,28.42063],[-96.51659,28.42143],[-96.51657,28.42223],[-96.51655,28.42303],[-96.51561,28.42301],[-96.51467,28.423],[-96.51373,28.42298],[-96.51279,28.42296],[-96.51185,28.42294],[-96.5109,28.42292],[-96.50996,28.42291],[-96.50902,28.42289],[-96.50808,28.42287],[-96.50714,28.42285],[-96.50619,28.42284],[-96.50525,28.42282],[-96.50431,28.4228],[-96.50337,28.42278],[-96.50243,28.42277],[-96.50149,28.42275],[-96.50093,28.42274],[-96.50092,28.42323],[-96.49998,28.42322],[-96.49903,28.4232],[-96.49809,28.42318],[-96.49714,28.42316],[-96.49619,28.42315],[-96.49525,28.42313],[-96.4943,28.42311],[-96.49336,28.42309],[-96.49241,28.42307],[-96.49147,28.42306],[-96.49052,28.42304],[-96.48958,28.42302],[-96.48863,28.423],[-96.48768,28.42298],[-96.48674,28.42297],[-96.48579,28.42295],[-96.48568,28.42295],[-96.48567,28.42347],[-96.48565,28.42427],[-96.48563,28.42506],[-96.48561,28.42586],[-96.48559,28.42666],[-96.48557,28.42746],[-96.48556,28.42826],[-96.48554,28.42906],[-96.48552,28.42986],[-96.4855,28.43066],[-96.48548,28.43146],[-96.48546,28.43226],[-96.48544,28.43306],[-96.48542,28.43386],[-96.4854,28.43466],[-96.48538,28.43546],[-96.48536,28.43626],[-96.48534,28.43706],[-96.48532,28.43786],[-96.4853,28.43865],[-96.48436,28.43864],[-96.48342,28.43862],[-96.48248,28.4386],[-96.48153,28.43858],[-96.48059,28.43856],[-96.47965,28.43855],[-96.47871,28.43853],[-96.47777,28.43851],[-96.47683,28.43849],[-96.47588,28.43848],[-96.47494,28.43846],[-96.474,28.43844],[-96.47306,28.43842],[-96.47212,28.4384],[-96.47117,28.43839],[-96.47023,28.43837],[-96.46969,28.43836],[-96.46968,28.43865],[-96.46874,28.43864],[-96.46779,28.43862],[-96.46685,28.4386],[-96.46591,28.43858],[-96.46497,28.43856],[-96.46403,28.43855],[-96.46308,28.43853],[-96.46214,28.43851],[-96.4612,28.43849],[-96.46026,28.43847],[-96.45932,28.43846],[-96.45837,28.43844],[-96.45743,28.43842],[-96.45649,28.4384],[-96.45555,28.43838],[-96.45461,28.43836],[-96.45445,28.43836],[-96.45443,28.43908],[-96.45441,28.43988],[-96.45439,28.44068],[-96.45437,28.44149],[-96.45435,28.44229],[-96.45433,28.44309],[-96.45431,28.44389],[-96.45429,28.44469],[-96.45427,28.44549],[-96.45425,28.44629],[-96.45423,28.44709],[-96.45421,28.44789],[-96.45419,28.44869],[-96.45417,28.44949],[-96.45415,28.45029],[-96.45413,28.45109],[-96.45411,28.45189],[-96.45409,28.45269],[-96.45407,28.45349],[-96.45405,28.45429],[-96.45311,28.45427],[-96.45217,28.45425],[-96.45123,28.45423],[-96.45028,28.45421],[-96.44934,28.4542],[-96.4484,28.45418],[-96.44746,28.45416],[-96.44652,28.45414],[-96.44557,28.45412],[-96.44463,28.45411],[-96.44369,28.45409],[-96.44275,28.45407],[-96.4418,28.45405],[-96.44086,28.45403],[-96.43992,28.45401],[-96.43898,28.454],[-96.43843,28.45399],[-96.43843,28.45429],[-96.43748,28.45427],[-96.43654,28.45425],[-96.4356,28.45424],[-96.43466,28.45422],[-96.43372,28.4542],[-96.43277,28.45418],[-96.43183,28.45416],[-96.43089,28.45414],[-96.42995,28.45413],[-96.429,28.45411],[-96.42806,28.45409],[-96.42712,28.45407],[-96.42618,28.45405],[-96.42523,28.45404],[-96.42429,28.45402],[-96.42335,28.454],[-96.4232,28.454],[-96.42318,28.45472],[-96.42316,28.45552],[-96.42314,28.45632],[-96.42312,28.45712],[-96.4231,28.45792],[-96.42308,28.45872],[-96.42306,28.45952],[-96.42304,28.46032],[-96.42302,28.46112],[-96.423,28.46192],[-96.42298,28.46272],[-96.42296,28.46352],[-96.42294,28.46432],[-96.42292,28.46512],[-96.4229,28.46592],[-96.42288,28.46672],[-96.42286,28.46752],[-96.42284,28.46832],[-96.42282,28.46912],[-96.4228,28.46992],[-96.42186,28.4699],[-96.42092,28.46988],[-96.41998,28.46986],[-96.41903,28.46985],[-96.41809,28.46983],[-96.41715,28.46981],[-96.41621,28.46979],[-96.41526,28.46977],[-96.41432,28.46975],[-96.41338,28.46973],[-96.41244,28.46972],[-96.41149,28.4697],[-96.41055,28.46968],[-96.40961,28.46966],[-96.40867,28.46964],[-96.40772,28.46962],[-96.40719,28.46961],[-96.40718,28.46992],[-96.40624,28.4699],[-96.40529,28.46988],[-96.40435,28.46986],[-96.40341,28.46984],[-96.40247,28.46983],[-96.40152,28.46981],[-96.40058,28.46979],[-96.39964,28.46977],[-96.39869,28.46975],[-96.39775,28.46973],[-96.39681,28.46972],[-96.39587,28.4697],[-96.39492,28.46968],[-96.39398,28.46966],[-96.39304,28.46964],[-96.3921,28.46962],[-96.39115,28.4696],[-96.39021,28.46959],[-96.38927,28.46957],[-96.38929,28.46877],[-96.38931,28.46797],[-96.38933,28.46717],[-96.38935,28.46637],[-96.38937,28.46557],[-96.38939,28.46477],[-96.38941,28.46397],[-96.38943,28.46317],[-96.38945,28.46237],[-96.38947,28.46157],[-96.38949,28.46077],[-96.38951,28.45997],[-96.38953,28.45917],[-96.38955,28.45837],[-96.38957,28.45757],[-96.38959,28.45677],[-96.38961,28.45597],[-96.38963,28.45517],[-96.38965,28.45437],[-96.38966,28.45395],[-96.38927,28.45394],[-96.38929,28.45314],[-96.38931,28.45234],[-96.38933,28.45154],[-96.38935,28.45074],[-96.38937,28.44994],[-96.38939,28.44914],[-96.38941,28.44834],[-96.38943,28.44754],[-96.38945,28.44674],[-96.38947,28.44594],[-96.38949,28.44514],[-96.38951,28.44434],[-96.38953,28.44354],[-96.38955,28.44274],[-96.38957,28.44194],[-96.38959,28.44114],[-96.38961,28.44034],[-96.38963,28.43954],[-96.38965,28.43874],[-96.38966,28.43832],[-96.38927,28.43831],[-96.38929,28.43751],[-96.38931,28.43671],[-96.38933,28.43591],[-96.38935,28.43511],[-96.38937,28.43431],[-96.38939,28.43351],[-96.38941,28.43271],[-96.38943,28.43191],[-96.38945,28.43111],[-96.38947,28.43031],[-96.38949,28.42951],[-96.38951,28.42871],[-96.38953,28.42791],[-96.38955,28.42711],[-96.38957,28.42631],[-96.38959,28.42551],[-96.38961,28.42471],[-96.38963,28.42391],[-96.38965,28.42311],[-96.38966,28.4227],[-96.38927,28.42269],[-96.38929,28.42189],[-96.38931,28.42109],[-96.38933,28.42029],[-96.38935,28.41949],[-96.38937,28.41869],[-96.38939,28.41789],[-96.38941,28.41709],[-96.38943,28.41629],[-96.38945,28.41549],[-96.38947,28.41469],[-96.38949,28.41389],[-96.38951,28.41309],[-96.38953,28.41229],[-96.38955,28.41149],[-96.38957,28.41069],[-96.38959,28.40989],[-96.38961,28.40909],[-96.38963,28.40829],[-96.38965,28.40749],[-96.38966,28.40707],[-96.38927,28.40707],[-96.38929,28.40627],[-96.38931,28.40547],[-96.38933,28.40467],[-96.38935,28.40387],[-96.38937,28.40307],[-96.38939,28.40227],[-96.38941,28.40147],[-96.38943,28.40067],[-96.38945,28.39987],[-96.38947,28.39907],[-96.38949,28.39827],[-96.38951,28.39747],[-96.38953,28.39667],[-96.38955,28.39587],[-96.38957,28.39507],[-96.38959,28.39427],[-96.38961,28.39346],[-96.38963,28.39266],[-96.38965,28.39186],[-96.38966,28.39176],[-96.38872,28.39174],[-96.38778,28.39172],[-96.38684,28.3917],[-96.3859,28.39169],[-96.38495,28.39167],[-96.38401,28.39165],[-96.38307,28.39163],[-96.38213,28.39161],[-96.38118,28.39159],[-96.38024,28.39157],[-96.3793,28.39156],[-96.37836,28.39154],[-96.37741,28.39152],[-96.37647,28.3915],[-96.37553,28.39148],[-96.37458,28.39146],[-96.37364,28.39144],[-96.37366,28.39064],[-96.37368,28.38984],[-96.3737,28.38904],[-96.37372,28.38824],[-96.37374,28.38744],[-96.37376,28.38664],[-96.37378,28.38584],[-96.3738,28.38504],[-96.37383,28.38424],[-96.37385,28.38344],[-96.37387,28.38264],[-96.37389,28.38184],[-96.37391,28.38104],[-96.37393,28.38024],[-96.37395,28.37944],[-96.37397,28.37864],[-96.37399,28.37784],[-96.37401,28.37704],[-96.37403,28.37624],[-96.37404,28.37583],[-96.37364,28.37582],[-96.37366,28.37502],[-96.37368,28.37422],[-96.3737,28.37342],[-96.37372,28.37262],[-96.37374,28.37182],[-96.37376,28.37102],[-96.37378,28.37022],[-96.3738,28.36942],[-96.37382,28.36862],[-96.37384,28.36782],[-96.37386,28.36701],[-96.37388,28.36621],[-96.3739,28.36541],[-96.37393,28.36461],[-96.37395,28.36381],[-96.37397,28.36301],[-96.37399,28.36221],[-96.37401,28.36141],[-96.37403,28.36061],[-96.37405,28.35981],[-96.37407,28.35901],[-96.37409,28.35821],[-96.37503,28.35823],[-96.37597,28.35825],[-96.37692,28.35827],[-96.37786,28.35829],[-96.3788,28.35831],[-96.37974,28.35832],[-96.38069,28.35834],[-96.38163,28.35836],[-96.38257,28.35838],[-96.38351,28.3584],[-96.38446,28.35842],[-96.3854,28.35844],[-96.38634,28.35845],[-96.38728,28.35847],[-96.38822,28.35849],[-96.38917,28.35851],[-96.38931,28.35851],[-96.38933,28.35779],[-96.38935,28.35699],[-96.38937,28.35619],[-96.38939,28.35539],[-96.38941,28.35459],[-96.38943,28.35379],[-96.38945,28.35299],[-96.38947,28.35219],[-96.38949,28.35139],[-96.38951,28.35059],[-96.38953,28.34979],[-96.38955,28.34899],[-96.38957,28.34819],[-96.38959,28.34739],[-96.38961,28.34659],[-96.38963,28.34579],[-96.38965,28.34499],[-96.38966,28.34458],[-96.38927,28.34457],[-96.38929,28.34377],[-96.38931,28.34297],[-96.38933,28.34217],[-96.38935,28.34137],[-96.38937,28.34057],[-96.38939,28.33977],[-96.38941,28.33897],[-96.38943,28.33817],[-96.38945,28.33737],[-96.38947,28.33657],[-96.38949,28.33577],[-96.38951,28.33497],[-96.38953,28.33417],[-96.38955,28.33337],[-96.38957,28.33257],[-96.38959,28.33177],[-96.38961,28.33097],[-96.38963,28.33017],[-96.38965,28.32937],[-96.38967,28.32857],[-96.38969,28.32777],[-96.38971,28.32697],[-96.39066,28.32698],[-96.3916,28.327],[-96.39254,28.32702],[-96.39348,28.32704],[-96.39443,28.32706],[-96.39537,28.32708],[-96.39631,28.3271],[-96.39725,28.32711],[-96.39819,28.32713],[-96.39914,28.32715],[-96.40008,28.32717],[-96.40102,28.32719],[-96.40196,28.32721],[-96.40291,28.32723],[-96.40385,28.32724],[-96.40479,28.32726],[-96.40494,28.32727],[-96.40496,28.32654],[-96.40498,28.32574],[-96.405,28.32494],[-96.40502,28.32414],[-96.40504,28.32334],[-96.40506,28.32254],[-96.40508,28.32174],[-96.4051,28.32094],[-96.40512,28.32014],[-96.40514,28.31934],[-96.40516,28.31854],[-96.40518,28.31774],[-96.4052,28.31694],[-96.40522,28.31614],[-96.40524,28.31534],[-96.40526,28.31454],[-96.40528,28.31374],[-96.4053,28.31294],[-96.40532,28.31214],[-96.40534,28.31134],[-96.40628,28.31136],[-96.40722,28.31138],[-96.40817,28.3114],[-96.40911,28.31142],[-96.41005,28.31144],[-96.41099,28.31145],[-96.41193,28.31147],[-96.41288,28.31149],[-96.41382,28.31151],[-96.41476,28.31153],[-96.4157,28.31155],[-96.41665,28.31156],[-96.41759,28.31158],[-96.41853,28.3116],[-96.41947,28.31162],[-96.42041,28.31164],[-96.42095,28.31165],[-96.42096,28.31134],[-96.4219,28.31136],[-96.42285,28.31138],[-96.42379,28.3114],[-96.42473,28.31142],[-96.42567,28.31143],[-96.42661,28.31145],[-96.42756,28.31147],[-96.4285,28.31149],[-96.42944,28.31151],[-96.43038,28.31153],[-96.43132,28.31155],[-96.43227,28.31156],[-96.43321,28.31158],[-96.43415,28.3116],[-96.43509,28.31162],[-96.43603,28.31164],[-96.43658,28.31165],[-96.43659,28.31134],[-96.43753,28.31136],[-96.43847,28.31138],[-96.43941,28.3114],[-96.44036,28.31142],[-96.4413,28.31144],[-96.44224,28.31145],[-96.44318,28.31147],[-96.44412,28.31149],[-96.44507,28.31151],[-96.44601,28.31153],[-96.44695,28.31155],[-96.44789,28.31156],[-96.44883,28.31158],[-96.44977,28.3116],[-96.45072,28.31162],[-96.45166,28.31164],[-96.45182,28.31164],[-96.45184,28.31092],[-96.45186,28.31012],[-96.45188,28.30932],[-96.4519,28.30852],[-96.45192,28.30772],[-96.45194,28.30692],[-96.45196,28.30612],[-96.45198,28.30532],[-96.452,28.30452],[-96.45202,28.30372],[-96.45204,28.30292],[-96.45206,28.30212],[-96.45208,28.30132],[-96.4521,28.30052],[-96.45211,28.29972],[-96.45213,28.29892],[-96.45215,28.29812],[-96.45217,28.29732],[-96.45219,28.29652],[-96.45221,28.29572],[-96.45316,28.29574],[-96.4541,28.29576],[-96.45504,28.29578],[-96.45598,28.29579],[-96.45692,28.29581],[-96.45786,28.29583],[-96.45881,28.29585],[-96.45975,28.29587],[-96.46069,28.29589],[-96.46163,28.2959],[-96.46257,28.29592],[-96.46351,28.29594],[-96.46446,28.29596],[-96.4654,28.29598],[-96.46634,28.29599],[-96.46728,28.29601],[-96.46783,28.29602],[-96.46784,28.29573],[-96.46878,28.29574],[-96.46972,28.29576],[-96.47066,28.29578],[-96.4716,28.2958],[-96.47255,28.29582],[-96.47349,28.29583],[-96.47443,28.29585],[-96.47537,28.29587],[-96.47631,28.29589],[-96.47725,28.29591],[-96.4782,28.29592],[-96.47914,28.29594],[-96.48008,28.29596],[-96.48102,28.29598],[-96.48196,28.296],[-96.4829,28.29601],[-96.48307,28.29602],[-96.48309,28.29529],[-96.48311,28.2945],[-96.48313,28.2937],[-96.48315,28.2929],[-96.48317,28.2921],[-96.48319,28.2913],[-96.48321,28.2905],[-96.48323,28.2897],[-96.48325,28.2889],[-96.48327,28.2881],[-96.48329,28.2873],[-96.48331,28.2865],[-96.48333,28.2857],[-96.48334,28.2849],[-96.48336,28.2841],[-96.48338,28.2833],[-96.4834,28.2825],[-96.48342,28.2817],[-96.48344,28.2809],[-96.48346,28.2801],[-96.4844,28.28012],[-96.48534,28.28014],[-96.48629,28.28016],[-96.48723,28.28017],[-96.48817,28.28019],[-96.48911,28.28021],[-96.49005,28.28023],[-96.49099,28.28025],[-96.49194,28.28026],[-96.49288,28.28028],[-96.49382,28.2803],[-96.49476,28.28032],[-96.4957,28.28033],[-96.49664,28.28035],[-96.49759,28.28037],[-96.49853,28.28039],[-96.49908,28.2804],[-96.49909,28.2801],[-96.50003,28.28012],[-96.50097,28.28014],[-96.50191,28.28016],[-96.50285,28.28018],[-96.50379,28.28019],[-96.50474,28.28021],[-96.50568,28.28023],[-96.50662,28.28025],[-96.50756,28.28026],[-96.5085,28.28028],[-96.50944,28.2803],[-96.51038,28.28032],[-96.51133,28.28034],[-96.51227,28.28035],[-96.51321,28.28037],[-96.51415,28.28039],[-96.51471,28.2804],[-96.51471,28.2801],[-96.51565,28.28012],[-96.5166,28.28014],[-96.51754,28.28016],[-96.51848,28.28018],[-96.51942,28.28019],[-96.52036,28.28021],[-96.5213,28.28023],[-96.52224,28.28025],[-96.52318,28.28026],[-96.52413,28.28028],[-96.52507,28.2803],[-96.52601,28.28032],[-96.52695,28.28033],[-96.52789,28.28035],[-96.52883,28.28037],[-96.52977,28.28039],[-96.52996,28.28039],[-96.52997,28.27967],[-96.52999,28.27887],[-96.53001,28.27807],[-96.53003,28.27727],[-96.53005,28.27647],[-96.53007,28.27567],[-96.53009,28.27487],[-96.53011,28.27407],[-96.53013,28.27327],[-96.53015,28.27248],[-96.53017,28.27168],[-96.53018,28.27088],[-96.5302,28.27008],[-96.53022,28.26928],[-96.53024,28.26848],[-96.53026,28.26768],[-96.53028,28.26688],[-96.5303,28.26608],[-96.53032,28.26528],[-96.53034,28.26448],[-96.53128,28.2645],[-96.53222,28.26452],[-96.53316,28.26453],[-96.5341,28.26455],[-96.53504,28.26457],[-96.53598,28.26459],[-96.53692,28.2646],[-96.53787,28.26462],[-96.53881,28.26464],[-96.53975,28.26466],[-96.54069,28.26467],[-96.54163,28.26469],[-96.54257,28.26471],[-96.54351,28.26473],[-96.54445,28.26474],[-96.5454,28.26476],[-96.54595,28.26477],[-96.54596,28.26448],[-96.5469,28.2645],[-96.54784,28.26452],[-96.54878,28.26454],[-96.54973,28.26455],[-96.55067,28.26457],[-96.55161,28.26459],[-96.55255,28.26461],[-96.55349,28.26462],[-96.55443,28.26464],[-96.55537,28.26466],[-96.55631,28.26468],[-96.55725,28.26469],[-96.55819,28.26471],[-96.55914,28.26473],[-96.56008,28.26475],[-96.56102,28.26476],[-96.56121,28.26477],[-96.56123,28.26405],[-96.56125,28.26325],[-96.56127,28.26245],[-96.56129,28.26165],[-96.56131,28.26085],[-96.56132,28.26005],[-96.56134,28.25925],[-96.56136,28.25845],[-96.56138,28.25765],[-96.5614,28.25685],[-96.56142,28.25605],[-96.56144,28.25526],[-96.56146,28.25446],[-96.56147,28.25366],[-96.56149,28.25286],[-96.56151,28.25206],[-96.56153,28.25126],[-96.56155,28.25046],[-96.56157,28.24966],[-96.56159,28.24886],[-96.56253,28.24888],[-96.56347,28.2489],[-96.56441,28.24891],[-96.56535,28.24893],[-96.56629,28.24895],[-96.56723,28.24897],[-96.56817,28.24898],[-96.56911,28.249],[-96.57006,28.24902],[-96.571,28.24904],[-96.57194,28.24905],[-96.57288,28.24907],[-96.57382,28.24909],[-96.57476,28.24911],[-96.5757,28.24912],[-96.57664,28.24914],[-96.57684,28.24914],[-96.57686,28.24842],[-96.57688,28.24762],[-96.57689,28.24682],[-96.57691,28.24603],[-96.57693,28.24523],[-96.57695,28.24443],[-96.57697,28.24363],[-96.57699,28.24283],[-96.57701,28.24203],[-96.57703,28.24123],[-96.57704,28.24043],[-96.57706,28.23963],[-96.57708,28.23883],[-96.5771,28.23803],[-96.57712,28.23724],[-96.57714,28.23644],[-96.57716,28.23564],[-96.57717,28.23484],[-96.57719,28.23404],[-96.57721,28.23324],[-96.57815,28.23326],[-96.57909,28.23327],[-96.58003,28.23329],[-96.58098,28.23331],[-96.58192,28.23333],[-96.58286,28.23334],[-96.5838,28.23336],[-96.58474,28.23338],[-96.58568,28.23339],[-96.58662,28.23341],[-96.58756,28.23343],[-96.5885,28.23345],[-96.58944,28.23346],[-96.59038,28.23348],[-96.59132,28.2335],[-96.59226,28.23351],[-96.59283,28.23353],[-96.59284,28.23324],[-96.59378,28.23326],[-96.59472,28.23327],[-96.59566,28.23329],[-96.5966,28.23331],[-96.59754,28.23332],[-96.59848,28.23334],[-96.59942,28.23336],[-96.60036,28.23338],[-96.6013,28.23339],[-96.60224,28.23341],[-96.60318,28.23343],[-96.60412,28.23344],[-96.60506,28.23346],[-96.60601,28.23348],[-96.60695,28.2335],[-96.60789,28.23351],[-96.6081,28.23352],[-96.60811,28.2328],[-96.60813,28.232],[-96.60815,28.2312],[-96.60817,28.2304],[-96.60819,28.2296],[-96.6082,28.2288],[-96.60822,28.228],[-96.60824,28.2272],[-96.60826,28.22641],[-96.60828,28.22561],[-96.6083,28.22481],[-96.60831,28.22401],[-96.60833,28.22321],[-96.60835,28.22241],[-96.60837,28.22161],[-96.60839,28.22081],[-96.60841,28.22001],[-96.60843,28.21922],[-96.60844,28.21842],[-96.60846,28.21762],[-96.6094,28.21764],[-96.61034,28.21765],[-96.61128,28.21767],[-96.61222,28.21769],[-96.61316,28.2177],[-96.6141,28.21772],[-96.61504,28.21774],[-96.61598,28.21775],[-96.61692,28.21777],[-96.61786,28.21779],[-96.6188,28.21781],[-96.61974,28.21782],[-96.62068,28.21784],[-96.62162,28.21786],[-96.62256,28.21787],[-96.6235,28.21789],[-96.62408,28.2179],[-96.62408,28.21762],[-96.62502,28.21764],[-96.62596,28.21765],[-96.6269,28.21767],[-96.62785,28.21769],[-96.62879,28.2177],[-96.62973,28.21772],[-96.63067,28.21774],[-96.63161,28.21775],[-96.63255,28.21777],[-96.63349,28.21779],[-96.63443,28.21781],[-96.63537,28.21782],[-96.63631,28.21784],[-96.63725,28.21786],[-96.63819,28.21787],[-96.63913,28.21789],[-96.63935,28.21789],[-96.63937,28.21717],[-96.63938,28.21638],[-96.6394,28.21558],[-96.63942,28.21478],[-96.63944,28.21398],[-96.63946,28.21318],[-96.63948,28.21238],[-96.63949,28.21158],[-96.63951,28.21078],[-96.63953,28.20998],[-96.63955,28.20919],[-96.63957,28.20839],[-96.63958,28.20759],[-96.6396,28.20679],[-96.63962,28.20599],[-96.63964,28.20519],[-96.63966,28.20439],[-96.63968,28.20359],[-96.63969,28.20279],[-96.63971,28.202],[-96.64065,28.20201],[-96.64159,28.20203],[-96.64253,28.20205],[-96.64347,28.20206],[-96.64441,28.20208],[-96.64535,28.2021],[-96.64629,28.20211],[-96.64723,28.20213],[-96.64817,28.20215],[-96.64911,28.20216],[-96.65005,28.20218],[-96.651,28.2022],[-96.65194,28.20221],[-96.65288,28.20223],[-96.65382,28.20225],[-96.65476,28.20226],[-96.65498,28.20227],[-96.65499,28.20155],[-96.65501,28.20075],[-96.65503,28.19995],[-96.65505,28.19915],[-96.65506,28.19835],[-96.65508,28.19755],[-96.6551,28.19676],[-96.65512,28.19596],[-96.65514,28.19516],[-96.65516,28.19436],[-96.65517,28.19356],[-96.65519,28.19276],[-96.65521,28.19196],[-96.65523,28.19116],[-96.65525,28.19037],[-96.65526,28.18957],[-96.65528,28.18877],[-96.6553,28.18797],[-96.65532,28.18717],[-96.65534,28.18637],[-96.65628,28.18639],[-96.65722,28.18641],[-96.65816,28.18642],[-96.6591,28.18644],[-96.66004,28.18646],[-96.66098,28.18647],[-96.66192,28.18649],[-96.66286,28.18651],[-96.6638,28.18652],[-96.66474,28.18654],[-96.66568,28.18655],[-96.66662,28.18657],[-96.66756,28.18659],[-96.6685,28.1866],[-96.66944,28.18662],[-96.67038,28.18664],[-96.6706,28.18664],[-96.67062,28.18592],[-96.67064,28.18512],[-96.67066,28.18433],[-96.67067,28.18353],[-96.67069,28.18273],[-96.67071,28.18193],[-96.67073,28.18113],[-96.67075,28.18033],[-96.67076,28.17953],[-96.67078,28.17874],[-96.6708,28.17794],[-96.67082,28.17714],[-96.67084,28.17634],[-96.67085,28.17554],[-96.67087,28.17474],[-96.67089,28.17394],[-96.67091,28.17315],[-96.67093,28.17235],[-96.67094,28.17155],[-96.67096,28.17075],[-96.6719,28.17077],[-96.67284,28.17078],[-96.67378,28.1708],[-96.67472,28.17082],[-96.67566,28.17083],[-96.6766,28.17085],[-96.67754,28.17087],[-96.67848,28.17088],[-96.67942,28.1709],[-96.68036,28.17091],[-96.6813,28.17093],[-96.68224,28.17095],[-96.68318,28.17096],[-96.68412,28.17098],[-96.68506,28.171],[-96.686,28.17101],[-96.68658,28.17102],[-96.68658,28.17075],[-96.68752,28.17077],[-96.68846,28.17078],[-96.6894,28.1708],[-96.69034,28.17082],[-96.69128,28.17083],[-96.69222,28.17085],[-96.69316,28.17087],[-96.6941,28.17088],[-96.69504,28.1709],[-96.69598,28.17092],[-96.69692,28.17093],[-96.69786,28.17095],[-96.6988,28.17097],[-96.69974,28.17098],[-96.70068,28.171],[-96.70162,28.17101],[-96.70186,28.17102],[-96.70188,28.1703],[-96.70189,28.1695],[-96.70191,28.1687],[-96.70193,28.1679],[-96.70195,28.16711],[-96.70196,28.16631],[-96.70198,28.16551],[-96.702,28.16471],[-96.70202,28.16391],[-96.70204,28.16311],[-96.70205,28.16232],[-96.70207,28.16152],[-96.70209,28.16072],[-96.70211,28.15992],[-96.70212,28.15912],[-96.70214,28.15832],[-96.70216,28.15752],[-96.70218,28.15673],[-96.70219,28.15593],[-96.70221,28.15513],[-96.70315,28.15514],[-96.70409,28.15516],[-96.70503,28.15518],[-96.70597,28.15519],[-96.70691,28.15521],[-96.70785,28.15523],[-96.70879,28.15524],[-96.70973,28.15526],[-96.71067,28.15528],[-96.71161,28.15529],[-96.71255,28.15531],[-96.71349,28.15532],[-96.71443,28.15534],[-96.71537,28.15536],[-96.71631,28.15537],[-96.71725,28.15539],[-96.71783,28.1554],[-96.71784,28.15513],[-96.71878,28.15515],[-96.71971,28.15516],[-96.72065,28.15518],[-96.72159,28.15519],[-96.72253,28.15521],[-96.72347,28.15523],[-96.72441,28.15524],[-96.72535,28.15526],[-96.72629,28.15528],[-96.72723,28.15529],[-96.72817,28.15531],[-96.72911,28.15532],[-96.73005,28.15534],[-96.73099,28.15536],[-96.73193,28.15537],[-96.73287,28.15539],[-96.73311,28.15539],[-96.73313,28.15468],[-96.73314,28.15388],[-96.73316,28.15308],[-96.73318,28.15228],[-96.7332,28.15148],[-96.73321,28.15068],[-96.73323,28.14989],[-96.73325,28.14909],[-96.73327,28.14829],[-96.73328,28.14749],[-96.7333,28.14669],[-96.73332,28.14589],[-96.73334,28.1451],[-96.73335,28.1443],[-96.73337,28.1435],[-96.73339,28.1427],[-96.73341,28.1419],[-96.73342,28.14145],[-96.73308,28.14145],[-96.73309,28.14065],[-96.73311,28.13985],[-96.73313,28.13905],[-96.73315,28.13825],[-96.73316,28.13745],[-96.73318,28.13666],[-96.7332,28.13586],[-96.73322,28.13506],[-96.73323,28.13426],[-96.73325,28.13346],[-96.73327,28.13266],[-96.73328,28.13187],[-96.7333,28.13107],[-96.73332,28.13027],[-96.73334,28.12947],[-96.73335,28.12867],[-96.73337,28.12787],[-96.73339,28.12708],[-96.73341,28.12628],[-96.73342,28.12548],[-96.73344,28.12468],[-96.73346,28.12388],[-96.7344,28.1239],[-96.73534,28.12391],[-96.73628,28.12393],[-96.73722,28.12395],[-96.73816,28.12396],[-96.7391,28.12398],[-96.74004,28.124],[-96.74098,28.12401],[-96.74192,28.12403],[-96.74286,28.12404],[-96.7438,28.12406],[-96.74473,28.12408],[-96.74567,28.12409],[-96.74661,28.12411],[-96.74755,28.12412],[-96.74849,28.12414],[-96.74908,28.12415],[-96.74908,28.12389],[-96.75002,28.1239],[-96.75096,28.12392],[-96.7519,28.12393],[-96.75284,28.12395],[-96.75378,28.12397],[-96.75472,28.12398],[-96.75566,28.124],[-96.7566,28.12401],[-96.75754,28.12403],[-96.75848,28.12405],[-96.75942,28.12406],[-96.76036,28.12408],[-96.7613,28.12409],[-96.76224,28.12411],[-96.76318,28.12413],[-96.76412,28.12414],[-96.76437,28.12415],[-96.76438,28.12343],[-96.7644,28.12263],[-96.76442,28.12183],[-96.76444,28.12103],[-96.76445,28.12024],[-96.76447,28.11944],[-96.76449,28.11864],[-96.7645,28.11784],[-96.76452,28.11704],[-96.76454,28.11624],[-96.76456,28.11545],[-96.76457,28.11465],[-96.76459,28.11385],[-96.76461,28.11305],[-96.76462,28.11225],[-96.76464,28.11145],[-96.76466,28.11066],[-96.76468,28.10986],[-96.76469,28.10906],[-96.76471,28.10826],[-96.76565,28.10828],[-96.76659,28.10829],[-96.76753,28.10831],[-96.76847,28.10832],[-96.76941,28.10834],[-96.77035,28.10836],[-96.77128,28.10837],[-96.77222,28.10839],[-96.77316,28.1084],[-96.7741,28.10842],[-96.77504,28.10844],[-96.77598,28.10845],[-96.77692,28.10847],[-96.77786,28.10848],[-96.7788,28.1085],[-96.77974,28.10851],[-96.78033,28.10852],[-96.78034,28.10826],[-96.78128,28.10828],[-96.78221,28.1083],[-96.78315,28.10831],[-96.78409,28.10833],[-96.78503,28.10834],[-96.78597,28.10836],[-96.78691,28.10837],[-96.78785,28.10839],[-96.78879,28.10841],[-96.78973,28.10842],[-96.79067,28.10844],[-96.7916,28.10845],[-96.79254,28.10847],[-96.79348,28.10848],[-96.79442,28.1085],[-96.79536,28.10852],[-96.79562,28.10852],[-96.79564,28.1078],[-96.79565,28.10701],[-96.79567,28.10621],[-96.79569,28.10541],[-96.7957,28.10461],[-96.79572,28.10381],[-96.79574,28.10302],[-96.79576,28.10222],[-96.79577,28.10142],[-96.79579,28.10062],[-96.79581,28.09982],[-96.79582,28.09902],[-96.79584,28.09823],[-96.79586,28.09743],[-96.79587,28.09663],[-96.79589,28.09583],[-96.79591,28.09503],[-96.79592,28.09458],[-96.79559,28.09457],[-96.7956,28.09377],[-96.79562,28.09297],[-96.79564,28.09218],[-96.79565,28.09138],[-96.79567,28.09058],[-96.79569,28.08978],[-96.7957,28.08898],[-96.79572,28.08819],[-96.79574,28.08739],[-96.79576,28.08659],[-96.79577,28.08579],[-96.79579,28.08499],[-96.79581,28.0842],[-96.79582,28.0834],[-96.79584,28.0826],[-96.79586,28.0818],[-96.79587,28.081],[-96.79589,28.08021],[-96.79591,28.07941],[-96.79593,28.07861],[-96.79594,28.07781],[-96.79596,28.07701],[-96.7969,28.07703],[-96.79784,28.07705],[-96.79878,28.07706],[-96.79972,28.07708],[-96.80065,28.07709],[-96.80159,28.07711],[-96.80253,28.07712],[-96.80347,28.07714],[-96.80441,28.07716],[-96.80535,28.07717],[-96.80629,28.07719],[-96.80723,28.0772],[-96.80817,28.07722],[-96.80911,28.07723],[-96.81004,28.07725],[-96.81098,28.07726],[-96.81158,28.07727],[-96.81159,28.07702],[-96.81252,28.07703],[-96.81346,28.07705],[-96.8144,28.07706],[-96.81534,28.07708],[-96.81628,28.07709],[-96.81722,28.07711],[-96.81816,28.07713],[-96.8191,28.07714],[-96.82003,28.07716],[-96.82097,28.07717],[-96.82191,28.07719],[-96.82285,28.0772],[-96.82379,28.07722],[-96.82473,28.07723],[-96.82567,28.07725],[-96.82661,28.07726],[-96.82688,28.07727],[-96.82689,28.07655],[-96.82691,28.07575],[-96.82692,28.07496],[-96.82694,28.07416],[-96.82696,28.07336],[-96.82697,28.07256],[-96.82699,28.07177],[-96.82701,28.07097],[-96.82702,28.07017],[-96.82704,28.06937],[-96.82706,28.06857],[-96.82708,28.06778],[-96.82709,28.06698],[-96.82711,28.06618],[-96.82713,28.06538],[-96.82714,28.06458],[-96.82716,28.06379],[-96.82718,28.06299],[-96.82719,28.06219],[-96.82721,28.06139],[-96.82815,28.06141],[-96.82909,28.06142],[-96.83002,28.06144],[-96.83096,28.06145],[-96.8319,28.06147],[-96.83284,28.06149],[-96.83378,28.0615],[-96.83472,28.06152],[-96.83566,28.06153],[-96.8366,28.06155],[-96.83753,28.06156],[-96.83847,28.06158],[-96.83941,28.06159],[-96.84035,28.06161],[-96.84129,28.06162],[-96.84223,28.06164],[-96.84251,28.06164],[-96.84252,28.06093],[-96.84254,28.06013],[-96.84255,28.05933],[-96.84257,28.05853],[-96.84259,28.05774],[-96.8426,28.05694],[-96.84262,28.05614],[-96.84264,28.05534],[-96.84265,28.05455],[-96.84267,28.05375],[-96.84269,28.05295],[-96.8427,28.05215],[-96.84272,28.05135],[-96.84274,28.05056],[-96.84275,28.04976],[-96.84277,28.04896],[-96.84279,28.04816],[-96.8428,28.04737],[-96.84282,28.04657],[-96.84284,28.04577],[-96.84377,28.04579],[-96.84471,28.0458],[-96.84565,28.04582],[-96.84659,28.04583],[-96.84753,28.04585],[-96.84847,28.04586],[-96.84941,28.04588],[-96.85034,28.04589],[-96.85128,28.04591],[-96.85222,28.04592],[-96.85316,28.04594],[-96.8541,28.04595],[-96.85504,28.04597],[-96.85598,28.04598],[-96.85691,28.046],[-96.85785,28.04602],[-96.85813,28.04602],[-96.85815,28.0453],[-96.85816,28.04451],[-96.85818,28.04371],[-96.8582,28.04291],[-96.85821,28.04211],[-96.85823,28.04132],[-96.85825,28.04052],[-96.85826,28.03972],[-96.85828,28.03892],[-96.8583,28.03813],[-96.85831,28.03733],[-96.85833,28.03653],[-96.85835,28.03573],[-96.85836,28.03494],[-96.85838,28.03414],[-96.8584,28.03334],[-96.85841,28.03254],[-96.85843,28.03175],[-96.85844,28.03095],[-96.85846,28.03015],[-96.8594,28.03017],[-96.86034,28.03018],[-96.86128,28.0302],[-96.86221,28.03021],[-96.86315,28.03023],[-96.86409,28.03024],[-96.86503,28.03026],[-96.86597,28.03027],[-96.86691,28.03029],[-96.86784,28.0303],[-96.86878,28.03032],[-96.86972,28.03033],[-96.87066,28.03035],[-96.8716,28.03036],[-96.87253,28.03038],[-96.87347,28.03039],[-96.87408,28.0304],[-96.87408,28.03016],[-96.87502,28.03017],[-96.87596,28.03019],[-96.8769,28.0302],[-96.87784,28.03022],[-96.87878,28.03023],[-96.87971,28.03025],[-96.88065,28.03026],[-96.88159,28.03028],[-96.88253,28.03029],[-96.88347,28.03031],[-96.8844,28.03032],[-96.88534,28.03034],[-96.88628,28.03035],[-96.88722,28.03037],[-96.88816,28.03038],[-96.8891,28.0304],[-96.88939,28.0304],[-96.8894,28.02969],[-96.88942,28.02889],[-96.88943,28.02809],[-96.88945,28.02729],[-96.88946,28.0265],[-96.88948,28.0257],[-96.8895,28.0249],[-96.88951,28.0241],[-96.88953,28.0233],[-96.88955,28.02251],[-96.88956,28.02171],[-96.88958,28.02091],[-96.88959,28.02011],[-96.88961,28.01931],[-96.88963,28.01852],[-96.88964,28.01772],[-96.88966,28.01692],[-96.88967,28.01645],[-96.88935,28.01645],[-96.88937,28.01565],[-96.88939,28.01485],[-96.8894,28.01406],[-96.88942,28.01326],[-96.88943,28.01246],[-96.88945,28.01166],[-96.88947,28.01087],[-96.88948,28.01007],[-96.8895,28.00927],[-96.88952,28.00847],[-96.88953,28.00768],[-96.88955,28.00688],[-96.88956,28.00608],[-96.88958,28.00528],[-96.8896,28.00448],[-96.88961,28.00369],[-96.88963,28.00289],[-96.88964,28.00209],[-96.88966,28.00129],[-96.88968,28.0005],[-96.88969,27.9997],[-96.88971,27.9989],[-96.89065,27.99892],[-96.89159,27.99893],[-96.89252,27.99895],[-96.89346,27.99896],[-96.8944,27.99898],[-96.89534,27.99899],[-96.89628,27.99901],[-96.89722,27.99902],[-96.89815,27.99904],[-96.89909,27.99905],[-96.90003,27.99907],[-96.90097,27.99908],[-96.90191,27.9991],[-96.90284,27.99911],[-96.90378,27.99913],[-96.90472,27.99914],[-96.90501,27.99915],[-96.90503,27.99843],[-96.90504,27.99763],[-96.90506,27.99684],[-96.90508,27.99604],[-96.90509,27.99524],[-96.90511,27.99444],[-96.90512,27.99365],[-96.90514,27.99285],[-96.90516,27.99205],[-96.90517,27.99125],[-96.90519,27.99046],[-96.9052,27.98966],[-96.90522,27.98886],[-96.90524,27.98806],[-96.90525,27.98727],[-96.90527,27.98647],[-96.90529,27.98567],[-96.9053,27.98487],[-96.90532,27.98408],[-96.90533,27.98328],[-96.90627,27.9833],[-96.90721,27.98331],[-96.90815,27.98332],[-96.90909,27.98334],[-96.91002,27.98335],[-96.91096,27.98337],[-96.9119,27.98338],[-96.91284,27.9834],[-96.91378,27.98341],[-96.91471,27.98343],[-96.91565,27.98344],[-96.91659,27.98346],[-96.91753,27.98347],[-96.91847,27.98349],[-96.9194,27.9835],[-96.92034,27.98352],[-96.92064,27.98352],[-96.92065,27.98281],[-96.92067,27.98201],[-96.92069,27.98121],[-96.9207,27.98041],[-96.92072,27.97962],[-96.92073,27.97882],[-96.92075,27.97802],[-96.92077,27.97722],[-96.92078,27.97643],[-96.9208,27.97563],[-96.92081,27.97483],[-96.92083,27.97403],[-96.92085,27.97324],[-96.92086,27.97244],[-96.92088,27.97164],[-96.92089,27.97084],[-96.92091,27.97005],[-96.92093,27.96925],[-96.92094,27.96845],[-96.92096,27.96765],[-96.9219,27.96767],[-96.92283,27.96768],[-96.92377,27.9677],[-96.92471,27.96771],[-96.92565,27.96773],[-96.92659,27.96774],[-96.92752,27.96776],[-96.92846,27.96777],[-96.9294,27.96779],[-96.93034,27.9678],[-96.93127,27.96782],[-96.93221,27.96783],[-96.93315,27.96785],[-96.93409,27.96786],[-96.93503,27.96788],[-96.93596,27.96789],[-96.93658,27.9679],[-96.93658,27.96766],[-96.93752,27.96767],[-96.93846,27.96769],[-96.9394,27.9677],[-96.94033,27.96772],[-96.94127,27.96773],[-96.94221,27.96775],[-96.94315,27.96776],[-96.94409,27.96778],[-96.94502,27.96779],[-96.94596,27.9678],[-96.9469,27.96782],[-96.94784,27.96783],[-96.94877,27.96785],[-96.94971,27.96786],[-96.95065,27.96788],[-96.95159,27.96789],[-96.9519,27.9679],[-96.95191,27.96718],[-96.95192,27.96639],[-96.95194,27.96559],[-96.95196,27.96479],[-96.95197,27.96399],[-96.95199,27.9632],[-96.952,27.9624],[-96.95202,27.9616],[-96.95203,27.9608],[-96.95205,27.96001],[-96.95207,27.95921],[-96.95208,27.95841],[-96.9521,27.95762],[-96.95211,27.95682],[-96.95213,27.95602],[-96.95215,27.95522],[-96.95216,27.95443],[-96.95217,27.95395],[-96.95186,27.95395],[-96.95188,27.95315],[-96.95189,27.95235],[-96.95191,27.95156],[-96.95193,27.95076],[-96.95194,27.94996],[-96.95196,27.94917],[-96.95197,27.94837],[-96.95199,27.94757],[-96.95201,27.94677],[-96.95202,27.94598],[-96.95204,27.94518],[-96.95205,27.94438],[-96.95207,27.94358],[-96.95208,27.94279],[-96.9521,27.94199],[-96.95212,27.94119],[-96.95213,27.9404],[-96.95215,27.9396],[-96.95216,27.9388],[-96.95218,27.938],[-96.95219,27.93721],[-96.95221,27.93641],[-96.95315,27.93642],[-96.95408,27.93644],[-96.95502,27.93645],[-96.95596,27.93647],[-96.9569,27.93648],[-96.95784,27.9365],[-96.95877,27.93651],[-96.95971,27.93653],[-96.96065,27.93654],[-96.96159,27.93656],[-96.96252,27.93657],[-96.96346,27.93658],[-96.9644,27.9366],[-96.96534,27.93661],[-96.96627,27.93663],[-96.96721,27.93664],[-96.96753,27.93665],[-96.96754,27.93593],[-96.96755,27.93514],[-96.96757,27.93434],[-96.96759,27.93354],[-96.9676,27.93274],[-96.96762,27.93195],[-96.96763,27.93115],[-96.96765,27.93035],[-96.96766,27.92956],[-96.96768,27.92876],[-96.9677,27.92796],[-96.96771,27.92716],[-96.96773,27.92637],[-96.96774,27.92557],[-96.96776,27.92477],[-96.96777,27.92398],[-96.96779,27.92318],[-96.9678,27.92238],[-96.96782,27.92158],[-96.96784,27.92079],[-96.96877,27.9208],[-96.96971,27.92082],[-96.97065,27.92083],[-96.97159,27.92085],[-96.97252,27.92086],[-96.97346,27.92087],[-96.9744,27.92089],[-96.97534,27.9209],[-96.97627,27.92092],[-96.97721,27.92093],[-96.97815,27.92095],[-96.97909,27.92096],[-96.98002,27.92097],[-96.98096,27.92099],[-96.9819,27.921],[-96.98284,27.92102],[-96.98315,27.92102],[-96.98317,27.92031],[-96.98318,27.91951],[-96.9832,27.91871],[-96.98321,27.91792],[-96.98323,27.91712],[-96.98324,27.91632],[-96.98326,27.91553],[-96.98327,27.91473],[-96.98329,27.91393],[-96.98331,27.91313],[-96.98332,27.91234],[-96.98334,27.91154],[-96.98335,27.91074],[-96.98337,27.90995],[-96.98338,27.90915],[-96.9834,27.90835],[-96.98341,27.90755],[-96.98343,27.90676],[-96.98344,27.90596],[-96.98346,27.90516],[-96.9844,27.90518],[-96.98533,27.90519],[-96.98627,27.90521],[-96.98721,27.90522],[-96.98815,27.90523],[-96.98908,27.90525],[-96.99002,27.90526],[-96.99096,27.90528],[-96.9919,27.90529],[-96.99283,27.90531],[-96.99377,27.90532],[-96.99471,27.90533],[-96.99565,27.90535],[-96.99658,27.90536],[-96.99752,27.90538],[-96.99846,27.90539],[-96.99878,27.9054],[-96.99879,27.90468],[-96.99881,27.90389],[-96.99882,27.90309],[-96.99884,27.90229],[-96.99885,27.9015],[-96.99887,27.9007],[-96.99888,27.8999],[-96.9989,27.8991],[-96.99891,27.89831],[-96.99893,27.89751],[-96.99895,27.89671],[-96.99896,27.89592],[-96.99898,27.89512],[-96.99899,27.89432],[-96.99901,27.89353],[-96.99902,27.89273],[-96.99904,27.89193],[-96.99905,27.89113],[-96.99907,27.89034],[-96.99908,27.88954],[-97.00002,27.88955],[-97.00096,27.88957],[-97.00189,27.88958],[-97.00283,27.8896],[-97.00377,27.88961],[-97.00471,27.88963],[-97.00564,27.88964],[-97.00658,27.88965],[-97.00752,27.88967],[-97.00846,27.88968],[-97.00939,27.8897],[-97.01033,27.88971],[-97.01127,27.88972],[-97.0122,27.88974],[-97.01314,27.88975],[-97.01408,27.88977],[-97.0144,27.88977],[-97.01442,27.88906],[-97.01443,27.88826],[-97.01445,27.88746],[-97.01446,27.88667],[-97.01448,27.88587],[-97.01449,27.88507],[-97.01451,27.88428],[-97.01452,27.88348],[-97.01454,27.88268],[-97.01456,27.88189],[-97.01457,27.88109],[-97.01459,27.88029],[-97.0146,27.8795],[-97.01462,27.8787],[-97.01463,27.8779],[-97.01465,27.87711],[-97.01466,27.87631],[-97.01467,27.87583],[-97.01437,27.87582],[-97.01439,27.87503],[-97.0144,27.87423],[-97.01442,27.87343],[-97.01443,27.87264],[-97.01445,27.87184],[-97.01447,27.87104],[-97.01448,27.87025],[-97.0145,27.86945],[-97.01451,27.86865],[-97.01453,27.86786],[-97.01454,27.86706],[-97.01456,27.86626],[-97.01457,27.86547],[-97.01459,27.86467],[-97.0146,27.86387],[-97.01462,27.86307],[-97.01463,27.86228],[-97.01465,27.86148],[-97.01466,27.86068],[-97.01468,27.85989],[-97.01469,27.85909],[-97.01471,27.85829],[-97.01565,27.85831],[-97.01658,27.85832],[-97.01752,27.85834],[-97.01846,27.85835],[-97.01939,27.85836],[-97.02033,27.85838],[-97.02127,27.85839],[-97.02221,27.85841],[-97.02314,27.85842],[-97.02408,27.85843],[-97.02502,27.85845],[-97.02595,27.85846],[-97.02689,27.85848],[-97.02783,27.85849],[-97.02876,27.8585],[-97.0297,27.85852],[-97.03004,27.85852],[-97.03005,27.85781],[-97.03006,27.85701],[-97.03008,27.85622],[-97.03009,27.85542],[-97.03011,27.85462],[-97.03012,27.85383],[-97.03014,27.85303],[-97.03015,27.85223],[-97.03017,27.85144],[-97.03018,27.85064],[-97.0302,27.84984],[-97.03021,27.84904],[-97.03023,27.84825],[-97.03025,27.84745],[-97.03026,27.84665],[-97.03028,27.84586],[-97.03029,27.84506],[-97.03031,27.84426],[-97.03032,27.84347],[-97.03034,27.84267],[-97.03127,27.84268],[-97.03221,27.8427],[-97.03315,27.84271],[-97.03408,27.84273],[-97.03502,27.84274],[-97.03596,27.84275],[-97.03689,27.84277],[-97.03783,27.84278],[-97.03877,27.8428],[-97.0397,27.84281],[-97.04064,27.84282],[-97.04158,27.84284],[-97.04251,27.84285],[-97.04345,27.84287],[-97.04439,27.84288],[-97.04532,27.84289],[-97.04595,27.8429],[-97.04596,27.84267],[-97.04689,27.84269],[-97.04783,27.8427],[-97.04877,27.84271],[-97.0497,27.84273],[-97.05064,27.84274],[-97.05158,27.84275],[-97.05252,27.84277],[-97.05345,27.84278],[-97.05439,27.8428],[-97.05533,27.84281],[-97.05626,27.84282],[-97.0572,27.84284],[-97.05814,27.84285],[-97.05907,27.84287],[-97.06001,27.84288],[-97.06095,27.84289],[-97.06188,27.84291],[-97.06282,27.84292],[-97.06376,27.84293]]],"terms_url":"https://data.tnris.org/collection/bfdb7a76-a36c-4e9b-ba18-e8c8b259ed91","terms_text":"Strategic Mapping Program (StratMap). San Antonio River Authority Imagery, 2016-08-01"},{"id":"SanJuanMetroAreaUSACEOrthophotos","name":"San Juan Metro Area: 2013 USACE Orthophotos","type":"tms","template":"http://imagery-pr-usace-2013.s3-website-us-east-1.amazonaws.com/tiles/{zoom}/{x}/{y}.jpg","endDate":"2013-03-15T00:00:00.000Z","startDate":"2013-03-13T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-66.15007,18.35002],[-66.03337,18.35002],[-66.03328,18.45634],[-66.05464,18.45636],[-66.05463,18.46542],[-66.08303,18.46544],[-66.08302,18.47451],[-66.13034,18.47455],[-66.13034,18.4796],[-66.13983,18.47961],[-66.13984,18.46557],[-66.14995,18.46558],[-66.15007,18.35002]]]},{"id":"GEOSN-DOP-2005","name":"Saxony historical aerial imagery 2005","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop-2005/guest?LAYERS=dop_2005&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2005-01-01T00:00:00.000Z","startDate":"2005-01-01T00:00:00.000Z","polygon":[[[13.86571,50.71509],[13.86683,50.73012],[13.90116,50.73012],[13.90184,50.74446],[13.91043,50.74446],[13.91043,50.77378],[13.95266,50.77486],[13.95197,50.78897],[13.99969,50.78941],[13.999,50.79831],[14.16715,50.79762],[14.1747,50.8462],[14.32851,50.84534],[14.33503,50.87643],[14.41674,50.876],[14.41674,50.95025],[14.33263,50.95133],[14.3364,50.99802],[14.58188,50.99608],[14.57742,50.94895],[14.54068,50.95003],[14.54446,50.89831],[14.60557,50.89116],[14.60454,50.83439],[14.6605,50.83352],[14.65673,50.79578],[14.83422,50.79469],[14.84727,50.89138],[14.9204,50.88943],[14.9331,50.99478],[14.99902,50.99673],[15.00142,51.09709],[15.04159,51.09709],[15.04228,51.35317],[14.99696,51.35317],[15.00314,51.49959],[14.91593,51.50301],[14.91662,51.55043],[14.74908,51.55129],[14.75114,51.60121],[14.41056,51.59993],[14.41125,51.55129],[14.07891,51.54915],[14.07479,51.49831],[13.99446,51.50002],[13.99446,51.39817],[13.53921,51.39989],[13.53852,51.42516],[13.50041,51.42505],[13.50179,51.44945],[13.41596,51.45094],[13.41699,51.50013],[13.3315,51.50055],[13.33047,51.44966],[13.24945,51.44987],[13.25116,51.60036],[13.16773,51.60057],[13.16739,51.65023],[13.08328,51.65066],[13.08362,51.69941],[12.66202,51.70027],[12.66065,51.64832],[12.4162,51.65045],[12.41345,51.60057],[12.16146,51.60015],[12.16146,51.50109],[12.07631,51.50023],[12.07974,51.39625],[12.16008,51.39753],[12.16214,51.34995],[12.07906,51.35253],[12.07906,51.24562],[12.16214,51.24691],[12.16352,51.0958],[12.24317,51.09709],[12.2454,51.04813],[12.49688,51.04883],[12.49894,50.89966],[12.33346,50.89923],[12.32797,50.84984],[12.20712,50.8494],[12.20506,50.69829],[12.24694,50.69744],[12.24694,50.65023],[11.91529,50.64849],[11.91598,50.59839],[11.83221,50.59817],[11.83255,50.39922],[11.91495,50.39922],[11.91461,50.34886],[11.99486,50.34659],[11.99838,50.29897],[12.16506,50.29912],[12.16549,50.24904],[12.23673,50.24871],[12.24823,50.24212],[12.24772,50.14904],[12.33149,50.14893],[12.33852,50.19335],[12.33286,50.23927],[12.3538,50.23619],[12.35998,50.24926],[12.41457,50.24948],[12.41594,50.29906],[12.49851,50.29874],[12.49834,50.34948],[12.58142,50.34915],[12.58125,50.39896],[12.69489,50.39962],[12.70622,50.39426],[12.71257,50.39875],[13.0813,50.39907],[13.0813,50.4992],[13.24816,50.49898],[13.24884,50.54809],[13.33124,50.54918],[13.33056,50.59911],[13.50908,50.59759],[13.50462,50.62656],[13.5393,50.62635],[13.53827,50.65481],[13.54633,50.65547],[13.54599,50.66983],[13.5544,50.67027],[13.55457,50.68908],[13.54736,50.68887],[13.54582,50.69969],[13.63886,50.69947],[13.63955,50.71425],[13.86571,50.71509]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=3f38c3f3-03db-4a2a-b6da-2704b9a1d5f0","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DOP-2012_2014","name":"Saxony historical aerial imagery 2012-2014","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop_2012_2014/guest?LAYERS=dop_2012_2014_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[13.86571,50.71509],[13.86683,50.73012],[13.90116,50.73012],[13.90184,50.74446],[13.91043,50.74446],[13.91043,50.77378],[13.95266,50.77486],[13.95197,50.78897],[13.99969,50.78941],[13.999,50.79831],[14.16715,50.79762],[14.1747,50.8462],[14.32851,50.84534],[14.33503,50.87643],[14.41674,50.876],[14.41674,50.95025],[14.33263,50.95133],[14.3364,50.99802],[14.58188,50.99608],[14.57742,50.94895],[14.54068,50.95003],[14.54446,50.89831],[14.60557,50.89116],[14.60454,50.83439],[14.6605,50.83352],[14.65673,50.79578],[14.83422,50.79469],[14.84727,50.89138],[14.9204,50.88943],[14.9331,50.99478],[14.99902,50.99673],[15.00142,51.09709],[15.04159,51.09709],[15.04228,51.35317],[14.99696,51.35317],[15.00314,51.49959],[14.91593,51.50301],[14.91662,51.55043],[14.74908,51.55129],[14.75114,51.60121],[14.41056,51.59993],[14.41125,51.55129],[14.07891,51.54915],[14.07479,51.49831],[13.99446,51.50002],[13.99446,51.39817],[13.53921,51.39989],[13.53852,51.42516],[13.50041,51.42505],[13.50179,51.44945],[13.41596,51.45094],[13.41699,51.50013],[13.3315,51.50055],[13.33047,51.44966],[13.24945,51.44987],[13.25116,51.60036],[13.16773,51.60057],[13.16739,51.65023],[13.08328,51.65066],[13.08362,51.69941],[12.66202,51.70027],[12.66065,51.64832],[12.4162,51.65045],[12.41345,51.60057],[12.16146,51.60015],[12.16146,51.50109],[12.07631,51.50023],[12.07974,51.39625],[12.16008,51.39753],[12.16214,51.34995],[12.07906,51.35253],[12.07906,51.24562],[12.16214,51.24691],[12.16352,51.0958],[12.24317,51.09709],[12.2454,51.04813],[12.49688,51.04883],[12.49894,50.89966],[12.33346,50.89923],[12.32797,50.84984],[12.20712,50.8494],[12.20506,50.69829],[12.24694,50.69744],[12.24694,50.65023],[11.91529,50.64849],[11.91598,50.59839],[11.83221,50.59817],[11.83255,50.39922],[11.91495,50.39922],[11.91461,50.34886],[11.99486,50.34659],[11.99838,50.29897],[12.16506,50.29912],[12.16549,50.24904],[12.23673,50.24871],[12.24823,50.24212],[12.24772,50.14904],[12.33149,50.14893],[12.33852,50.19335],[12.33286,50.23927],[12.3538,50.23619],[12.35998,50.24926],[12.41457,50.24948],[12.41594,50.29906],[12.49851,50.29874],[12.49834,50.34948],[12.58142,50.34915],[12.58125,50.39896],[12.69489,50.39962],[12.70622,50.39426],[12.71257,50.39875],[13.0813,50.39907],[13.0813,50.4992],[13.24816,50.49898],[13.24884,50.54809],[13.33124,50.54918],[13.33056,50.59911],[13.50908,50.59759],[13.50462,50.62656],[13.5393,50.62635],[13.53827,50.65481],[13.54633,50.65547],[13.54599,50.66983],[13.5544,50.67027],[13.55457,50.68908],[13.54736,50.68887],[13.54582,50.69969],[13.63886,50.69947],[13.63955,50.71425],[13.86571,50.71509]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=8c276e3c-88af-462f-8128-6900bc7dd4f8","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DOP-RGB","name":"Saxony latest aerial imagery","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop-rgb/guest?LAYERS=sn_dop_020&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DOP-CIR","name":"Saxony latest aerial imagery infrared","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop-cir/guest?LAYERS=sn_dop_020_cir&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=ba87bbed-4cb5-4539-a9f5-f863de752f52","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DTK","name":"Saxony topographic map","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dtk-pg-color/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dtk_pg_color&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=d6d24c6d-94ea-447d-8a0c-40afdedeb5c6","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-WebAtlas","name":"Saxony WebAtlasSN","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_webatlas-sn/guest?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vegetation,Siedlung,Gewaesser,Verkehr,Administrative_Einheiten,Beschriftung&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=475a9197-620f-4dcb-b8aa-7f71b626443f","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"Geodatastyrelsen_Denmark","name":"SDFE aerial imagery","type":"tms","template":"https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg","zoomExtent":[0,21],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_url":"https://download.kortforsyningen.dk/content/vilkaar-og-betingelser","terms_text":"Geodatastyrelsen og Danske Kommuner","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Geodatastyrelsen_Cadastral_Parcels_INSPIRE_View","name":"SDFE Cadastral Parcels INSPIRE View","type":"wms","template":"https://kortforsyningen.kms.dk/cp_inspire?LAYERS=CP.CadastralParcel&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LOGIN=OpenStreetMapDK2015&PASSWORD=Gall4Peters","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Geodatastyrelsen_DTK_Kort25","name":"SDFE DTK Kort25","type":"wms","template":"https://kortforsyningen.kms.dk/topo25?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=topo25_klassisk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Geodatastyrelsen_Skaermkort","name":"SDFE Skærmkort","type":"wms","template":"https://kortforsyningen.kms.dk/topo_skaermkort?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=dtk_skaermkort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"SDFE_Overflade_Skyggekort_40cm","name":"SDFE Surface Shadow Map (40 cm)","type":"wms","template":"https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_overflade_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"SDFE_Terraen_Skyggekort_40cm","name":"SDFE Terrain Shadow Map (40 cm)","type":"wms","template":"https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_terraen_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Sicily-ATA2007","name":"Sicily - Italy","type":"wms","template":"http://map.sitr.regione.sicilia.it/ArcGIS/services/WGS84_F33/Ortofoto_ATA20072008_f33/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=default&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[15.71165,38.25894],[15.23718,38.81938],[14.27124,38.55246],[13.15063,38.75408],[11.96411,37.97451],[12.52441,37.54022],[11.87897,36.79609],[12.49695,35.47409],[12.68921,35.46962],[14.57336,36.66401],[15.29709,36.62875],[15.39854,37.42171],[15.71165,38.25894]]]},{"id":"Siemianowice_Slaskie-buildings","name":"Siemianowice Śląskie: Buildings","type":"wms","template":"https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,drogi,adresy,ulice&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[19.03103,50.33933],[19.0316,50.35413],[19.0656,50.35373],[19.06529,50.34219],[19.06118,50.33749],[19.06069,50.31967],[19.05603,50.31975],[19.05562,50.30155],[19.06432,50.3015],[19.06366,50.27175],[19.04379,50.27179],[19.04375,50.27478],[19.0213,50.27505],[19.02156,50.28398],[19.01027,50.28856],[18.98791,50.28871],[18.98822,50.3022],[18.98143,50.30226],[18.98213,50.33977],[19.03103,50.33933]]],"terms_text":"Urząd Miasta Siemianowice Śląskie"},{"id":"Siemianowice_Slaskie-aerial_image","name":"Siemianowice Śląskie: Orthophotomap (aerial image)","type":"wms","template":"https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[19.03103,50.33933],[19.0316,50.35413],[19.0656,50.35373],[19.06529,50.34219],[19.06118,50.33749],[19.06069,50.31967],[19.05603,50.31975],[19.05562,50.30155],[19.06432,50.3015],[19.06366,50.27175],[19.04379,50.27179],[19.04375,50.27478],[19.0213,50.27505],[19.02156,50.28398],[19.01027,50.28856],[18.98791,50.28871],[18.98822,50.3022],[18.98143,50.30226],[18.98213,50.33977],[19.03103,50.33933]]],"terms_text":"Urząd Miasta Siemianowice Śląskie"},{"id":"sc2012","name":"SIG Santa Catarina OrtoRGB 2012","type":"wms","template":"http://sigsc.sc.gov.br/sigserver/SIGSC/wms?LAYERS=OrtoRGB-Landsat-2012&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[-48.62488,-26.91624],[-48.62416,-26.83409],[-48.56163,-26.83412],[-48.56165,-26.74919],[-48.62675,-26.74918],[-48.62715,-26.73276],[-48.64126,-26.733],[-48.64174,-26.70912],[-48.62414,-26.70913],[-48.62418,-26.50079],[-48.57099,-26.50077],[-48.57155,-26.47415],[-48.55418,-26.47381],[-48.5545,-26.45736],[-48.56155,-26.45747],[-48.56161,-26.41746],[-48.4991,-26.41747],[-48.49909,-26.25081],[-48.43664,-26.25079],[-48.43661,-26.20752],[-48.4601,-26.20751],[-48.46195,-26.1242],[-48.56161,-26.12419],[-48.56163,-25.95753],[-48.62411,-25.95753],[-48.62411,-25.94507],[-48.68838,-25.94607],[-48.6884,-25.95752],[-49.25089,-25.95752],[-49.2509,-25.9992],[-49.31339,-25.9992],[-49.31338,-26.0825],[-49.37591,-26.0825],[-49.37591,-26.12419],[-49.50093,-26.12418],[-49.50092,-26.16586],[-49.68661,-26.16585],[-49.68661,-26.12417],[-49.74907,-26.08246],[-49.74908,-26.04084],[-49.8116,-26.04085],[-49.81159,-25.99918],[-49.93657,-25.99915],[-49.93661,-25.98244],[-50.00091,-25.98288],[-50.00094,-25.99915],[-50.31338,-25.99916],[-50.31342,-26.04083],[-50.37411,-26.04084],[-50.3741,-25.9992],[-50.49914,-25.99918],[-50.49911,-25.98414],[-50.62593,-25.98452],[-50.62595,-26.04084],[-50.6884,-26.04161],[-50.68845,-26.12416],[-50.75094,-26.12414],[-50.75095,-26.20752],[-51.12595,-26.20747],[-51.12595,-26.24913],[-51.18848,-26.24918],[-51.31344,-26.33245],[-51.31347,-26.62414],[-51.4366,-26.62415],[-51.43659,-26.56476],[-51.62409,-26.5641],[-51.62411,-26.5408],[-51.99907,-26.5408],[-52.06158,-26.49911],[-52.06158,-26.45747],[-52.12408,-26.45749],[-52.12406,-26.41579],[-52.37407,-26.4158],[-52.37409,-26.39133],[-52.56156,-26.3894],[-52.56158,-26.37415],[-52.62408,-26.37417],[-52.62409,-26.33247],[-53.12408,-26.33247],[-53.1241,-26.31707],[-53.1618,-26.3165],[-53.16136,-26.29082],[-53.18656,-26.29083],[-53.24907,-26.24911],[-53.24906,-26.23919],[-53.31159,-26.23824],[-53.3741,-26.22882],[-53.43845,-26.22777],[-53.43843,-26.24914],[-53.5616,-26.24916],[-53.56159,-26.23983],[-53.65501,-26.23814],[-53.65623,-26.29263],[-53.67011,-26.31684],[-53.68846,-26.33242],[-53.70322,-26.3741],[-53.70929,-26.38449],[-53.7098,-26.39568],[-53.70619,-26.40722],[-53.70721,-26.45927],[-53.71438,-26.46168],[-53.71476,-26.48118],[-53.73047,-26.49913],[-53.73146,-26.54081],[-53.75096,-26.5408],[-53.75095,-26.62417],[-53.7602,-26.62414],[-53.76125,-26.6675],[-53.75098,-26.66751],[-53.75096,-26.74298],[-53.72737,-26.7434],[-53.72133,-26.74905],[-53.72141,-26.75093],[-53.74571,-26.75943],[-53.74612,-26.77704],[-53.71948,-26.77755],[-53.72084,-26.83416],[-53.70047,-26.83414],[-53.70277,-26.93108],[-53.71168,-26.93091],[-53.71224,-26.95557],[-53.751,-26.95479],[-53.75092,-26.99915],[-53.76467,-26.99915],[-53.8037,-27.03751],[-53.80454,-27.07258],[-53.80809,-27.07249],[-53.80862,-27.09613],[-53.8269,-27.09577],[-53.82762,-27.12414],[-53.84644,-27.12413],[-53.84765,-27.17014],[-53.83506,-27.18932],[-53.83536,-27.20054],[-53.68847,-27.20284],[-53.68849,-27.22789],[-53.43654,-27.23246],[-53.43655,-27.16751],[-53.37598,-27.16751],[-53.37601,-27.23352],[-53.24905,-27.23564],[-53.24905,-27.20922],[-53.06344,-27.20918],[-53.06345,-27.2334],[-52.81348,-27.23685],[-52.81346,-27.27653],[-52.75096,-27.27732],[-52.75096,-27.29249],[-52.4385,-27.29252],[-52.43848,-27.32689],[-52.37603,-27.32753],[-52.37599,-27.3342],[-52.25098,-27.33418],[-52.25099,-27.34669],[-52.18655,-27.34728],[-52.18657,-27.33419],[-52.12598,-27.3342],[-52.12599,-27.36413],[-52.02979,-27.36489],[-52.03036,-27.42442],[-51.97534,-27.42479],[-51.97603,-27.50088],[-51.93845,-27.50085],[-51.93845,-27.54252],[-51.68846,-27.54247],[-51.68847,-27.55742],[-51.59903,-27.5579],[-51.59923,-27.59481],[-51.56351,-27.59498],[-51.56348,-27.62586],[-51.50088,-27.62586],[-51.50095,-27.66754],[-51.43937,-27.6675],[-51.43954,-27.70932],[-51.37597,-27.7095],[-51.37601,-27.75089],[-51.31349,-27.7509],[-51.31346,-27.79253],[-51.18847,-27.79251],[-51.18848,-27.87586],[-51.12598,-27.87586],[-51.12597,-27.91752],[-51.06348,-27.9175],[-51.06347,-27.95919],[-51.00095,-28.00086],[-50.9385,-28.00086],[-50.93849,-28.16755],[-50.81346,-28.16752],[-50.81345,-28.29253],[-50.75096,-28.29251],[-50.68845,-28.33418],[-50.68849,-28.41754],[-50.626,-28.41752],[-50.56352,-28.44094],[-50.43848,-28.44051],[-50.43847,-28.45917],[-50.37597,-28.45921],[-50.37598,-28.47554],[-50.18844,-28.47454],[-50.18849,-28.51143],[-50.12398,-28.51104],[-50.12402,-28.50086],[-49.87597,-28.50085],[-49.87601,-28.5142],[-49.81347,-28.51369],[-49.81347,-28.58255],[-49.83003,-28.58251],[-49.82951,-28.62597],[-49.8759,-28.66572],[-50.001,-28.74915],[-50.001,-29.04083],[-50.03319,-29.04081],[-50.03219,-29.14711],[-50.12602,-29.14774],[-50.12598,-29.16579],[-50.13613,-29.16581],[-50.1885,-29.19623],[-50.1885,-29.31905],[-50.1422,-29.31873],[-50.14208,-29.33422],[-50.126,-29.33418],[-50.12599,-29.36238],[-49.99906,-29.36153],[-49.99904,-29.24031],[-49.93848,-29.23986],[-49.93851,-29.25087],[-49.87601,-29.25087],[-49.876,-29.30098],[-49.82262,-29.30052],[-49.82227,-29.33419],[-49.81347,-29.33422],[-49.81354,-29.3411],[-49.68654,-29.33991],[-49.68651,-29.29255],[-49.62399,-29.29252],[-49.62398,-29.25085],[-49.56149,-29.25083],[-49.56145,-29.16749],[-49.49901,-29.16746],[-49.49902,-29.08419],[-49.4365,-29.08418],[-49.43651,-29.04251],[-49.37405,-29.04248],[-49.37402,-28.9592],[-49.31153,-28.95917],[-49.31152,-28.91749],[-49.24898,-28.9175],[-49.24897,-28.87582],[-49.18655,-28.87585],[-49.18653,-28.83414],[-49.12402,-28.83418],[-49.12401,-28.7925],[-49.06149,-28.79247],[-49.06146,-28.75084],[-48.99903,-28.75085],[-48.99903,-28.70919],[-48.93658,-28.70918],[-48.93658,-28.66752],[-48.87405,-28.66751],[-48.87404,-28.62585],[-48.74912,-28.62585],[-48.74912,-28.54254],[-48.68656,-28.54253],[-48.68658,-28.33417],[-48.62408,-28.33416],[-48.62406,-28.08418],[-48.5616,-28.08418],[-48.56159,-27.95919],[-48.49905,-27.95916],[-48.49904,-27.91581],[-48.56157,-27.9158],[-48.5616,-27.87584],[-48.49902,-27.87586],[-48.49902,-27.83422],[-48.43657,-27.83418],[-48.43661,-27.62583],[-48.37406,-27.62585],[-48.37405,-27.50086],[-48.31157,-27.50086],[-48.31153,-27.24913],[-48.43657,-27.24913],[-48.43654,-27.20916],[-48.37402,-27.2092],[-48.37405,-27.1658],[-48.43656,-27.1658],[-48.43656,-27.12415],[-48.49906,-27.12413],[-48.49907,-27.08667],[-48.50022,-27.08666],[-48.50031,-27.08247],[-48.5616,-27.08248],[-48.56159,-27.04252],[-48.49906,-27.04252],[-48.49906,-26.99913],[-48.56156,-26.99913],[-48.56157,-26.91579],[-48.62488,-26.91624]]],"terms_url":"http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf","terms_text":"Sistema de Informações Geográficas - Governo de Santa Catarina"},{"id":"SIGIP-2012","name":"SIGIP - Orthophoto 2012","type":"tms","template":"https://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[6.71057,46.54396],[6.72968,46.54408],[6.72995,46.52605],[6.71085,46.52596],[6.71113,46.50796],[6.6922,46.50788],[6.6923,46.49883],[6.63531,46.49847],[6.63488,46.52547],[6.65381,46.52558],[6.65361,46.54358],[6.69163,46.54384],[6.69155,46.55284],[6.71047,46.55293],[6.71057,46.54396]]],"terms_url":"https://www.sigip.ch/","terms_text":"SIGIP"},{"id":"Singapore-Landlot","name":"Singapore Landlot","type":"wms","template":"https://mapservices.onemap.sg/mapproxy/service?LAYERS=singapore_landlot_wmts&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"terms_url":"https://www.onemap.sg/legal/opendatalicence.html","terms_text":"©OneMap Singapore ODL v1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png"},{"id":"Singapore-OneMap","name":"Singapore OneMap","type":"wms","template":"https://mapservices.onemap.sg/mapproxy/service?LAYERS=singapore_3414_wms&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"terms_url":"https://www.onemap.sg/legal/opendatalicence.html","terms_text":"©OneMap Singapore ODL v1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png"},{"id":"Slovakia-Historic-Maps","name":"Slovakia Historic Maps","type":"tms","template":"https://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png","zoomExtent":[0,12],"polygon":[[[16.81969,47.49272],[16.81969,49.50303],[22.83883,49.50303],[22.83883,47.49272],[16.81969,47.49272]]],"icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"smith_county_2019_wms","name":"Smith County Imagery 2019","type":"wms","template":"https://imagery.tnris.org/server/services/Smith_County/SmithCo_2020_NCCIR_6in/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[-94.98,32.19],[-94.98,32.13],[-95.49,32.13],[-95.49,32.28],[-95.46,32.28],[-95.46,32.34],[-95.49,32.34],[-95.49,32.37],[-95.52,32.37],[-95.52,32.4],[-95.55,32.4],[-95.55,32.43],[-95.58,32.43],[-95.58,32.46],[-95.61,32.46],[-95.61,32.7],[-95.55,32.7],[-95.55,32.67],[-95.52,32.67],[-95.52,32.64],[-95.43,32.64],[-95.43,32.61],[-95.28,32.61],[-95.28,32.58],[-95.07,32.58],[-95.07,32.55],[-94.98,32.55],[-94.98,32.19]]],"terms_url":"https://data.tnris.org/collection/38f1b2e7-6fc7-4357-80a4-1ee33d7abaaf","terms_text":"Smith County (Smith). Smith County Imagery, 2019-12-11","best":true},{"id":"skoterleder","name":"Snowmobile map Sweden","type":"tms","template":"https://tiles.skoterleder.org/tiles/{zoom}/{x}/{y}.png","zoomExtent":[5,14],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[23.87328,65.21069],[30.14647,65.19226],[30.19042,67.62596],[29.43236,69.62651],[27.93822,70.14037],[20.73119,69.2756],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://skoterleder.org/","terms_text":"© Skoterleder.org","description":"Snowmobile trails","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Sweden_road_sign_D9.svg/200px-Sweden_road_sign_D9.svg.png"},{"id":"sollentuna-orto","name":"Sollentuna Orthophoto","type":"wms","template":"https://kartor.sollentuna.se/bios/wms/site/web/WMS_ORTOFOTO2016?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=p_40137&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[5,20],"polygon":[[[17.82184,59.46941],[17.83167,59.47526],[17.8624,59.48153],[17.86669,59.49238],[17.88883,59.49199],[17.90668,59.48502],[17.91149,59.4987],[17.92325,59.49857],[17.99483,59.46218],[18.00796,59.44385],[18.0114,59.42709],[18.00608,59.39988],[17.97934,59.39224],[17.9096,59.42561],[17.91355,59.43521],[17.89793,59.43836],[17.89158,59.42412],[17.87733,59.42709],[17.86772,59.45293],[17.84291,59.45398],[17.84369,59.46078],[17.82184,59.46941]]],"terms_url":"https://www.sollentuna.se/","terms_text":"© Solentuna municipality","best":true,"description":"Orthophotos from the municipality of Sollentuna 2016, open data","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Sollentuna_kommunvapen_-_Riksarkivet_Sverige.png/207px-Sollentuna_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"Soskut_Pusztazamor_Tarnok_Diosd_orto_2017","name":"Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017","type":"tms","template":"http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png","endDate":"2017-03-01T00:00:00.000Z","startDate":"2017-03-01T00:00:00.000Z","zoomExtent":[11,20],"polygon":[[[18.79273,47.37079],[18.79194,47.37048],[18.79139,47.37063],[18.79011,47.37176],[18.78916,47.37345],[18.78722,47.37566],[18.78603,47.37765],[18.78498,47.37905],[18.7837,47.38032],[18.78267,47.38195],[18.7814,47.38368],[18.77934,47.38713],[18.77666,47.3894],[18.76472,47.3967],[18.7617,47.39966],[18.75631,47.40328],[18.75837,47.40653],[18.7588,47.40776],[18.762,47.41217],[18.76304,47.41315],[18.76593,47.41471],[18.77041,47.41766],[18.77247,47.41809],[18.77248,47.4203],[18.8086,47.44041],[18.81742,47.43539],[18.82092,47.43572],[18.82804,47.43755],[18.83021,47.43526],[18.83585,47.43754],[18.84049,47.43346],[18.84765,47.43572],[18.851,47.43281],[18.869,47.43961],[18.87361,47.43597],[18.87499,47.43342],[18.87386,47.43248],[18.87604,47.42797],[18.8605,47.423],[18.86621,47.41798],[18.87243,47.41086],[18.8663,47.40773],[18.86964,47.40471],[18.86777,47.40207],[18.86509,47.40052],[18.87081,47.39838],[18.86772,47.39699],[18.86992,47.39655],[18.87649,47.39478],[18.87749,47.39495],[18.87867,47.39462],[18.88358,47.38996],[18.88291,47.38967],[18.88539,47.3853],[18.87748,47.38339],[18.88181,47.37605],[18.87914,47.37393],[18.88638,47.36923],[18.88206,47.36773],[18.87973,47.36641],[18.8747,47.36252],[18.87282,47.36137],[18.87028,47.36063],[18.86688,47.35853],[18.86234,47.35637],[18.85567,47.35199],[18.84874,47.34728],[18.83192,47.33841],[18.82497,47.34258],[18.8162,47.34925],[18.81079,47.35357],[18.80823,47.356],[18.80645,47.35854],[18.80708,47.35902],[18.80635,47.36021],[18.80465,47.36175],[18.80381,47.36335],[18.80055,47.36545],[18.79988,47.36617],[18.79416,47.36975],[18.79273,47.37079]],[[18.91871,47.40938],[18.91826,47.40998],[18.92067,47.41156],[18.9251,47.41372],[18.93473,47.41917],[18.94063,47.42241],[18.94982,47.41938],[18.95155,47.4175],[18.9569,47.41923],[18.9577,47.41878],[18.95755,47.41435],[18.96211,47.40507],[18.96266,47.40118],[18.96316,47.39903],[18.95446,47.39673],[18.95276,47.39526],[18.95202,47.39362],[18.95119,47.39356],[18.94692,47.39799],[18.94411,47.39845],[18.94161,47.39869],[18.93735,47.39633],[18.93617,47.39683],[18.93122,47.4],[18.9312,47.40023],[18.92924,47.40205],[18.92561,47.40605],[18.92466,47.40635],[18.92293,47.40926],[18.91871,47.40938]]],"terms_url":"http://fototerkep.hu","terms_text":"Fototerkep.hu","best":true,"description":"5 cm resolution bald image of 4 settlement"},{"id":"South_Africa-CD_NGI-Aerial","name":"South Africa CD:NGI Aerial","type":"tms","template":"http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg","zoomExtent":[1,22],"polygon":[[[17.83968,-32.79834],[17.88935,-32.69728],[18.00364,-32.69822],[18.09917,-32.74853],[18.28987,-32.55266],[18.29302,-32.04871],[18.10545,-31.6455],[17.85293,-31.3444],[17.548,-30.90217],[17.40445,-30.63747],[17.24937,-30.39917],[16.9937,-29.65436],[16.7988,-29.19437],[16.54941,-28.84159],[16.44987,-28.69188],[16.4491,-28.55158],[16.60026,-28.48257],[16.75141,-28.4487],[16.74622,-28.2459],[16.88551,-28.04729],[16.99295,-28.0244],[17.05297,-28.02571],[17.10076,-28.03388],[17.20115,-28.09305],[17.20263,-28.23284],[17.24746,-28.23382],[17.2508,-28.19889],[17.35119,-28.19759],[17.35156,-28.24427],[17.40158,-28.24524],[17.41491,-28.34898],[17.40083,-28.548],[17.4527,-28.54897],[17.45121,-28.64951],[17.49836,-28.68721],[17.60282,-28.683],[17.64997,-28.69679],[17.65259,-28.73815],[17.80139,-28.73815],[17.99943,-28.75606],[18.00027,-28.79562],[18.15745,-28.87181],[18.50638,-28.87181],[18.61536,-28.82959],[18.90875,-28.82775],[19.1047,-28.94885],[19.19691,-28.93785],[19.24301,-28.85162],[19.23149,-28.80296],[19.25873,-28.70099],[19.44315,-28.69732],[19.55003,-28.49583],[19.69673,-28.49399],[19.69882,-28.44794],[19.85076,-28.44333],[19.84971,-28.40278],[19.99536,-28.39909],[19.98937,-24.74979],[20.29167,-24.91923],[20.47246,-25.15017],[20.65324,-25.45294],[20.73326,-25.6802],[20.8281,-25.89635],[20.84292,-26.21585],[20.65028,-26.48409],[20.65324,-26.82049],[21.08891,-26.84693],[21.67277,-26.839],[21.7765,-26.66963],[21.97211,-26.64314],[22.28034,-26.32747],[22.57078,-26.1334],[22.77528,-25.67752],[23.00052,-25.27619],[23.46583,-25.27351],[23.88372,-25.59737],[24.2364,-25.6134],[24.60391,-25.78966],[25.1107,-25.73894],[25.50784,-25.68554],[25.64418,-25.48238],[25.84193,-24.78054],[25.84664,-24.75385],[26.39285,-24.63329],[26.47391,-24.56533],[26.509,-24.48424],[26.58619,-24.40758],[26.73006,-24.30145],[26.85674,-24.24995],[26.85744,-24.10269],[26.92155,-23.8991],[26.93183,-23.84619],[26.97148,-23.69943],[27.00061,-23.63676],[27.0578,-23.60526],[27.13605,-23.52034],[27.33396,-23.39738],[27.51441,-23.35939],[27.59581,-23.20855],[27.80986,-23.0995],[27.88285,-23.06205],[27.93829,-22.94965],[28.04076,-22.82551],[28.20568,-22.65529],[28.33972,-22.56394],[28.49061,-22.5607],[28.61088,-22.54002],[28.82818,-22.45502],[28.92853,-22.42323],[28.95941,-22.30901],[29.01626,-22.20834],[29.23241,-22.16935],[29.35312,-22.18429],[29.6549,-22.11864],[29.77771,-22.1362],[29.9293,-22.18494],[30.11668,-22.28303],[30.25634,-22.29148],[30.30336,-22.33952],[30.50618,-22.30576],[30.83743,-22.28498],[31.00586,-22.30771],[31.18342,-22.32329],[31.29306,-22.36746],[31.56806,-23.19034],[31.55683,-23.44308],[31.69311,-23.61752],[31.71197,-23.74114],[31.77747,-23.88006],[31.88863,-23.94811],[31.91444,-24.17467],[31.99483,-24.30409],[32.01667,-24.4406],[32.00773,-24.65366],[32.01964,-24.91407],[32.03552,-25.08498],[32.01964,-25.38214],[31.99285,-25.44938],[31.99979,-25.51657],[32.00575,-25.6079],[32.00575,-25.66248],[31.93627,-25.84037],[31.98094,-25.95465],[31.86878,-26.00373],[31.41621,-25.72777],[31.32291,-25.74386],[31.25046,-25.82965],[31.1393,-25.91627],[31.11647,-25.99124],[30.96561,-26.26658],[30.89217,-26.32797],[30.85346,-26.40356],[30.82269,-26.44888],[30.80226,-26.52407],[30.80384,-26.80821],[30.90209,-26.78075],[30.91003,-26.84895],[30.98249,-26.90826],[30.97653,-27.00292],[31.00344,-27.04416],[31.15433,-27.19804],[31.50156,-27.31112],[31.97002,-27.31112],[31.97002,-27.12047],[31.97697,-27.05066],[32.00025,-26.79839],[32.10698,-26.79846],[32.31145,-26.84795],[32.89999,-26.85161],[32.88609,-26.9817],[32.70943,-27.47854],[32.62407,-27.77751],[32.5814,-28.07479],[32.53872,-28.2288],[32.42756,-28.50216],[32.36404,-28.59457],[32.07026,-28.84698],[31.98788,-28.90695],[31.77648,-28.96949],[31.46385,-29.28593],[31.35963,-29.38543],[31.16808,-29.63074],[31.06486,-29.78935],[31.05345,-29.84705],[31.06699,-29.86403],[31.04555,-29.9502],[30.95186,-30.00339],[30.86518,-30.10241],[30.72447,-30.3925],[30.35563,-30.93089],[30.09724,-31.24583],[29.86731,-31.43043],[29.74094,-31.50147],[29.48131,-31.69787],[28.89432,-32.28989],[28.54971,-32.58946],[28.14365,-32.83207],[28.07487,-32.94169],[27.84509,-33.08287],[27.3758,-33.38607],[26.88054,-33.6459],[26.59169,-33.74808],[26.45273,-33.79358],[26.20675,-33.75489],[26.00779,-33.7224],[25.80555,-33.75243],[25.75111,-33.80065],[25.65291,-33.85436],[25.65291,-33.94698],[25.71958,-34.00401],[25.72028,-34.05112],[25.55089,-34.06315],[25.35046,-34.05026],[25.28106,-34.00203],[25.04763,-33.99946],[24.95472,-34.00436],[24.94966,-34.10104],[24.87704,-34.15065],[24.87629,-34.20053],[24.85326,-34.21896],[24.76453,-34.20179],[24.50014,-34.20033],[24.34867,-34.11638],[24.19888,-34.1019],[23.99634,-34.05144],[23.80175,-34.05243],[23.74936,-34.01119],[23.49735,-34.00901],[23.41552,-34.04346],[23.41543,-34.11404],[22.90009,-34.0993],[22.84124,-34.05479],[22.64703,-34.05026],[22.64598,-34.00728],[22.57002,-34.00641],[22.50505,-34.06459],[22.252,-34.06459],[22.22213,-34.10147],[22.16212,-34.1057],[22.17124,-34.15218],[22.15769,-34.21809],[22.00156,-34.21722],[21.9497,-34.322],[21.86115,-34.40071],[21.56147,-34.40201],[21.5468,-34.36612],[21.50174,-34.36699],[21.5007,-34.40201],[21.41949,-34.44652],[21.19787,-34.44782],[21.09882,-34.39913],[21.00337,-34.37539],[20.89319,-34.39971],[20.89766,-34.4854],[20.74468,-34.48281],[20.5042,-34.48626],[20.25272,-34.70148],[20.08035,-34.83619],[19.99233,-34.83791],[19.89907,-34.82758],[19.89383,-34.7936],[19.5973,-34.79618],[19.39297,-34.64202],[19.28771,-34.64048],[19.28614,-34.59866],[19.34744,-34.52445],[19.32853,-34.45344],[19.098,-34.44998],[19.07256,-34.38024],[19.00235,-34.35256],[18.95206,-34.39494],[18.7975,-34.39364],[18.79842,-34.10164],[18.50175,-34.10153],[18.49995,-34.36169],[18.44773,-34.362],[18.44799,-34.35227],[18.39744,-34.3514],[18.39717,-34.3023],[18.35657,-34.30056],[18.34793,-34.20204],[18.29721,-34.19503],[18.29511,-33.99371],[18.33745,-33.99141],[18.34766,-33.84924],[18.34793,-33.78155],[18.41247,-33.74488],[18.36155,-33.65016],[18.2992,-33.58559],[18.21668,-33.44887],[18.13899,-33.39741],[17.94735,-33.16026],[17.88552,-33.05757],[17.84859,-32.96685],[17.83968,-32.85073],[17.83968,-32.79834]]],"best":true},{"id":"South-Tyrol-DSM_2013","name":"South Tyrol DSM Hillshade 2013 (0.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DSM_Hillshade_SolarTirol_3857&STYLES=DSM_Hillshade_SolarTirol_3857&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DSM)"},{"id":"South-Tyrol-DSM_2013_2_5m","name":"South Tyrol DSM Hillshade 2013 (2.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DSM-2p5m_Hillshade&STYLES=DSM-2p5m_Hillshade&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DSM)"},{"id":"South-Tyrol-DTM_2013","name":"South Tyrol DTM Hillshade 2013 (0.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DTM_Hillshade_SolarTirol_3857&STYLES=DTM_Hillshade_SolarTirol_3857&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DTM"},{"id":"South-Tyrol-DTM_2013_2_5m","name":"South Tyrol DTM Hillshade 2013 (2.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DTM-2p5m_Hillshade&STYLES=DTM-2p5m_Hillshade&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DTM"},{"id":"South-Tyrol-Orthofoto2011-20cm","name":"South Tyrol Orthofoto 2011 (highres)","type":"wms","template":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=P_BZ_OF_2011_EPSG3857,P_BZ_OF_2011_20cm_EPSG3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0","description":"Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)"},{"id":"South-Tyrol-Orthofoto2014","name":"South Tyrol Orthofoto 2014","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[11.71495,46.51227],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.61936,46.43957],[11.62508,46.43957],[11.62508,46.44797],[11.63349,46.44587],[11.63769,46.45846],[11.64399,46.45846],[11.6608,46.44587],[11.66711,46.44587],[11.66711,46.47525],[11.69442,46.47735],[11.69652,46.48575],[11.70913,46.49624],[11.70913,46.50254],[11.71333,46.50254],[11.71495,46.51227]],[[11.61435,46.41535],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20644,46.4156],[11.20485,46.3997],[11.17754,46.3997],[11.17543,46.3871],[11.16703,46.38081],[11.16703,46.36821],[11.16283,46.36821],[11.16283,46.29895],[11.12501,46.29895],[11.12291,46.25488],[11.13131,46.25278],[11.12711,46.24858],[11.16283,46.24858],[11.16283,46.215],[11.24898,46.2129],[11.25108,46.2234],[11.2889,46.2234],[11.2889,46.24019],[11.3015,46.25278],[11.30991,46.25278],[11.31201,46.24858],[11.33722,46.25068],[11.34143,46.26747],[11.34563,46.26747],[11.34773,46.25698],[11.35613,46.24858],[11.41707,46.25278],[11.41917,46.32414],[11.49271,46.32204],[11.48851,46.33044],[11.49901,46.32834],[11.50111,46.34723],[11.52423,46.34723],[11.53894,46.34513],[11.53894,46.32834],[11.55995,46.32414],[11.58306,46.34932],[11.58306,46.37241],[11.60407,46.37241],[11.60617,46.38291],[11.61458,46.38291],[11.62508,46.3934],[11.62508,46.41229],[11.61435,46.41535]],[[11.20663,46.41745],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.96285,46.47718],[10.96952,46.45217],[10.98423,46.45217],[10.98843,46.44587],[10.99894,46.44587],[11.01154,46.42068],[11.04096,46.42068],[11.08088,46.43537],[11.08298,46.47525],[11.15232,46.47525],[11.18804,46.48365],[11.19014,46.47525],[11.20695,46.47315],[11.20485,46.44587],[11.19855,46.44167],[11.19435,46.42698],[11.19014,46.42698],[11.19014,46.42068],[11.20695,46.42068],[11.20663,46.41745]],[[10.47433,46.55501],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.46952,46.62628],[10.47785,46.61797],[10.47785,46.59069],[10.47365,46.59069],[10.47155,46.5676],[10.46314,46.55501],[10.47433,46.55501]],[[10.46925,46.62643],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43626,46.79843],[10.43373,46.81106],[10.42532,46.80686],[10.42532,46.79847],[10.42112,46.79847],[10.41692,46.78587],[10.41692,46.75229],[10.3938,46.7376],[10.3896,46.72081],[10.3854,46.72081],[10.3791,46.69353],[10.3791,46.66834],[10.3833,46.66414],[10.3812,46.64735],[10.3896,46.64525],[10.3938,46.63056],[10.42532,46.62846],[10.44843,46.63476],[10.46925,46.62643]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog/","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0"},{"id":"South-Tyrol-Orthofoto-2014-2015","name":"South Tyrol Orthofoto 2014/2015","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_2015_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","endDate":"2015-11-01T00:00:00.000Z","startDate":"2014-07-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0","best":true},{"id":"South-Tyrol-Orthofoto-2017","name":"South Tyrol Orthofoto 2017","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=p_bz-orthoimagery:P_BZ_OF_2017_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","endDate":"2017-10-01T00:00:00.000Z","startDate":"2017-07-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[11.37851,46.30096],[11.38516,46.30241],[11.39571,46.30998],[11.39893,46.30771],[11.40047,46.30835],[11.39922,46.30922],[11.39641,46.31043],[11.39752,46.3114],[11.39759,46.31529],[11.40432,46.32512],[11.41239,46.3245],[11.41531,46.32568],[11.41956,46.32559],[11.45325,46.33531],[11.4632,46.35096],[11.48003,46.35439],[11.47676,46.36434],[11.52706,46.3557],[11.54972,46.34515],[11.55762,46.34977],[11.5638,46.38164],[11.59641,46.3872],[11.61907,46.4252],[11.62525,46.47109],[11.64705,46.48445],[11.63315,46.49875],[11.63847,46.5017],[11.66456,46.49804],[11.70632,46.51086],[11.70362,46.62244],[11.39677,46.62433],[11.38982,46.61077],[11.38124,46.61248],[11.3742,46.6172],[11.3736,46.62351],[11.33308,46.62445],[11.3324,46.66169],[11.28639,46.65415],[11.27008,46.72256],[11.18099,46.71845],[11.1779,46.73045],[11.15988,46.72433],[11.1331,46.72321],[11.11404,46.71539],[11.03371,46.70832],[10.99869,46.69655],[10.92607,46.69632],[10.89226,46.68431],[10.81879,46.67159],[10.76729,46.6697],[10.74531,46.66452],[10.54001,46.64237],[10.5098,46.63247],[10.46448,46.63341],[10.49143,46.61407],[10.47546,46.56476],[10.47787,46.55756],[10.47049,46.54257],[10.45916,46.5408],[10.45057,46.52863],[10.45504,46.50879],[10.48199,46.49296],[10.48851,46.49567],[10.55065,46.49071],[10.57966,46.47369],[10.60181,46.4692],[10.62138,46.44779],[10.63992,46.44555],[10.67116,46.45252],[10.67888,46.4485],[10.6933,46.45737],[10.71562,46.46104],[10.74188,46.48386],[10.76385,46.48539],[10.77913,46.4705],[10.7975,46.4446],[10.86205,46.43656],[10.88333,46.45099],[10.91183,46.44401],[10.93191,46.45335],[10.93809,46.4666],[10.95491,46.47014],[10.96075,46.4744],[10.96556,46.48232],[10.98753,46.48362],[11.00573,46.47735],[11.01002,46.47121],[11.02993,46.46116],[11.03525,46.453],[11.03903,46.45276],[11.04177,46.44708],[11.04675,46.44661],[11.05482,46.45016],[11.06409,46.4459],[11.0677,46.44294],[11.07336,46.44129],[11.07731,46.44354],[11.07868,46.44862],[11.06787,46.46577],[11.0622,46.48835],[11.0586,46.48917],[11.05001,46.50643],[11.03525,46.51399],[11.04366,46.51741],[11.05619,46.51635],[11.0828,46.53171],[11.08829,46.50312],[11.10512,46.49615],[11.11044,46.49709],[11.13035,46.4822],[11.15919,46.48917],[11.1858,46.50855],[11.20794,46.49473],[11.21241,46.48208],[11.21962,46.46021],[11.20717,46.41668],[11.21524,46.4065],[11.20073,46.37204],[11.20597,46.36695],[11.19472,46.3647],[11.19275,46.36043],[11.20348,46.34515],[11.18923,46.3234],[11.17816,46.30319],[11.16477,46.29731],[11.16271,46.29044],[11.14391,46.28812],[11.13928,46.28415],[11.15001,46.27991],[11.15838,46.26834],[11.16653,46.2619],[11.17477,46.25914],[11.18301,46.25864],[11.18599,46.25755],[11.19397,46.25715],[11.19719,46.2581],[11.19996,46.25626],[11.1958,46.25092],[11.19508,46.249],[11.19183,46.24901],[11.19168,46.25283],[11.18932,46.25395],[11.18704,46.25405],[11.1826,46.25209],[11.18116,46.24865],[11.19484,46.24838],[11.20756,46.24807],[11.20683,46.21877],[11.2073,46.21773],[11.20923,46.21948],[11.24657,46.23109],[11.25433,46.23872],[11.25966,46.24089],[11.26365,46.24199],[11.27442,46.25184],[11.27652,46.25181],[11.28266,46.2565],[11.28631,46.26107],[11.29429,46.26086],[11.30313,46.25929],[11.31042,46.26599],[11.30888,46.2676],[11.31145,46.26872],[11.31485,46.27341],[11.31334,46.27943],[11.31025,46.2816],[11.31073,46.28367],[11.31575,46.28596],[11.32317,46.29224],[11.32291,46.29319],[11.33167,46.29479],[11.33201,46.29708],[11.3333,46.2982],[11.33566,46.29776],[11.33815,46.29951],[11.34017,46.29838],[11.3375,46.29432],[11.33858,46.29195],[11.33583,46.29067],[11.34158,46.28207],[11.34562,46.28023],[11.3475,46.28026],[11.356,46.2765],[11.35733,46.27409],[11.35729,46.27252],[11.35664,46.2697],[11.35823,46.26582],[11.36527,46.26469],[11.36986,46.26255],[11.373,46.26398],[11.37763,46.26226],[11.38857,46.26166],[11.39308,46.26499],[11.39789,46.26472],[11.39565,46.27282],[11.38917,46.27863],[11.38643,46.27988],[11.38505,46.2813],[11.38441,46.28705],[11.38093,46.29127],[11.37887,46.29221],[11.37102,46.29324],[11.35862,46.29613],[11.35896,46.29889],[11.36025,46.3009],[11.36458,46.30191],[11.36797,46.30072],[11.36815,46.3017],[11.37851,46.30096]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","best":true},{"id":"South-Tyrol-Topomap","name":"South Tyrol Topomap","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","zoomExtent":[0,20],"polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano","description":"Topographical basemap of South Tyrol"},{"id":"SPW2009","name":"SPW(allonie) 2009-2010 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2009_2010/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2010-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2012","name":"SPW(allonie) 2012-2013 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2012_2013/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2015","name":"SPW(allonie) 2015 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2015/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2016","name":"SPW(allonie) 2016 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2016/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2018","name":"SPW(allonie) 2018 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2018/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW_ORTHO_LAST","name":"SPW(allonie) most recent aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_LAST/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW_PICC","name":"SPW(allonie) PICC numerical imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&TRANSPARENT=FALSE&STYLES=&LAYERS=1,3,4,5,7,9,10,11,12,14,15,16,17,19,20,21,23,24,25,26,27,28,29&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPWrelief2014","name":"SPW(allonie) shaded relief","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/RELIEF/WALLONIE_MNT_2013_2014_HILLSHADE/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"ssb-sentrum","name":"SSB City Centres overlay","type":"wms","template":"https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_193&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.ssb.no/arealsentrum/","terms_text":"© SSB","description":"Downtown areas with significant commercial and service activities.","icon":"https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png","overlay":true},{"id":"ssb-tettsteder","name":"SSB Urban Areas overlay","type":"wms","template":"https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_198&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.ssb.no/beftett","terms_text":"© SSB","description":"Human settlements of at least 200 people with less than 200 meters between households","icon":"https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png","overlay":true},{"id":"Bern-bern2016-tms","name":"Stadt Bern 10cm (2016)","type":"tms","template":"https://mapproxy.osm.ch/tiles/bern2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[8,21],"polygon":[[[7.29431,46.92376],[7.29827,46.92747],[7.30616,46.93095],[7.30433,46.93623],[7.30686,46.94037],[7.32464,46.94328],[7.32845,46.94641],[7.34141,46.94608],[7.34385,46.94737],[7.34346,46.94879],[7.35136,46.94855],[7.35056,46.95021],[7.35309,46.95193],[7.3582,46.95118],[7.3685,46.95662],[7.37151,46.96073],[7.37503,46.95983],[7.37851,46.96147],[7.38062,46.96547],[7.38321,46.9663],[7.3938,46.96693],[7.40005,46.96918],[7.40829,46.96869],[7.42817,46.9738],[7.43271,46.97269],[7.43536,46.96843],[7.43785,46.96843],[7.44125,46.97679],[7.44569,46.97479],[7.44838,46.97564],[7.4477,46.97901],[7.44405,46.97807],[7.44127,46.97982],[7.45067,46.99015],[7.45221,46.98968],[7.45465,46.97782],[7.46804,46.97583],[7.47079,46.97],[7.47019,46.96741],[7.47816,46.97118],[7.48452,46.97016],[7.48613,46.9679],[7.48579,46.96468],[7.47847,46.9629],[7.48029,46.96068],[7.47893,46.95878],[7.47978,46.9566],[7.47701,46.95446],[7.48405,46.94999],[7.48339,46.9452],[7.49556,46.93962],[7.49351,46.93766],[7.4908,46.93876],[7.4895,46.93687],[7.47667,46.93695],[7.47811,46.93625],[7.4747,46.93392],[7.47535,46.93299],[7.4691,46.92924],[7.47077,46.9255],[7.45857,46.93484],[7.44764,46.93043],[7.43542,46.93497],[7.4338,46.93312],[7.43764,46.93074],[7.41469,46.93682],[7.41384,46.93157],[7.40708,46.93038],[7.40806,46.92563],[7.40213,46.9242],[7.40148,46.92119],[7.38757,46.93045],[7.38231,46.92728],[7.38002,46.92989],[7.38087,46.93241],[7.37487,46.93143],[7.37489,46.93271],[7.36807,46.93239],[7.36831,46.93043],[7.36041,46.92859],[7.36056,46.9272],[7.33878,46.92454],[7.33937,46.91967],[7.32746,46.91903],[7.32692,46.9236],[7.32437,46.92519],[7.30823,46.92229],[7.29431,46.92376]]],"terms_text":"Orthophoto 2016, Vermessungsamt Stadt Bern","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Bern-2012","name":"Stadt Bern 10cm/25cm (2012)","type":"tms","template":"https://mapproxy.osm.ch/tiles/bern2012/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[14,19],"polygon":[[[7.3807,47.00952],[7.38073,47.02301],[7.43853,47.02303],[7.43865,47.01408],[7.45174,47.014],[7.45172,47.00503],[7.54111,47.005],[7.54111,46.99873],[7.54378,46.99871],[7.54375,46.98696],[7.55682,46.987],[7.55685,46.96003],[7.51744,46.96001],[7.51744,46.95108],[7.53051,46.95106],[7.53051,46.92407],[7.51741,46.92405],[7.51738,46.91505],[7.53042,46.91507],[7.53048,46.9061],[7.54358,46.90602],[7.54358,46.87905],[7.55659,46.87903],[7.55662,46.8611],[7.54349,46.86104],[7.5434,46.85212],[7.49095,46.85212],[7.49107,46.87907],[7.47794,46.87909],[7.47797,46.89707],[7.45168,46.89713],[7.45171,46.88808],[7.43855,46.88814],[7.43858,46.87015],[7.41233,46.87015],[7.41236,46.87907],[7.39917,46.87911],[7.3992,46.86108],[7.38613,46.86114],[7.3861,46.85218],[7.373,46.85216],[7.37303,46.86112],[7.34677,46.8611],[7.3468,46.88808],[7.25488,46.88796],[7.25485,46.90596],[7.24172,46.90592],[7.24169,46.91497],[7.22856,46.91493],[7.22833,46.96887],[7.24146,46.96891],[7.24149,46.98688],[7.26769,46.98694],[7.26777,46.99593],[7.28078,46.99595],[7.2809,47.0094],[7.3807,47.00952]]],"terms_text":"Orthophoto 2012, Vermessungsamt Stadt Bern","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"SG-2018-WMS","name":"Stadt St. Gallen","type":"wms","template":"https://map.stadt.sg.ch/cgi-bin/mapserv.exe?map=d:data/wms_op_stadt_sg.map&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_SG&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[15,21],"polygon":[[[9.29495,47.4188],[9.30293,47.42309],[9.3054,47.42254],[9.30939,47.42124],[9.30716,47.41791],[9.30484,47.41656],[9.30475,47.41636],[9.30664,47.41509],[9.30763,47.41549],[9.3086,47.41483],[9.31042,47.41557],[9.31229,47.41591],[9.31387,47.41688],[9.31495,47.41718],[9.3172,47.41707],[9.3231,47.41822],[9.32347,47.41862],[9.32535,47.4188],[9.32756,47.42006],[9.32868,47.42002],[9.3308,47.42092],[9.33295,47.42305],[9.3345,47.42383],[9.33767,47.42457],[9.33791,47.42555],[9.33932,47.42595],[9.34226,47.42491],[9.34359,47.42632],[9.34492,47.42671],[9.3484,47.42723],[9.34911,47.42813],[9.35138,47.42906],[9.35267,47.42916],[9.35432,47.43003],[9.35537,47.43096],[9.35627,47.43298],[9.35816,47.43404],[9.35921,47.4342],[9.36001,47.43392],[9.36052,47.43434],[9.36057,47.43533],[9.35939,47.43717],[9.35681,47.43944],[9.35737,47.44086],[9.35821,47.44193],[9.35776,47.44302],[9.35784,47.44362],[9.35851,47.44417],[9.35939,47.4443],[9.36016,47.44423],[9.361,47.44379],[9.36164,47.44423],[9.36121,47.44513],[9.36175,47.44569],[9.36318,47.44568],[9.36447,47.44508],[9.36687,47.44466],[9.36694,47.445],[9.36608,47.44562],[9.36456,47.44713],[9.36475,47.44771],[9.36748,47.44867],[9.36876,47.44867],[9.37091,47.44997],[9.37288,47.44986],[9.37557,47.44855],[9.37411,47.44957],[9.37323,47.45086],[9.37363,47.45153],[9.3734,47.45218],[9.37413,47.4526],[9.37561,47.45218],[9.37683,47.45257],[9.37769,47.45318],[9.38134,47.45369],[9.38277,47.45142],[9.3822,47.44925],[9.38464,47.45005],[9.3888,47.45105],[9.38949,47.45092],[9.39095,47.44983],[9.39194,47.44584],[9.38986,47.44473],[9.39097,47.44424],[9.39125,47.44365],[9.39333,47.44295],[9.39376,47.44363],[9.39374,47.44436],[9.39353,47.44485],[9.394,47.44581],[9.3935,47.44607],[9.39376,47.44681],[9.3946,47.44825],[9.39539,47.44842],[9.39599,47.45023],[9.39704,47.45225],[9.40082,47.45183],[9.40161,47.45282],[9.40372,47.45272],[9.404,47.45322],[9.40595,47.45334],[9.40745,47.45251],[9.40771,47.452],[9.40835,47.45251],[9.40973,47.45227],[9.41367,47.45256],[9.41603,47.45141],[9.41561,47.45093],[9.41694,47.4501],[9.41728,47.45032],[9.41771,47.45154],[9.41934,47.45304],[9.42091,47.45241],[9.42151,47.45273],[9.4235,47.45272],[9.42479,47.45341],[9.42588,47.45328],[9.42621,47.45245],[9.42822,47.45205],[9.43039,47.45073],[9.43048,47.44733],[9.43226,47.44498],[9.43213,47.44384],[9.43088,47.4433],[9.42996,47.44156],[9.43075,47.44028],[9.43185,47.43816],[9.43125,47.43758],[9.43202,47.43696],[9.43202,47.43648],[9.4346,47.43601],[9.43582,47.43478],[9.43614,47.43363],[9.43545,47.43156],[9.4346,47.43116],[9.43354,47.42981],[9.43402,47.42907],[9.43399,47.42862],[9.43522,47.42709],[9.43582,47.42588],[9.43597,47.42434],[9.43565,47.42399],[9.43567,47.42309],[9.4353,47.42261],[9.43605,47.42054],[9.43468,47.42023],[9.43475,47.41965],[9.43382,47.41928],[9.43417,47.41862],[9.43391,47.41822],[9.43151,47.41778],[9.43187,47.41657],[9.43264,47.41556],[9.43288,47.4146],[9.43372,47.41429],[9.43391,47.41389],[9.43288,47.41226],[9.43129,47.41101],[9.43058,47.41091],[9.4308,47.41046],[9.43065,47.40933],[9.42824,47.40824],[9.42681,47.40687],[9.42741,47.40499],[9.42172,47.40506],[9.42155,47.4024],[9.41365,47.40249],[9.41359,47.39982],[9.40166,47.4],[9.40153,47.39726],[9.39316,47.39746],[9.39329,47.40012],[9.3893,47.40016],[9.38949,47.40295],[9.37745,47.40317],[9.37756,47.4058],[9.37003,47.40596],[9.3699,47.40316],[9.362,47.40335],[9.3619,47.40066],[9.34997,47.40089],[9.34982,47.39815],[9.34095,47.39832],[9.33969,47.39873],[9.33857,47.3995],[9.3381,47.3996],[9.33754,47.39925],[9.3369,47.39873],[9.33578,47.39857],[9.33516,47.39861],[9.33413,47.39932],[9.33372,47.39906],[9.33293,47.39892],[9.33222,47.39896],[9.33128,47.40005],[9.33005,47.40032],[9.32913,47.40077],[9.32812,47.4006],[9.32748,47.40062],[9.32632,47.40032],[9.326,47.4],[9.3252,47.39979],[9.32475,47.39989],[9.32377,47.39916],[9.32173,47.39855],[9.32098,47.39777],[9.31924,47.39742],[9.31909,47.39698],[9.31821,47.39672],[9.31774,47.39678],[9.31701,47.39719],[9.31671,47.39723],[9.31126,47.39626],[9.31083,47.39604],[9.30911,47.39592],[9.30849,47.39594],[9.30748,47.39572],[9.30724,47.39543],[9.30609,47.39523],[9.30493,47.39507],[9.30295,47.39465],[9.30154,47.3946],[9.30001,47.39492],[9.2978,47.39566],[9.29634,47.39584],[9.2948,47.39565],[9.29351,47.39594],[9.29319,47.3965],[9.29343,47.39723],[9.29456,47.39826],[9.29506,47.39819],[9.29606,47.39919],[9.29482,47.39973],[9.29458,47.40053],[9.29169,47.40199],[9.29113,47.4026],[9.29068,47.40378],[9.29098,47.40496],[9.29134,47.40629],[9.29381,47.40907],[9.29446,47.40915],[9.29669,47.40882],[9.29609,47.41273],[9.29495,47.4188]]],"terms_url":"https://daten.stadt.sg.ch/","terms_text":"Orthofoto 2018 Stadt St. Gallen","best":true,"description":"7.5 cm orthophoto from 2018"},{"id":"Uster-2008","name":"Stadt Uster Orthophoto 2008 10cm","type":"tms","template":"https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2008-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[8.68,47.32],[8.74,47.32],[8.74,47.365],[8.68,47.365],[8.68,47.32]]],"terms_text":"Stadt Uster Vermessung Orthophoto 2008","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Zuerich-zh_luftbild2011-tms","name":"Stadt Zürich Luftbild 2011","type":"tms","template":"https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[8.44624,47.44143],[8.63178,47.43968],[8.62895,47.31377],[8.44381,47.31555],[8.44624,47.44143]]],"terms_text":"Stadt Zürich Luftbild 2011","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Zuerich-zh_luftbild2013-wms","name":"Stadt Zürich Luftbild 2013","type":"wms","template":"https://www.ogd.stadt-zuerich.ch/wms/geoportal/Orthofoto_2013_Stadt_Zuerich___Fruehling?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_2013_STZH.tif&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[8.44624,47.44143],[8.63178,47.43968],[8.62895,47.31377],[8.44381,47.31555],[8.44624,47.44143]]],"terms_text":"Stadt Zürich Open Government Data"},{"id":"Zuerich-city_map","name":"Stadt Zürich Stadtplan","type":"tms","template":"https://mapproxy.osm.ch/tiles/zh_stadtplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","zoomExtent":[0,21],"polygon":[[[8.56681,47.34713],[8.56665,47.34706],[8.56563,47.34684],[8.56575,47.34666],[8.56509,47.34645],[8.54207,47.33502],[8.54073,47.33376],[8.5403,47.33396],[8.54019,47.33372],[8.54042,47.33358],[8.5388,47.33208],[8.53642,47.33076],[8.53622,47.33018],[8.53345,47.32992],[8.5318,47.3295],[8.53145,47.32846],[8.53102,47.32789],[8.52974,47.32777],[8.52969,47.32687],[8.52899,47.32698],[8.52813,47.32685],[8.52802,47.32635],[8.52755,47.32639],[8.52762,47.32616],[8.52579,47.32619],[8.52563,47.32575],[8.52426,47.32608],[8.5242,47.32486],[8.52372,47.32416],[8.52304,47.32433],[8.52193,47.32436],[8.52194,47.32394],[8.51932,47.32401],[8.51868,47.32386],[8.51768,47.3232],[8.51642,47.32308],[8.5156,47.32315],[8.51472,47.32272],[8.51295,47.3229],[8.51162,47.32222],[8.50957,47.32202],[8.5095,47.32165],[8.50788,47.32203],[8.50735,47.32173],[8.50529,47.32144],[8.50476,47.32121],[8.5043,47.32074],[8.50317,47.32022],[8.50241,47.32053],[8.50227,47.32082],[8.50152,47.32129],[8.50102,47.32198],[8.50095,47.32259],[8.5006,47.32278],[8.50078,47.3237],[8.50066,47.32451],[8.50098,47.32595],[8.5015,47.3265],[8.50159,47.32732],[8.50188,47.32765],[8.50132,47.32883],[8.5014,47.32903],[8.50069,47.32979],[8.50087,47.33053],[8.50063,47.3311],[8.50112,47.33183],[8.50075,47.33202],[8.50078,47.33224],[8.50106,47.3326],[8.50191,47.33303],[8.5022,47.33364],[8.50177,47.33412],[8.50152,47.33504],[8.50199,47.33666],[8.50161,47.33728],[8.49877,47.33968],[8.49808,47.34169],[8.49702,47.34247],[8.49709,47.34326],[8.49798,47.34365],[8.4981,47.34387],[8.49817,47.34453],[8.49773,47.34521],[8.49636,47.34648],[8.4951,47.34691],[8.49467,47.3476],[8.49285,47.34828],[8.49206,47.3495],[8.49145,47.34964],[8.49128,47.34983],[8.49089,47.35067],[8.49,47.35056],[8.48813,47.352],[8.48691,47.35203],[8.4868,47.3522],[8.48728,47.35311],[8.4871,47.3534],[8.48501,47.35469],[8.48463,47.35536],[8.48463,47.3567],[8.48426,47.35737],[8.48321,47.35814],[8.48272,47.35907],[8.48205,47.35954],[8.47879,47.36078],[8.47698,47.36029],[8.47365,47.36081],[8.47275,47.36079],[8.47169,47.36132],[8.47053,47.36166],[8.46951,47.36438],[8.4664,47.36574],[8.46583,47.3661],[8.46545,47.36664],[8.46485,47.36681],[8.46427,47.36728],[8.46418,47.36838],[8.4649,47.36897],[8.46482,47.36911],[8.46938,47.37136],[8.47042,47.3726],[8.47022,47.37395],[8.46868,47.37382],[8.46761,47.37357],[8.46544,47.37444],[8.46288,47.37603],[8.45995,47.3775],[8.45638,47.37801],[8.45116,47.37817],[8.45047,47.37836],[8.44847,47.37967],[8.44801,47.38025],[8.45174,47.38062],[8.45371,47.38027],[8.45614,47.38072],[8.45669,47.38094],[8.45673,47.38244],[8.45745,47.38222],[8.45843,47.38231],[8.45841,47.38263],[8.45745,47.38325],[8.45767,47.3834],[8.45756,47.38371],[8.45807,47.38388],[8.46004,47.38594],[8.46088,47.38704],[8.46121,47.38795],[8.46104,47.38803],[8.46381,47.39053],[8.46518,47.39132],[8.46556,47.39113],[8.46618,47.39113],[8.46727,47.39065],[8.46697,47.39131],[8.46739,47.3929],[8.4671,47.39334],[8.46607,47.39378],[8.4651,47.39453],[8.46484,47.39481],[8.46488,47.39508],[8.46535,47.39492],[8.46854,47.39461],[8.47018,47.39401],[8.47066,47.39439],[8.47191,47.39388],[8.47208,47.39408],[8.47152,47.3943],[8.47151,47.3949],[8.4721,47.39517],[8.47301,47.39506],[8.47349,47.396],[8.46516,47.39829],[8.46568,47.39922],[8.46759,47.39873],[8.46806,47.39957],[8.46615,47.40006],[8.4677,47.403],[8.4699,47.40298],[8.47551,47.40381],[8.47815,47.40387],[8.47819,47.40508],[8.47738,47.40517],[8.47705,47.40619],[8.47729,47.40914],[8.47703,47.40935],[8.47543,47.40971],[8.47583,47.41077],[8.47605,47.41072],[8.47628,47.41102],[8.47665,47.41097],[8.47725,47.41194],[8.47488,47.41241],[8.47394,47.41222],[8.47303,47.41146],[8.47268,47.41058],[8.47101,47.41094],[8.47113,47.41137],[8.47085,47.41167],[8.47044,47.41159],[8.47031,47.41253],[8.46876,47.41225],[8.46801,47.41334],[8.46863,47.41363],[8.46857,47.41408],[8.46955,47.41484],[8.47007,47.41557],[8.46913,47.41649],[8.46913,47.41693],[8.46962,47.41752],[8.47158,47.41763],[8.4772,47.41974],[8.47688,47.42016],[8.47783,47.42212],[8.47895,47.42172],[8.47937,47.42113],[8.47972,47.42141],[8.48131,47.42134],[8.48171,47.423],[8.48294,47.42266],[8.48292,47.42222],[8.48609,47.42155],[8.48658,47.42164],[8.48683,47.42186],[8.48796,47.42201],[8.48851,47.42271],[8.49019,47.42234],[8.491,47.4239],[8.49006,47.42435],[8.49007,47.42532],[8.49027,47.42536],[8.49017,47.42578],[8.48552,47.42712],[8.48481,47.42784],[8.48466,47.42873],[8.48437,47.42896],[8.48445,47.42979],[8.48579,47.43103],[8.49562,47.43281],[8.50027,47.43442],[8.50207,47.43467],[8.50364,47.43402],[8.50997,47.43213],[8.51155,47.43116],[8.51274,47.43085],[8.516,47.43174],[8.51628,47.43175],[8.51681,47.43133],[8.51872,47.4319],[8.51979,47.43167],[8.52463,47.43126],[8.52549,47.43316],[8.5303,47.43207],[8.53063,47.43266],[8.533,47.43228],[8.53374,47.43251],[8.53467,47.432],[8.53521,47.43188],[8.53606,47.43187],[8.5374,47.4314],[8.53964,47.43126],[8.5401,47.4311],[8.54033,47.43186],[8.54363,47.43143],[8.54284,47.43289],[8.54311,47.43288],[8.54451,47.4325],[8.54459,47.43262],[8.54607,47.43207],[8.54858,47.43142],[8.55009,47.43128],[8.55098,47.43102],[8.55199,47.43104],[8.55535,47.43066],[8.5561,47.42803],[8.55684,47.42624],[8.55783,47.42554],[8.55697,47.4249],[8.55736,47.42472],[8.5569,47.42424],[8.55723,47.4241],[8.55419,47.4208],[8.56082,47.41817],[8.56129,47.41829],[8.56235,47.41632],[8.56282,47.41643],[8.56323,47.41565],[8.56622,47.41632],[8.56692,47.41629],[8.56735,47.41649],[8.5678,47.41684],[8.56875,47.41855],[8.56903,47.41871],[8.5696,47.41868],[8.56944,47.41926],[8.57223,47.41893],[8.57367,47.42004],[8.57378,47.4178],[8.57342,47.41711],[8.57386,47.41438],[8.57384,47.41324],[8.57331,47.41257],[8.5726,47.41207],[8.573,47.41144],[8.58806,47.40797],[8.58894,47.40756],[8.59312,47.40704],[8.59728,47.40631],[8.59722,47.406],[8.59608,47.40612],[8.59378,47.40222],[8.59622,47.40154],[8.5948,47.39918],[8.59725,47.39851],[8.59644,47.39715],[8.59637,47.39663],[8.59623,47.39646],[8.59453,47.39712],[8.59392,47.39647],[8.59335,47.39614],[8.59208,47.39691],[8.59172,47.39681],[8.59148,47.397],[8.58828,47.3958],[8.58905,47.39501],[8.58995,47.39478],[8.58818,47.39351],[8.58752,47.39321],[8.58747,47.39297],[8.58619,47.3928],[8.58442,47.39195],[8.58369,47.39008],[8.58305,47.38905],[8.58316,47.38831],[8.58437,47.38834],[8.58432,47.38894],[8.58492,47.39011],[8.58528,47.3904],[8.58696,47.39017],[8.5869,47.38977],[8.58765,47.38905],[8.58698,47.38793],[8.59181,47.38638],[8.59307,47.38565],[8.59299,47.38523],[8.59354,47.38522],[8.59274,47.38417],[8.59082,47.38476],[8.59013,47.38381],[8.58966,47.384],[8.58956,47.38373],[8.59217,47.38311],[8.59151,47.38244],[8.59384,47.38081],[8.59407,47.38061],[8.59406,47.38029],[8.59556,47.3796],[8.59574,47.37927],[8.59721,47.37849],[8.59674,47.37782],[8.59702,47.37716],[8.5976,47.37661],[8.59705,47.37589],[8.59778,47.37557],[8.59828,47.3751],[8.59855,47.37473],[8.59813,47.37447],[8.6002,47.37331],[8.60053,47.3734],[8.60096,47.37312],[8.60194,47.37198],[8.60192,47.37171],[8.60324,47.37131],[8.60607,47.36871],[8.60745,47.36816],[8.60812,47.36761],[8.61067,47.3673],[8.612,47.36684],[8.61308,47.36776],[8.61344,47.36779],[8.61366,47.36802],[8.61549,47.3677],[8.61645,47.36841],[8.61665,47.36828],[8.61764,47.36681],[8.61709,47.36626],[8.61682,47.36535],[8.61565,47.36466],[8.61495,47.36458],[8.61557,47.36342],[8.61566,47.36273],[8.61482,47.36263],[8.6147,47.36151],[8.61929,47.36121],[8.61996,47.36104],[8.62174,47.36007],[8.62257,47.35983],[8.62187,47.35946],[8.62133,47.35746],[8.62351,47.35592],[8.62352,47.35561],[8.62544,47.35466],[8.62416,47.35397],[8.62245,47.35364],[8.62209,47.35334],[8.61989,47.35367],[8.61976,47.35385],[8.61844,47.35382],[8.61839,47.35425],[8.61708,47.35414],[8.61569,47.35442],[8.6152,47.3541],[8.61386,47.35402],[8.61255,47.35437],[8.61156,47.35394],[8.61107,47.35352],[8.61042,47.35337],[8.60946,47.35352],[8.60776,47.35333],[8.60607,47.35363],[8.60506,47.35359],[8.6038,47.353],[8.60305,47.35219],[8.6032,47.35207],[8.60294,47.35175],[8.603,47.35076],[8.60262,47.35073],[8.6016,47.35073],[8.60104,47.35105],[8.60026,47.35112],[8.5996,47.35145],[8.59859,47.35145],[8.59824,47.35165],[8.59689,47.3514],[8.59666,47.35161],[8.59596,47.35169],[8.59564,47.3519],[8.59494,47.35161],[8.59454,47.35175],[8.5939,47.35161],[8.5935,47.35211],[8.59229,47.3523],[8.59189,47.35278],[8.59118,47.35321],[8.59047,47.35271],[8.59014,47.35286],[8.58846,47.35289],[8.58797,47.35307],[8.58748,47.35267],[8.5863,47.35288],[8.58591,47.35231],[8.5853,47.35201],[8.58462,47.35141],[8.58417,47.35129],[8.58438,47.35116],[8.58398,47.35085],[8.58348,47.35104],[8.58335,47.35087],[8.58221,47.35101],[8.58246,47.35062],[8.57851,47.34873],[8.57827,47.34888],[8.57786,47.34865],[8.57686,47.34878],[8.57688,47.34859],[8.57625,47.34839],[8.57308,47.34751],[8.573,47.34765],[8.57214,47.34744],[8.57163,47.34728],[8.5717,47.34712],[8.57029,47.34672],[8.56968,47.3476],[8.56741,47.34674],[8.56681,47.34713]]],"terms_text":"Stadt Zürich Open Government Data","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Zuerich-zh_uebersichtsplan-tms","name":"Stadt Zürich Übersichtsplan","type":"tms","template":"https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","zoomExtent":[0,21],"polygon":[[[8.45788,47.44582],[8.57392,47.44477],[8.57362,47.43124],[8.60266,47.43096],[8.60231,47.41746],[8.6318,47.41716],[8.6295,47.33628],[8.57162,47.33679],[8.57152,47.32292],[8.54236,47.3236],[8.54212,47.31013],[8.48418,47.31062],[8.48478,47.33762],[8.45582,47.33787],[8.45609,47.35135],[8.42713,47.35161],[8.42864,47.43259],[8.45745,47.43231],[8.45788,47.44582]]],"terms_text":"Stadt Zürich Open Government Data","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"stamen-terrain-background","name":"Stamen Terrain","type":"tms","template":"https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg","zoomExtent":[4,18],"terms_url":"http://maps.stamen.com/#terrain","terms_text":"Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL","icon":"https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png"},{"id":"stockholm-orto","name":"Stockholm Orthophoto","type":"wms","template":"https://openmap.stockholm.se/bios/wms/app/baggis/web/WMS_STHLM_ORTOFOTO_2016?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=p_1002630&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[5,21],"polygon":[[[17.8755,59.2625],[17.94411,59.27307],[18.09551,59.22603],[18.19582,59.22786],[18.20297,59.24886],[18.12538,59.30779],[18.1786,59.32566],[18.09876,59.3721],[18.04264,59.37816],[18.00796,59.34334],[17.93655,59.37641],[17.97483,59.40246],[17.90882,59.4417],[17.8854,59.43792],[17.88918,59.41382],[17.84077,59.38568],[17.81708,59.40054],[17.77725,59.39984],[17.75622,59.3916],[17.79899,59.36204],[17.94993,59.31121],[17.85622,59.28412],[17.8755,59.2625]]],"terms_url":"https://dataportalen.stockholm.se/dataportalen/","terms_text":"© Stockholm municipality, CC0","best":true,"description":"Orthophotos from the municipality of Stockholm 2016, CC0 license","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Stockholm_vapen_bra.svg/196px-Stockholm_vapen_bra.svg.png"},{"id":"Stuttgart-latest","name":"Stuttgart Luftbild Stadtmessungsamt 2017","type":"wms","template":"https://gis5.stuttgart.de/arcgis/services/1_Base/WMS_Luftbilder_aktuell/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-04-21T00:00:00.000Z","startDate":"2017-04-12T00:00:00.000Z","polygon":[[[9.0262,48.88138],[9.09436,48.88137],[9.0944,48.89936],[9.10812,48.89934],[9.10813,48.92635],[9.19002,48.92621],[9.19009,48.93518],[9.2583,48.93509],[9.25825,48.92608],[9.31283,48.92595],[9.31278,48.91696],[9.35372,48.91683],[9.35337,48.87188],[9.36702,48.87183],[9.36683,48.84483],[9.38045,48.84481],[9.38021,48.80884],[9.36656,48.8089],[9.36639,48.78192],[9.42079,48.78173],[9.42012,48.70079],[9.32503,48.7011],[9.32473,48.65614],[9.27043,48.65626],[9.27034,48.63831],[9.24321,48.63835],[9.24313,48.62038],[9.18887,48.62048],[9.18889,48.62947],[9.1482,48.62953],[9.14826,48.6565],[9.1347,48.65652],[9.13473,48.66552],[9.08044,48.66555],[9.08042,48.65657],[9.02612,48.65662],[9.02612,48.64761],[8.97184,48.64761],[8.9717,48.66558],[8.91751,48.66557],[8.91751,48.68355],[8.90391,48.68353],[8.90388,48.70153],[8.91747,48.70154],[8.91744,48.71054],[8.93104,48.71053],[8.93101,48.73751],[8.99899,48.73753],[8.99899,48.74652],[9.02617,48.74653],[9.02621,48.81845],[8.99897,48.81847],[8.99898,48.82745],[8.95812,48.82745],[8.95806,48.86342],[8.97171,48.86342],[8.97171,48.87242],[9.02622,48.87241],[9.0262,48.88138]]],"best":true,"icon":"https://www.stuttgart.de/favicon.ico"},{"id":"Surrey-Air_Survey","name":"Surrey Air Survey","type":"tms","template":"https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png","endDate":"2009-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[8,21],"polygon":[[[-0.75248,51.08219],[-0.75952,51.08563],[-0.80143,51.14579],[-0.83989,51.14407],[-0.83577,51.18024],[-0.85295,51.20113],[-0.85227,51.20962],[-0.84952,51.2179],[-0.82669,51.24037],[-0.8121,51.24692],[-0.77365,51.24596],[-0.75442,51.23811],[-0.75408,51.23392],[-0.74464,51.23338],[-0.74307,51.28472],[-0.7515,51.30695],[-0.76644,51.3121],[-0.78206,51.32702],[-0.78154,51.33881],[-0.73743,51.37205],[-0.71923,51.37697],[-0.67958,51.3848],[-0.68078,51.39015],[-0.65314,51.39176],[-0.63014,51.39058],[-0.62911,51.39701],[-0.62344,51.39776],[-0.61314,51.42956],[-0.60025,51.44591],[-0.58671,51.44454],[-0.57624,51.4532],[-0.56268,51.45235],[-0.54774,51.447],[-0.53727,51.44486],[-0.5371,51.45267],[-0.54396,51.45459],[-0.54053,51.46989],[-0.53092,51.47609],[-0.50912,51.47448],[-0.5086,51.46957],[-0.49006,51.46828],[-0.45264,51.46069],[-0.44869,51.44293],[-0.44148,51.44186],[-0.44183,51.43694],[-0.41127,51.43801],[-0.40149,51.42795],[-0.38071,51.42624],[-0.38054,51.41617],[-0.34913,51.41382],[-0.3275,51.40375],[-0.30398,51.39904],[-0.30192,51.37547],[-0.30948,51.36969],[-0.31119,51.35297],[-0.29557,51.35415],[-0.29231,51.36733],[-0.2851,51.36808],[-0.27875,51.37719],[-0.26553,51.38372],[-0.24115,51.3848],[-0.21231,51.36283],[-0.21077,51.34986],[-0.19086,51.35029],[-0.15429,51.33388],[-0.14966,51.30577],[-0.10743,51.29665],[-0.08872,51.30996],[-0.08786,51.32208],[-0.0652,51.32154],[-0.06417,51.32648],[-0.05198,51.32637],[-0.05284,51.33463],[-0.03308,51.34309],[0.00192,51.33763],[0.01188,51.3282],[0.01393,51.29944],[0.02029,51.29944],[0.02406,51.30727],[0.03316,51.30867],[0.04552,51.30545],[0.05239,51.28774],[0.06166,51.25778],[0.06406,51.24155],[0.04621,51.21263],[0.04071,51.21091],[0.04483,51.19898],[0.04947,51.19973],[0.05582,51.19446],[0.06114,51.17907],[0.06234,51.15421],[0.05771,51.14171],[0.02046,51.13654],[-0.0446,51.13364],[-0.1567,51.13525],[-0.15721,51.129],[-0.22879,51.11834],[-0.24733,51.11834],[-0.25008,51.12114],[-0.29935,51.1137],[-0.32218,51.11198],[-0.32235,51.10584],[-0.3596,51.10196],[-0.35891,51.11133],[-0.38638,51.11176],[-0.3869,51.10625],[-0.4281,51.09472],[-0.48568,51.09516],[-0.48713,51.08723],[-0.52974,51.08654],[-0.53023,51.07899],[-0.61046,51.07655],[-0.60997,51.08067],[-0.6578,51.07922],[-0.65828,51.07434],[-0.68365,51.07075],[-0.6998,51.07083],[-0.72966,51.07449],[-0.75248,51.08219]]]},{"id":"susono_shizuoka_jp_orthophoto","name":"Susono city orthophoto","type":"tms","template":"http://tile.senmon.jpn.com/1.0.0/susono/{zoom}/{x}/{-y}.png","zoomExtent":[12,19],"polygon":[[[138.85747,35.2833],[138.85746,35.27794],[138.83993,35.27796],[138.83992,35.27254],[138.83109,35.27255],[138.83108,35.26719],[138.81337,35.26721],[138.81338,35.27262],[138.80462,35.27263],[138.80466,35.29425],[138.79592,35.29426],[138.79593,35.29974],[138.77833,35.29976],[138.77837,35.32135],[138.76959,35.32136],[138.7696,35.32679],[138.76081,35.3268],[138.76082,35.33224],[138.74343,35.33226],[138.74341,35.32154],[138.75209,35.32153],[138.75203,35.28905],[138.7608,35.28904],[138.76077,35.27281],[138.76955,35.2728],[138.76952,35.25661],[138.77822,35.2566],[138.77821,35.25117],[138.78708,35.25116],[138.78703,35.22413],[138.80451,35.22411],[138.8045,35.21861],[138.81333,35.2186],[138.81332,35.21323],[138.82205,35.21322],[138.82204,35.20776],[138.83084,35.20775],[138.83083,35.20233],[138.84839,35.2023],[138.84837,35.19688],[138.85712,35.19687],[138.8571,35.18605],[138.86589,35.18604],[138.86587,35.17521],[138.87463,35.1752],[138.87462,35.16976],[138.88334,35.16975],[138.88333,35.1643],[138.8921,35.16429],[138.89207,35.14805],[138.90949,35.14803],[138.9095,35.15343],[138.91839,35.15342],[138.91841,35.16421],[138.92719,35.1642],[138.9272,35.16951],[138.96231,35.16946],[138.96232,35.17485],[138.97993,35.17483],[138.97994,35.18017],[138.99751,35.18015],[138.99752,35.18553],[139.00634,35.18552],[139.00636,35.19624],[138.99761,35.19625],[138.99762,35.20168],[138.98895,35.20169],[138.98901,35.23415],[138.98028,35.23416],[138.98029,35.23961],[138.97161,35.23962],[138.9716,35.23426],[138.94522,35.23429],[138.94521,35.22895],[138.92761,35.22897],[138.9276,35.22362],[138.91868,35.22363],[138.91869,35.22903],[138.90993,35.22904],[138.90994,35.23449],[138.9012,35.2345],[138.90124,35.25615],[138.89248,35.25616],[138.89249,35.26158],[138.88375,35.26159],[138.88379,35.28327],[138.85747,35.2833]]],"terms_url":"https://www.geospatial.jp/ckan/dataset/susono-photo-202006","terms_text":"Susono city orthophoto","description":"The aerial photos released by Susono City as open data."},{"id":"Swietochlowice-2008","name":"Świętochłowice: Orthophotomap 2008 (aerial image)","type":"wms","template":"https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2008&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}","projection":"EPSG:4326","endDate":"2008-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[18.92818,50.32151],[18.93028,50.31766],[18.93402,50.31392],[18.93193,50.31119],[18.92556,50.30575],[18.92429,50.30354],[18.92964,50.30206],[18.93083,50.3004],[18.9283,50.2961],[18.93573,50.29356],[18.93885,50.28965],[18.9371,50.28727],[18.93966,50.28206],[18.93402,50.27553],[18.92953,50.27543],[18.93037,50.27338],[18.93413,50.27104],[18.93239,50.26883],[18.92716,50.26926],[18.90447,50.27371],[18.89758,50.27612],[18.89569,50.28028],[18.89783,50.28566],[18.89712,50.2878],[18.88292,50.29258],[18.88031,50.29473],[18.88311,50.29894],[18.88819,50.30164],[18.88326,50.30717],[18.88444,50.31183],[18.89149,50.31809],[18.89306,50.32558],[18.89568,50.32704],[18.92818,50.32151]]],"terms_text":"Urząd Miasta Świętochłowice"},{"id":"Swietochlowice-2009","name":"Świętochłowice: Orthophotomap 2009 (aerial image)","type":"wms","template":"https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2009&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}","projection":"EPSG:4326","endDate":"2009-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[18.92818,50.32151],[18.93028,50.31766],[18.93402,50.31392],[18.93193,50.31119],[18.92556,50.30575],[18.92429,50.30354],[18.92964,50.30206],[18.93083,50.3004],[18.9283,50.2961],[18.93573,50.29356],[18.93885,50.28965],[18.9371,50.28727],[18.93966,50.28206],[18.93402,50.27553],[18.92953,50.27543],[18.93037,50.27338],[18.93413,50.27104],[18.93239,50.26883],[18.92716,50.26926],[18.90447,50.27371],[18.89758,50.27612],[18.89569,50.28028],[18.89783,50.28566],[18.89712,50.2878],[18.88292,50.29258],[18.88031,50.29473],[18.88311,50.29894],[18.88819,50.30164],[18.88326,50.30717],[18.88444,50.31183],[18.89149,50.31809],[18.89306,50.32558],[18.89568,50.32704],[18.92818,50.32151]]],"terms_text":"Urząd Miasta Świętochłowice"},{"id":"Swietochlowice-2012","name":"Świętochłowice: Orthophotomap 2012 (aerial image)","type":"wms","template":"https://swietochlowice.geoportal2.pl/map/wms/wms.php?SERVICE=WMS&REQUEST=GetMap&VERSION=1.1.1&LAYERS=ortofotomapa2012&STYLES=&FORMAT=image/jpeg&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&SRS={proj}","projection":"EPSG:4326","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[18.92818,50.32151],[18.93028,50.31766],[18.93402,50.31392],[18.93193,50.31119],[18.92556,50.30575],[18.92429,50.30354],[18.92964,50.30206],[18.93083,50.3004],[18.9283,50.2961],[18.93573,50.29356],[18.93885,50.28965],[18.9371,50.28727],[18.93966,50.28206],[18.93402,50.27553],[18.92953,50.27543],[18.93037,50.27338],[18.93413,50.27104],[18.93239,50.26883],[18.92716,50.26926],[18.90447,50.27371],[18.89758,50.27612],[18.89569,50.28028],[18.89783,50.28566],[18.89712,50.2878],[18.88292,50.29258],[18.88031,50.29473],[18.88311,50.29894],[18.88819,50.30164],[18.88326,50.30717],[18.88444,50.31183],[18.89149,50.31809],[18.89306,50.32558],[18.89568,50.32704],[18.92818,50.32151]]],"terms_text":"Urząd Miasta Świętochłowice"},{"id":"Szeged_2011","name":"Szeged orthophoto 2011","type":"tms","template":"http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[20.14599,46.22811],[20.13323,46.22904],[20.12584,46.22987],[20.12233,46.23099],[20.12085,46.23175],[20.11897,46.23351],[20.11312,46.24136],[20.11203,46.2433],[20.11157,46.245],[20.11119,46.24709],[20.11129,46.24877],[20.11159,46.25097],[20.11222,46.2528],[20.11299,46.25427],[20.11354,46.25535],[20.11477,46.2568],[20.13523,46.27685],[20.13664,46.27751],[20.13789,46.27803],[20.13939,46.27835],[20.14088,46.27846],[20.16115,46.27816],[20.16211,46.27816],[20.16359,46.2777],[20.16618,46.27615],[20.16878,46.27386],[20.16961,46.27144],[20.16959,46.27045],[20.17009,46.27044],[20.17399,46.26433],[20.17662,46.25829],[20.1948,46.25492],[20.18587,46.24481],[20.18466,46.24531],[20.17804,46.23831],[20.17818,46.23771],[20.17953,46.2371],[20.17257,46.23002],[20.16983,46.23504],[20.16877,46.23629],[20.16703,46.23785],[20.16594,46.23873],[20.16544,46.239],[20.16548,46.239],[20.16352,46.24014],[20.16021,46.2412],[20.15927,46.24153],[20.15927,46.24158],[20.15835,46.24185],[20.15495,46.24229],[20.15108,46.23515],[20.14938,46.23246],[20.14599,46.22811]]],"terms_url":"http://www.geo.u-szeged.hu","terms_text":"SZTE TFGT - University of Szeged","best":true,"description":"Inner part of Szeged"},{"id":"TW_NLSC_WMS_EMAP6","name":"Taiwan e-Map Open Data","type":"tms","template":"https://wmts.nlsc.gov.tw/wmts/EMAP6_OPENDATA/default/GoogleMapsCompatible/{zoom}/{y}/{x}","zoomExtent":[0,15],"polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw/","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"TW_NLSC_WMS_LANDSECT","name":"Taiwan Land-Section Data","type":"wms","template":"https://wms.nlsc.gov.tw/wms?LAYERS=LANDSECT&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw/","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"TW_NLSC_WMS_Village","name":"Taiwan Village Boundaries","type":"wms","template":"https://wms.nlsc.gov.tw/wms?LAYERS=Village&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw/","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"TEClines","name":"TEC bus lines","type":"wms","template":"https://geodata.tec-wl.be/arcgis/services/Lignes/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[5.40236,49.50688],[5.81984,49.54253],[6.1714,49.62089],[5.85829,49.68846],[5.7704,49.85343],[5.894,50.11832],[6.15492,50.13593],[6.39662,50.36775],[6.28126,50.46576],[6.11372,50.7933],[5.72646,50.77941],[5.70998,50.85229],[5.61385,50.80024],[5.46278,50.79677],[5.21284,50.70119],[4.94917,50.80371],[4.75966,50.80718],[4.72121,50.88869],[4.60585,50.77941],[4.48775,50.85749],[4.36964,50.85056],[4.15266,50.72728],[3.59236,50.76725],[3.29848,50.76377],[3.04579,50.80024],[2.86177,50.72728],[2.89748,50.68553],[3.0815,50.76725],[3.19685,50.68031],[3.28749,50.52691],[3.67201,50.47625],[3.68574,50.31692],[3.99062,50.27305],[4.14992,50.17465],[4.24055,50.08661],[4.15266,49.99842],[4.18562,49.96486],[4.55366,49.94542],[4.69923,50.03372],[4.81184,50.0919],[4.84206,50.01607],[4.86677,49.90475],[4.85854,49.80382],[5.08925,49.7648],[5.34743,49.60843],[5.40236,49.50688]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png","overlay":true},{"id":"TECstops","name":"TEC bus stops","type":"wms","template":"https://geodata.tec-wl.be/arcgis/services/Poteaux/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[5.40236,49.50688],[5.81984,49.54253],[6.1714,49.62089],[5.85829,49.68846],[5.7704,49.85343],[5.894,50.11832],[6.15492,50.13593],[6.39662,50.36775],[6.28126,50.46576],[6.11372,50.7933],[5.72646,50.77941],[5.70998,50.85229],[5.61385,50.80024],[5.46278,50.79677],[5.21284,50.70119],[4.94917,50.80371],[4.75966,50.80718],[4.72121,50.88869],[4.60585,50.77941],[4.48775,50.85749],[4.36964,50.85056],[4.15266,50.72728],[3.59236,50.76725],[3.29848,50.76377],[3.04579,50.80024],[2.86177,50.72728],[2.89748,50.68553],[3.0815,50.76725],[3.19685,50.68031],[3.28749,50.52691],[3.67201,50.47625],[3.68574,50.31692],[3.99062,50.27305],[4.14992,50.17465],[4.24055,50.08661],[4.15266,49.99842],[4.18562,49.96486],[4.55366,49.94542],[4.69923,50.03372],[4.81184,50.0919],[4.84206,50.01607],[4.86677,49.90475],[4.85854,49.80382],[5.08925,49.7648],[5.34743,49.60843],[5.40236,49.50688]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png","overlay":true},{"id":"texas_naip_2012_wms","name":"Texas NAIP Imagery 2012","type":"wms","template":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP12_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/924d3c6f-9f74-4147-8044-d4025f12eac3","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2012-10-01"},{"id":"texas_naip_2014_wms","name":"Texas NAIP Imagery 2014","type":"wms","template":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP14_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/e7d2ccee-5288-4257-85bc-e4a2babf91ee","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2014-10-31"},{"id":"texas_naip_2016_wms","name":"Texas NAIP Imagery 2016","type":"wms","template":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP16_NC_CIR_1m/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/a40c2ff9-ccac-4c76-99a1-2382c09cf716","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2016-12-15"},{"id":"texas_naip_2018_wms","name":"Texas NAIP Imagery 2018","type":"wms","template":"https://webservices.tnris.org/arcgis/services/NAIP/NAIP18_NC_CIR_60cm/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/f1d66250-4021-47df-9fe9-9fca286b0f50","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2018-12-31"},{"id":"US-TIGER-Roads-2017","name":"TIGER Roads 2017","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"US-TIGER-Roads-2018","name":"TIGER Roads 2018","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cjo1wbulo3ub82ro1c9onlzmh/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"US-TIGER-Roads-2019","name":"TIGER Roads 2019","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/ck0dxfa7602e61cmjk7p86749/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"tirol.gv.at-contourlines","name":"Tiris: contour lines","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?LAYERS=Hoehenschichtlinien_20m&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[15,22],"polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","overlay":true},{"id":"tirol.gv.at-DGM","name":"Tiris: DGM (Terrain model)","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?LAYERS=Image_Schummerung_Gelaendemodell&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"tirol.gv.at-DOM","name":"Tiris: DOM (Surface model)","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?LAYERS=Image_Schummerung_Oberflaechenmodell&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"tirol.gv.at-orthofoto","name":"Tiris: orthophoto","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?LAYERS=Image_Aktuell_RGB&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"tirol.gv.at-orthofoto-cir","name":"Tiris: orthophoto infrared","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?LAYERS=Image_Aktuell_CIR&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"lu.geoportail.opendata.topo","name":"Topographical Map geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png","endDate":"2010-07-20T00:00:00.000Z","startDate":"2013-07-19T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"Torokbalint-orthophoto-2013","name":"Törökbálint orthophoto 2013","type":"wms","template":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-09-01T00:00:00.000Z","startDate":"2013-09-01T00:00:00.000Z","polygon":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"terms_url":"http://www.torokbalint.hu","terms_text":"Törökbálint","description":"5 cm resolution bald image"},{"id":"Torokbalint-orthophoto-2015","name":"Törökbálint orthophoto 2015","type":"wms","template":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=TBORTO_2015_20160218&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"terms_url":"http://www.torokbalint.hu/","terms_text":"Törökbálint","description":"5 cm resolution bald image"},{"id":"Torokbalint-orthophoto-2018","name":"Törökbálint orthophoto 2018","type":"wms","template":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=TBORTO_2018&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"terms_url":"http://www.torokbalint.hu/","terms_text":"Törökbálint","best":true,"description":"5 cm resolution bald image"},{"id":"Toulouse-Orthophotoplan-2007","name":"Toulouse - Orthophotoplan 2007","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}","endDate":"2007-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.192,43.63288],[1.20154,43.63297],[1.20111,43.65549],[1.2228,43.6557],[1.22262,43.66534],[1.22753,43.66538],[1.22754,43.66564],[1.23376,43.66569],[1.23376,43.66502],[1.23512,43.66503],[1.23509,43.66707],[1.24436,43.66716],[1.24416,43.67439],[1.2494,43.67443],[1.2494,43.67466],[1.25557,43.67472],[1.25557,43.67445],[1.25695,43.67447],[1.25688,43.67853],[1.28749,43.67883],[1.28708,43.70132],[1.30882,43.70146],[1.30865,43.71277],[1.33033,43.71295],[1.33002,43.73052],[1.33671,43.73058],[1.33673,43.73122],[1.37343,43.73105],[1.37358,43.72458],[1.46045,43.72529],[1.46078,43.7028],[1.48249,43.70295],[1.48298,43.66921],[1.50468,43.66936],[1.50484,43.65812],[1.52655,43.65827],[1.52669,43.64703],[1.54837,43.64716],[1.54854,43.63594],[1.57022,43.63608],[1.57051,43.61358],[1.54882,43.61343],[1.5491,43.59095],[1.57077,43.59107],[1.57094,43.57983],[1.57937,43.57989],[1.57948,43.57377],[1.58091,43.57378],[1.58109,43.55738],[1.57123,43.55731],[1.57165,43.52355],[1.39848,43.52226],[1.39865,43.51101],[1.3121,43.51025],[1.3119,43.52152],[1.29026,43.52131],[1.28986,43.54382],[1.31152,43.54401],[1.31133,43.55526],[1.30369,43.55519],[1.30361,43.55951],[1.29554,43.55943],[1.29554,43.55955],[1.28956,43.55945],[1.28929,43.57754],[1.26757,43.57736],[1.2674,43.58861],[1.25355,43.5885],[1.25338,43.59563],[1.2518,43.59563],[1.2518,43.59494],[1.23504,43.59478],[1.23504,43.5946],[1.22396,43.5946],[1.22394,43.59947],[1.21397,43.5993],[1.21388,43.60464],[1.20206,43.60448],[1.20195,43.61048],[1.19243,43.61037],[1.192,43.63288]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2007/information/","terms_text":"Orthophotoplan 2007 - Toulouse Métropole, 20/09/2012, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2011","name":"Toulouse - Orthophotoplan 2011","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2011/information/","terms_text":"Orthophotoplan 2011 - Toulouse Métropole, 20/09/2012, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2013","name":"Toulouse - Orthophotoplan 2013","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2013/{zoom}/{x}/{y}","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2013/information/","terms_text":"Orthophotoplan 2013 - Toulouse Métropole, 31/12/2013, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2015","name":"Toulouse - Orthophotoplan 2015","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2015/{zoom}/{x}/{y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2015/information/","terms_text":"Orthophotoplan 2015 - Toulouse Métropole, 14/12/2015, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2017","name":"Toulouse - Orthophotoplan 2017","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2017/{zoom}/{x}/{y}","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2017/information/","terms_text":"Orthophotoplan 2017 - Toulouse Métropole, 04/07/2018, sous license ODbL","best":true},{"id":"Tours-Orthophoto-2008_2010","name":"Tours - Orthophotos 2008-2010","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}","endDate":"2011-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[0.54575,47.46526],[0.54585,47.46082],[0.53922,47.4607],[0.53935,47.45624],[0.5328,47.4561],[0.5329,47.45157],[0.52619,47.4514],[0.52659,47.44249],[0.50009,47.44207],[0.50024,47.43758],[0.4936,47.43743],[0.4937,47.43293],[0.46061,47.43246],[0.46072,47.42798],[0.4541,47.42781],[0.45493,47.40539],[0.46154,47.40545],[0.46191,47.39649],[0.46843,47.3966],[0.46913,47.37864],[0.47571,47.37876],[0.47621,47.3652],[0.48283,47.36535],[0.48296,47.36083],[0.47635,47.36074],[0.47665,47.35173],[0.47005,47.35162],[0.4702,47.34713],[0.46375,47.34701],[0.45714,47.34241],[0.45729,47.33791],[0.45067,47.33781],[0.45084,47.33331],[0.44422,47.3332],[0.44438,47.32871],[0.43114,47.3285],[0.43163,47.315],[0.43824,47.31511],[0.43838,47.31062],[0.47145,47.31114],[0.47131,47.31566],[0.47789,47.31575],[0.47807,47.31128],[0.48468,47.31136],[0.48486,47.30687],[0.49144,47.30698],[0.49174,47.29797],[0.48516,47.29787],[0.48543,47.28887],[0.47885,47.28877],[0.47916,47.27978],[0.48578,47.2799],[0.48591,47.27539],[0.49254,47.2755],[0.49267,47.27101],[0.4993,47.27111],[0.49943,47.26661],[0.51927,47.26692],[0.51942,47.26242],[0.52602,47.26252],[0.52587,47.26702],[0.5457,47.26734],[0.54555,47.27183],[0.55877,47.27204],[0.55863,47.27652],[0.56523,47.27663],[0.56508,47.28112],[0.57168,47.28123],[0.57152,47.28572],[0.57814,47.28583],[0.57799,47.29033],[0.5846,47.29043],[0.58431,47.29942],[0.5975,47.29961],[0.59766,47.29514],[0.65716,47.296],[0.6573,47.29151],[0.6705,47.29172],[0.67035,47.29621],[0.68362,47.29637],[0.68343,47.30089],[0.69006,47.30096],[0.68992,47.30547],[0.7362,47.30612],[0.73608,47.31061],[0.7559,47.31089],[0.75577,47.31539],[0.76238,47.31547],[0.76223,47.31999],[0.77549,47.32015],[0.77497,47.33882],[0.77458,47.35163],[0.76804,47.35159],[0.76759,47.36053],[0.77424,47.36062],[0.77335,47.39213],[0.76674,47.39202],[0.76644,47.40108],[0.77306,47.40111],[0.77289,47.41013],[0.76618,47.41002],[0.76603,47.4145],[0.75276,47.4143],[0.75298,47.40981],[0.74624,47.4097],[0.74594,47.42322],[0.73923,47.42315],[0.73887,47.43661],[0.73233,47.43652],[0.73219,47.44106],[0.7255,47.44098],[0.72542,47.44535],[0.73188,47.44548],[0.73185,47.45011],[0.73845,47.45023],[0.73831,47.45463],[0.74494,47.45474],[0.74432,47.4772],[0.73107,47.47697],[0.7309,47.48154],[0.71762,47.48126],[0.71779,47.47684],[0.69777,47.4765],[0.69805,47.47198],[0.69145,47.47189],[0.69173,47.46302],[0.6851,47.46293],[0.68494,47.46735],[0.67826,47.46733],[0.67798,47.47622],[0.67141,47.47616],[0.67104,47.4882],[0.65773,47.48797],[0.65782,47.48504],[0.65119,47.48483],[0.65147,47.47586],[0.64482,47.47572],[0.64493,47.47126],[0.6118,47.47075],[0.61188,47.46631],[0.60528,47.46612],[0.60542,47.46166],[0.59888,47.46155],[0.59902,47.45709],[0.57249,47.45669],[0.57218,47.46565],[0.54575,47.46526]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto","terms_text":"Orthophoto Tour(s) Plus 2008"},{"id":"Tours-Orthophoto-2013","name":"Tours - Orthophotos 2013","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[0.77512,47.32983],[0.77427,47.35617],[0.77053,47.35611],[0.77024,47.36512],[0.77398,47.36517],[0.7728,47.40148],[0.7904,47.40147],[0.78988,47.4103],[0.79117,47.41047],[0.79108,47.41942],[0.79392,47.41942],[0.79319,47.43733],[0.79834,47.43742],[0.79808,47.45544],[0.80044,47.45541],[0.80138,47.46426],[0.80074,47.46899],[0.79396,47.47331],[0.78405,47.47323],[0.78387,47.47871],[0.77606,47.47859],[0.77585,47.48204],[0.77066,47.48219],[0.77044,47.4859],[0.76096,47.49092],[0.75718,47.49092],[0.73753,47.50336],[0.7259,47.50588],[0.71113,47.50576],[0.70418,47.50408],[0.69109,47.50038],[0.69045,47.49718],[0.67757,47.49683],[0.67757,47.49353],[0.66427,47.49301],[0.6635,47.48953],[0.65088,47.48958],[0.65133,47.48032],[0.64734,47.4803],[0.64747,47.47852],[0.64474,47.47846],[0.64479,47.47575],[0.64238,47.47578],[0.64225,47.47302],[0.63835,47.47294],[0.63792,47.47131],[0.60513,47.47079],[0.60513,47.46632],[0.59852,47.46603],[0.59878,47.46156],[0.592,47.46156],[0.59226,47.45976],[0.58084,47.45971],[0.58007,47.46145],[0.57234,47.46139],[0.57222,47.46512],[0.55874,47.46489],[0.5466,47.46052],[0.53269,47.45355],[0.52677,47.45315],[0.52677,47.45152],[0.52231,47.45123],[0.52256,47.44804],[0.51977,47.44776],[0.52007,47.44247],[0.4975,47.4416],[0.49716,47.44049],[0.49355,47.44015],[0.49355,47.43573],[0.47943,47.43575],[0.46171,47.42819],[0.45643,47.42088],[0.45489,47.41229],[0.45506,47.40218],[0.46149,47.40193],[0.46167,47.39641],[0.46879,47.39602],[0.47016,47.35173],[0.45677,47.3515],[0.45729,47.34254],[0.43085,47.34196],[0.43196,47.30602],[0.47154,47.3067],[0.47257,47.28004],[0.48527,47.28004],[0.48578,47.27084],[0.49935,47.27107],[0.49917,47.26245],[0.55273,47.26304],[0.55222,47.27201],[0.56561,47.27224],[0.56526,47.28156],[0.59118,47.28156],[0.59067,47.29099],[0.66912,47.29169],[0.6832,47.29564],[0.6832,47.30077],[0.69658,47.30123],[0.69641,47.3024],[0.71006,47.30245],[0.72293,47.30589],[0.72285,47.31043],[0.74165,47.31084],[0.75426,47.31392],[0.7625,47.31815],[0.76207,47.32013],[0.76619,47.32009],[0.76956,47.32207],[0.77233,47.32508],[0.77336,47.3267],[0.77512,47.32983]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto","terms_text":"Orthophoto Tour(s)plus 2013"},{"id":"trafikverket-baninfo","name":"Trafikverket Railway Network","type":"wms","template":"https://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Spar_Huvud_och_sidospar&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[7,20],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish railway network, including sidings","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"trafikverket-vagnat","name":"Trafikverket Road Network","type":"wms","template":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagtrafiknat,Funkvagklass,Farjeled&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[13,20],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish NVDB road network","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"trafikverket-vagnat-extra","name":"Trafikverket Road Network extra","type":"wms","template":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagnummer,Vaghinder,Rastplats,Rastficka,Hallplats,Farthinder,BroTunnel,ATK_Matplats&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[3,20],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"trafikverket-vagnat-navn","name":"Trafikverket Street Names","type":"tms","template":"https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png","zoomExtent":[15,19],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish NVDB street names","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"US_Forest_Service_roads_overlay","name":"U.S. Forest Roads Overlay","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiRjk3dWdwYyJ9.Tg_fMJWxygeKBgVTrZHmGA","zoomExtent":[0,20],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197]]],"description":"Highway: Green casing = unclassified. Brown casing = track. Surface: gravel = light brown fill, Asphalt = black, paved = gray, ground =white, concrete = blue, grass = green. Seasonal = white bars","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USForestService-overlay.png","overlay":true},{"id":"US_Forest_Service_roads","name":"U.S. Forest Service roads","type":"tms","template":"https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png","zoomExtent":[0,19],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197]]]},{"id":"UkraineDonAndriivskaOTG2020","name":"Ukraine - Andriivska OTG 2020","type":"tms","template":"https://otgportal.com.ua//arcgis/rest/services/don_andriivska/%D0%90%D0%BD%D0%B4%D1%80%D1%96%D1%97%D0%B2%D1%81%D1%8C%D0%BA%D0%B0_%D0%BE%D1%80%D1%82%D0%BE/MapServer/tile/{zoom}/{y}/{x}","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[11,19],"polygon":[[[37.3003,48.7113],[37.4479,48.7115],[37.4455,48.6653],[37.4197,48.612],[37.3847,48.5866],[37.2577,48.5629],[37.2467,48.5959],[37.2003,48.599],[37.1894,48.6174],[37.2165,48.6639],[37.2642,48.6533],[37.3003,48.7113]]],"terms_url":"http://andriivska.gromada.org.ua/","terms_text":"Геопортал Андріївської громади","best":true},{"id":"UkraineKyiv2014DZK","name":"Ukraine - Kyiv 2014 (DZK)","type":"tms","template":"https://map.land.gov.ua/map/ortho_kiev/{zoom}/{x}/{-y}.jpg","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[30.30752,50.57184],[30.33155,50.57402],[30.37687,50.57925],[30.42288,50.58143],[30.4318,50.58579],[30.44416,50.58797],[30.45515,50.58754],[30.46545,50.58449],[30.46819,50.57751],[30.49085,50.57489],[30.51351,50.57489],[30.52519,50.57402],[30.55608,50.55221],[30.58424,50.53869],[30.5966,50.53781],[30.60896,50.5365],[30.64329,50.5352],[30.65496,50.53563],[30.65496,50.54305],[30.66045,50.54916],[30.66801,50.55439],[30.67762,50.55876],[30.68792,50.56137],[30.70783,50.55614],[30.71127,50.56356],[30.71127,50.57838],[30.72157,50.58231],[30.71882,50.58972],[30.72981,50.59103],[30.74011,50.58841],[30.76208,50.58536],[30.77306,50.58274],[30.78336,50.57795],[30.80259,50.57141],[30.81014,50.56617],[30.82182,50.55439],[30.82525,50.53956],[30.81701,50.53432],[30.79504,50.52909],[30.78474,50.52559],[30.76276,50.51992],[30.76208,50.5125],[30.75315,50.50769],[30.74354,50.50376],[30.73805,50.49721],[30.74629,50.49197],[30.75521,50.48847],[30.74835,50.48236],[30.75178,50.47537],[30.75315,50.46794],[30.74835,50.46138],[30.75178,50.45439],[30.78886,50.43646],[30.7971,50.43165],[30.80328,50.41765],[30.8225,50.40846],[30.82044,50.40102],[30.82319,50.39358],[30.81289,50.39095],[30.80122,50.39139],[30.78954,50.39314],[30.77787,50.3927],[30.77856,50.3857],[30.77169,50.38001],[30.76208,50.37519],[30.75109,50.37256],[30.73873,50.37256],[30.72775,50.37475],[30.71813,50.37957],[30.71539,50.36512],[30.71127,50.35855],[30.70577,50.35241],[30.69753,50.34716],[30.68586,50.34453],[30.65084,50.34058],[30.63848,50.34014],[30.62681,50.33795],[30.62887,50.3305],[30.64947,50.29279],[30.66663,50.28314],[30.67144,50.27656],[30.6632,50.27085],[30.65153,50.26997],[30.64535,50.27612],[30.63368,50.27787],[30.62132,50.27656],[30.61857,50.2691],[30.62956,50.25637],[30.6378,50.25154],[30.64535,50.23792],[30.64398,50.2309],[30.63917,50.22387],[30.62956,50.21992],[30.6069,50.2164],[30.59591,50.2186],[30.59042,50.23353],[30.5863,50.241],[30.57531,50.25505],[30.56501,50.25944],[30.5657,50.2669],[30.56432,50.29718],[30.56638,50.30463],[30.5657,50.31209],[30.55677,50.31691],[30.54441,50.31735],[30.52587,50.32699],[30.51489,50.3305],[30.50253,50.33182],[30.48055,50.33664],[30.47163,50.34146],[30.46957,50.34935],[30.47025,50.35679],[30.46201,50.36205],[30.4524,50.35679],[30.44004,50.35548],[30.43661,50.36512],[30.43111,50.37212],[30.43661,50.37826],[30.43455,50.3857],[30.40914,50.39883],[30.39678,50.40014],[30.3906,50.40671],[30.37069,50.41546],[30.36314,50.42159],[30.3597,50.42902],[30.3597,50.43646],[30.35696,50.44389],[30.3446,50.44477],[30.32056,50.44258],[30.29585,50.44477],[30.28349,50.44477],[30.27799,50.43864],[30.27525,50.43165],[30.26563,50.42771],[30.25396,50.42902],[30.24572,50.42377],[30.23542,50.42771],[30.2416,50.43427],[30.2416,50.44214],[30.23679,50.4487],[30.23885,50.45613],[30.24297,50.46313],[30.24915,50.46968],[30.25671,50.47493],[30.26083,50.48192],[30.26563,50.48847],[30.26907,50.49983],[30.26151,50.50595],[30.26357,50.51381],[30.26975,50.51992],[30.28898,50.52821],[30.29722,50.53345],[30.30271,50.54],[30.30203,50.54741],[30.30477,50.55483],[30.32743,50.55221],[30.33086,50.55919],[30.32262,50.56486],[30.31233,50.56835],[30.30752,50.57184]]],"description":"Works only from within Ukraine or with an Ukrainian proxy server."},{"id":"UkraineLubetskaOTG2020","name":"Ukraine - Lubetska OTG 2020","type":"tms","template":"https://otgportal.com.ua/arcgis/rest/services/chern_lubecka/Lubecka_ortho1000_2020/MapServer/WMTS/tile/1.0.0/chern_lubecka_Lubecka_ortho1000_2020/default/GoogleMapsCompatible/{zoom}/{y}/{x}","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[11,20],"polygon":[[[30.9471,51.6608],[30.8925,51.592],[30.8372,51.5811],[30.8142,51.5834],[30.7517,51.6135],[30.669,51.681],[30.5945,51.6642],[30.5577,51.7027],[30.6686,51.761],[30.6985,51.8016],[30.7452,51.7905],[30.7342,51.7703],[30.8135,51.7425],[30.85856,51.68214],[30.9261,51.67366],[30.9471,51.6608]]],"terms_text":"Map data: © Геоінформаційна система Любецької громади","best":true,"icon":"https://gromada.org.ua/favicon-32x32.png"},{"id":"UkraineMykolaiv2018","name":"Ukraine - Mykolaiv 2018","type":"tms","template":"http://mbk.mkrada.gov.ua/map/rtile/carto_2013928517078615452/ua/{zoom}/{x}/{y}.png","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[11,21],"polygon":[[[31.88301,47.01397],[31.87752,46.97838],[31.91391,46.98447],[31.91666,46.97932],[31.89468,46.95823],[31.8782,46.95026],[31.88988,46.93339],[31.90018,46.92307],[31.93176,46.91697],[31.9558,46.91228],[31.98257,46.90665],[31.99699,46.90008],[31.98532,46.87568],[31.9558,46.85127],[31.93108,46.83389],[31.91391,46.81792],[31.9455,46.81275],[32.00661,46.81322],[32.04025,46.83812],[32.08214,46.87662],[32.11235,46.90478],[32.12814,46.92917],[32.13844,46.95167],[32.13776,46.97744],[32.11647,46.99384],[32.04918,47.01163],[32.02446,47.02614],[32.03476,47.02848],[32.03957,47.03831],[32.03064,47.05328],[31.96404,47.04533],[31.88301,47.01397]]],"terms_text":"Map data: © Геоінформаційна система містобудівного кадастру Миколаївської міської ради","best":true,"icon":"https://mkrada.gov.ua/favicon.ico"},{"id":"Ukraine-orto10000-2012","name":"Ukraine - Orthophotomaps 2012","type":"tms","template":"http://212.26.144.110/tile2/orto_10000/{zoom}/{x}/{-y}.jpg","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[23.6193,51.65491],[24.09803,51.64047],[24.39723,51.89353],[25.19178,51.95913],[26.12263,51.92224],[26.49829,51.80933],[27.09005,51.77026],[27.62861,51.62603],[28.02422,51.59093],[28.28021,51.68172],[28.37662,51.5806],[28.82542,51.5682],[29.19111,51.64253],[29.41718,51.4399],[29.67316,51.51238],[29.82276,51.47512],[30.21837,51.50824],[30.54417,51.30709],[30.63726,51.38599],[30.51425,51.63634],[30.983,52.09005],[31.2822,52.07984],[31.48832,52.13497],[32.11,52.05531],[32.31279,52.11864],[32.43912,52.32434],[32.93114,52.28368],[33.29683,52.39337],[33.75561,52.35277],[34.35734,51.78055],[34.14457,51.76409],[34.05813,51.67965],[34.22103,51.47098],[34.25095,51.30085],[34.7197,51.19056],[35.11199,51.21139],[35.1818,51.08626],[35.38792,51.03402],[35.40787,50.62878],[35.62063,50.38563],[36.06944,50.4513],[36.21571,50.41106],[36.31212,50.28802],[36.4717,50.32624],[36.59138,50.2519],[37.46571,50.45977],[37.735,50.11353],[38.05747,49.9384],[38.19377,49.95765],[38.19045,50.07514],[38.35002,50.08154],[38.41651,49.98972],[38.73899,49.97476],[39.00827,49.83344],[39.14457,49.89987],[39.27755,49.78195],[39.54018,49.74544],[39.79949,49.58406],[40.18845,49.6013],[40.0588,49.50424],[40.20508,49.24666],[39.93247,49.06185],[39.71638,49.01608],[40.08872,48.85448],[39.79617,48.78443],[39.69311,48.65283],[39.86266,48.5693],[39.99231,48.31348],[39.83274,47.92287],[39.74297,47.83144],[39.57675,47.81135],[38.86532,47.85153],[38.77555,47.68618],[38.38327,47.60106],[38.30348,47.52704],[38.30016,47.23891],[38.13393,47.05577],[37.5455,47.05124],[37.31279,46.87654],[37.20973,46.92651],[36.96039,46.83107],[36.7443,46.61685],[36.72436,46.7719],[36.4451,46.72407],[36.10601,46.4728],[36.20574,46.66022],[35.92316,46.64424],[35.43114,46.39948],[35.10202,45.97138],[35.0455,45.75145],[35.47436,45.33],[35.86,45.53297],[35.9963,45.43274],[36.11598,45.51899],[36.66452,45.4514],[36.65454,45.34168],[36.50494,45.31363],[36.47502,45.24111],[36.48832,45.04884],[35.81013,44.98539],[35.5076,45.11222],[35.42782,44.93364],[35.12196,44.76394],[34.67649,44.75686],[33.985,44.37078],[33.68912,44.38504],[33.38327,44.50608],[33.35002,44.589],[33.55282,44.93128],[33.42981,45.1263],[33.19377,45.14271],[32.83141,45.33935],[32.60534,45.30896],[32.44577,45.3557],[32.50893,45.47005],[32.87795,45.68181],[33.57941,45.90665],[33.58938,46.02681],[33.25694,46.07065],[33.02422,45.97138],[31.61133,46.19506],[31.27555,46.61457],[30.87662,46.56887],[30.43446,45.98756],[29.69643,45.55159],[29.79284,45.46306],[29.73965,45.15913],[29.47369,45.41407],[29.18114,45.38373],[28.74896,45.22004],[28.56611,45.23409],[28.29018,45.33],[28.23367,45.49103],[28.31678,45.56789],[28.483,45.54228],[28.47303,45.73753],[28.95175,46.03143],[29.02489,46.18125],[28.9318,46.49569],[29.18779,46.57116],[29.59337,46.45448],[29.81944,46.46593],[29.95574,46.68759],[29.8959,46.8197],[29.56013,46.96963],[29.54683,47.29982],[29.14789,47.50234],[29.23101,47.77562],[29.17117,47.934],[28.86864,47.99411],[28.63593,48.16513],[28.44311,48.06525],[28.36332,48.17178],[28.25694,48.15404],[27.735,48.43494],[27.55547,48.45258],[26.92383,48.34884],[26.36532,48.17178],[26.1193,47.97408],[25.3846,47.91618],[24.91585,47.70408],[24.52024,47.94291],[24.18446,47.90058],[23.58274,48.00523],[23.43646,47.96963],[23.15388,48.10522],[23.07077,47.98743],[22.858,47.9585],[22.76824,48.09856],[22.58539,48.103],[22.51558,48.2161],[22.11332,48.4217],[22.49896,49.06621],[22.58872,49.11193],[22.87795,49.04006],[22.7217,49.18151],[22.71837,49.64652],[23.24364,50.105],[24.04484,50.49785],[24.05813,50.68779],[23.9451,50.81399],[24.10135,50.85388],[23.62928,51.29462],[23.6193,51.65491]]],"description":"Works only from within Ukraine or with an Ukrainian proxy server."},{"id":"UkraineRivne2011","name":"Ukraine - Rivne 2011","type":"tms","template":"http://geo.rv.ua/map/rtile/carto_1850678323655476854/ua/{zoom}/{x}/{y}.png","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[14,19],"polygon":[[[26.3431,50.612],[26.3421,50.6178],[26.3228,50.6407],[26.168,50.6644],[26.1447,50.6035],[26.144,50.5871],[26.1924,50.5603],[26.3053,50.5727],[26.339,50.5932],[26.3431,50.612]]],"terms_url":"https://geo.rv.ua/","terms_text":"© Містобудівний кадастр Рівненської міської ради","best":true,"icon":"https://geo.rv.ua/tpl/icons/favicon.ico"},{"id":"UkraineVinnytsia2020","name":"Ukraine - Vinnytsia 2020","type":"tms","template":"http://maps2.vmr.gov.ua/OpenData/ofp/2020-03/GoogleMapsCompatible/{zoom}/{y}/{x}.png?ver=01032020","endDate":"2020-03-01T00:00:00.000Z","startDate":"2020-03-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[28.46755,49.28259],[28.34945,49.2278],[28.38189,49.19354],[28.51587,49.18198],[28.57965,49.22511],[28.57853,49.25867],[28.54136,49.2818],[28.46755,49.28259]]],"terms_url":"https://www.vmr.gov.ua/","terms_text":"© Вінницька міська рада","best":true,"icon":"https://www.vmr.gov.ua/_catalogs/masterpage/images/favicon.ico"},{"id":"URBIS2009","name":"URBIS 2009 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2009&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2009-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBIS2012","name":"URBIS 2012 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2012&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBIS2014","name":"URBIS 2014 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2014&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[4.4001,50.76373],[4.43093,50.77254],[4.43586,50.77237],[4.46549,50.78373],[4.48189,50.78835],[4.48269,50.79849],[4.46363,50.80686],[4.46407,50.81546],[4.48204,50.81699],[4.48103,50.82343],[4.47465,50.83505],[4.47403,50.84587],[4.46712,50.85447],[4.45257,50.85797],[4.45017,50.86151],[4.42968,50.86764],[4.43423,50.87384],[4.44147,50.87513],[4.44381,50.88004],[4.43534,50.88977],[4.43968,50.89475],[4.43287,50.90363],[4.42096,50.90917],[4.42023,50.91387],[4.38315,50.91381],[4.37879,50.90637],[4.37334,50.90289],[4.36241,50.906],[4.34824,50.90611],[4.33955,50.90685],[4.32771,50.90515],[4.31471,50.89842],[4.30413,50.89498],[4.2871,50.89192],[4.28725,50.88532],[4.29293,50.88265],[4.27948,50.8736],[4.27347,50.86822],[4.27364,50.85871],[4.27688,50.85575],[4.27644,50.84376],[4.26664,50.8405],[4.25488,50.83992],[4.24755,50.83453],[4.24799,50.82866],[4.24357,50.82599],[4.24376,50.81356],[4.25233,50.81268],[4.25649,50.80711],[4.27025,50.8073],[4.27222,50.80537],[4.28414,50.80241],[4.28885,50.80434],[4.29544,50.8043],[4.30046,50.79506],[4.31076,50.79299],[4.31444,50.78372],[4.32628,50.77221],[4.34194,50.76891],[4.34474,50.77029],[4.37535,50.76577],[4.3755,50.76381],[4.4001,50.76373]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBIS2015","name":"URBIS 2015 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2015&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2016","name":"UrbIS-Ortho 2016","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2016&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:4326","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2017","name":"UrbIS-Ortho 2017","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2017&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2018","name":"UrbIS-Ortho 2018","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2018&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2019","name":"UrbIS-Ortho 2019","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2019&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbisAdmFR","name":"UrbisAdm FR","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisFR&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbisAdmNL","name":"UrbisAdm NL","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisNL&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBISfr2013","name":"URBISfr numerical imagery (2013)","type":"wms","template":"https://gis.irisnet.be/arcgis/rest/services/basemap/urbisFR/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBISnl2013","name":"URBISnl numerical imagery (2013)","type":"wms","template":"https://gis.irisnet.be/arcgis/rest/services/basemap/urbisNL/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"USGS-Imagery","name":"USGS Imagery","type":"tms","template":"https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[12,20],"polygon":[[[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.13],[-79.12989,43.13],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-82.67886,41.67159],[-82.88391,41.75369],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.51953,45.33698],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.60983,46.50453],[-84.76227,46.63341],[-84.86115,46.88929],[-88.3882,48.30154],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-123.12915,49.06451],[-123.12915,48.93432],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-123.25411,48.19051],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-139,48.45],[-139,32.5],[-117.18748,32.5],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-115.12495,32.62474],[-115.12495,32.68749],[-114.81241,32.68749],[-114.81261,32.62524],[-114.87531,32.62557],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.434],[-111.4419,31.434],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-80.7,24],[-79.314,27.108],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.691],[-75.62902,44.691],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.80375,43.64253],[-79.12989,43.31497]]],"description":"Public domain aerial imagery, mostly NAIP","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png"},{"id":"USGS-Scanned_Topographic","name":"USGS Topographic Maps","type":"tms","template":"https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png","zoomExtent":[0,16],"polygon":[[[-55.99594,52.00107],[-112.02896,52.00107],[-112.03995,56.01308],[-120.00494,56.00592],[-120.01712,60.01202],[-132.00197,60.00239],[-132.01208,63.00193],[-133.96883,63.0005],[-133.9724,63.99225],[-141.04429,63.98726],[-141.06879,69.92046],[-156.24893,71.51583],[-160.44571,70.83527],[-167.08145,68.42906],[-164.08218,67.03914],[-169.01504,65.68269],[-166.57608,64.50778],[-161.82999,64.05006],[-165.08194,63.2603],[-168.02628,59.78623],[-162.53311,59.73089],[-162.35733,58.55905],[-157.83096,58.31753],[-158.00674,57.52404],[-168.22403,53.51022],[-166.55411,53.14277],[-158.77579,54.88541],[-158.6824,55.74964],[-156.55106,56.00848],[-156.15555,56.77466],[-154.70535,56.14337],[-152.07413,57.37035],[-151.62918,58.22653],[-152.00821,58.98056],[-145.9877,60.24741],[-140.38467,59.48634],[-136.53946,57.8061],[-133.79288,54.83483],[-133.33145,53.14277],[-131.46378,51.69838],[-128.52493,51.74602],[-129.79385,50.90159],[-124.56436,47.49786],[-124.03702,45.48627],[-124.6962,42.90428],[-124.49844,40.34146],[-122.80655,37.53929],[-119.99405,33.37085],[-117.24747,32.5412],[-111.13907,31.1977],[-106.70059,31.23529],[-103.20694,28.64618],[-101.84463,29.8158],[-99.20792,26.28744],[-96.79092,25.75432],[-96.92276,27.96911],[-93.47305,29.68226],[-88.94669,28.87732],[-88.6171,30.17736],[-86.2001,30.36713],[-84.96963,29.43379],[-84.09073,30.06333],[-82.97012,28.95426],[-82.97012,27.26824],[-81.25626,25.07956],[-82.09122,24.56105],[-80.06973,24.76073],[-79.85001,27.11188],[-81.27823,30.70777],[-78.99307,33.20554],[-75.03799,35.5983],[-75.85098,37.24252],[-73.74161,40.4586],[-69.89639,41.60224],[-70.68741,43.17629],[-66.93008,44.69516],[-66.53458,43.08007],[-64.20547,43.35229],[-59.50333,45.73221],[-59.51431,46.24762],[-60.0032,46.25901],[-59.99222,47.24506],[-59.00894,47.2376],[-58.99796,47.50267],[-56.51504,47.50267],[-56.52603,46.7477],[-53.99918,46.7477],[-53.9772,46.48358],[-52.49405,46.46354],[-52.50504,48.75361],[-52.99667,48.75451],[-53.01315,49.99551],[-55.00168,50.0061],[-55.03738,53.74721],[-56.00418,53.73421],[-55.99594,52.00107]],[[-59.50127,43.74954],[-60.5024,43.74954],[-60.5024,44],[-59.9984,44],[-59.9984,44.2494],[-59.50127,44.2494],[-59.50127,43.74954]],[[-155.95024,20.49523],[-157.32675,20.49153],[-157.32903,21.23181],[-155.95251,21.23549],[-155.95024,20.49523]],[[-157.64488,21.24845],[-158.28534,21.24674],[-158.2869,21.74996],[-157.64643,21.75167],[-157.64488,21.24845]],[[-156.12602,20.3247],[-154.74617,20.32841],[-154.74174,18.87578],[-156.1216,18.87203],[-156.12602,20.3247]],[[-159.29077,22.24504],[-159.2893,21.76857],[-160.28917,21.76591],[-160.29064,22.24239],[-159.29077,22.24504]]],"terms_url":"https://caltopo.com","terms_text":"© Caltopo","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png"},{"id":"USSR-Latvia","name":"USSR - Latvia","type":"wms","template":"http://www.gisnet.lv/cgi-bin/topo?FORMAT=image/jpeg&VERSION=1.1.1&service=WMS&REQUEST=GetMap&LAYERS=DTO,DTC,DIVDPTC,PD,VS,DS,PS,M&SRS={proj}&WIDTH={width}&height={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[26.63086,57.56889],[25.16968,58.04882],[22.54395,57.76866],[21.54419,57.53352],[21.01685,56.81892],[21.01685,56.03523],[22.03857,56.38958],[24.71924,56.33481],[26.75171,55.66519],[28.19092,56.13943],[27.78442,57.40946],[26.63086,57.56889]]]},{"id":"wien.gv.at-labels","name":"Vienna: Beschriftungen (annotations)","type":"tms","template":"https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png","zoomExtent":[12,19],"polygon":[[[16.54475,48.17286],[16.54103,48.17657],[16.54978,48.17675],[16.54665,48.17162],[16.55629,48.16171],[16.55567,48.16446],[16.56161,48.16037],[16.57306,48.16319],[16.57603,48.13522],[16.54301,48.14333],[16.51377,48.15893],[16.4777,48.15744],[16.45536,48.13951],[16.43313,48.13788],[16.43701,48.11994],[16.42291,48.12306],[16.4083,48.11791],[16.40511,48.12198],[16.3246,48.13779],[16.31181,48.11945],[16.29806,48.12896],[16.2711,48.13385],[16.23607,48.13001],[16.2189,48.12377],[16.2181,48.12807],[16.23861,48.13205],[16.23843,48.13716],[16.22081,48.13555],[16.20986,48.14762],[16.22321,48.15318],[16.19798,48.15454],[16.19619,48.16396],[16.18183,48.17112],[16.19981,48.18616],[16.20739,48.20235],[16.20194,48.20479],[16.20962,48.20963],[16.1976,48.21479],[16.19778,48.22288],[16.18517,48.2232],[16.19911,48.22858],[16.19251,48.23671],[16.20677,48.26483],[16.24105,48.24837],[16.24154,48.23832],[16.25662,48.23988],[16.27043,48.25193],[16.26406,48.25492],[16.28556,48.25832],[16.29412,48.26395],[16.28617,48.2667],[16.28901,48.27051],[16.32741,48.27721],[16.34813,48.29048],[16.35351,48.28369],[16.3706,48.2817],[16.36714,48.28685],[16.37787,48.28832],[16.37557,48.29592],[16.37982,48.30201],[16.38536,48.30146],[16.38043,48.31507],[16.39518,48.32257],[16.39412,48.31926],[16.40287,48.31676],[16.41682,48.32253],[16.43803,48.31628],[16.44041,48.29192],[16.47547,48.27501],[16.48123,48.27343],[16.4835,48.27971],[16.48132,48.29351],[16.49645,48.29249],[16.51491,48.28554],[16.5067,48.2736],[16.51285,48.26784],[16.53263,48.2621],[16.54697,48.263],[16.53941,48.24284],[16.55274,48.239],[16.53627,48.20044],[16.54184,48.18206],[16.53631,48.17755],[16.54475,48.17286]]],"terms_url":"https://data.wien.gv.at","terms_text":"Stadt Wien","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif","overlay":true},{"id":"wien.gv.at-gp","name":"Vienna: Mehrzweckkarte (general purpose)","type":"tms","template":"https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg","zoomExtent":[10,19],"polygon":[[[16.54475,48.17286],[16.54103,48.17657],[16.54978,48.17675],[16.54665,48.17162],[16.55629,48.16171],[16.55567,48.16446],[16.56161,48.16037],[16.57306,48.16319],[16.57603,48.13522],[16.54301,48.14333],[16.51377,48.15893],[16.4777,48.15744],[16.45536,48.13951],[16.43313,48.13788],[16.43701,48.11994],[16.42291,48.12306],[16.4083,48.11791],[16.40511,48.12198],[16.3246,48.13779],[16.31181,48.11945],[16.29806,48.12896],[16.2711,48.13385],[16.23607,48.13001],[16.2189,48.12377],[16.2181,48.12807],[16.23861,48.13205],[16.23843,48.13716],[16.22081,48.13555],[16.20986,48.14762],[16.22321,48.15318],[16.19798,48.15454],[16.19619,48.16396],[16.18183,48.17112],[16.19981,48.18616],[16.20739,48.20235],[16.20194,48.20479],[16.20962,48.20963],[16.1976,48.21479],[16.19778,48.22288],[16.18517,48.2232],[16.19911,48.22858],[16.19251,48.23671],[16.20677,48.26483],[16.24105,48.24837],[16.24154,48.23832],[16.25662,48.23988],[16.27043,48.25193],[16.26406,48.25492],[16.28556,48.25832],[16.29412,48.26395],[16.28617,48.2667],[16.28901,48.27051],[16.32741,48.27721],[16.34813,48.29048],[16.35351,48.28369],[16.3706,48.2817],[16.36714,48.28685],[16.37787,48.28832],[16.37557,48.29592],[16.37982,48.30201],[16.38536,48.30146],[16.38043,48.31507],[16.39518,48.32257],[16.39412,48.31926],[16.40287,48.31676],[16.41682,48.32253],[16.43803,48.31628],[16.44041,48.29192],[16.47547,48.27501],[16.48123,48.27343],[16.4835,48.27971],[16.48132,48.29351],[16.49645,48.29249],[16.51491,48.28554],[16.5067,48.2736],[16.51285,48.26784],[16.53263,48.2621],[16.54697,48.263],[16.53941,48.24284],[16.55274,48.239],[16.53627,48.20044],[16.54184,48.18206],[16.53631,48.17755],[16.54475,48.17286]]],"terms_url":"https://data.wien.gv.at","terms_text":"Stadt Wien","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"},{"id":"wien.gv.at-aerial_image","name":"Vienna: Orthofoto (aerial image)","type":"tms","template":"https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg","zoomExtent":[10,19],"polygon":[[[16.14995,48.10832],[16.14989,48.33315],[16.61873,48.33296],[16.61749,48.10813],[16.46644,48.10819],[16.46644,48.10744],[16.18104,48.10756],[16.18104,48.10831],[16.14995,48.10832]]],"terms_url":"https://data.wien.gv.at","terms_text":"Stadt Wien","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"},{"id":"Ville_de_Nyon-HD-2016","name":"Ville de Nyon - Orthophoto 2016 HD 5cm/pi","type":"tms","template":"http://osmdata.asitvd.ch/tiles/nyon2016/{zoom}/{x}/{y}.png","endDate":"2016-03-10T00:00:00.000Z","startDate":"2016-03-10T00:00:00.000Z","zoomExtent":[10,20],"polygon":[[[6.18068,46.38878],[6.21445,46.41522],[6.25774,46.3887],[6.22398,46.36228],[6.18068,46.38878]]],"terms_url":"http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911","terms_text":"Ville de Nyon"},{"id":"VGIN-BuildingFootprints_WM","name":"Virginia Building Footprints","type":"tms","template":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Building_Footprints%2FMapServer&transparent=true&layers=show%3A20","endDate":"2018-06-01T00:00:00.000Z","startDate":"2015-05-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"terms_url":"https://vgin.maps.arcgis.com/home/item.html?id=bcd049dfcdc342a7a08ec81644eeb339","terms_text":"Virginia Geographic Information Network (VGIN)","description":"Virginia Building Footprint Map Service","overlay":true},{"id":"VGIN-Imagery_WM","name":"Virginia Imagery Service - Most Recent","type":"tms","template":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FMostRecentImagery%2FMostRecentImagery_WGS%2FMapServer&transparent=true&layers=show%3A0","endDate":"2018-08-01T00:00:00.000Z","startDate":"2013-04-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"terms_url":"https://vgin.maps.arcgis.com/home/item.html?id=36386a7e7dae4032a33cb0b83a1711f1","terms_text":"Virginia Geographic Information Network (VGIN)","description":"The most recently available VBMP orthoimagery for all of Virginia."},{"id":"VGIN-PropertyLines_WM","name":"Virginia Property Lines","type":"tms","template":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=http%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Parcels%2FMapServer&transparent=true","endDate":"2018-06-01T00:00:00.000Z","startDate":"2015-05-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"terms_url":"https://vgin.maps.arcgis.com/home/item.html?id=f1dccaf1f42e40cbba791feae2e23690","terms_text":"Virginia Geographic Information Network (VGIN)","description":"A statewide Parcel service showing property ownership outlines where available","overlay":true},{"id":"vogis.cnv.at-DGM","name":"VoGIS: DGM (Terrain model)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_hoehen_und_gelaende_r_wms.map&LAYERS=schummerung_50cm_terrain&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-DOM","name":"VoGIS: DOM (Surface model)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_hoehen_und_gelaende_r_wms.map&LAYERS=schummerung_50cm_surface&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-ef2012_12cm","name":"VoGIS: Echtfarbenbild 2012 (12cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=ef2012_12cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-ef2015_10cm","name":"VoGIS: Echtfarbenbild 2015 (10cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=ef2015_10cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-ef2018_10cm","name":"VoGIS: Echtfarbenbild 2018 (10cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=ef2018_10cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-wi2015_20cm","name":"VoGIS: Echtfarbenbild Winter 2015 (20cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=wi2015_20cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[10.17039,46.82979],[10.17108,46.93644],[10.18413,46.94113],[10.1855,47.10157],[10.23906,47.10437],[10.24283,47.15611],[10.25691,47.18704],[10.24558,47.27597],[10.25313,47.32347],[10.26893,47.32626],[10.26446,47.41102],[10.13194,47.4087],[10.13434,47.46107],[10.11752,47.46153],[10.11889,47.47337],[10.08731,47.47429],[10.08491,47.50724],[10.06843,47.507],[10.0674,47.5215],[10.02345,47.52428],[10.00079,47.57943],[9.84904,47.57757],[9.85042,47.61462],[9.72751,47.61277],[9.7203,47.59089],[9.70347,47.58915],[9.70313,47.54491],[9.68219,47.54491],[9.68047,47.55348],[9.56391,47.54931],[9.56202,47.53958],[9.55172,47.53958],[9.55172,47.53402],[9.52168,47.53471],[9.52701,47.30497],[9.50503,47.30264],[9.50091,47.23368],[9.52357,47.23228],[9.52426,47.16557],[9.54486,47.16405],[9.54383,47.15448],[9.57232,47.15401],[9.57026,47.12809],[9.59018,47.12867],[9.59189,47.10029],[9.57232,47.10017],[9.57713,47.02861],[9.72407,47.03048],[9.72304,47.01749],[9.77454,47.01562],[9.77626,47.00555],[9.79274,47.00391],[9.7948,46.99127],[9.83874,46.99314],[9.84012,46.90349],[9.89024,46.90725],[9.88543,46.88707],[9.95925,46.89141],[9.962,46.87675],[10.0001,46.87862],[9.99667,46.85715],[10.01864,46.85656],[10.02345,46.83073],[10.17039,46.82979]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"wroclaw-orto2015","name":"Wrocław: Orthophotomap 2015 (aerial image)","type":"wms","template":"https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2015/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[17.14217,51.12846],[17.15659,51.1499],[17.15933,51.16056],[17.15899,51.17886],[17.14371,51.18155],[17.13024,51.18128],[17.12466,51.17396],[17.11436,51.17746],[17.0778,51.17746],[17.07642,51.1766],[17.07548,51.16825],[17.06698,51.16745],[17.04698,51.17493],[17.03376,51.17729],[17.02741,51.17729],[17.02733,51.18246],[17.02252,51.18816],[17.01299,51.18816],[17.0093,51.18499],[17.00312,51.18504],[17.00261,51.20016],[16.99162,51.20559],[16.97008,51.20763],[16.96424,51.20989],[16.95394,51.20968],[16.94656,51.20586],[16.9233,51.2001],[16.90811,51.21043],[16.89927,51.21027],[16.89292,51.2071],[16.88322,51.2071],[16.88073,51.20489],[16.88047,51.19666],[16.88322,51.19048],[16.87403,51.18719],[16.87026,51.18203],[16.85455,51.18031],[16.8421,51.18488],[16.82434,51.18467],[16.82056,51.17875],[16.82099,51.16373],[16.82502,51.15647],[16.80915,51.15194],[16.80657,51.14613],[16.80648,51.1366],[16.80769,51.13595],[16.81687,51.13601],[16.8161,51.13337],[16.81636,51.12459],[16.82932,51.12329],[16.83266,51.11834],[16.82923,51.11386],[16.82923,51.10993],[16.83215,51.10869],[16.84949,51.10826],[16.85661,51.09899],[16.87901,51.09252],[16.88862,51.09258],[16.89197,51.09667],[16.92107,51.09662],[16.9209,51.09263],[16.91661,51.0812],[16.91686,51.07942],[16.93514,51.07948],[16.93849,51.0736],[16.95248,51.06686],[16.95068,51.05806],[16.95454,51.05369],[16.96188,51.0473],[16.96879,51.04568],[16.98072,51.04584],[16.98424,51.05197],[16.99969,51.04668],[17.00776,51.04422],[17.01973,51.04169],[17.03286,51.0419],[17.03415,51.04673],[17.04509,51.04339],[17.06363,51.04339],[17.07037,51.05286],[17.08363,51.04428],[17.095,51.04368],[17.10633,51.04376],[17.10835,51.04684],[17.10822,51.05377],[17.10226,51.05868],[17.11136,51.0716],[17.12341,51.07179],[17.12299,51.07856],[17.15088,51.07861],[17.17277,51.09344],[17.17277,51.09956],[17.17697,51.10303],[17.17676,51.1092],[17.16363,51.1203],[17.14217,51.12846]]],"terms_text":"Urząd Miasta Wrocław","icon":"https://i.imgur.com/PRqROXB.png"},{"id":"wroclaw-orto2018","name":"Wrocław: Orthophotomap 2018 (aerial image)","type":"wms","template":"https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2018/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-04-07T00:00:00.000Z","startDate":"2018-04-06T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[17.14217,51.12846],[17.15659,51.1499],[17.15933,51.16056],[17.15899,51.17886],[17.14371,51.18155],[17.13024,51.18128],[17.12466,51.17396],[17.11436,51.17746],[17.0778,51.17746],[17.07642,51.1766],[17.07548,51.16825],[17.06698,51.16745],[17.04698,51.17493],[17.03376,51.17729],[17.02741,51.17729],[17.02733,51.18246],[17.02252,51.18816],[17.01299,51.18816],[17.0093,51.18499],[17.00312,51.18504],[17.00261,51.20016],[16.99162,51.20559],[16.97008,51.20763],[16.96424,51.20989],[16.95394,51.20968],[16.94656,51.20586],[16.9233,51.2001],[16.90811,51.21043],[16.89927,51.21027],[16.89292,51.2071],[16.88322,51.2071],[16.88073,51.20489],[16.88047,51.19666],[16.88322,51.19048],[16.87403,51.18719],[16.87026,51.18203],[16.85455,51.18031],[16.8421,51.18488],[16.82434,51.18467],[16.82056,51.17875],[16.82099,51.16373],[16.82502,51.15647],[16.80915,51.15194],[16.80657,51.14613],[16.80648,51.1366],[16.80769,51.13595],[16.81687,51.13601],[16.8161,51.13337],[16.81636,51.12459],[16.82932,51.12329],[16.83266,51.11834],[16.82923,51.11386],[16.82923,51.10993],[16.83215,51.10869],[16.84949,51.10826],[16.85661,51.09899],[16.87901,51.09252],[16.88862,51.09258],[16.89197,51.09667],[16.92107,51.09662],[16.9209,51.09263],[16.91661,51.0812],[16.91686,51.07942],[16.93514,51.07948],[16.93849,51.0736],[16.95248,51.06686],[16.95068,51.05806],[16.95454,51.05369],[16.96188,51.0473],[16.96879,51.04568],[16.98072,51.04584],[16.98424,51.05197],[16.99969,51.04668],[17.00776,51.04422],[17.01973,51.04169],[17.03286,51.0419],[17.03415,51.04673],[17.04509,51.04339],[17.06363,51.04339],[17.07037,51.05286],[17.08363,51.04428],[17.095,51.04368],[17.10633,51.04376],[17.10835,51.04684],[17.10822,51.05377],[17.10226,51.05868],[17.11136,51.0716],[17.12341,51.07179],[17.12299,51.07856],[17.15088,51.07861],[17.17277,51.09344],[17.17277,51.09956],[17.17697,51.10303],[17.17676,51.1092],[17.16363,51.1203],[17.14217,51.12846]]],"terms_text":"Urząd Miasta Wrocław","best":true,"icon":"https://i.imgur.com/PRqROXB.png"},{"id":"Zabrze-2011","name":"Zabrze: Orthophotomap 2011 (aerial image)","type":"wms","template":"http://siot.um.zabrze.pl/arcgis/services/UMZ_Ortofoto_2011/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[18.74396,50.2753],[18.75586,50.27523],[18.75578,50.27633],[18.74516,50.28105],[18.74609,50.28886],[18.75084,50.28948],[18.74832,50.2957],[18.73379,50.29618],[18.73208,50.31571],[18.73613,50.31646],[18.73882,50.32763],[18.73725,50.33016],[18.73121,50.33169],[18.73054,50.3344],[18.73422,50.3371],[18.73428,50.34097],[18.73866,50.34308],[18.75419,50.34182],[18.75982,50.34624],[18.75438,50.34744],[18.75119,50.34979],[18.74603,50.36876],[18.75705,50.3692],[18.7639,50.36754],[18.77263,50.37628],[18.78436,50.37077],[18.78713,50.37295],[18.79821,50.37048],[18.80466,50.37561],[18.80165,50.37718],[18.80164,50.38222],[18.80509,50.38317],[18.81527,50.38167],[18.81446,50.37515],[18.82183,50.36883],[18.81737,50.36802],[18.82104,50.35843],[18.8159,50.35336],[18.81687,50.35076],[18.82294,50.35156],[18.83281,50.34962],[18.83474,50.3443],[18.84615,50.34448],[18.86293,50.32852],[18.8607,50.32776],[18.85088,50.33191],[18.84578,50.32923],[18.84891,50.32352],[18.83179,50.32028],[18.83192,50.30483],[18.84451,50.30286],[18.84429,50.29627],[18.82282,50.28615],[18.82845,50.28482],[18.82745,50.27972],[18.82322,50.27994],[18.8214,50.27414],[18.81392,50.27309],[18.79981,50.27351],[18.7987,50.2613],[18.7923,50.24641],[18.78261,50.24583],[18.76416,50.25145],[18.75396,50.25669],[18.75004,50.26402],[18.73991,50.26738],[18.73421,50.27084],[18.74396,50.2753]]],"terms_text":"Urząd Miasta Zabrza"}] \ No newline at end of file +[{"id":"ACT2017","name":"ACTmapi Imagery 2017","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2017mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2017-05-01T00:00:00.000Z","startDate":"2017-05-01T00:00:00.000Z","zoomExtent":[5,21],"polygon":[[[149.085,-35.1171],[149.1509,-35.1157],[149.1509,-35.1335],[149.1736,-35.1335],[149.1739,-35.1512],[149.1957,-35.1512],[149.1962,-35.1689],[149.2177,-35.1683],[149.2192,-35.2048],[149.241,-35.2043],[149.2419,-35.2223],[149.2632,-35.2222],[149.2644,-35.2575],[149.3085,-35.2571],[149.309,-35.2751],[149.3531,-35.2742],[149.3536,-35.2921],[149.3974,-35.2917],[149.3988,-35.3452],[149.3777,-35.3457],[149.3772,-35.3641],[149.3341,-35.3648],[149.3385,-35.5451],[149.1624,-35.5487],[149.1727,-35.9271],[149.0175,-35.9294],[149.0172,-35.9113],[148.9506,-35.9125],[148.9499,-35.8946],[148.9277,-35.8949],[148.9272,-35.8768],[148.9053,-35.8768],[148.9042,-35.8586],[148.8826,-35.859],[148.8805,-35.7695],[148.8361,-35.7698],[148.8359,-35.7521],[148.8138,-35.7524],[148.8131,-35.7343],[148.7909,-35.7347],[148.7911,-35.7167],[148.7688,-35.7167],[148.7617,-35.3924],[148.7839,-35.3921],[148.7822,-35.3022],[148.8041,-35.302],[148.8033,-35.2836],[148.8474,-35.2832],[148.8469,-35.2652],[148.8689,-35.2643],[148.8687,-35.2466],[148.9128,-35.246],[148.9123,-35.2282],[148.9341,-35.228],[148.9329,-35.1919],[148.999,-35.1904],[148.9986,-35.1724],[149.0206,-35.172],[149.0204,-35.154],[149.0637,-35.1532],[149.0635,-35.1355],[149.0857,-35.1348],[149.085,-35.1171]]],"terms_url":"https://actmapi-actgov.opendata.arcgis.com/datasets/884456bde6fd46d68e0c05479f55d548","terms_text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT2018","name":"ACTmapi Imagery 2018","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2018mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2018-03-19T00:00:00.000Z","startDate":"2018-03-19T00:00:00.000Z","zoomExtent":[5,21],"polygon":[[[149.2695,-35.4381],[149.2669,-35.348],[149.3329,-35.3468],[149.3334,-35.3648],[149.3774,-35.364],[149.3769,-35.3459],[149.3989,-35.3455],[149.3984,-35.3275],[149.4094,-35.3273],[149.4088,-35.3092],[149.3978,-35.3095],[149.3973,-35.2914],[149.3533,-35.2923],[149.3528,-35.2743],[149.3089,-35.2751],[149.3084,-35.2571],[149.2644,-35.2579],[149.2634,-35.2219],[149.2415,-35.2223],[149.241,-35.2043],[149.219,-35.2047],[149.218,-35.1687],[149.1961,-35.1691],[149.1956,-35.151],[149.1737,-35.1514],[149.1732,-35.1334],[149.1512,-35.1338],[149.1508,-35.1158],[149.085,-35.1169],[149.0854,-35.135],[149.0635,-35.1353],[149.0639,-35.1534],[149.0201,-35.1541],[149.0205,-35.1721],[148.9985,-35.1725],[148.999,-35.1905],[148.9331,-35.1916],[148.934,-35.2276],[148.912,-35.228],[148.9124,-35.246],[148.8685,-35.2467],[148.8689,-35.2647],[148.8469,-35.265],[148.8473,-35.2831],[148.8034,-35.2837],[148.8038,-35.3018],[148.7818,-35.3021],[148.7838,-35.3922],[148.8058,-35.3919],[148.8086,-35.5181],[148.7976,-35.5182],[148.7994,-35.5993],[148.8766,-35.5982],[148.8747,-35.517],[148.8527,-35.5174],[148.8508,-35.4363],[148.8398,-35.4364],[148.8388,-35.3914],[149.0039,-35.3888],[149.0048,-35.4248],[149.0268,-35.4244],[149.0277,-35.4605],[149.0497,-35.4601],[149.0511,-35.5142],[149.1613,-35.5122],[149.1594,-35.4402],[149.2695,-35.4381]]],"terms_text":"© Jacobs Group (Australia) Pty Ltd and Australian Capital Territory","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT2019","name":"ACTmapi Imagery Feb 2019","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery2019mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2019-02-09T00:00:00.000Z","startDate":"2019-02-09T00:00:00.000Z","zoomExtent":[6,21],"polygon":[[[149.04053,-35.09056],[149.20498,-35.08747],[149.20618,-35.1237],[149.24944,-35.12314],[149.2515,-35.19499],[149.29596,-35.19429],[149.29716,-35.23861],[149.34111,-35.23847],[149.34196,-35.27435],[149.42986,-35.27253],[149.43226,-35.36288],[149.42127,-35.36316],[149.42179,-35.37239],[149.3224,-35.37435],[149.3224,-35.36498],[149.30042,-35.36512],[149.30094,-35.37435],[149.28995,-35.37449],[149.29201,-35.4376],[149.15932,-35.44039],[149.16121,-35.51197],[149.03984,-35.51448],[149.03984,-35.47829],[148.99504,-35.4794],[148.99315,-35.37995],[149.00396,-35.37981],[149.0007,-35.26272],[148.95641,-35.26286],[148.95435,-35.16399],[148.99864,-35.16342],[148.99796,-35.12721],[149.04156,-35.12665],[149.04053,-35.09056]]],"terms_url":"http://actmapi.act.gov.au/terms.html","terms_text":"Aerial Imagery from ACTMapi ©ACT Government","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT202001","name":"ACTmapi Imagery Jan 2020","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery202001mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2020-01-21T00:00:00.000Z","startDate":"2020-01-21T00:00:00.000Z","zoomExtent":[5,21],"polygon":[[[149.01888,-35.55033],[149.01874,-35.54169],[149.02979,-35.54152],[149.02911,-35.51456],[148.9849,-35.51532],[148.98051,-35.33506],[148.93611,-35.33576],[148.93142,-35.12826],[149.01972,-35.12661],[149.01913,-35.10016],[149.02959,-35.09987],[149.02982,-35.09083],[149.23791,-35.08675],[149.23815,-35.10483],[149.22757,-35.10541],[149.22888,-35.15974],[149.27261,-35.15838],[149.27404,-35.19432],[149.3173,-35.19374],[149.31991,-35.23005],[149.32918,-35.22947],[149.33013,-35.2386],[149.36293,-35.23763],[149.36531,-35.27334],[149.45206,-35.27237],[149.45396,-35.37224],[149.41047,-35.37243],[149.41213,-35.40809],[149.36745,-35.40964],[149.36792,-35.43636],[149.32419,-35.43694],[149.32562,-35.47412],[149.2372,-35.47431],[149.23886,-35.50237],[149.22817,-35.50218],[149.22793,-35.5105],[149.1842,-35.51205],[149.18443,-35.54764],[149.01888,-35.55033]]],"terms_url":"http://actmapi.act.gov.au/terms.html","terms_text":"Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd","best":true,"icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"ACT201906","name":"ACTmapi Imagery Jun 2019","type":"wms","template":"https://data.actmapi.act.gov.au/arcgis/rest/services/actmapi/imagery201906mga/ImageServer/exportImage?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2019-06-19T00:00:00.000Z","startDate":"2019-06-19T00:00:00.000Z","zoomExtent":[5,21],"polygon":[[[148.97478,-35.10074],[149.22712,-35.09632],[149.22811,-35.13237],[149.24983,-35.13198],[149.25025,-35.14107],[149.27223,-35.14062],[149.27416,-35.21263],[149.31806,-35.21184],[149.31905,-35.248],[149.40694,-35.24632],[149.40805,-35.28227],[149.45191,-35.28129],[149.45509,-35.38044],[149.41089,-35.38135],[149.41166,-35.39927],[149.40042,-35.39955],[149.40093,-35.41752],[149.31287,-35.41934],[149.3139,-35.44634],[149.2697,-35.44718],[149.2709,-35.48325],[149.22678,-35.48402],[149.22772,-35.52007],[149.18378,-35.52084],[149.18464,-35.55709],[149.01855,-35.55974],[149.01701,-35.48807],[148.97324,-35.48863],[148.97203,-35.44333],[148.98319,-35.44333],[148.9807,-35.34419],[148.93676,-35.34461],[148.93187,-35.13753],[148.97581,-35.1369],[148.97478,-35.10074]]],"terms_url":"http://actmapi.act.gov.au/terms.html","terms_text":"Aerial Imagery from ACTMapi ©ACT Government and Spookfish Australia Pty Ltd","icon":"http://actmapi.act.gov.au/img/apple-touch-icon.png"},{"id":"AGRI-black_and_white-2.5m","name":"AGRI black-and-white 2.5m","type":"tms","template":"https://{switch:a,b,c}.agri.openstreetmap.org/layer/au_ga_agri/{zoom}/{x}/{y}.png","endDate":"2011-01-01T00:00:00.000Z","startDate":"2006-01-01T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[112.28778,-28.78459],[112.71488,-31.13894],[114.11263,-34.17829],[113.60788,-37.39012],[117.17992,-37.45179],[119.31538,-37.42096],[121.72262,-36.70839],[123.81925,-35.76893],[125.9547,-34.3066],[127.97368,-33.7274],[130.07031,-33.24166],[130.10913,-33.8887],[131.00214,-34.04971],[131.0798,-34.72257],[132.28342,-35.39],[134.18591,-35.61126],[133.8753,-37.1119],[134.8459,-37.6365],[139.7769,-37.82075],[139.93223,-39.4283],[141.6017,-39.8767],[142.3783,-39.36829],[142.3783,-40.64702],[142.49478,-42.07487],[144.009,-44.06013],[147.23161,-44.03222],[149.05645,-42.53431],[149.52237,-40.99959],[149.9494,-40.85292],[150.8036,-38.09627],[151.81313,-38.12682],[156.20052,-22.66771],[156.20052,-20.10109],[156.62761,-17.41763],[155.26869,-17.19521],[154.14272,-19.51662],[153.5215,-18.34139],[153.05558,-16.5636],[152.78379,-15.25677],[152.27905,-13.4135],[151.3472,-12.39177],[149.48354,-12.05024],[146.9598,-9.99241],[135.9719,-9.99241],[130.3032,-10.33636],[128.09016,-12.16414],[125.91588,-12.31591],[124.3239,-11.86033],[122.03323,-11.97429],[118.26706,-16.9353],[115.93747,-19.11357],[114.0738,-21.11863],[113.49141,-22.59603],[112.28778,-28.78459]]],"terms_url":"https://data.gov.au/dataset/agri-the-australian-geographic-reference-image","terms_text":"AGRI, Geoscience Australia"},{"id":"AIV_DHMV_II_HILL_25cm","name":"AIV Digitaal Hoogtemodel Vlaanderen II, multidirectionale hillshade 0,25 m","type":"wms","template":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?LAYERS=DHMV_II_HILL_25cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AIV_DHMV_II_SVF_25cm","name":"AIV Digitaal Hoogtemodel Vlaanderen II, Skyview factor 0,25 m","type":"wms","template":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/dhmv/wms?LAYERS=DHMV_II_SVF_25cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AGIV10cm","name":"AIV Flanders 2013-2015 aerial imagery 10cm","type":"wms","template":"https://geoservices.informatievlaanderen.be/raadpleegdiensten/OGW/wms?LAYERS=OGWRGB13_15VL&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.98494,50.70723],[5.98494,50.7672],[5.91079,50.82275],[5.75561,50.83533],[5.75423,50.86264],[5.8332,50.93323],[5.85517,51.02661],[5.90941,51.07754],[5.91216,51.18225],[5.87851,51.20807],[5.77414,51.23689],[5.68419,51.24075],[5.62308,51.26998],[5.62308,51.29789],[5.54,51.34724],[5.4473,51.34853],[5.39855,51.32107],[5.31203,51.32322],[5.26671,51.36182],[5.19942,51.37254],[5.18294,51.39611],[5.15891,51.4924],[5.08338,51.53086],[5.03257,51.53983],[4.95566,51.50522],[4.90142,51.50565],[4.83825,51.54367],[4.77096,51.55862],[4.7119,51.54709],[4.64049,51.49667],[4.6144,51.4971],[4.56565,51.53171],[4.48256,51.53043],[4.42626,51.52189],[4.3006,51.46974],[4.29511,51.42566],[4.18113,51.42437],[4.13718,51.39525],[4.13856,51.35067],[4.05204,51.30047],[3.93325,51.27298],[3.86527,51.27084],[3.86321,51.29016],[3.76296,51.32407],[3.59336,51.35925],[3.47732,51.33137],[3.42582,51.39739],[3.23562,51.35153],[3.226,51.36568],[3.17794,51.36182],[3.16009,51.33223],[3.06258,51.30219],[2.75084,51.1702],[2.47001,51.07452],[2.49267,50.99378],[2.53112,50.95573],[2.50915,50.91159],[2.53043,50.82145],[2.5991,50.76416],[2.66501,50.76459],[2.77007,50.66677],[2.8971,50.65894],[2.99186,50.72549],[3.11339,50.72636],[3.23699,50.70592],[3.36265,50.6585],[3.47114,50.70201],[3.63936,50.66721],[3.69842,50.68156],[3.72794,50.71245],[3.81858,50.68418],[3.87488,50.64152],[4.09255,50.64283],[4.15023,50.66329],[4.20653,50.64413],[4.31365,50.64283],[4.45235,50.68766],[4.53475,50.67808],[4.61303,50.69549],[4.67689,50.69592],[4.72701,50.73201],[4.78057,50.73201],[4.79979,50.71288],[4.86228,50.71288],[4.88563,50.69549],[4.96116,50.69549],[5.03119,50.65763],[5.10741,50.65023],[5.2008,50.64892],[5.23581,50.66546],[5.32508,50.6659],[5.36696,50.682],[5.42121,50.66416],[5.52215,50.6746],[5.6224,50.72418],[5.67527,50.69853],[5.73981,50.69723],[5.77277,50.67199],[5.8126,50.66024],[5.90804,50.65981],[5.98494,50.70723]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AGIVFlandersGRB","name":"AIV Flanders GRB","type":"tms","template":"https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=grb_bsk&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,21],"polygon":[[[4.40434,50.78177],[4.45538,50.79328],[4.40268,50.8961],[4.331,50.90094],[4.27142,50.82002],[4.30648,50.81244],[4.36348,50.77251],[4.40434,50.78177],[4.43104,50.73831],[4.31859,50.72022],[4.29031,50.69402],[4.14853,50.72834],[3.95877,50.68947],[3.9097,50.69245],[3.89113,50.74333],[3.77568,50.74789],[3.75857,50.78045],[3.67752,50.77062],[3.64047,50.72242],[3.54139,50.73377],[3.54062,50.76307],[3.46005,50.76556],[3.3522,50.70614],[3.30562,50.75466],[3.17839,50.75609],[3.15329,50.78564],[3.02008,50.77312],[2.99943,50.81035],[2.91648,50.75356],[2.85476,50.75745],[2.86521,50.70565],[2.78473,50.7369],[2.713,50.81534],[2.63518,50.8129],[2.59909,50.85306],[2.59031,50.91893],[2.63262,50.94575],[2.57372,51.00842],[2.54165,51.09345],[3.15582,51.32714],[3.18307,51.37128],[3.23443,51.34669],[3.36356,51.37228],[3.38101,51.27446],[3.44201,51.24313],[3.52759,51.24604],[3.51511,51.28753],[3.58984,51.30577],[3.7783,51.26235],[3.79088,51.21429],[3.92412,51.21938],[4.16613,51.2929],[4.26163,51.37647],[4.42065,51.36473],[4.39108,51.45149],[4.54747,51.48571],[4.53541,51.42303],[4.64953,51.42758],[4.76359,51.5088],[4.84188,51.48074],[4.8383,51.42174],[4.89366,51.41698],[4.92785,51.39544],[5.02894,51.48789],[5.08018,51.46948],[5.10202,51.42892],[5.07117,51.3935],[5.13109,51.35137],[5.13448,51.31547],[5.20031,51.32172],[5.24189,51.30534],[5.23036,51.26436],[5.34828,51.27492],[5.41741,51.26229],[5.4863,51.30197],[5.5556,51.26986],[5.56045,51.22233],[5.76027,51.18505],[5.85578,51.14463],[5.75909,51.03588],[5.72665,50.91307],[5.64522,50.8372],[5.68732,50.804],[5.47863,50.72352],[5.41196,50.72368],[5.38908,50.74775],[5.30912,50.71802],[5.16984,50.72257],[5.16508,50.6957],[5.05642,50.71567],[5.00339,50.76594],[4.92545,50.74275],[4.90869,50.76968],[4.83106,50.77028],[4.76014,50.80544],[4.64309,50.79755],[4.65486,50.7552],[4.62021,50.74348],[4.59727,50.76359],[4.52399,50.72724],[4.49455,50.75679],[4.43104,50.73831],[4.40434,50.78177]],[[5.67393,50.75373],[5.88438,50.70114],[5.94172,50.76524],[5.76662,50.78761],[5.67393,50.75373]],[[4.91171,51.43492],[4.93711,51.42614],[4.95891,51.45471],[4.92801,51.46049],[4.91171,51.43492]]],"terms_text":"© agentschap Informatie Vlaanderen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"AGIV","name":"AIV Flanders most recent aerial imagery","type":"tms","template":"https://tile.informatievlaanderen.be/ws/raadpleegdiensten/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=omwrgbmrvl&STYLE=&FORMAT=image/png&tileMatrixSet=GoogleMapsVL&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,21],"polygon":[[[4.7737,50.79368],[4.8379,50.75916],[4.92511,50.73483],[4.98862,50.76264],[5.036,50.73527],[5.0645,50.69875],[5.1644,50.69005],[5.19393,50.71179],[5.3086,50.71245],[5.36422,50.74396],[5.43391,50.70766],[5.54378,50.74396],[5.61141,50.73527],[5.71166,50.73505],[5.77105,50.74092],[5.81946,50.70484],[5.89568,50.70614],[5.9204,50.72831],[5.91971,50.74504],[5.89843,50.77675],[5.81569,50.76351],[5.77517,50.79216],[5.69552,50.79737],[5.69072,50.82319],[5.66325,50.82904],[5.65467,50.86481],[5.72368,50.9012],[5.77174,50.95443],[5.75114,50.97368],[5.78273,51.00048],[5.78032,51.0523],[5.80848,51.05338],[5.80951,51.07668],[5.84315,51.09372],[5.84418,51.1101],[5.82599,51.11851],[5.86959,51.14953],[5.8277,51.17365],[5.792,51.16891],[5.7738,51.19344],[5.666,51.1928],[5.64059,51.21065],[5.5709,51.22829],[5.56231,51.27535],[5.49811,51.30605],[5.47099,51.30219],[5.45794,51.2893],[5.43048,51.28823],[5.41434,51.27363],[5.36593,51.282],[5.33641,51.28265],[5.32577,51.26718],[5.24337,51.27406],[5.24989,51.31335],[5.20972,51.32794],[5.14174,51.31914],[5.14209,51.35367],[5.08647,51.39482],[5.11565,51.43615],[5.08853,51.47508],[5.05214,51.47636],[5.04561,51.4939],[5.02364,51.4939],[5.01609,51.48663],[4.82966,51.48663],[4.83001,51.50009],[4.76855,51.51099],[4.74727,51.50394],[4.658,51.4492],[4.65663,51.43144],[4.53956,51.43379],[4.55466,51.48171],[4.5296,51.48748],[4.46368,51.48235],[4.37167,51.45562],[4.37751,51.40553],[4.4139,51.37511],[4.39776,51.36118],[4.34798,51.36675],[4.34627,51.38497],[4.20344,51.38111],[4.2213,51.3511],[4.15641,51.29832],[4.05101,51.25193],[4.00638,51.25279],[3.95144,51.22205],[3.88484,51.22936],[3.81926,51.21797],[3.80038,51.22872],[3.80107,51.26074],[3.74442,51.28007],[3.63593,51.29746],[3.58615,51.31378],[3.5065,51.28308],[3.51371,51.25021],[3.43921,51.25064],[3.39766,51.27513],[3.37329,51.31678],[3.39114,51.34274],[3.3623,51.37961],[3.24283,51.35474],[3.20266,51.37039],[3.15631,51.35196],[3.14223,51.33051],[2.53318,51.09092],[2.56476,50.9968],[2.61832,50.9527],[2.57781,50.91852],[2.5936,50.88431],[2.58948,50.85051],[2.6245,50.80757],[2.71033,50.8054],[2.78449,50.71853],[2.87375,50.69983],[2.86483,50.74765],[2.92525,50.75156],[2.97263,50.77024],[2.97332,50.79889],[3.00078,50.79759],[3.01383,50.76676],[3.09863,50.76611],[3.13537,50.78196],[3.16832,50.75004],[3.30428,50.74613],[3.31561,50.71484],[3.3678,50.70179],[3.44848,50.75091],[3.53293,50.75156],[3.53328,50.72549],[3.63902,50.7131],[3.69086,50.7672],[3.75163,50.76177],[3.7712,50.73874],[3.87729,50.73983],[3.87969,50.70418],[3.9202,50.68352],[3.99951,50.682],[4.06749,50.68961],[4.16018,50.72049],[4.17632,50.70331],[4.24739,50.68222],[4.31708,50.69418],[4.31846,50.70962],[4.38403,50.71027],[4.38437,50.72353],[4.47226,50.74743],[4.52617,50.71853],[4.55226,50.73766],[4.64908,50.73722],[4.6532,50.78717],[4.72426,50.78218],[4.73731,50.79585],[4.7737,50.79368]]],"terms_text":"© agentschap Informatie Vlaanderen","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/AIV.png"},{"id":"fr.dpt.04.2010","name":"Alpes-de-Haute-Provence 2010","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/paca04_2010/{zoom}/{x}/{y}","endDate":"2010-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[5.66517,44.19901],[5.66603,44.21685],[5.69083,44.21642],[5.69286,44.26132],[5.75546,44.25995],[5.75778,44.30469],[5.82018,44.3034],[5.82267,44.34822],[5.88515,44.34669],[5.88927,44.437],[5.95236,44.43513],[5.95467,44.48016],[6.01776,44.47808],[6.02042,44.52307],[6.27182,44.51591],[6.27448,44.56082],[6.40091,44.55702],[6.39868,44.51205],[6.52408,44.50802],[6.52142,44.46313],[6.5833,44.46111],[6.58604,44.50612],[6.6487,44.50404],[6.65462,44.59401],[6.71754,44.592],[6.72054,44.63684],[6.78346,44.6347],[6.78646,44.67958],[6.9764,44.67299],[6.97494,44.65455],[6.96241,44.65492],[6.96113,44.63745],[6.98636,44.63635],[6.98447,44.60899],[6.95932,44.6099],[6.95769,44.592],[6.94533,44.59248],[6.94276,44.55659],[6.91615,44.53941],[6.87881,44.54069],[6.87761,44.52283],[6.865,44.52325],[6.86379,44.50563],[6.87615,44.50514],[6.88808,44.49577],[6.88705,44.47795],[6.91229,44.47679],[6.92413,44.4673],[6.92276,44.44965],[6.94774,44.44867],[6.95975,44.43917],[6.95855,44.42085],[6.94542,44.4122],[6.90791,44.41337],[6.90345,44.35061],[6.89023,44.34214],[6.86525,44.34288],[6.86474,44.33416],[6.85126,44.32526],[6.81393,44.32655],[6.81255,44.30868],[6.80011,44.30905],[6.79762,44.26401],[6.77221,44.26499],[6.7711,44.24692],[6.74595,44.24778],[6.74535,44.23893],[6.73273,44.23917],[6.72973,44.19439],[6.71728,44.19476],[6.71548,44.16792],[6.70312,44.16829],[6.70192,44.15074],[6.71428,44.15031],[6.71265,44.12345],[6.72509,44.12278],[6.72475,44.11415],[6.74947,44.1131],[6.7487,44.09523],[6.7608,44.09449],[6.75753,44.0409],[6.76964,44.04034],[6.76929,44.03146],[6.79384,44.03041],[6.81779,44.01152],[6.81727,44.00269],[6.84216,44.00158],[6.84105,43.98392],[6.85332,43.98324],[6.85161,43.95656],[6.88886,43.95507],[6.88774,43.93721],[6.92491,43.93548],[6.94851,43.91663],[6.94654,43.8896],[6.9334,43.88094],[6.88328,43.88274],[6.88362,43.89158],[6.85925,43.89257],[6.85942,43.90154],[6.81041,43.9034],[6.80998,43.89431],[6.79753,43.8948],[6.7959,43.87667],[6.78286,43.86838],[6.75857,43.86894],[6.75754,43.86009],[6.73256,43.86096],[6.7329,43.86999],[6.70853,43.8708],[6.7069,43.84394],[6.68218,43.84462],[6.68175,43.83614],[6.70638,43.83533],[6.70578,43.82635],[6.71831,43.82567],[6.71651,43.79855],[6.6917,43.7991],[6.69093,43.79037],[6.65385,43.79142],[6.65334,43.78256],[6.61566,43.78374],[6.616,43.79278],[6.59171,43.79346],[6.59137,43.78467],[6.57806,43.77605],[6.55343,43.77673],[6.55283,43.76793],[6.52768,43.76874],[6.52897,43.79563],[6.5173,43.79588],[6.51644,43.78727],[6.49198,43.78776],[6.49129,43.7789],[6.41713,43.78113],[6.41602,43.76378],[6.4282,43.76316],[6.42795,43.75405],[6.41456,43.74518],[6.40245,43.74555],[6.40159,43.72763],[6.32666,43.72999],[6.30255,43.74884],[6.30298,43.75764],[6.27843,43.75851],[6.27869,43.76744],[6.25465,43.76799],[6.25405,43.75925],[6.24169,43.7595],[6.24058,43.74152],[6.21466,43.72434],[6.20247,43.72459],[6.20144,43.70666],[6.15148,43.70822],[6.15157,43.71715],[6.12694,43.71802],[6.12737,43.72689],[6.10333,43.72744],[6.10205,43.7097],[6.06359,43.68383],[6.05124,43.68401],[6.05012,43.66613],[6.0375,43.65738],[6.01218,43.65825],[6.00034,43.66756],[6.00094,43.68525],[5.97648,43.68625],[5.97699,43.70399],[5.9648,43.70443],[5.96515,43.71324],[5.92807,43.71448],[5.92936,43.7414],[5.91768,43.74165],[5.91665,43.72391],[5.90386,43.71516],[5.86679,43.71609],[5.86601,43.70704],[5.84095,43.70778],[5.84172,43.72571],[5.82945,43.7262],[5.82979,43.73507],[5.80516,43.73576],[5.80559,43.74481],[5.78113,43.74531],[5.78053,43.72732],[5.76731,43.71864],[5.66766,43.72081],[5.66963,43.76576],[5.48346,43.77035],[5.49548,44.04022],[5.43308,44.04158],[5.43712,44.13214],[5.46244,44.13165],[5.46218,44.12259],[5.499,44.12179],[5.49952,44.13079],[5.51256,44.1396],[5.53702,44.13904],[5.53814,44.15696],[5.5505,44.15665],[5.5517,44.18337],[5.565,44.1923],[5.58964,44.19181],[5.59032,44.20067],[5.61564,44.20011],[5.63933,44.18171],[5.64019,44.19962],[5.66517,44.19901]]],"terms_url":"http://www.crige-paca.org/geoportail/geocatalogue.html?id_lot_donnee_carto=204","terms_text":"ORTHO 2010 © PACA-04-05-84"},{"id":"fr.dpt.06.2009","name":"Alpes-Maritimes 2009","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/paca06_2009/{zoom}/{x}/{y}","endDate":"2009-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[6.89117,44.39994],[7.07107,44.26586],[7.07039,44.24766],[7.11571,44.24717],[7.11708,44.22897],[7.19879,44.22552],[7.20222,44.20731],[7.21802,44.19107],[7.27982,44.18811],[7.35741,44.16792],[7.36908,44.17039],[7.42744,44.1497],[7.47002,44.14871],[7.47139,44.163],[7.5428,44.16497],[7.54349,44.17974],[7.60185,44.17777],[7.60185,44.19304],[7.70004,44.18713],[7.71789,44.10731],[7.74742,44.10435],[7.74467,44.05897],[7.70691,44.01504],[7.687,43.96169],[7.60666,43.93548],[7.57645,43.87414],[7.54074,43.86919],[7.53937,43.84196],[7.55997,43.80629],[7.56203,43.78151],[7.33063,43.6634],[7.25784,43.66738],[7.24274,43.62812],[7.16721,43.62564],[7.15897,43.58735],[7.17133,43.54506],[7.10403,43.5152],[7.09923,43.49378],[7.00378,43.49826],[7.00378,43.50474],[6.98524,43.50474],[6.97838,43.47136],[6.92207,43.47335],[6.9207,43.46787],[6.88431,43.47036],[6.86645,43.47834],[6.85478,43.49179],[6.84792,43.51669],[6.85135,43.55054],[6.86027,43.57542],[6.86714,43.57492],[6.86851,43.58537],[6.82251,43.58785],[6.8074,43.5968],[6.80672,43.60426],[6.76964,43.60675],[6.7662,43.63856],[6.73668,43.64154],[6.73531,43.65843],[6.72295,43.65893],[6.72638,43.68972],[6.73531,43.68873],[6.73805,43.71008],[6.72981,43.71057],[6.73119,43.72695],[6.62888,43.73042],[6.63162,43.7463],[6.62064,43.74729],[6.61926,43.76366],[6.60553,43.76465],[6.60622,43.79786],[6.61514,43.80877],[6.64467,43.80678],[6.64673,43.81223],[6.63574,43.81422],[6.64192,43.85681],[6.64947,43.85681],[6.65222,43.90383],[6.76483,43.90086],[6.76483,43.92015],[6.7868,43.91867],[6.78818,43.9345],[6.8177,43.93647],[6.82045,43.97157],[6.79848,43.97651],[6.80191,43.98837],[6.76071,43.98738],[6.76208,44.00121],[6.74286,44.0022],[6.74766,44.02541],[6.72157,44.0259],[6.72157,44.0338],[6.70921,44.0338],[6.7202,44.09104],[6.70029,44.09252],[6.70166,44.10632],[6.68243,44.1083],[6.68312,44.12604],[6.67213,44.12555],[6.67488,44.14181],[6.66389,44.14181],[6.66595,44.20091],[6.67557,44.20042],[6.67831,44.21617],[6.68861,44.21519],[6.69273,44.24815],[6.70235,44.24717],[6.70578,44.25946],[6.71539,44.25946],[6.71608,44.28011],[6.73531,44.27864],[6.73668,44.29535],[6.75865,44.29486],[6.77307,44.34251],[6.80191,44.33907],[6.80466,44.35724],[6.81839,44.35724],[6.87401,44.39749],[6.89117,44.39994]]],"terms_url":"http://www.crige-paca.org/geoportail/geocatalogue.html?id_lot_donnee_carto=131","terms_text":"GO 06-Ortho HR 2009"},{"id":"ARA_Bushfires_2020","name":"ARA Bushfires 2020","type":"tms","template":"https://cogeoxyz.b-cdn.net/46b53084a82973a36c0f57a1d5446c605d00ed851f11a6f5ca7c75db/{zoom}/{x}/{y}.jpg","endDate":"2020-02-06T00:00:00.000Z","startDate":"2020-01-08T00:00:00.000Z","zoomExtent":[12,22],"polygon":[[[138.94746,-35.00283],[138.92407,-34.99305],[138.92517,-34.99001],[138.92695,-34.98968],[138.93336,-34.99052],[138.93811,-34.98634],[138.93688,-34.98205],[138.9365,-34.97941],[138.92935,-34.97259],[138.91302,-34.97015],[138.89699,-34.97178],[138.89712,-34.96186],[138.90229,-34.96106],[138.9154,-34.96132],[138.93356,-34.96413],[138.93841,-34.96659],[138.94461,-34.97268],[138.94909,-34.98091],[138.94935,-34.98242],[138.94858,-34.98799],[138.94491,-34.99168],[138.94645,-34.99515],[138.94748,-34.99817],[138.94684,-34.99989],[138.94746,-35.00283]],[[136.80219,-35.83855],[136.87205,-35.82317],[136.85377,-35.77702],[136.78811,-35.79025],[136.80219,-35.83855]],[[136.95745,-35.71934],[137.00204,-35.71903],[137.00187,-35.74846],[136.9575,-35.74871],[136.95745,-35.71934]],[[138.86929,-34.9703],[138.85127,-34.96485],[138.85981,-34.95272],[138.86187,-34.94748],[138.85504,-34.94751],[138.85414,-34.94428],[138.85564,-34.94002],[138.85749,-34.89269],[138.85105,-34.8917],[138.84886,-34.88755],[138.85049,-34.87653],[138.85547,-34.87294],[138.85972,-34.8747],[138.8838,-34.85167],[138.88654,-34.84625],[138.89787,-34.83864],[138.90512,-34.83998],[138.90547,-34.8299],[138.91083,-34.82624],[138.92276,-34.82783],[138.92186,-34.85297],[138.91723,-34.85319],[138.91568,-34.87945],[138.91384,-34.886],[138.90083,-34.88688],[138.89946,-34.8922],[138.87517,-34.89322],[138.87573,-34.91212],[138.87405,-34.92465],[138.88032,-34.9213],[138.88195,-34.91817],[138.89216,-34.92194],[138.87929,-34.94783],[138.87324,-34.96383],[138.86929,-34.9703]],[[136.57493,-35.92881],[136.57699,-35.93493],[136.57836,-35.94186],[136.5801,-35.94541],[136.58881,-35.94872],[136.5925,-35.94855],[136.59795,-35.94671],[136.59999,-35.94138],[136.60649,-35.94315],[136.61422,-35.93886],[136.6137,-35.93333],[136.64409,-35.91311],[136.64975,-35.91446],[136.65409,-35.91446],[136.65507,-35.91196],[136.65512,-35.90535],[136.64975,-35.89725],[136.63774,-35.89385],[136.6213,-35.89691],[136.61645,-35.89976],[136.6137,-35.90459],[136.57493,-35.92881]],[[137.46304,-35.73005],[137.46169,-35.71908],[137.46353,-35.71788],[137.46478,-35.7114],[137.47006,-35.70903],[137.47924,-35.708],[137.49261,-35.70345],[137.49263,-35.70826],[137.49598,-35.70741],[137.49799,-35.7153],[137.46304,-35.73005]],[[136.63555,-35.9581],[136.63593,-35.96252],[136.64666,-35.96429],[136.67765,-35.96283],[136.69859,-35.96338],[136.72224,-35.96213],[136.74356,-35.96245],[136.74417,-35.96338],[136.75352,-35.96318],[136.75408,-35.96199],[136.76691,-35.96182],[136.76674,-35.95661],[136.76446,-35.95414],[136.75979,-35.95529],[136.75635,-35.95508],[136.75356,-35.95331],[136.75283,-35.94977],[136.75052,-35.94827],[136.74631,-35.94938],[136.7179,-35.94928],[136.70769,-35.94886],[136.70533,-35.94994],[136.7037,-35.9515],[136.70318,-35.95355],[136.69704,-35.95515],[136.68486,-35.95543],[136.6831,-35.95772],[136.67263,-35.95734],[136.65314,-35.95817],[136.65061,-35.95897],[136.64366,-35.95814],[136.63555,-35.9581]]],"terms_url":"https://www.airborneresearch.org.au/","terms_text":"ARA - Airborne Research Australia","best":true,"icon":"https://static.wixstatic.com/media/a40742_9e0c1ee9ed0743a8bbf73b2fe6613802.gif"},{"id":"CRAIG-Auvergne-2013","name":"Auvergne 2013 25cm CRAIG","type":"wms","template":"https://tiles.craig.fr/ortho/service?LAYERS=ortho_2013&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[2.94012,44.63388],[2.99719,44.63393],[2.99717,44.64734],[3.01597,44.64735],[3.01593,44.67412],[3.03495,44.67413],[3.0349,44.70152],[3.05363,44.70154],[3.05357,44.7419],[3.07233,44.74191],[3.07222,44.80917],[3.09216,44.80919],[3.09214,44.82213],[3.13014,44.82216],[3.13005,44.87707],[3.14856,44.87709],[3.14858,44.8637],[3.16823,44.86371],[3.16825,44.85003],[3.2064,44.85006],[3.20638,44.86284],[3.24395,44.86287],[3.24393,44.87679],[3.26315,44.87681],[3.26308,44.91752],[3.32004,44.91757],[3.32002,44.93033],[3.33908,44.93035],[3.33906,44.9442],[3.377,44.94423],[3.37702,44.93029],[3.39603,44.9303],[3.39612,44.87627],[3.41483,44.87629],[3.41489,44.83553],[3.43334,44.83554],[3.43338,44.80828],[3.45255,44.80829],[3.45258,44.79463],[3.50893,44.79468],[3.5089,44.80815],[3.60426,44.80823],[3.60422,44.83482],[3.62361,44.83484],[3.62357,44.86166],[3.64248,44.86167],[3.64255,44.8211],[3.66101,44.82112],[3.66103,44.80777],[3.6993,44.8078],[3.69928,44.82099],[3.73611,44.82102],[3.73618,44.77971],[3.77511,44.77974],[3.77515,44.75223],[3.81184,44.75226],[3.81186,44.7392],[3.83118,44.73922],[3.83121,44.72468],[3.88782,44.72472],[3.8878,44.73818],[3.92563,44.73821],[3.9256,44.75167],[3.94541,44.75168],[3.94537,44.77847],[3.96437,44.77848],[3.96435,44.79193],[4.00332,44.79196],[4.0033,44.80526],[4.02169,44.80527],[4.02167,44.81857],[4.05965,44.8186],[4.05961,44.84492],[4.07981,44.84494],[4.07979,44.85735],[4.17388,44.85743],[4.17386,44.87055],[4.19326,44.87056],[4.19323,44.88427],[4.21404,44.88429],[4.214,44.91002],[4.23241,44.91004],[4.23237,44.93731],[4.27155,44.93734],[4.27153,44.9503],[4.32887,44.95034],[4.32878,45.00367],[4.34893,45.00368],[4.3489,45.01707],[4.40608,45.01711],[4.40599,45.071],[4.38847,45.07099],[4.38845,45.0846],[4.40794,45.08461],[4.40792,45.09663],[4.48436,45.09669],[4.48429,45.13705],[4.46636,45.13703],[4.46634,45.1502],[4.48645,45.15022],[4.4864,45.17724],[4.50655,45.17726],[4.50644,45.24501],[4.48813,45.24499],[4.48811,45.25921],[4.46986,45.25919],[4.46984,45.27298],[4.45088,45.27297],[4.45086,45.28642],[4.39368,45.28637],[4.39363,45.31352],[4.37509,45.3135],[4.37507,45.32741],[4.39507,45.32742],[4.39503,45.35458],[4.37679,45.35457],[4.37676,45.36855],[4.35766,45.36853],[4.35763,45.38234],[4.28146,45.38227],[4.28143,45.39688],[4.24446,45.39685],[4.24443,45.41079],[4.14812,45.41071],[4.14814,45.39807],[4.12919,45.39805],[4.12921,45.38409],[4.09021,45.38406],[4.09024,45.37121],[4.01355,45.37115],[4.01353,45.3861],[3.91709,45.38602],[3.91707,45.39974],[3.93757,45.39975],[3.93755,45.41311],[3.97528,45.41315],[3.97526,45.42621],[3.99537,45.42622],[3.9957,45.52096],[3.97778,45.52094],[3.97769,45.57439],[3.95818,45.57437],[3.95815,45.58837],[3.9396,45.58835],[3.93958,45.60262],[3.92023,45.60261],[3.9202,45.61646],[3.88189,45.61643],[3.88185,45.64328],[3.84413,45.64325],[3.84411,45.65709],[3.82617,45.65707],[3.82612,45.68389],[3.80722,45.68387],[3.80713,45.73758],[3.78821,45.73756],[3.78819,45.7518],[3.76885,45.75178],[3.7688,45.77897],[3.75072,45.77895],[3.75058,45.86066],[3.76967,45.86067],[3.76958,45.91433],[3.75166,45.91432],[3.75164,45.92809],[3.7329,45.92807],[3.73285,45.95472],[3.81018,45.95478],[3.81016,45.96823],[3.8496,45.96826],[3.84951,46.02162],[3.83188,46.0216],[3.83179,46.07591],[3.8505,46.07592],[3.85046,46.10295],[3.83247,46.10294],[3.83234,46.18456],[3.81422,46.18455],[3.81415,46.22442],[3.83369,46.22444],[3.83366,46.2381],[3.85289,46.23812],[3.85287,46.25147],[3.89314,46.25151],[3.89312,46.26447],[3.91306,46.26448],[3.91303,46.27793],[3.95189,46.27796],[3.95187,46.29082],[3.97152,46.29084],[3.9715,46.30369],[4.0105,46.30373],[4.01048,46.31776],[4.02983,46.31778],[4.02978,46.34428],[4.0116,46.34427],[4.01146,46.42534],[4.03153,46.42536],[4.03146,46.4658],[4.01324,46.46578],[4.01322,46.47938],[3.99437,46.47936],[3.99435,46.49361],[3.9746,46.4936],[3.97457,46.50753],[3.87754,46.50745],[3.8775,46.53478],[3.85836,46.53476],[3.85833,46.54832],[3.81869,46.54828],[3.81871,46.53553],[3.79924,46.53552],[3.79922,46.54907],[3.76104,46.54904],[3.76092,46.61681],[3.74233,46.61679],[3.74228,46.64396],[3.72286,46.64395],[3.72281,46.67104],[3.70387,46.67102],[3.70385,46.68467],[3.68411,46.68466],[3.68406,46.712],[3.66484,46.71198],[3.66479,46.73904],[3.64576,46.73902],[3.64572,46.76634],[3.62575,46.76632],[3.62573,46.77971],[3.56723,46.77966],[3.56725,46.76631],[3.54715,46.76629],[3.54719,46.73928],[3.52716,46.73927],[3.52723,46.6989],[3.48774,46.69887],[3.48776,46.68594],[3.46796,46.68593],[3.46794,46.69941],[3.46792,46.71279],[3.44865,46.71278],[3.44863,46.72679],[3.35043,46.72671],[3.35048,46.6999],[3.33039,46.69988],[3.33034,46.7272],[3.23272,46.72712],[3.23274,46.71351],[3.2129,46.7135],[3.21293,46.70013],[3.17354,46.7001],[3.1735,46.72751],[3.15412,46.72749],[3.1541,46.74073],[3.11478,46.7407],[3.11475,46.75428],[3.07534,46.75424],[3.0753,46.78135],[3.05597,46.78134],[3.05592,46.80831],[2.99704,46.80826],[2.99702,46.82196],[2.93794,46.82191],[2.93797,46.80826],[2.89866,46.80823],[2.89869,46.79424],[2.87899,46.79422],[2.87901,46.78104],[2.85942,46.78103],[2.85944,46.76771],[2.84004,46.76769],[2.84007,46.75447],[2.7414,46.75439],[2.74138,46.76682],[2.70234,46.76679],[2.70236,46.75389],[2.68266,46.75387],[2.68268,46.74048],[2.66349,46.74046],[2.66351,46.7259],[2.64342,46.72588],[2.64344,46.71309],[2.62414,46.71308],[2.62417,46.69981],[2.60397,46.69979],[2.60399,46.68584],[2.56512,46.68581],[2.56515,46.67261],[2.54593,46.6726],[2.546,46.63215],[2.56592,46.63217],[2.56595,46.61811],[2.54564,46.61809],[2.54569,46.59072],[2.56642,46.59074],[2.56644,46.57754],[2.5855,46.57756],[2.58552,46.56472],[2.56613,46.5647],[2.56616,46.55062],[2.46828,46.55055],[2.4683,46.53582],[2.33212,46.53571],[2.33217,46.50886],[2.31265,46.50884],[2.31267,46.49534],[2.29288,46.49533],[2.2929,46.48182],[2.27487,46.4818],[2.27492,46.45442],[2.25539,46.4544],[2.25553,46.37349],[2.27595,46.37351],[2.27604,46.32087],[2.31456,46.32091],[2.31458,46.30704],[2.35371,46.30707],[2.35373,46.29297],[2.39384,46.293],[2.39389,46.26729],[2.45157,46.26733],[2.4516,46.25349],[2.47094,46.25351],[2.47098,46.22656],[2.49151,46.22657],[2.49155,46.19933],[2.51088,46.19934],[2.51093,46.17278],[2.53117,46.1728],[2.53138,46.05135],[2.55163,46.05137],[2.55166,46.03777],[2.57056,46.03778],[2.57068,45.96994],[2.55144,45.96993],[2.55146,45.95662],[2.53226,45.9566],[2.53228,45.94301],[2.51307,45.94299],[2.51313,45.90203],[2.47494,45.902],[2.47496,45.88882],[2.43619,45.88879],[2.43622,45.87533],[2.41721,45.87531],[2.41725,45.84794],[2.37847,45.84791],[2.3785,45.83397],[2.35952,45.83396],[2.35956,45.80708],[2.37873,45.8071],[2.37875,45.79358],[2.3987,45.79359],[2.39872,45.78035],[2.41825,45.78036],[2.41832,45.74],[2.45722,45.74003],[2.45724,45.7267],[2.47589,45.72671],[2.47591,45.71324],[2.49533,45.71325],[2.49542,45.65913],[2.45769,45.6591],[2.45776,45.61834],[2.43912,45.61833],[2.43919,45.57766],[2.4585,45.57768],[2.45855,45.55053],[2.47809,45.55055],[2.47811,45.53725],[2.49755,45.53726],[2.49759,45.51068],[2.47855,45.51066],[2.47864,45.45613],[2.45978,45.45612],[2.45987,45.40176],[2.42249,45.40173],[2.42247,45.41528],[2.40232,45.41527],[2.40229,45.42882],[2.3256,45.42876],[2.32567,45.38796],[2.34562,45.38798],[2.34566,45.36111],[2.32626,45.36109],[2.32628,45.34721],[2.30738,45.3472],[2.3074,45.3336],[2.28811,45.33358],[2.28813,45.32082],[2.26963,45.3208],[2.26966,45.30621],[2.25066,45.3062],[2.25068,45.29251],[2.23169,45.2925],[2.23171,45.27924],[2.213,45.27922],[2.21305,45.25204],[2.19374,45.25202],[2.19376,45.23811],[2.17561,45.2381],[2.17574,45.15768],[2.15735,45.15767],[2.15744,45.10295],[2.12024,45.10292],[2.12026,45.08955],[2.10067,45.08953],[2.10069,45.07544],[2.08246,45.07543],[2.08255,45.0216],[2.10255,45.02161],[2.1026,44.99445],[2.04574,44.99441],[2.04585,44.92753],[2.06578,44.92755],[2.06589,44.85969],[2.0857,44.8597],[2.08572,44.84581],[2.10556,44.84583],[2.1056,44.81933],[2.12474,44.81934],[2.12477,44.80551],[2.14351,44.80553],[2.14355,44.7786],[2.12561,44.77858],[2.1257,44.72427],[2.10665,44.72426],[2.10671,44.68423],[2.12634,44.68424],[2.12636,44.67074],[2.14598,44.67075],[2.14607,44.61644],[2.18396,44.61648],[2.18398,44.60378],[2.24042,44.60383],[2.24037,44.63095],[2.25948,44.63097],[2.25946,44.64493],[2.31668,44.64498],[2.3167,44.63088],[2.33615,44.6309],[2.33617,44.61758],[2.37242,44.61761],[2.3724,44.63158],[2.41105,44.63161],[2.41107,44.61907],[2.44922,44.61911],[2.4492,44.63232],[2.50486,44.63237],[2.50481,44.65976],[2.52461,44.65977],[2.52457,44.68717],[2.54225,44.68719],[2.54223,44.70122],[2.58071,44.70125],[2.5806,44.76834],[2.61769,44.76837],[2.61762,44.80884],[2.63676,44.80885],[2.63669,44.84929],[2.67331,44.84933],[2.67329,44.86252],[2.69338,44.86253],[2.69333,44.88943],[2.73052,44.88946],[2.73048,44.91645],[2.74992,44.91646],[2.75005,44.83647],[2.80733,44.83652],[2.80731,44.8491],[2.82638,44.84912],[2.8264,44.83628],[2.8457,44.8363],[2.84577,44.79571],[2.86422,44.79573],[2.86426,44.76865],[2.88399,44.76866],[2.88403,44.74197],[2.90203,44.74198],[2.90214,44.67432],[2.92198,44.67434],[2.92202,44.6473],[2.9401,44.64731],[2.94012,44.63388]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","terms_text":"Orthophotographie CRAIG/Sintegra/IGN 2013"},{"id":"CRAIG-Auvergne-2016_mirror1","name":"Auvergne 2016 25cm CRAIG","type":"wms","template":"https://tiles.craig.fr/ortho/service?LAYERS=ortho_2016&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[2.49389,46.66829],[2.71362,46.84141],[3.64746,46.80758],[4.04846,46.48327],[4.03747,46.24825],[4.46044,46.25965],[4.4934,46.14559],[4.38354,46.09229],[4.45495,45.69084],[4.76257,45.57176],[4.81201,45.34443],[4.22424,44.84419],[3.86169,44.696],[3.37829,44.80523],[3.33435,44.89091],[3.18054,44.82471],[3.03222,44.60612],[2.92785,44.60221],[2.71911,44.85198],[2.51037,44.60221],[2.12585,44.58265],[2.005,44.97257],[2.30712,45.46784],[2.43347,45.44087],[2.41149,45.72919],[2.34558,45.82402],[2.54882,45.97979],[2.46093,46.22166],[2.21374,46.33935],[2.27828,46.53903],[2.54882,46.56642],[2.49389,46.66829]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/CRAIG","terms_text":"CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016"},{"id":"BANO","name":"BANO","type":"tms","template":"https://{switch:a,b,c}.layers.openstreetmap.fr/bano/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"https://wiki.openstreetmap.org/wiki/FR:WikiProject_France/WikiProject_Base_Adresses_Nationale_Ouverte_(BANO)#Licence_du_r.C3.A9sultat","terms_text":"Tiles © cquest@Openstreetmap France, data © OpenStreetMap contributors, ODBL","description":"French address registry or Base Adresses Nationale Ouverte","overlay":true},{"id":"lu.geoportail.opendata.basemap","name":"Basemap geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/basemap/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png","endDate":"2010-07-20T00:00:00.000Z","startDate":"2013-07-19T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/carte-de-base-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"basemap.at","name":"basemap.at","type":"tms","template":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/geolandbasemap/normal/google3857/{zoom}/{y}/{x}.png","zoomExtent":[0,19],"polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"https://basemap.at","terms_text":"basemap.at","description":"Basemap of Austria, based on government data.","icon":"https://www.basemap.at/images/logo_basemap.jpg"},{"id":"basemap.at-orthofoto","name":"basemap.at Orthofoto","type":"tms","template":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmaporthofoto30cm/normal/google3857/{zoom}/{y}/{x}.jpeg","zoomExtent":[0,19],"polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"https://basemap.at","terms_text":"basemap.at","best":true,"description":"Orthofoto layer provided by basemap.at. \"Successor\" of geoimage.at imagery.","icon":"https://www.basemap.at/images/logo_basemap.jpg"},{"id":"basemap.at-overlay","name":"basemap.at Overlay","type":"tms","template":"https://maps{switch:1,2,3,4}.wien.gv.at/basemap/bmapoverlay/normal/google3857/{zoom}/{y}/{x}.png","zoomExtent":[0,19],"polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"https://basemap.at","terms_text":"basemap.at","description":"Annotation overlay provided by basemap.at.","icon":"https://www.basemap.at/images/logo_basemap.jpg","overlay":true},{"id":"bavaria-80cm","name":"Bavaria (80 cm)","type":"wms","template":"https://geoservices.bayern.de/wms/v2/ogc_dop80_oa.cgi?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=by_dop80c&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[7,18],"polygon":[[[10.12359,50.56846],[10.14286,50.55078],[10.20281,50.55742],[10.25205,50.51796],[10.32698,50.49345],[10.41048,50.41848],[10.60317,50.33109],[10.62244,50.2271],[10.72521,50.21066],[10.72949,50.24765],[10.85153,50.24354],[10.71879,50.32015],[10.71236,50.36524],[10.85581,50.39664],[10.93717,50.39664],[10.99069,50.36661],[11.12772,50.36661],[11.1791,50.31332],[11.16197,50.29417],[11.24119,50.2928],[11.24975,50.37344],[11.24119,50.47982],[11.35895,50.5234],[11.43816,50.50979],[11.44244,50.48936],[11.42532,50.4771],[11.42532,50.44166],[11.48955,50.42257],[11.49169,50.39801],[11.51952,50.39801],[11.52594,50.37617],[11.59874,50.40347],[11.63727,50.38845],[11.79357,50.4212],[11.83639,50.39255],[11.92203,50.42802],[11.98626,50.38709],[11.98412,50.35705],[12.04835,50.33109],[12.09331,50.32972],[12.1297,50.29828],[12.14041,50.27228],[12.10615,50.25586],[12.11258,50.23532],[12.14897,50.23669],[12.19822,50.20107],[12.22391,50.16406],[12.20464,50.14348],[12.20678,50.10779],[12.24318,50.09955],[12.27743,50.07208],[12.49367,49.98543],[12.49796,49.94136],[12.55576,49.92206],[12.54934,49.86827],[12.48083,49.78817],[12.41018,49.75775],[12.46156,49.70655],[12.5472,49.68023],[12.58788,49.55261],[12.65425,49.53455],[12.66281,49.43302],[12.75274,49.41073],[12.7977,49.34661],[12.90475,49.35638],[12.99681,49.33685],[13.05462,49.27543],[13.13169,49.21952],[13.19164,49.14395],[13.2366,49.12153],[13.29655,49.12293],[13.37148,49.08088],[13.4143,49.02897],[13.4143,48.97981],[13.57916,48.96997],[13.63483,48.94326],[13.67765,48.88698],[13.73759,48.89261],[13.7847,48.83346],[13.84036,48.77423],[13.81681,48.70646],[13.84464,48.70081],[13.8425,48.60038],[13.76543,48.5423],[13.75258,48.50401],[13.67122,48.50543],[13.64339,48.54371],[13.45712,48.5508],[13.45712,48.41598],[13.40574,48.36053],[13.2837,48.27511],[13.09315,48.26941],[12.95827,48.19097],[12.87691,48.18526],[12.772,48.09382],[12.86407,48.01368],[12.89832,47.95492],[12.94543,47.95636],[12.99681,47.88461],[13.01394,47.83434],[12.93472,47.7322],[13.0589,47.72499],[13.11885,47.63851],[13.06532,47.56922],[13.05676,47.47379],[13.00323,47.45208],[12.76772,47.55044],[12.76986,47.63274],[12.73989,47.67312],[12.6671,47.67024],[12.57503,47.6212],[12.48083,47.61975],[12.41446,47.67024],[12.24318,47.67745],[12.2132,47.69186],[12.19179,47.68177],[12.2132,47.66591],[12.21106,47.60388],[12.17467,47.59521],[12.13827,47.60388],[11.89205,47.60388],[11.85137,47.57933],[11.63942,47.58222],[11.59445,47.54899],[11.59017,47.51285],[11.51738,47.49839],[11.4403,47.50417],[11.39534,47.47524],[11.42746,47.44484],[11.3461,47.44339],[11.27973,47.39559],[11.21336,47.38834],[11.24761,47.43181],[11.10203,47.39269],[10.965,47.38979],[10.97785,47.43615],[10.9179,47.47524],[10.8708,47.47524],[10.85581,47.49405],[10.90077,47.5143],[10.87294,47.53598],[10.81085,47.51285],[10.64385,47.54899],[10.59461,47.55477],[10.57962,47.52876],[10.46187,47.54032],[10.46615,47.48392],[10.48756,47.47813],[10.48756,47.41298],[10.45973,47.40283],[10.45973,47.37529],[10.41048,47.37384],[10.40834,47.34339],[10.32056,47.28678],[10.28202,47.27806],[10.28416,47.26208],[10.14714,47.26208],[10.1921,47.30275],[10.19424,47.37384],[10.16641,47.37384],[10.16641,47.34629],[10.10004,47.34339],[10.0615,47.36369],[10.06792,47.41877],[10.09361,47.42601],[10.09576,47.44194],[9.978,47.48537],[9.95659,47.52731],[9.8945,47.52876],[9.85596,47.50851],[9.81743,47.54465],[9.82171,47.57644],[9.77461,47.58222],[9.73821,47.52586],[9.67398,47.53454],[9.58406,47.56488],[9.63972,47.60532],[9.7168,47.60388],[9.85596,47.676],[9.978,47.65582],[10.02938,47.68177],[10.10004,47.66735],[10.13215,47.676],[10.14286,47.70195],[10.0615,47.7725],[10.11288,47.8099],[10.08291,47.85302],[10.1086,47.90902],[10.07649,47.96496],[10.13001,48.02084],[10.13429,48.10669],[10.10004,48.12813],[10.05508,48.26228],[9.96944,48.36765],[10.03153,48.42593],[10.02938,48.46144],[10.12359,48.47705],[10.15356,48.4515],[10.23492,48.51252],[10.31628,48.51678],[10.29915,48.61878],[10.24563,48.6683],[10.27346,48.70646],[10.3698,48.68385],[10.43189,48.69939],[10.45116,48.72765],[10.40192,48.746],[10.44046,48.84896],[10.43403,48.95873],[10.33769,49.02055],[10.24991,49.03599],[10.24991,49.07387],[10.20066,49.10331],[10.25205,49.13274],[10.12359,49.19714],[10.11931,49.26285],[10.15142,49.28939],[10.10432,49.34522],[10.14072,49.39401],[10.1086,49.44555],[10.11074,49.50537],[10.0722,49.53316],[10.01654,49.47616],[9.92662,49.47894],[9.92448,49.55678],[9.89878,49.58177],[9.85596,49.53872],[9.80672,49.55678],[9.86667,49.60675],[9.85382,49.6442],[9.81743,49.66083],[9.83455,49.68993],[9.79602,49.72039],[9.75748,49.70793],[9.74035,49.68577],[9.70609,49.71624],[9.67826,49.71624],[9.68254,49.68854],[9.62045,49.69131],[9.64615,49.78955],[9.55836,49.77434],[9.57121,49.73561],[9.50698,49.75222],[9.49199,49.77987],[9.46844,49.76051],[9.42562,49.77849],[9.40421,49.76466],[9.33356,49.7702],[9.32928,49.73423],[9.4085,49.72593],[9.42776,49.69824],[9.41492,49.6442],[9.38066,49.63865],[9.35925,49.64974],[9.33998,49.63727],[9.31215,49.64836],[9.27789,49.62617],[9.28432,49.60814],[9.2415,49.57483],[9.09805,49.57205],[9.06594,49.60814],[9.10019,49.65113],[9.09163,49.6927],[9.13017,49.71208],[9.13873,49.74253],[9.10876,49.75637],[9.13659,49.79093],[9.10019,49.78955],[9.07236,49.82824],[9.03596,49.83514],[9.01669,50.02671],[8.96317,50.03084],[8.95674,50.05971],[9.00171,50.0707],[9.02097,50.11054],[9.1216,50.12289],[9.15586,50.11328],[9.19654,50.11878],[9.18583,50.13525],[9.23507,50.1476],[9.37638,50.12701],[9.4085,50.0817],[9.52197,50.09543],[9.50484,50.14211],[9.53267,50.16406],[9.48985,50.16954],[9.49413,50.24354],[9.61403,50.22163],[9.66541,50.23532],[9.63544,50.24901],[9.66756,50.27228],[9.74249,50.30922],[9.72964,50.35841],[9.77032,50.42939],[9.86881,50.40074],[9.91805,50.40893],[10.03581,50.47982],[10.03795,50.51115],[10.12359,50.56846]]],"terms_url":"https://www.ldbv.bayern.de/","terms_text":"Bayerische Vermessungsverwaltung","best":true},{"id":"Bayonne_2019","name":"Bayonne - Petit et Grand Bayonne 2019","type":"wms","template":"https://wms.openstreetmap.fr/wms?LAYERS=bayonne_2019&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-1.48262,43.49176],[-1.48223,43.48637],[-1.481,43.48642],[-1.48087,43.48462],[-1.47099,43.485],[-1.47106,43.4859],[-1.46858,43.486],[-1.46865,43.48689],[-1.46742,43.48694],[-1.46781,43.49234],[-1.46905,43.49229],[-1.46911,43.49319],[-1.47158,43.49309],[-1.47165,43.49399],[-1.47288,43.49395],[-1.47295,43.49484],[-1.47418,43.4948],[-1.47425,43.49569],[-1.47918,43.4955],[-1.47913,43.4946],[-1.48035,43.49455],[-1.48029,43.49366],[-1.48152,43.49361],[-1.48139,43.49181],[-1.48262,43.49176]]],"terms_text":"Ville de Bayonne - 2019"},{"id":"Bayonne_2016","name":"Bayonne 2016","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bayonne_2016/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-1.51199,43.53909],[-1.50478,43.44095],[-1.4986,43.43996],[-1.48865,43.44046],[-1.47835,43.44719],[-1.46771,43.45716],[-1.46118,43.4579],[-1.45466,43.46463],[-1.44231,43.46693],[-1.41895,43.48755],[-1.40797,43.49004],[-1.4035,43.49752],[-1.40419,43.50449],[-1.42513,43.52466],[-1.44539,43.5264],[-1.44917,43.53835],[-1.45569,43.54233],[-1.47388,43.54954],[-1.4835,43.54929],[-1.50444,43.53909],[-1.51199,43.53909]]],"terms_text":"Ville de Bayonne, Communauté d'Agglomtération Pays Basque - 2016"},{"id":"route500hydro","name":"BD Carthage","type":"tms","template":"https://{switch:a,b,c}.tile.openstreetmap.fr/route500hydro/{zoom}/{x}/{y}.png","zoomExtent":[6,20],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"http://www.sandre.eaufrance.fr/actualite/la-bd-carthage-en-licence-ouverte-open-licence","terms_text":"Tiles © cquest@Openstreetmap France, data © Onema - IGN, LO/OL","description":"Réseau hydrographique: cours et plans d'eau et POI","overlay":true},{"id":"fr.ign.bdortho","name":"BDOrtho IGN","type":"tms","template":"https://proxy-ign.openstreetmap.fr/94GjiyqD/bdortho/{zoom}/{x}/{y}.jpg","zoomExtent":[2,21],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]],[[-61.27501,14.90218],[-60.72368,14.90101],[-60.72489,14.36686],[-61.27622,14.36803],[-61.27501,14.90218]],[[-61.92802,16.58618],[-61.92686,15.7394],[-60.88128,15.74072],[-60.88243,16.5875],[-61.92802,16.58618]],[[-53.89344,6.004],[-52.46522,5.4465],[-51.52039,4.51072],[-51.53687,4.11633],[-52.2345,3.10213],[-52.641,2.25162],[-52.92664,2.07597],[-53.72864,2.21869],[-54.20106,2.03205],[-54.8053,2.27358],[-54.31092,2.80589],[-54.31641,3.20085],[-54.12415,3.46408],[-54.12964,3.59567],[-54.42078,4.00127],[-54.58008,4.95962],[-53.89344,6.004]],[[55.08816,-20.77935],[55.95959,-20.77281],[55.96576,-21.49],[55.09434,-21.49651],[55.08816,-20.77935]],[[44.92054,-12.57363],[45.34826,-12.57029],[45.35274,-13.1163],[44.92502,-13.11963],[44.92054,-12.57363]],[[-178.57728,-14.70582],[-178.42568,-14.00334],[-176.34156,-12.83858],[-175.71534,-12.9189],[-175.91858,-13.58726],[-177.84638,-14.64983],[-178.57728,-14.70582]]],"terms_url":"https://openstreetmap.fr/bdortho","terms_text":"BDOrtho IGN","best":true,"icon":"http://www.ign.fr/institut/sites/all/themes/ign_institut/logo.png"},{"id":"Benin_cotonou_pleiade_2016","name":"Benin: Cotonou Pleiade 2016","type":"tms","template":"https://geoxxx.agrocampus-ouest.fr/owsifl/gwc/service/wmts?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Benin:cotonou_pleiade_2016&STYLE=&FORMAT=image/jpeg&tileMatrixSet=EPSG:3857&tileMatrix=EPSG:3857:{zoom}&tileRow={y}&tileCol={x}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[6,21],"polygon":[[[2.31954,6.55745],[2.33645,6.56024],[2.36377,6.56211],[2.36738,6.56068],[2.37777,6.5494],[2.37779,6.53485],[2.36994,6.49332],[2.37038,6.45527],[2.36958,6.45269],[2.36188,6.44177],[2.35392,6.40545],[2.36749,6.4015],[2.39526,6.40072],[2.40128,6.40374],[2.40588,6.40341],[2.42046,6.39383],[2.42485,6.39794],[2.42949,6.39887],[2.43625,6.39628],[2.43958,6.40042],[2.44439,6.40189],[2.45376,6.39899],[2.47145,6.39632],[2.48162,6.39106],[2.49453,6.3874],[2.50893,6.38888],[2.50719,6.39229],[2.5012,6.39162],[2.4963,6.39521],[2.4951,6.40123],[2.49543,6.40401],[2.4983,6.41022],[2.50191,6.41282],[2.51087,6.41321],[2.52219,6.40849],[2.53352,6.40517],[2.5381,6.40961],[2.54111,6.4109],[2.54651,6.41099],[2.54654,6.40651],[2.57639,6.40724],[2.57642,6.41177],[2.58576,6.41196],[2.58868,6.41095],[2.60877,6.39414],[2.6257,6.39488],[2.64555,6.39729],[2.65039,6.39339],[2.65367,6.36823],[2.64312,6.36659],[2.61251,6.36289],[2.56868,6.3607],[2.54683,6.36055],[2.54687,6.35546],[2.50207,6.35461],[2.47064,6.35596],[2.46777,6.35203],[2.46423,6.3502],[2.45254,6.35006],[2.45113,6.34813],[2.44737,6.34629],[2.43757,6.34654],[2.43298,6.33841],[2.43016,6.33707],[2.42245,6.33707],[2.39236,6.34115],[2.39315,6.34115],[2.36528,6.34445],[2.35386,6.3453],[2.34377,6.34458],[2.34094,6.34534],[2.31086,6.36567],[2.28435,6.37465],[2.28147,6.37762],[2.27599,6.39517],[2.27612,6.3982],[2.31529,6.49261],[2.3158,6.55307],[2.31954,6.55745]],[[1.69563,6.25076],[1.7001,6.24712],[1.70418,6.24697],[1.75875,6.25836],[1.77079,6.25995],[1.81712,6.27161],[1.84457,6.27657],[1.85768,6.27945],[1.88843,6.28326],[1.90482,6.28595],[1.90618,6.29435],[1.90083,6.29721],[1.89881,6.29954],[1.89404,6.30085],[1.89048,6.2997],[1.88748,6.29636],[1.88344,6.29622],[1.8697,6.29227],[1.8564,6.29198],[1.85207,6.28675],[1.84991,6.28906],[1.84691,6.29203],[1.84353,6.29333],[1.84041,6.29315],[1.83627,6.29129],[1.8341,6.28733],[1.83417,6.2852],[1.8323,6.28456],[1.82786,6.28644],[1.82182,6.29084],[1.81563,6.28998],[1.81211,6.29143],[1.80758,6.29571],[1.80472,6.29693],[1.80074,6.2971],[1.79776,6.29612],[1.79625,6.29492],[1.7949,6.28965],[1.79641,6.28608],[1.80098,6.28338],[1.79567,6.28013],[1.79156,6.28174],[1.78499,6.28122],[1.78092,6.27753],[1.77588,6.2755],[1.76745,6.27696],[1.75653,6.27496],[1.74833,6.27239],[1.74762,6.27726],[1.74572,6.27938],[1.73948,6.27985],[1.7368,6.27761],[1.73572,6.27892],[1.72902,6.27911],[1.72435,6.27422],[1.72449,6.26786],[1.72556,6.26683],[1.69934,6.26159],[1.69573,6.25726],[1.69563,6.25076]]],"best":true},{"id":"Berlin-2016-infrared","name":"Berlin/Geoportal DOP20CIR (2016 infrared)","type":"tms","template":"https://tiles.codefor.de/berlin-2016i/{zoom}/{x}/{y}.png","endDate":"2016-04-03T00:00:00.000Z","startDate":"2016-04-02T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale Color-Infrarot-Orthophotos 2016 (DOP20CIR) (codefor.de mirror)"},{"id":"Berlin-2011","name":"Berlin/Geoportal DOP20RGB (2011)","type":"wms","template":"https://fbinter.stadt-berlin.de/fb/wms/senstadt/k_luftbild2011_20?LAYERS=0&STYLES=default&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[13.48699,52.68076],[13.52584,52.65196],[13.5299,52.64437],[13.54209,52.60921],[13.58109,52.58134],[13.59674,52.55936],[13.63477,52.55121],[13.66547,52.52854],[13.67199,52.50379],[13.65806,52.50372],[13.65796,52.49324],[13.7547,52.4565],[13.76644,52.43884],[13.76627,52.42973],[13.74494,52.39909],[13.65235,52.33133],[13.6417,52.33103],[13.62609,52.35491],[13.59432,52.37455],[13.53198,52.38376],[13.51948,52.39236],[13.48536,52.39227],[13.43552,52.38016],[13.42885,52.37401],[13.38689,52.37388],[13.38642,52.38667],[13.36857,52.38728],[13.37045,52.39349],[13.33968,52.40887],[13.31243,52.39775],[13.30557,52.40452],[13.23622,52.40342],[13.18886,52.40417],[13.17719,52.39067],[13.14859,52.38971],[13.14868,52.38421],[13.11889,52.38385],[13.11935,52.40025],[13.10487,52.40723],[13.07371,52.40668],[13.07367,52.41403],[13.10516,52.47897],[13.11685,52.47881],[13.112,52.55915],[13.11865,52.59156],[13.15251,52.60489],[13.16282,52.60462],[13.21264,52.6321],[13.22139,52.63215],[13.27292,52.66444],[13.31376,52.66442],[13.32714,52.64692],[13.36783,52.6468],[13.39158,52.65382],[13.42728,52.6549],[13.47594,52.68122],[13.48699,52.68076]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2011 (DOP20RGB)","description":"Digitale Orthophotos für das gesamte Berliner Stadtgebiet mit einer Bodenauflösung von 0,20 m im Blattschnitt 2 km x 2 km."},{"id":"Berlin-2014","name":"Berlin/Geoportal DOP20RGB (2014)","type":"tms","template":"https://tiles.codefor.de/berlin-2014/{zoom}/{x}/{y}.png","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.19746,52.64206],[13.25639,52.64285],[13.2558,52.66101],[13.31391,52.66185],[13.31476,52.64353],[13.37431,52.64462],[13.37386,52.66269],[13.4026,52.663],[13.40332,52.64501],[13.4334,52.64555],[13.43227,52.68001],[13.49082,52.68111],[13.49147,52.66428],[13.52092,52.66457],[13.5216,52.6465],[13.55096,52.6469],[13.55147,52.62938],[13.52219,52.62898],[13.52335,52.59248],[13.58263,52.59329],[13.58307,52.57535],[13.61246,52.57582],[13.61324,52.55784],[13.64268,52.55813],[13.64296,52.5401],[13.67253,52.54048],[13.67375,52.50475],[13.64413,52.5045],[13.64476,52.48608],[13.7037,52.48683],[13.70415,52.46901],[13.73362,52.4692],[13.73399,52.45121],[13.76358,52.45156],[13.76447,52.40209],[13.73546,52.39753],[13.73611,52.37963],[13.70678,52.37935],[13.70731,52.36136],[13.67785,52.36104],[13.67898,52.33017],[13.62102,52.32946],[13.61999,52.36033],[13.59046,52.36007],[13.5901,52.37806],[13.53116,52.37735],[13.53064,52.39525],[13.47168,52.39459],[13.47149,52.4125],[13.44101,52.41219],[13.44257,52.37604],[13.35487,52.37498],[13.35427,52.39306],[13.23667,52.39114],[13.23609,52.40922],[13.17635,52.40836],[13.17752,52.39029],[13.14791,52.38987],[13.14876,52.37459],[13.11971,52.37422],[13.11941,52.38955],[13.08981,52.38899],[13.08938,52.40707],[13.0618,52.40662],[13.06075,52.42408],[13.08842,52.42449],[13.086,52.47853],[13.11546,52.47896],[13.11462,52.49695],[13.1441,52.49729],[13.14332,52.5157],[13.1137,52.51528],[13.11077,52.6047],[13.19862,52.6062],[13.19746,52.64206]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2014 (DOP20RGB) (codefor.de mirror)"},{"id":"Berlin-2015","name":"Berlin/Geoportal DOP20RGB (2015)","type":"tms","template":"https://tiles.codefor.de/berlin-2015/{zoom}/{x}/{y}.png","endDate":"2015-08-03T00:00:00.000Z","startDate":"2015-08-02T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.11068,52.59538],[13.13975,52.60527],[13.18355,52.61488],[13.21262,52.63315],[13.24167,52.64282],[13.256,52.65201],[13.27004,52.67021],[13.31368,52.67072],[13.32914,52.66204],[13.32948,52.6529],[13.43284,52.65414],[13.44733,52.6816],[13.50561,52.68244],[13.50654,52.65531],[13.53605,52.65572],[13.5376,52.61991],[13.52229,52.61977],[13.52304,52.60165],[13.59776,52.58469],[13.59865,52.55769],[13.62817,52.55805],[13.64303,52.5492],[13.65813,52.54042],[13.67312,52.53144],[13.67356,52.51358],[13.65913,52.51344],[13.65998,52.48643],[13.68931,52.48687],[13.73386,52.46933],[13.73405,52.46034],[13.76362,52.46068],[13.76431,52.42464],[13.74941,52.42474],[13.75045,52.39778],[13.73585,52.39762],[13.70661,52.37944],[13.707,52.3614],[13.67782,52.36125],[13.66405,52.33395],[13.62073,52.33337],[13.62031,52.36042],[13.58986,52.3781],[13.53149,52.37748],[13.53133,52.38641],[13.44223,52.38484],[13.42813,52.3667],[13.38464,52.3662],[13.35432,52.39301],[13.29537,52.39209],[13.29531,52.40103],[13.19171,52.39957],[13.19222,52.39056],[13.14774,52.38996],[13.14839,52.38095],[13.11964,52.38041],[13.0744,52.40683],[13.07392,52.42426],[13.10275,52.43374],[13.10123,52.47874],[13.11558,52.47897],[13.11068,52.59538]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2015 (DOP20RGB) (codefor.de mirror)"},{"id":"Berlin-2016","name":"Berlin/Geoportal DOP20RGB (2016)","type":"tms","template":"https://tiles.codefor.de/berlin-2016/{zoom}/{x}/{y}.png","endDate":"2016-04-03T00:00:00.000Z","startDate":"2016-04-02T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2016 (DOP20RGB) (codefor.de mirror)"},{"id":"Berlin-2017","name":"Berlin/Geoportal DOP20RGB (2017)","type":"tms","template":"https://tiles.codefor.de/berlin-2017/{zoom}/{x}/{y}.png","endDate":"2017-03-28T00:00:00.000Z","startDate":"2017-03-27T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2017 (DOP20RGB) (codefor.de mirror)"},{"id":"Berlin-2018","name":"Berlin/Geoportal DOP20RGB (2018)","type":"tms","template":"https://tiles.codefor.de/berlin-2018/{zoom}/{x}/{y}.png","endDate":"2018-04-07T00:00:00.000Z","startDate":"2018-03-19T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2018 (DOP20RGB) (codefor.de mirror)"},{"id":"Berlin-2019","name":"Berlin/Geoportal DOP20RGB (2019)","type":"tms","template":"https://tiles.codefor.de/berlin-2019/{zoom}/{x}/{y}.png","endDate":"2019-04-06T00:00:00.000Z","startDate":"2019-04-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[13.29535,52.392],[13.29502,52.40083],[13.19206,52.39937],[13.19241,52.39035],[13.14839,52.3897],[13.14877,52.38046],[13.11926,52.38001],[13.11888,52.38921],[13.08906,52.40693],[13.07431,52.4067],[13.07356,52.42447],[13.10259,52.43394],[13.10073,52.47912],[13.11534,52.47934],[13.11055,52.59579],[13.13972,52.60527],[13.18403,52.60593],[13.21212,52.63346],[13.27041,52.65222],[13.26973,52.67025],[13.31405,52.67086],[13.32953,52.65323],[13.43315,52.65458],[13.43254,52.67251],[13.44682,52.68189],[13.50593,52.68261],[13.50681,52.65545],[13.53643,52.6558],[13.53757,52.61964],[13.52288,52.61946],[13.52345,52.6017],[13.53842,52.59279],[13.56782,52.59313],[13.59798,52.58464],[13.5988,52.55755],[13.62826,52.55788],[13.65822,52.53124],[13.67314,52.53139],[13.67365,52.51359],[13.65912,52.51344],[13.65989,52.48661],[13.68929,52.48692],[13.7188,52.47807],[13.73406,52.4604],[13.7636,52.46069],[13.76454,52.42482],[13.75027,52.42468],[13.75097,52.39814],[13.70722,52.37923],[13.70772,52.36111],[13.67826,52.36081],[13.67876,52.34302],[13.66428,52.34287],[13.66454,52.33367],[13.62038,52.33319],[13.61959,52.36012],[13.58956,52.37786],[13.5313,52.37719],[13.53103,52.38581],[13.44254,52.38473],[13.42861,52.36674],[13.38418,52.36617],[13.35417,52.39279],[13.29535,52.392]]],"terms_text":"Geoportal Berlin/Digitale farbige Orthophotos 2019 (DOP20RGB) (codefor.de mirror)"},{"id":"Berlin-2020-TrueDOP","name":"Berlin/Geoportal TrueDOP20RGB (2020)","type":"tms","template":"https://tiles.codefor.de/berlin-2020-truedop/{zoom}/{x}/{y}.png","endDate":"2020-08-01T00:00:00.000Z","startDate":"2020-08-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[13.05872,52.42427],[13.08812,52.42474],[13.08734,52.44272],[13.08656,52.46069],[13.08578,52.47866],[13.11521,52.47913],[13.11445,52.4971],[13.11368,52.51507],[13.11291,52.53304],[13.11214,52.55101],[13.11136,52.56898],[13.11059,52.58695],[13.10982,52.60492],[13.13933,52.60539],[13.16885,52.60585],[13.1681,52.62382],[13.19763,52.62427],[13.19689,52.64225],[13.22644,52.64269],[13.25598,52.64313],[13.25527,52.6611],[13.25455,52.67907],[13.28412,52.6795],[13.31369,52.67993],[13.31438,52.66196],[13.34394,52.66237],[13.3735,52.66278],[13.40306,52.66319],[13.43262,52.66358],[13.43198,52.68155],[13.46155,52.68194],[13.49113,52.68232],[13.5207,52.68269],[13.52131,52.66472],[13.55087,52.66509],[13.55147,52.64711],[13.55206,52.62914],[13.55265,52.61116],[13.55325,52.59319],[13.58276,52.59355],[13.58334,52.57557],[13.61285,52.57592],[13.61341,52.55795],[13.64291,52.55829],[13.64346,52.54031],[13.67294,52.54065],[13.67348,52.52267],[13.67402,52.50469],[13.67456,52.48672],[13.70401,52.48705],[13.73346,52.48736],[13.73397,52.46939],[13.76341,52.4697],[13.76391,52.45172],[13.76442,52.43375],[13.76492,52.41577],[13.76542,52.39779],[13.73603,52.39748],[13.73655,52.37951],[13.70717,52.37919],[13.7077,52.36121],[13.67833,52.36089],[13.67887,52.34291],[13.67941,52.32494],[13.65007,52.3246],[13.62073,52.32427],[13.59139,52.32392],[13.56206,52.32357],[13.53272,52.32321],[13.50339,52.32284],[13.47405,52.32246],[13.44472,52.32208],[13.41539,52.32169],[13.41474,52.33966],[13.4141,52.35764],[13.38474,52.35724],[13.38409,52.37521],[13.35472,52.37481],[13.35405,52.39278],[13.32467,52.39237],[13.2953,52.39195],[13.26592,52.39152],[13.23654,52.39109],[13.20717,52.39064],[13.17779,52.3902],[13.14842,52.38974],[13.14917,52.37177],[13.11981,52.3713],[13.11905,52.38927],[13.08967,52.3888],[13.0889,52.40677],[13.05951,52.4063],[13.05872,52.42427]]],"terms_text":"Geoportal Berlin/Digitale farbige TrueOrthophotos 2020 (TrueDOP20RGB) (codefor.de mirror)","best":true},{"id":"Bing","name":"Bing aerial imagery","type":"bing","template":"https://www.bing.com/maps","zoomExtent":[1,22],"default":true,"description":"Satellite and aerial imagery.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/Bing.png"},{"id":"Bologna-Orthophoto-2017","name":"Bologna ortofoto 2017","type":"tms","template":"https://sitmappe.comune.bologna.it/tms/tileserver/Ortofoto2017/{zoom}/{x}/{y}.png","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[11.22962,44.53077],[11.23184,44.52461],[11.24123,44.52167],[11.23251,44.50893],[11.23572,44.50323],[11.25009,44.50116],[11.24765,44.49644],[11.25708,44.49765],[11.25653,44.49294],[11.29461,44.48981],[11.29676,44.4857],[11.28807,44.47586],[11.29226,44.4609],[11.28447,44.45459],[11.28228,44.42572],[11.29347,44.4276],[11.29254,44.43377],[11.31339,44.42103],[11.32504,44.42274],[11.33695,44.42772],[11.33765,44.43167],[11.3315,44.43273],[11.33453,44.43867],[11.34466,44.43594],[11.34498,44.44093],[11.36235,44.45099],[11.37312,44.44935],[11.37498,44.45897],[11.39499,44.46368],[11.4011,44.46122],[11.39464,44.46803],[11.41577,44.48376],[11.42559,44.4845],[11.42717,44.48921],[11.41727,44.4906],[11.43363,44.51312],[11.42692,44.51532],[11.43034,44.5196],[11.42466,44.51959],[11.41987,44.52934],[11.4143,44.52564],[11.40739,44.52851],[11.41487,44.53999],[11.38871,44.54145],[11.39082,44.54553],[11.36474,44.55253],[11.36414,44.55609],[11.3573,44.5519],[11.34375,44.55333],[11.33589,44.54299],[11.33145,44.54734],[11.31349,44.54722],[11.30929,44.5295],[11.29104,44.53581],[11.28179,44.54851],[11.26911,44.53248],[11.25118,44.55578],[11.24499,44.55569],[11.22962,44.53077]]],"terms_url":"http://dati.comune.bologna.it/node/3449","terms_text":"© Comune di Bologna cc-by 4.0 ODbL compliant","best":true},{"id":"Bonvillars-2013","name":"Bonvillars Orthophoto 2013","type":"tms","template":"https://osmdata.asitvd.ch/tiles/bonvillars2013/{zoom}/{x}/{y}.png","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[6.66713,46.83358],[6.66313,46.83833],[6.67213,46.84191],[6.6749,46.84226],[6.67843,46.83807],[6.66713,46.83358]]],"terms_url":"https://osmdata.asitvd.ch/","terms_text":"Bonvillars - Orthophoto technique 2013"},{"id":"Bordeaux_2012","name":"Bordeaux - 2012","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2012/{zoom}/{x}/{y}","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"terms_text":"Communauté urbaine de Bordeaux - 2012"},{"id":"Bordeaux_2016","name":"Bordeaux 2016","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2016/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"terms_text":"Bordeaux Métropole - 2016"},{"id":"Bordeaux_2020","name":"Bordeaux 2020","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/bordeaux_2020/{zoom}/{x}/{y}","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[-0.59923,45.04193],[-0.54231,45.02757],[-0.50979,45.00601],[-0.47727,45.00206],[-0.47066,44.97367],[-0.45542,44.95102],[-0.46456,44.91792],[-0.4732,44.91936],[-0.48794,44.90928],[-0.4981,44.89057],[-0.48946,44.87797],[-0.4666,44.87076],[-0.47625,44.84735],[-0.49505,44.83978],[-0.49099,44.83186],[-0.46965,44.82537],[-0.49709,44.80446],[-0.52453,44.80013],[-0.5103,44.76767],[-0.53469,44.76515],[-0.56213,44.75107],[-0.5601,44.74169],[-0.5728,44.74133],[-0.59465,44.7601],[-0.63429,44.73989],[-0.65004,44.77705],[-0.67901,44.77489],[-0.68816,44.77922],[-0.71509,44.76839],[-0.75168,44.7471],[-0.76336,44.75577],[-0.73846,44.77561],[-0.74202,44.78571],[-0.72779,44.81239],[-0.73999,44.82861],[-0.76438,44.82933],[-0.803,44.82176],[-0.8401,44.82753],[-0.83908,44.84014],[-0.87567,44.85023],[-0.88532,44.85852],[-0.88685,44.88769],[-0.86601,44.88697],[-0.84569,44.89669],[-0.83349,44.92764],[-0.81825,44.92764],[-0.80198,44.92224],[-0.79843,44.9485],[-0.78725,44.94814],[-0.75574,44.97007],[-0.72169,44.95785],[-0.69578,44.93087],[-0.68866,44.93447],[-0.67139,44.93267],[-0.66935,44.94095],[-0.62514,44.95066],[-0.63226,44.95893],[-0.63124,44.9672],[-0.60024,44.96756],[-0.55146,44.97834],[-0.54079,44.97726],[-0.55451,44.99739],[-0.59364,45.01751],[-0.60787,45.03403],[-0.59923,45.04193]]],"terms_text":"Bordeaux Métropole - 2020"},{"id":"fr.dpt.13.2009","name":"Bouches-du-Rhône 2009","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/paca13_2009/{zoom}/{x}/{y}","endDate":"2009-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[4.30389,43.53163],[4.29565,43.55054],[4.30801,43.56646],[4.32999,43.56248],[4.33411,43.54457],[4.42337,43.59531],[4.44397,43.59034],[4.45633,43.60327],[4.4371,43.60227],[4.41238,43.62017],[4.44397,43.67185],[4.4577,43.67681],[4.4783,43.70759],[4.54147,43.71454],[4.61014,43.69568],[4.6019,43.72844],[4.617,43.7463],[4.617,43.76217],[4.64172,43.78498],[4.64172,43.81372],[4.63074,43.82561],[4.63211,43.87414],[4.69116,43.88998],[4.68567,43.89987],[4.72275,43.91768],[4.73236,43.93351],[4.8175,43.91867],[4.85046,43.92065],[4.97955,43.87414],[5.00152,43.85038],[5.03998,43.83057],[5.05371,43.79687],[5.18555,43.74431],[5.22949,43.7582],[5.32013,43.74332],[5.34347,43.72745],[5.43548,43.68972],[5.44784,43.71752],[5.46844,43.72745],[5.50827,43.73638],[5.59479,43.68674],[5.61127,43.68873],[5.62775,43.67383],[5.66894,43.69965],[5.70877,43.69469],[5.74859,43.73042],[5.78293,43.72745],[5.79941,43.71554],[5.82275,43.68873],[5.80353,43.65694],[5.74173,43.65098],[5.71014,43.63409],[5.69229,43.61023],[5.7019,43.58238],[5.67169,43.57442],[5.73349,43.55651],[5.71701,43.48382],[5.75821,43.44295],[5.79803,43.423],[5.79254,43.40904],[5.74997,43.39407],[5.76095,43.33617],[5.73761,43.33217],[5.70465,43.34316],[5.69641,43.32118],[5.728,43.32118],[5.77057,43.28021],[5.7637,43.26521],[5.7225,43.25321],[5.70877,43.2362],[5.68817,43.2322],[5.67856,43.17614],[5.62775,43.17915],[5.62637,43.1511],[5.59341,43.1541],[5.55771,43.17314],[5.53299,43.20017],[5.51239,43.19216],[5.41489,43.19416],[5.41351,43.16613],[5.36545,43.17013],[5.31601,43.20918],[5.24322,43.19116],[5.2185,43.19216],[5.22125,43.21218],[5.27893,43.25221],[5.2803,43.2982],[5.23636,43.31819],[5.02762,43.32118],[5.00015,43.36113],[4.91638,43.36213],[4.86694,43.31519],[4.82849,43.31519],[4.79278,43.33617],[4.68292,43.33617],[4.58954,43.34116],[4.55109,43.35814],[4.54697,43.39607],[4.5758,43.41004],[4.57306,43.42799],[4.53873,43.44195],[4.34509,43.44295],[4.21738,43.45392],[4.22836,43.50573],[4.30389,43.53163]]],"terms_url":"http://www.crige-paca.org/geoportail/geocatalogue.html?id_lot_donnee_carto=132","terms_text":"Ortho13, 2009"},{"id":"Brest_2004","name":"Brest - 2004","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/brest_2004/{zoom}/{x}/{y}","endDate":"2004-01-01T00:00:00.000Z","startDate":"2004-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-4.66444,48.46561],[-4.64202,48.30385],[-4.30555,48.32444],[-4.32797,48.48614],[-4.66444,48.46561]]],"terms_url":"https://geo.pays-de-brest.fr/zapp/Pages/Photo-aerienne.aspx","terms_text":"Brest Métropole - 2004"},{"id":"Budapest_XI_2015","name":"Budapest district XI orthophoto 2015","type":"wms","template":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto2015_20160304&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"terms_url":"https://terinfo.ujbuda.hu","terms_text":"Budapest XI. kerület önkormányzata","description":"5 cm resolution bald image"},{"id":"Budapest_XI_2017","name":"Budapest district XI orthophoto 2017","type":"wms","template":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2017&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-03-01T00:00:00.000Z","startDate":"2017-03-01T00:00:00.000Z","polygon":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"terms_url":"https://terinfo.ujbuda.hu","terms_text":"Budapest XI. kerület önkormányzata","description":"5 cm resolution bald image"},{"id":"Budapest_XI_2019","name":"Budapest district XI orthophoto 2019","type":"wms","template":"https://terinfo.ujbuda.hu/mapproxy/service?LAYERS=orto_2019&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[19.04767,47.48789],[19.05157,47.4899],[19.06434,47.4792],[19.0665,47.47632],[19.06766,47.47343],[19.06837,47.47077],[19.06846,47.46876],[19.06722,47.46501],[19.05683,47.45259],[19.0549,47.44906],[19.05176,47.43499],[19.04863,47.429],[19.04384,47.42968],[19.04023,47.42932],[19.03509,47.43818],[19.03221,47.43779],[19.0252,47.442],[19.0207,47.44576],[19.01915,47.44658],[19.01545,47.44759],[19.01347,47.44361],[19.01266,47.44271],[19.01178,47.44247],[19.0119,47.44188],[19.0098,47.43944],[19.0057,47.43111],[19.00046,47.43097],[18.99534,47.42821],[18.97545,47.42818],[18.97343,47.42904],[18.97361,47.42998],[18.97548,47.43067],[18.97719,47.43402],[18.97823,47.43817],[18.97733,47.44657],[18.97004,47.44988],[18.96861,47.45142],[18.97568,47.45506],[18.97586,47.45556],[18.97625,47.45584],[18.97658,47.45594],[18.97763,47.45597],[18.98017,47.45605],[18.98162,47.46067],[18.97793,47.46857],[18.96867,47.47643],[18.97745,47.48194],[18.98035,47.48169],[18.98565,47.4782],[18.98907,47.47838],[18.99117,47.47898],[18.99177,47.48102],[18.99288,47.48182],[18.99836,47.48238],[18.99902,47.483],[19.004,47.48189],[19.00416,47.48399],[19.01027,47.48535],[19.01237,47.48404],[19.0138,47.48351],[19.01674,47.48465],[19.0163,47.48539],[19.01689,47.48595],[19.01808,47.48605],[19.02108,47.48492],[19.02124,47.48612],[19.02301,47.48741],[19.02637,47.48885],[19.02995,47.48904],[19.03135,47.48855],[19.03189,47.48759],[19.03286,47.48712],[19.03364,47.48702],[19.03514,47.48725],[19.03585,47.48729],[19.03616,47.48751],[19.03665,47.48767],[19.03748,47.48774],[19.03847,47.48737],[19.03918,47.48679],[19.04105,47.48649],[19.04181,47.48737],[19.04387,47.4881],[19.04542,47.48817],[19.04695,47.4881],[19.04767,47.48789]]],"terms_url":"http://terinfo.ujbuda.hu","terms_text":"Budapest XI. kerület önkormányzata","best":true,"description":"5 cm resolution bald image"},{"id":"Bytom-buildings","name":"Bytom: Buildings","type":"wms","template":"http://sitplan.um.bytom.pl/isdp/scripts/isdp.dll/wms?LAYERS=adr_osie_ulic,adr_punkty_adresowe,eg_budynki&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:900913","polygon":[[[18.81033,50.40715],[18.81032,50.41611],[18.9008,50.41513],[18.90012,50.37923],[18.94532,50.37856],[18.94515,50.36992],[18.96735,50.36984],[18.96593,50.31573],[18.87708,50.31654],[18.87661,50.32559],[18.85443,50.32576],[18.85508,50.33481],[18.83176,50.33467],[18.83241,50.34382],[18.80925,50.34399],[18.80971,50.37073],[18.78751,50.37099],[18.78812,50.40741],[18.81033,50.40715]]],"terms_text":"Urząd Miasta Bytomia"},{"id":"Bytom-2014","name":"Bytom: Fotoplan 2014 (aerial image)","type":"wms","template":"http://sitplan.um.bytom.pl:11180/isdp/gs/wms?LAYERS=default:fotoplan_2014&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[18.81033,50.40715],[18.81032,50.41611],[18.9008,50.41513],[18.90012,50.37923],[18.94532,50.37856],[18.94515,50.36992],[18.96735,50.36984],[18.96593,50.31573],[18.87708,50.31654],[18.87661,50.32559],[18.85443,50.32576],[18.85508,50.33481],[18.83176,50.33467],[18.83241,50.34382],[18.80925,50.34399],[18.80971,50.37073],[18.78751,50.37099],[18.78812,50.40741],[18.81033,50.40715]]],"terms_text":"Urząd Miasta Bytomia"},{"id":"Cadastre","name":"Cadastre","type":"tms","template":"https://tms.cadastre.openstreetmap.fr/*/tout/{zoom}/{x}/{y}.png","zoomExtent":[12,22],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_Cadastre_Fran%C3%A7ais/Conditions_d%27utilisation","terms_text":"cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2021","description":"French land registry","icon":"https://svn.openstreetmap.org/applications/editors/josm/plugins/cadastre-fr/images/cadastre_small.png"},{"id":"lu.geoportail.opendata.cadastre","name":"Cadastre geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/cadastre/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/plan-cadastral-numerise-pcn-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"osm-cambodia_laos_thailand_vietnam-bilingual","name":"Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual","type":"tms","template":"https://{switch:a,b,c,d}.tile.osm-tools.org/osm/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"polygon":[[[92.10238,20.81356],[93.56905,24.09755],[94.1733,23.92695],[95.19503,26.70727],[96.75509,27.52867],[97.58456,28.5806],[98.73812,27.51405],[98.74362,25.87992],[97.67794,24.75774],[97.96359,24.04238],[98.82052,24.16272],[99.52364,22.95934],[100.36959,21.50514],[101.79232,22.48305],[105.36288,23.33311],[106.81857,22.84801],[108.19735,21.36197],[107.43895,18.85398],[117.14537,7.46562],[119.6173,5.28754],[118.12315,4.05023],[117.25523,4.36249],[115.86546,4.34606],[115.50841,3.02498],[114.5526,1.5101],[113.54186,1.25748],[112.96507,1.5705],[112.24547,1.5101],[111.67418,1.01583],[110.4547,0.90049],[109.49889,1.9219],[103.22569,1.12568],[100.46263,3.23889],[97.6721,8.05888],[93.89281,15.93987],[92.10238,20.81356]]],"terms_url":"https://www.osm-tools.org","terms_text":"© osm-tools.org & OpenStreetMap contributors, CC-BY-SA"},{"id":"canaan_drone_red_cross_201712","name":"Canaan - American Red Cross, Dec-2017","type":"tms","template":"https://tiles.openaerialmap.org/5ac65a9f91b5310010e0d489/0/5ac65a9f91b5310010e0d48a/{zoom}/{x}/{y}.png","endDate":"2017-12-20T00:00:00.000Z","startDate":"2017-12-11T00:00:00.000Z","zoomExtent":[12,21],"polygon":[[[-72.26734,18.63561],[-72.2636,18.6373],[-72.26116,18.64141],[-72.25983,18.64588],[-72.25811,18.64742],[-72.24502,18.64795],[-72.23433,18.64807],[-72.22734,18.6482],[-72.21953,18.65438],[-72.2161,18.65446],[-72.21584,18.66222],[-72.21725,18.66739],[-72.21889,18.67019],[-72.22309,18.66958],[-72.22343,18.67312],[-72.22502,18.6732],[-72.22545,18.67609],[-72.23288,18.67597],[-72.23339,18.67877],[-72.23674,18.67857],[-72.23854,18.67975],[-72.24,18.68129],[-72.24463,18.68207],[-72.24682,18.6817],[-72.24605,18.67698],[-72.25094,18.67698],[-72.25511,18.67902],[-72.25961,18.67898],[-72.26081,18.67743],[-72.27038,18.67711],[-72.27901,18.67682],[-72.28373,18.67893],[-72.28613,18.68154],[-72.29665,18.68178],[-72.30184,18.68568],[-72.3012,18.68824],[-72.30802,18.69324],[-72.30948,18.69308],[-72.31699,18.69682],[-72.32806,18.70528],[-72.3384,18.69902],[-72.34012,18.69666],[-72.33961,18.69426],[-72.33377,18.68357],[-72.33135,18.68192],[-72.32551,18.68093],[-72.32027,18.67741],[-72.31626,18.67477],[-72.31167,18.672],[-72.308,18.66995],[-72.30534,18.66926],[-72.30068,18.66499],[-72.29796,18.66479],[-72.29609,18.66129],[-72.29315,18.65999],[-72.29519,18.65497],[-72.28414,18.64962],[-72.27804,18.64523],[-72.27487,18.64212],[-72.27352,18.64057],[-72.2706,18.63901],[-72.26734,18.63561]]],"terms_url":"http://americanredcross.github.io/","terms_text":"American Red Cross","description":"Drone imagery collected December 2017 for Canaan, Haiti by American Red Cross in coordination with the Haitian Red Cross."},{"id":"Geneve-dsm-2014","name":"Canton de Génève, MNA RELIEF OMBRE SURFACE 2014 (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_SURFACE/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-dtm-2014","name":"Canton de Génève, MNA RELIEF OMBRE TERRAIN 2014 (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/MNA_RELIEF_TERRAIN/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-orthophoto-2016","name":"Canton de Génève, Orthophoto 2016 (5cm) (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2016/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[5,22],"polygon":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-orthophoto-2018","name":"Canton de Génève, Orthophoto 2018 (20cm) (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2018/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[5.6703,46.2143],[6.1123,46.5677],[6.2941,46.57],[6.5293,46.4609],[6.577,46.3643],[6.5509,46.0711],[6.4452,45.9382],[6.3702,45.9234],[5.7294,45.9575],[5.6805,46.0223],[5.6805,46.0223],[5.6703,46.2143]]],"terms_text":"Système d'information du territoire à Genève (SITG)"},{"id":"Geneve-orthophoto-2019","name":"Canton de Génève, Orthophoto 2019 (5cm) (SITG)","type":"wms","template":"https://ge.ch/sitgags2/services/RASTER/ORTHOPHOTOS_2019/MapServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[6.12,46.12],[6.08,46.12],[6.08,46.14],[6.06,46.14],[6.06,46.12],[5.94,46.12],[5.94,46.16],[5.96,46.16],[5.96,46.18],[5.94,46.18],[5.94,46.22],[5.96,46.22],[5.96,46.24],[6.02,46.24],[6.02,46.26],[6.08,46.26],[6.08,46.3],[6.1,46.3],[6.1,46.34],[6.14,46.34],[6.14,46.32],[6.16,46.32],[6.16,46.38],[6.22,46.38],[6.22,46.36],[6.26,46.36],[6.26,46.28],[6.32,46.28],[6.32,46.22],[6.3,46.22],[6.3,46.2],[6.26,46.2],[6.26,46.18],[6.22,46.18],[6.22,46.16],[6.2,46.16],[6.2,46.14],[6.16,46.14],[6.16,46.12],[6.12,46.12]]],"terms_text":"Système d'information du territoire à Genève (SITG)","best":true},{"id":"CTFRIBOURG2016","name":"Canton Fribourg 2016","type":"tms","template":"https://mapproxy.osm.ch/tiles/fribourg_2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[6.79478,46.57542],[6.79949,46.57407],[6.80256,46.57491],[6.80336,46.57687],[6.80427,46.57664],[6.80489,46.57792],[6.80794,46.57761],[6.8094,46.57885],[6.81084,46.57896],[6.81322,46.57823],[6.81153,46.58099],[6.8142,46.58396],[6.81411,46.58567],[6.8206,46.58368],[6.82371,46.57747],[6.82693,46.57796],[6.82927,46.57637],[6.83485,46.57533],[6.83744,46.57677],[6.83691,46.57748],[6.83982,46.57896],[6.84239,46.58244],[6.84532,46.58276],[6.84644,46.58394],[6.84857,46.58331],[6.85087,46.58113],[6.85262,46.58197],[6.85996,46.57987],[6.86554,46.57725],[6.86507,46.57623],[6.8679,46.57515],[6.87446,46.56497],[6.8845,46.56195],[6.88686,46.56341],[6.89214,46.5679],[6.89918,46.56671],[6.89885,46.56499],[6.89393,46.55991],[6.88822,46.55815],[6.86839,46.54164],[6.86498,46.53896],[6.86015,46.53597],[6.85563,46.54086],[6.85501,46.54144],[6.85087,46.54111],[6.8407,46.53819],[6.83032,46.53744],[6.82783,46.54298],[6.82553,46.54357],[6.81278,46.52707],[6.81088,46.52513],[6.81534,46.52139],[6.8181,46.5165],[6.82263,46.51411],[6.82429,46.51207],[6.83034,46.51246],[6.83239,46.50544],[6.83503,46.50231],[6.84126,46.49706],[6.84294,46.49632],[6.84554,46.49667],[6.84775,46.49369],[6.84891,46.49337],[6.85729,46.49305],[6.86276,46.49384],[6.86634,46.50079],[6.87244,46.50431],[6.88168,46.51257],[6.8967,46.52044],[6.89773,46.52005],[6.89711,46.51766],[6.89767,46.51483],[6.89522,46.51079],[6.89572,46.50773],[6.89974,46.51039],[6.90142,46.51233],[6.92517,46.50769],[6.92759,46.50467],[6.93363,46.50167],[6.93674,46.50096],[6.95614,46.49949],[6.97239,46.48879],[6.97581,46.4784],[6.97783,46.47289],[6.97815,46.46833],[6.97906,46.46107],[6.98016,46.45896],[6.99212,46.44891],[6.98361,46.43873],[6.98394,46.43799],[6.98746,46.43794],[7.01786,46.44707],[7.02103,46.45729],[7.06583,46.48904],[7.0724,46.4864],[7.10037,46.48699],[7.12279,46.49869],[7.1264,46.50317],[7.13096,46.50466],[7.13624,46.50861],[7.13704,46.51308],[7.14005,46.51688],[7.14044,46.51988],[7.14318,46.52183],[7.1437,46.52475],[7.1453,46.52701],[7.14835,46.52846],[7.15834,46.52681],[7.16346,46.52855],[7.16709,46.53101],[7.18234,46.53837],[7.19218,46.54656],[7.20081,46.54169],[7.20108,46.543],[7.20765,46.53291],[7.21417,46.53762],[7.21811,46.54211],[7.22171,46.54481],[7.22311,46.5476],[7.22543,46.54923],[7.2322,46.55123],[7.23614,46.554],[7.24047,46.55424],[7.24705,46.55623],[7.25574,46.56029],[7.26385,46.56752],[7.2681,46.57369],[7.28136,46.58411],[7.2992,46.5791],[7.30805,46.58132],[7.31254,46.58917],[7.3207,46.59183],[7.31479,46.60042],[7.3162,46.60937],[7.31826,46.61615],[7.3178,46.61856],[7.31213,46.6217],[7.31327,46.63662],[7.32284,46.63731],[7.32684,46.63873],[7.32975,46.64171],[7.32787,46.64616],[7.321,46.65465],[7.32345,46.65526],[7.32914,46.65459],[7.33116,46.65522],[7.33403,46.65471],[7.34549,46.6553],[7.34756,46.65307],[7.35063,46.65164],[7.35079,46.64799],[7.35456,46.64669],[7.3558,46.64533],[7.35528,46.64193],[7.35714,46.63927],[7.35877,46.64418],[7.36209,46.64683],[7.36229,46.64791],[7.36608,46.64898],[7.37747,46.65636],[7.36933,46.65564],[7.36953,46.65748],[7.37103,46.65907],[7.37083,46.66085],[7.37187,46.66283],[7.37122,46.66375],[7.37252,46.66757],[7.37108,46.66942],[7.37649,46.67503],[7.37293,46.68012],[7.37777,46.68357],[7.37587,46.68645],[7.376,46.6878],[7.38027,46.69018],[7.37693,46.69272],[7.3686,46.69265],[7.3649,46.69505],[7.36261,46.69928],[7.3598,46.69802],[7.34598,46.69895],[7.34604,46.7019],[7.34939,46.70555],[7.35037,46.70874],[7.35021,46.71119],[7.34903,46.71249],[7.34065,46.71464],[7.33277,46.71491],[7.32868,46.71641],[7.31011,46.71815],[7.30785,46.71717],[7.30002,46.72247],[7.29683,46.72737],[7.29685,46.73565],[7.29834,46.74013],[7.30304,46.74517],[7.30454,46.74816],[7.30486,46.75026],[7.30335,46.7514],[7.30309,46.75261],[7.30359,46.75919],[7.29987,46.76375],[7.29881,46.76513],[7.29307,46.77136],[7.29532,46.77537],[7.29639,46.77729],[7.30081,46.77905],[7.30053,46.78064],[7.30113,46.78134],[7.30447,46.78321],[7.30447,46.78415],[7.30207,46.78638],[7.30351,46.78887],[7.30201,46.79079],[7.30159,46.79283],[7.30732,46.79872],[7.31044,46.80823],[7.31537,46.81246],[7.32028,46.8149],[7.32047,46.81564],[7.32072,46.82011],[7.31981,46.82515],[7.32891,46.829],[7.3302,46.82968],[7.33123,46.83177],[7.33103,46.8328],[7.32926,46.83563],[7.32333,46.84041],[7.30755,46.84704],[7.30775,46.84808],[7.30613,46.84999],[7.31207,46.85557],[7.31351,46.85936],[7.31739,46.8606],[7.32087,46.86154],[7.32576,46.85681],[7.323,46.85476],[7.32603,46.85163],[7.33181,46.8512],[7.33536,46.85043],[7.33678,46.84979],[7.33821,46.84946],[7.34726,46.85375],[7.34934,46.85331],[7.35167,46.85502],[7.35444,46.85875],[7.35772,46.86065],[7.35925,46.86311],[7.35794,46.86513],[7.35838,46.8688],[7.35738,46.8701],[7.35386,46.87129],[7.35253,46.87555],[7.35339,46.88676],[7.34843,46.88934],[7.32573,46.89373],[7.30935,46.89152],[7.29618,46.89377],[7.28938,46.89377],[7.28639,46.89269],[7.28245,46.8898],[7.2802,46.8896],[7.27259,46.89249],[7.26634,46.89361],[7.25931,46.89797],[7.24433,46.90037],[7.24314,46.89792],[7.23633,46.89809],[7.23203,46.90029],[7.2309,46.9024],[7.23032,46.90394],[7.22351,46.90276],[7.21755,46.89735],[7.21244,46.90173],[7.2088,46.9026],[7.20781,46.90913],[7.20578,46.91477],[7.20692,46.92481],[7.2111,46.92527],[7.21854,46.92434],[7.2342,46.92939],[7.23411,46.93669],[7.23477,46.93827],[7.2302,46.93995],[7.2282,46.93881],[7.22555,46.93633],[7.2174,46.93307],[7.2093,46.93334],[7.20823,46.93323],[7.2058,46.94023],[7.2055,46.94112],[7.20951,46.94188],[7.21027,46.94302],[7.21044,46.94569],[7.21011,46.94781],[7.20885,46.95435],[7.21102,46.95652],[7.20838,46.95768],[7.20742,46.95967],[7.19764,46.96065],[7.19459,46.96135],[7.19463,46.9629],[7.19552,46.96416],[7.19633,46.96365],[7.19794,46.96445],[7.1993,46.9638],[7.20646,46.96413],[7.20745,46.96751],[7.21422,46.96692],[7.21467,46.97133],[7.21739,46.97147],[7.21686,46.97271],[7.22247,46.97454],[7.22163,46.97556],[7.22821,46.97836],[7.23569,46.98456],[7.23486,46.98675],[7.22594,46.9924],[7.22625,46.99868],[7.22575,46.99915],[7.21779,47.00641],[7.21299,47.0068],[7.09058,46.978],[7.03295,46.98265],[6.73785,46.81195],[6.73908,46.71021],[6.81908,46.65533],[6.82741,46.65982],[6.82089,46.65179],[6.81729,46.64923],[6.81851,46.6478],[6.81458,46.64747],[6.81344,46.64953],[6.81194,46.6492],[6.81081,46.65038],[6.80674,46.65059],[6.80203,46.64889],[6.79891,46.64914],[6.79879,46.64781],[6.80367,46.64567],[6.80325,46.6448],[6.8038,46.64451],[6.80321,46.64376],[6.80171,46.64421],[6.79895,46.63959],[6.79692,46.63314],[6.79838,46.63016],[6.80043,46.62991],[6.80065,46.62843],[6.80172,46.62854],[6.80228,46.62775],[6.80197,46.62507],[6.80355,46.62124],[6.80244,46.61877],[6.80296,46.61615],[6.80185,46.61555],[6.80389,46.60903],[6.80239,46.60142],[6.79833,46.59986],[6.8002,46.59362],[6.80124,46.5925],[6.79848,46.58616],[6.79948,46.58559],[6.79894,46.58205],[6.79611,46.57932],[6.79626,46.57728],[6.79478,46.57542]]],"terms_text":"Canton Fribourg 2016 'orthophoto technique'","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Canvec","name":"Canvec - English","type":"wms","template":"https://maps.geogratis.gc.ca/wms/canvec_en?LAYERS=canvec&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[3,22],"polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"Canvec_French","name":"Canvec - French","type":"wms","template":"https://maps.geogratis.gc.ca/wms/canvec_fr?LAYERS=canvec&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[3,22],"polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"COS2010_v1.0","name":"Carta de Uso do Solo 2010 (WMS)","type":"wms","template":"http://mapas.dgterritorio.pt/wms-inspire/cos2010v1?LAYERS=COS2010_v1.0&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LANGUAGE=por","projection":"EPSG:3857","endDate":"2010-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[14,18],"polygon":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"terms_url":"http://www.dgterritorio.pt/dados_abertos/cos/","terms_text":"Direcção-Geral do Território","icon":"http://www.igeo.pt/favicon.ico"},{"id":"BDGEx_ctm_multi","name":"Cartas Topográficas do Exército Brasileiro","type":"wms","template":"https://bdgex.eb.mil.br/mapcache?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ctmmultiescalas_mercator&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[1,22],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]]],"terms_text":"BDGEx","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/Exercito.png"},{"id":"Cartoriviera-2012","name":"Cartoriviera - Orthophoto 2012","type":"tms","template":"https://osmdata.asitvd.ch/tiles/cartoriviera2012/{zoom}/{x}/{y}.png","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[7.02235,46.42856],[7.0224,46.42045],[7.02176,46.41955],[7.02225,46.41954],[7.02161,46.41749],[7.02242,46.4174],[7.02242,46.41681],[7.02113,46.41443],[7.02164,46.41259],[7.0216,46.41188],[7.01918,46.41055],[7.01896,46.41004],[7.01757,46.40826],[7.01426,46.40696],[7.00948,46.40695],[7.00952,46.40451],[7.00368,46.40153],[6.97052,46.40139],[6.97056,46.39354],[6.96507,46.38333],[6.89379,46.383],[6.89327,46.39209],[6.8968,46.4],[6.89678,46.40097],[6.89395,46.401],[6.89768,46.40888],[6.89246,46.41386],[6.89237,46.41807],[6.8949,46.4193],[6.89285,46.41948],[6.89395,46.42312],[6.89225,46.42339],[6.89219,46.42802],[6.88743,46.428],[6.87652,46.43163],[6.86624,46.43633],[6.84003,46.44591],[6.83504,46.44934],[6.827,46.45204],[6.82695,46.45379],[6.81953,46.45655],[6.80361,46.45993],[6.78775,46.46253],[6.78697,46.5246],[6.82604,46.5248],[6.82609,46.52662],[6.83907,46.5267],[6.83888,46.55006],[6.90658,46.55042],[6.912,46.54301],[6.91083,46.53983],[6.90979,46.53512],[6.90931,46.53517],[6.90867,46.53373],[6.91195,46.53297],[6.91335,46.53604],[6.9268,46.53364],[6.92723,46.5349],[6.93714,46.53311],[6.93691,46.5327],[6.94028,46.53196],[6.94164,46.53477],[6.94309,46.53455],[6.94345,46.53528],[6.95641,46.53003],[6.95632,46.52733],[6.95111,46.52725],[6.95301,46.52611],[6.94341,46.52605],[6.94343,46.52546],[7.01629,46.52568],[7.02158,46.52211],[7.02196,46.47355],[7.07099,46.47368],[7.07402,46.4719],[7.07383,46.4326],[7.05947,46.43233],[7.05278,46.42879],[7.02235,46.42856]]],"terms_url":"https://map.cartoriviera.ch/?baselayer_ref=orthos_2012_mobile&baselayer_opacity=100","terms_text":"Cartoriviera"},{"id":"Catastro-Spain","name":"Catastro Spain","type":"wms","template":"https://ovc.catastro.meh.es/Cartografia/WMS/ServidorWMS.aspx?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=Catastro&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]]},{"id":"South_Africa-CapeTown-Aerial-2013","name":"City of Cape Town 2013 Aerial","type":"tms","template":"https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2013/{zoom}/{x}/{y}.jpg","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[4,21],"polygon":[[[18.44866,-33.89362],[18.44859,-33.90264],[18.4702,-33.90277],[18.48139,-33.84724],[18.44925,-33.80107],[18.42815,-33.73564],[18.43914,-33.71772],[18.40719,-33.65899],[18.33224,-33.57752],[18.33245,-33.55045],[18.354,-33.55059],[18.35425,-33.5236],[18.36524,-33.52366],[18.36503,-33.5148],[18.37601,-33.51477],[18.37605,-33.5058],[18.42966,-33.50594],[18.4297,-33.48785],[18.44049,-33.48789],[18.4406,-33.46988],[18.49437,-33.4701],[18.49433,-33.47916],[18.51583,-33.47917],[18.51574,-33.48819],[18.52647,-33.4883],[18.52632,-33.52435],[18.54793,-33.52443],[18.54795,-33.51539],[18.56937,-33.5155],[18.56937,-33.52448],[18.58012,-33.52453],[18.58007,-33.5426],[18.59078,-33.5426],[18.59074,-33.56064],[18.57995,-33.56053],[18.57988,-33.56962],[18.5907,-33.56962],[18.59065,-33.57868],[18.62301,-33.57873],[18.62292,-33.58773],[18.66597,-33.58789],[18.66593,-33.61493],[18.67672,-33.61497],[18.67658,-33.65103],[18.6873,-33.65102],[18.68734,-33.66004],[18.69807,-33.66009],[18.69807,-33.66907],[18.75204,-33.66925],[18.75208,-33.64219],[18.77364,-33.64225],[18.77371,-33.63319],[18.82746,-33.6333],[18.82752,-33.6603],[18.81667,-33.66029],[18.8166,-33.67832],[18.80581,-33.67831],[18.80581,-33.70539],[18.8274,-33.70544],[18.82733,-33.72347],[18.83812,-33.72343],[18.83804,-33.74139],[18.81652,-33.74137],[18.81637,-33.79551],[18.80559,-33.79551],[18.80551,-33.81357],[18.79476,-33.81355],[18.79472,-33.83154],[18.77311,-33.83152],[18.77313,-33.84052],[18.76236,-33.84052],[18.76227,-33.90359],[18.75146,-33.90352],[18.75108,-33.98478],[18.76191,-33.9848],[18.76178,-34.02988],[18.7726,-34.0299],[18.77258,-34.03891],[18.79403,-34.03894],[18.79388,-34.0407],[18.79845,-34.04119],[18.80324,-34.04118],[18.80341,-34.03892],[18.81594,-34.03897],[18.81634,-34.02993],[18.83798,-34.03165],[18.838,-34.03],[18.84842,-34.03001],[18.84847,-34.02185],[18.85993,-34.02347],[18.85986,-34.02101],[18.86827,-34.02208],[18.86819,-34.02117],[18.88546,-34.02343],[18.88518,-34.02132],[18.90252,-34.02103],[18.90258,-34.012],[18.91342,-34.012],[18.91348,-33.99396],[18.94588,-33.99403],[18.94586,-34.0031],[18.96743,-34.003],[18.96747,-34.01208],[18.97822,-34.01208],[18.97833,-34.02114],[18.98914,-34.02114],[18.98916,-34.03913],[19.00002,-34.03913],[19.00002,-34.05718],[19.01084,-34.05725],[19.01079,-34.08414],[19,-34.08413],[19.00002,-34.0932],[18.98915,-34.09317],[18.98918,-34.1022],[18.97832,-34.10218],[18.97832,-34.11123],[18.9675,-34.11121],[18.96749,-34.12925],[18.9566,-34.12924],[18.95656,-34.13824],[18.96742,-34.13831],[18.96742,-34.14732],[18.98918,-34.1473],[18.98918,-34.1653],[18.97827,-34.16529],[18.97832,-34.17429],[18.96742,-34.17427],[18.96746,-34.1833],[18.95656,-34.18332],[18.95656,-34.19236],[18.94574,-34.19232],[18.9457,-34.20132],[18.93487,-34.20137],[18.93489,-34.21933],[18.90236,-34.21935],[18.90176,-34.23626],[18.88784,-34.23735],[18.88942,-34.25541],[18.88059,-34.25534],[18.87927,-34.26443],[18.86969,-34.26441],[18.86971,-34.27344],[18.83714,-34.27342],[18.83712,-34.26438],[18.84802,-34.2644],[18.84803,-34.23739],[18.81549,-34.21028],[18.81565,-34.17413],[18.85488,-34.15627],[18.76176,-34.08405],[18.65337,-34.07748],[18.47974,-34.11012],[18.44637,-34.13423],[18.44445,-34.16409],[18.436,-34.16405],[18.43597,-34.18202],[18.44681,-34.18211],[18.44673,-34.19111],[18.46593,-34.19121],[18.48662,-34.24539],[18.47889,-34.25437],[18.486,-34.25437],[18.46771,-34.29941],[18.48922,-34.34458],[18.50011,-34.34458],[18.49992,-34.36262],[18.46743,-34.36251],[18.46737,-34.35349],[18.3916,-34.31707],[18.39177,-34.29002],[18.37016,-34.28087],[18.37068,-34.21789],[18.34923,-34.18162],[18.32747,-34.18149],[18.32767,-34.16346],[18.31187,-34.15438],[18.3114,-34.14353],[18.32367,-34.13469],[18.34993,-34.10421],[18.33932,-34.08828],[18.36125,-34.05972],[18.35505,-34.05538],[18.34275,-34.06433],[18.32,-34.06443],[18.29607,-34.04513],[18.30682,-34.02526],[18.32877,-34.0192],[18.32892,-34.00125],[18.33974,-34.00127],[18.3398,-33.98663],[18.36287,-33.97351],[18.36381,-33.92925],[18.37262,-33.92927],[18.37284,-33.91776],[18.39773,-33.89335],[18.44866,-33.89362]]],"terms_url":"https://www.capetown.gov.za","terms_text":"City of Cape Town Aerial - OPENSTREETMAP USE ONLY","description":"OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 12cm ground sample distance"},{"id":"South_Africa-CapeTown-Aerial","name":"City of Cape Town 2015 Aerial","type":"tms","template":"https://{switch:a,b,c}.coct.aerial.openstreetmap.org.za/layer/za_coct_aerial_2015/{zoom}/{x}/{y}.jpg","endDate":"2016-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[4,21],"polygon":[[[18.44866,-33.89362],[18.44859,-33.90264],[18.4702,-33.90277],[18.48139,-33.84724],[18.44925,-33.80107],[18.42815,-33.73564],[18.43914,-33.71772],[18.40719,-33.65899],[18.33224,-33.57752],[18.33245,-33.55045],[18.354,-33.55059],[18.35425,-33.5236],[18.36524,-33.52366],[18.36503,-33.5148],[18.37601,-33.51477],[18.37605,-33.5058],[18.42966,-33.50594],[18.4297,-33.48785],[18.44049,-33.48789],[18.4406,-33.46988],[18.49437,-33.4701],[18.49433,-33.47916],[18.51583,-33.47917],[18.51574,-33.48819],[18.52647,-33.4883],[18.52632,-33.52435],[18.54793,-33.52443],[18.54795,-33.51539],[18.56937,-33.5155],[18.56937,-33.52448],[18.58012,-33.52453],[18.58007,-33.5426],[18.59078,-33.5426],[18.59074,-33.56064],[18.57995,-33.56053],[18.57988,-33.56962],[18.5907,-33.56962],[18.59065,-33.57868],[18.62301,-33.57873],[18.62292,-33.58773],[18.66597,-33.58789],[18.66593,-33.61493],[18.67672,-33.61497],[18.67658,-33.65103],[18.6873,-33.65102],[18.68734,-33.66004],[18.69807,-33.66009],[18.69807,-33.66907],[18.75204,-33.66925],[18.75208,-33.64219],[18.77364,-33.64225],[18.77371,-33.63319],[18.82746,-33.6333],[18.82752,-33.6603],[18.81667,-33.66029],[18.8166,-33.67832],[18.80581,-33.67831],[18.80581,-33.70539],[18.8274,-33.70544],[18.82733,-33.72347],[18.83812,-33.72343],[18.83804,-33.74139],[18.81652,-33.74137],[18.81637,-33.79551],[18.80559,-33.79551],[18.80551,-33.81357],[18.79476,-33.81355],[18.79472,-33.83154],[18.77311,-33.83152],[18.77313,-33.84052],[18.76236,-33.84052],[18.76227,-33.90359],[18.75146,-33.90352],[18.75108,-33.98478],[18.76191,-33.9848],[18.76178,-34.02988],[18.7726,-34.0299],[18.77258,-34.03891],[18.79403,-34.03894],[18.79388,-34.0407],[18.79845,-34.04119],[18.80324,-34.04118],[18.80341,-34.03892],[18.81594,-34.03897],[18.81634,-34.02993],[18.83798,-34.03165],[18.838,-34.03],[18.84842,-34.03001],[18.84847,-34.02185],[18.85993,-34.02347],[18.85986,-34.02101],[18.86827,-34.02208],[18.86819,-34.02117],[18.88546,-34.02343],[18.88518,-34.02132],[18.90252,-34.02103],[18.90258,-34.012],[18.91342,-34.012],[18.91348,-33.99396],[18.94588,-33.99403],[18.94586,-34.0031],[18.96743,-34.003],[18.96747,-34.01208],[18.97822,-34.01208],[18.97833,-34.02114],[18.98914,-34.02114],[18.98916,-34.03913],[19.00002,-34.03913],[19.00002,-34.05718],[19.01084,-34.05725],[19.01079,-34.08414],[19,-34.08413],[19.00002,-34.0932],[18.98915,-34.09317],[18.98918,-34.1022],[18.97832,-34.10218],[18.97832,-34.11123],[18.9675,-34.11121],[18.96749,-34.12925],[18.9566,-34.12924],[18.95656,-34.13824],[18.96742,-34.13831],[18.96742,-34.14732],[18.98918,-34.1473],[18.98918,-34.1653],[18.97827,-34.16529],[18.97832,-34.17429],[18.96742,-34.17427],[18.96746,-34.1833],[18.95656,-34.18332],[18.95656,-34.19236],[18.94574,-34.19232],[18.9457,-34.20132],[18.93487,-34.20137],[18.93489,-34.21933],[18.90236,-34.21935],[18.90176,-34.23626],[18.88784,-34.23735],[18.88942,-34.25541],[18.88059,-34.25534],[18.87927,-34.26443],[18.86969,-34.26441],[18.86971,-34.27344],[18.83714,-34.27342],[18.83712,-34.26438],[18.84802,-34.2644],[18.84803,-34.23739],[18.81549,-34.21028],[18.81565,-34.17413],[18.85488,-34.15627],[18.76176,-34.08405],[18.65337,-34.07748],[18.47974,-34.11012],[18.44637,-34.13423],[18.44445,-34.16409],[18.436,-34.16405],[18.43597,-34.18202],[18.44681,-34.18211],[18.44673,-34.19111],[18.46593,-34.19121],[18.48662,-34.24539],[18.47889,-34.25437],[18.486,-34.25437],[18.46771,-34.29941],[18.48922,-34.34458],[18.50011,-34.34458],[18.49992,-34.36262],[18.46743,-34.36251],[18.46737,-34.35349],[18.3916,-34.31707],[18.39177,-34.29002],[18.37016,-34.28087],[18.37068,-34.21789],[18.34923,-34.18162],[18.32747,-34.18149],[18.32767,-34.16346],[18.31187,-34.15438],[18.3114,-34.14353],[18.32367,-34.13469],[18.34993,-34.10421],[18.33932,-34.08828],[18.36125,-34.05972],[18.35505,-34.05538],[18.34275,-34.06433],[18.32,-34.06443],[18.29607,-34.04513],[18.30682,-34.02526],[18.32877,-34.0192],[18.32892,-34.00125],[18.33974,-34.00127],[18.3398,-33.98663],[18.36287,-33.97351],[18.36381,-33.92925],[18.37262,-33.92927],[18.37284,-33.91776],[18.39773,-33.89335],[18.44866,-33.89362]]],"terms_url":"https://www.capetown.gov.za","terms_text":"City of Cape Town Aerial - OPENSTREETMAP USE ONLY","description":"OpenStreetMap use only. City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance"},{"id":"South_Africa-CapeTown-Aerial-2017-rest","name":"City of Cape Town 2017 Aerial","type":"wms","template":"https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2017_Jan/MapServer/export?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[18.35572,-34.06348],[18.30856,-34.14988],[18.33655,-34.18764],[18.39162,-34.31413],[18.44973,-34.35206],[18.46768,-34.36437],[18.50723,-34.36336],[18.49749,-34.34603],[18.47559,-34.3287],[18.47589,-34.30558],[18.48776,-34.23493],[18.46646,-34.19971],[18.44151,-34.17606],[18.45764,-34.13225],[18.51574,-34.10278],[18.65052,-34.07582],[18.71958,-34.07728],[18.78742,-34.09416],[18.85527,-34.1604],[18.8218,-34.17223],[18.81328,-34.18481],[18.8148,-34.20343],[18.8361,-34.23815],[18.84401,-34.24142],[18.84736,-34.26053],[18.83458,-34.26506],[18.83214,-34.28391],[18.87808,-34.27637],[18.99369,-34.16342],[19.01316,-34.08207],[19.01225,-34.05334],[18.99186,-34.01981],[18.95292,-33.99282],[18.91003,-33.99207],[18.89603,-34.01855],[18.80355,-34.0193],[18.80324,-34.03746],[18.78651,-34.03721],[18.7859,-34.01981],[18.764,-34.0193],[18.76339,-33.8421],[18.79868,-33.84202],[18.7986,-33.81936],[18.82271,-33.8193],[18.82246,-33.74478],[18.8423,-33.74473],[18.84223,-33.72326],[18.82944,-33.72329],[18.82938,-33.70408],[18.80702,-33.70413],[18.80694,-33.67957],[18.81842,-33.67955],[18.81836,-33.66202],[18.82923,-33.662],[18.82913,-33.63214],[18.7506,-33.63232],[18.75072,-33.66656],[18.70223,-33.66667],[18.70217,-33.64934],[18.67759,-33.6494],[18.67747,-33.61367],[18.66782,-33.61369],[18.66773,-33.58722],[18.62376,-33.58733],[18.62373,-33.57749],[18.59163,-33.57756],[18.59161,-33.56929],[18.58033,-33.56932],[18.5803,-33.56088],[18.59158,-33.56086],[18.59151,-33.54227],[18.58072,-33.5423],[18.58066,-33.52366],[18.57027,-33.52368],[18.57024,-33.51513],[18.54757,-33.51519],[18.5476,-33.524],[18.52671,-33.52405],[18.52658,-33.4876],[18.51639,-33.48763],[18.51633,-33.47028],[18.42782,-33.47049],[18.42794,-33.5038],[18.3618,-33.50396],[18.36186,-33.52233],[18.30611,-33.52247],[18.3062,-33.54803],[18.30685,-33.57209],[18.32668,-33.58017],[18.36546,-33.62072],[18.4044,-33.65061],[18.42326,-33.69339],[18.42721,-33.72882],[18.4333,-33.77284],[18.45946,-33.82138],[18.48076,-33.8517],[18.47985,-33.88303],[18.46585,-33.89944],[18.4552,-33.90399],[18.43269,-33.89389],[18.39831,-33.8949],[18.37458,-33.90752],[18.36576,-33.93378],[18.36637,-33.96104],[18.34994,-33.97769],[18.33138,-33.99081],[18.32469,-34.02006],[18.30126,-34.02435],[18.30278,-34.04956],[18.32895,-34.06544],[18.35572,-34.06348]]],"terms_url":"https://www.arcgis.com/sharing/rest/content/items/739759d8127f4d1f9ba8ef9019878147/info/metadata/metadata.xml?format=default&output=html","terms_text":"City of Cape Town Aerial","description":"City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance"},{"id":"South_Africa-CapeTown-Aerial-2018-rest","name":"City of Cape Town 2018 Aerial","type":"wms","template":"https://citymaps.capetown.gov.za/agsext1/rest/services/Aerial_Photography_Cached/AP_2018_Feb/MapServer/export?f=image&format=jpeg&imageSR=3857&bboxSR=3857&bbox={bbox}&size={width},{height}&foo={proj}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[18.35572,-34.06348],[18.30856,-34.14988],[18.33655,-34.18764],[18.39162,-34.31413],[18.44973,-34.35206],[18.46768,-34.36437],[18.50723,-34.36336],[18.49749,-34.34603],[18.47559,-34.3287],[18.47589,-34.30558],[18.48776,-34.23493],[18.46646,-34.19971],[18.44151,-34.17606],[18.45764,-34.13225],[18.51574,-34.10278],[18.65052,-34.07582],[18.71958,-34.07728],[18.78742,-34.09416],[18.85527,-34.1604],[18.8218,-34.17223],[18.81328,-34.18481],[18.8148,-34.20343],[18.8361,-34.23815],[18.84401,-34.24142],[18.84736,-34.26053],[18.83458,-34.26506],[18.83214,-34.28391],[18.87808,-34.27637],[18.99369,-34.16342],[19.01316,-34.08207],[19.01225,-34.05334],[18.99186,-34.01981],[18.95292,-33.99282],[18.91003,-33.99207],[18.89603,-34.01855],[18.80355,-34.0193],[18.80324,-34.03746],[18.78651,-34.03721],[18.7859,-34.01981],[18.764,-34.0193],[18.76339,-33.8421],[18.79868,-33.84202],[18.7986,-33.81936],[18.82271,-33.8193],[18.82246,-33.74478],[18.8423,-33.74473],[18.84223,-33.72326],[18.82944,-33.72329],[18.82938,-33.70408],[18.80702,-33.70413],[18.80694,-33.67957],[18.81842,-33.67955],[18.81836,-33.66202],[18.82923,-33.662],[18.82913,-33.63214],[18.7506,-33.63232],[18.75072,-33.66656],[18.70223,-33.66667],[18.70217,-33.64934],[18.67759,-33.6494],[18.67747,-33.61367],[18.66782,-33.61369],[18.66773,-33.58722],[18.62376,-33.58733],[18.62373,-33.57749],[18.59163,-33.57756],[18.59161,-33.56929],[18.58033,-33.56932],[18.5803,-33.56088],[18.59158,-33.56086],[18.59151,-33.54227],[18.58072,-33.5423],[18.58066,-33.52366],[18.57027,-33.52368],[18.57024,-33.51513],[18.54757,-33.51519],[18.5476,-33.524],[18.52671,-33.52405],[18.52658,-33.4876],[18.51639,-33.48763],[18.51633,-33.47028],[18.42782,-33.47049],[18.42794,-33.5038],[18.3618,-33.50396],[18.36186,-33.52233],[18.30611,-33.52247],[18.3062,-33.54803],[18.30685,-33.57209],[18.32668,-33.58017],[18.36546,-33.62072],[18.4044,-33.65061],[18.42326,-33.69339],[18.42721,-33.72882],[18.4333,-33.77284],[18.45946,-33.82138],[18.48076,-33.8517],[18.47985,-33.88303],[18.46585,-33.89944],[18.4552,-33.90399],[18.43269,-33.89389],[18.39831,-33.8949],[18.37458,-33.90752],[18.36576,-33.93378],[18.36637,-33.96104],[18.34994,-33.97769],[18.33138,-33.99081],[18.32469,-34.02006],[18.30126,-34.02435],[18.30278,-34.04956],[18.32895,-34.06544],[18.35572,-34.06348]]],"terms_url":"https://www.arcgis.com/sharing/rest/content/items/739759d8127f4d1f9ba8ef9019878147/info/metadata/metadata.xml?format=default&output=html","terms_text":"City of Cape Town Aerial","best":true,"description":"City of Cape Town Aerial ortho-photography of the municipal area. 8cm ground sample distance."},{"id":"City_of_Melbourne_Feb_2019","name":"City of Melbourne Feb 2019","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.melbourne190203/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w","endDate":"2019-02-03T00:00:00.000Z","startDate":"2019-02-02T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[144.9146,-37.7993],[144.9139,-37.7989],[144.9128,-37.7986],[144.9114,-37.7988],[144.9098,-37.7998],[144.906,-37.8064],[144.9043,-37.8126],[144.9042,-37.8142],[144.9056,-37.8209],[144.9043,-37.8224],[144.899,-37.8273],[144.8969,-37.8301],[144.896,-37.8335],[144.896,-37.8387],[144.897,-37.8419],[144.9011,-37.8469],[144.9052,-37.8502],[144.9068,-37.8506],[144.908,-37.8502],[144.9084,-37.8495],[144.907,-37.8477],[144.9076,-37.8469],[144.9045,-37.8416],[144.9053,-37.8414],[144.9081,-37.8458],[144.9118,-37.8502],[144.9127,-37.8504],[144.9155,-37.8489],[144.9155,-37.8481],[144.914,-37.8459],[144.9162,-37.8445],[144.914,-37.8413],[144.9163,-37.8399],[144.9165,-37.8384],[144.9151,-37.8344],[144.9183,-37.8331],[144.9195,-37.8326],[144.921,-37.8309],[144.9219,-37.83],[144.923,-37.8295],[144.9294,-37.8282],[144.9353,-37.827],[144.9411,-37.8269],[144.9418,-37.8268],[144.9458,-37.8275],[144.9471,-37.8279],[144.9478,-37.8278],[144.9579,-37.8295],[144.9592,-37.8294],[144.9613,-37.829],[144.9625,-37.8297],[144.9648,-37.8318],[144.9657,-37.8323],[144.9662,-37.8323],[144.9703,-37.8312],[144.9705,-37.8323],[144.9711,-37.8331],[144.9735,-37.8351],[144.9743,-37.836],[144.9794,-37.85],[144.9797,-37.8508],[144.9806,-37.8512],[144.9843,-37.8515],[144.9848,-37.8514],[144.9854,-37.8508],[144.9892,-37.8311],[144.9889,-37.8304],[144.9923,-37.8104],[144.9924,-37.8098],[144.9919,-37.809],[144.9745,-37.8071],[144.9768,-37.7933],[144.9767,-37.7928],[144.9764,-37.7923],[144.9759,-37.7922],[144.9698,-37.7915],[144.9708,-37.7857],[144.9704,-37.785],[144.9699,-37.7848],[144.9649,-37.7842],[144.9651,-37.7825],[144.9651,-37.782],[144.9642,-37.7814],[144.964,-37.7808],[144.9639,-37.7796],[144.9635,-37.7785],[144.9627,-37.7778],[144.9614,-37.7772],[144.9392,-37.7746],[144.9384,-37.7746],[144.938,-37.7749],[144.9373,-37.776],[144.9366,-37.7769],[144.9361,-37.7773],[144.936,-37.7779],[144.9378,-37.7814],[144.9383,-37.7842],[144.9391,-37.7865],[144.9389,-37.7867],[144.9388,-37.7873],[144.9377,-37.788],[144.9322,-37.7874],[144.9312,-37.7878],[144.9308,-37.7879],[144.93,-37.7874],[144.9218,-37.7864],[144.9149,-37.7794],[144.9143,-37.7787],[144.9137,-37.7785],[144.9129,-37.7786],[144.9082,-37.7813],[144.9072,-37.7821],[144.9057,-37.7845],[144.9053,-37.7864],[144.9043,-37.7866],[144.9037,-37.7872],[144.9032,-37.7883],[144.902,-37.7888],[144.9014,-37.7896],[144.9019,-37.791],[144.9026,-37.792],[144.9042,-37.7929],[144.9064,-37.7938],[144.9081,-37.7946],[144.9105,-37.7952],[144.9127,-37.796],[144.9143,-37.797],[144.9153,-37.7978],[144.9154,-37.7981],[144.9153,-37.7985],[144.9152,-37.7987],[144.9148,-37.7991],[144.9146,-37.7993]]],"terms_url":"https://data.melbourne.vic.gov.au/Environment/2019-Aerial-Imagery/cwpe-ugri","terms_text":"City of Melbourne","best":true,"icon":"https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png"},{"id":"City_of_Melbourne_May_2018","name":"City of Melbourne May 2018","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/openstreetmapau.gdbhzo3g/{zoom}/{x}/{y}.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcGF1IiwiYSI6ImNqbWl3bXZ6aDA0MTkzd21xdnV1d2k0azEifQ.HYkMOqH_E2fYd1b0oXRe6w","endDate":"2018-05-01T00:00:00.000Z","startDate":"2018-05-01T00:00:00.000Z","zoomExtent":[8,22],"polygon":[[[144.9146,-37.7993],[144.9139,-37.7989],[144.9128,-37.7986],[144.9114,-37.7988],[144.9098,-37.7998],[144.906,-37.8064],[144.9043,-37.8126],[144.9042,-37.8142],[144.9056,-37.8209],[144.9043,-37.8224],[144.899,-37.8273],[144.8969,-37.8301],[144.896,-37.8335],[144.896,-37.8387],[144.897,-37.8419],[144.9011,-37.8469],[144.9052,-37.8502],[144.9068,-37.8506],[144.908,-37.8502],[144.9084,-37.8495],[144.907,-37.8477],[144.9076,-37.8469],[144.9045,-37.8416],[144.9053,-37.8414],[144.9081,-37.8458],[144.9118,-37.8502],[144.9127,-37.8504],[144.9155,-37.8489],[144.9155,-37.8481],[144.914,-37.8459],[144.9162,-37.8445],[144.914,-37.8413],[144.9163,-37.8399],[144.9165,-37.8384],[144.9151,-37.8344],[144.9183,-37.8331],[144.9195,-37.8326],[144.921,-37.8309],[144.9219,-37.83],[144.923,-37.8295],[144.9294,-37.8282],[144.9353,-37.827],[144.9411,-37.8269],[144.9418,-37.8268],[144.9458,-37.8275],[144.9471,-37.8279],[144.9478,-37.8278],[144.9579,-37.8295],[144.9592,-37.8294],[144.9613,-37.829],[144.9625,-37.8297],[144.9648,-37.8318],[144.9657,-37.8323],[144.9662,-37.8323],[144.9703,-37.8312],[144.9705,-37.8323],[144.9711,-37.8331],[144.9735,-37.8351],[144.9743,-37.836],[144.9794,-37.85],[144.9797,-37.8508],[144.9806,-37.8512],[144.9843,-37.8515],[144.9848,-37.8514],[144.9854,-37.8508],[144.9892,-37.8311],[144.9889,-37.8304],[144.9923,-37.8104],[144.9924,-37.8098],[144.9919,-37.809],[144.9745,-37.8071],[144.9768,-37.7933],[144.9767,-37.7928],[144.9764,-37.7923],[144.9759,-37.7922],[144.9698,-37.7915],[144.9708,-37.7857],[144.9704,-37.785],[144.9699,-37.7848],[144.9649,-37.7842],[144.9651,-37.7825],[144.9651,-37.782],[144.9642,-37.7814],[144.964,-37.7808],[144.9639,-37.7796],[144.9635,-37.7785],[144.9627,-37.7778],[144.9614,-37.7772],[144.9392,-37.7746],[144.9384,-37.7746],[144.938,-37.7749],[144.9373,-37.776],[144.9366,-37.7769],[144.9361,-37.7773],[144.936,-37.7779],[144.9378,-37.7814],[144.9383,-37.7842],[144.9391,-37.7865],[144.9389,-37.7867],[144.9388,-37.7873],[144.9377,-37.788],[144.9322,-37.7874],[144.9312,-37.7878],[144.9308,-37.7879],[144.93,-37.7874],[144.9218,-37.7864],[144.9149,-37.7794],[144.9143,-37.7787],[144.9137,-37.7785],[144.9129,-37.7786],[144.9082,-37.7813],[144.9072,-37.7821],[144.9057,-37.7845],[144.9053,-37.7864],[144.9043,-37.7866],[144.9037,-37.7872],[144.9032,-37.7883],[144.902,-37.7888],[144.9014,-37.7896],[144.9019,-37.791],[144.9026,-37.792],[144.9042,-37.7929],[144.9064,-37.7938],[144.9081,-37.7946],[144.9105,-37.7952],[144.9127,-37.796],[144.9143,-37.797],[144.9153,-37.7978],[144.9154,-37.7981],[144.9153,-37.7985],[144.9152,-37.7987],[144.9148,-37.7991],[144.9146,-37.7993]]],"terms_url":"https://data.melbourne.vic.gov.au/Property-Planning/2018-Aerial-Imagery-True-Ortho-/qa5h-sfgh","terms_text":"City of Melbourne","icon":"https://www.melbourne.vic.gov.au/_catalogs/masterpage/android-icon.png"},{"id":"turku-orto","name":"City of Turku ortophoto","type":"wms","template":"https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[4,20],"polygon":[[[21.48608,60.90844],[21.49956,60.48377],[21.08957,60.5096],[21.0486,60.22035],[21.00189,60.21285],[21.00908,60.09411],[21.09531,60.03889],[21.10682,59.94328],[21.26923,59.88167],[21.18227,59.70233],[22.11364,59.70921],[22.05903,59.8557],[22.46075,60.18535],[23.15785,60.18892],[23.14815,60.91835],[22.31595,60.91512],[21.48608,60.90844]]],"terms_url":"https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto","terms_text":"© Turun kaupunki","best":true,"description":"Ortophotos from the city of Turku","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png"},{"id":"turku-orto-2018-true","name":"City of Turku ortophoto - 2018 True ortho","type":"wms","template":"https://opaskartta.turku.fi/TeklaOGCWeb/WMS.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ilmakuva 2018 True ortho&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-07-14T00:00:00.000Z","startDate":"2018-07-14T00:00:00.000Z","zoomExtent":[4,20],"polygon":[[[22.20773,60.48192],[22.18898,60.46167],[22.15111,60.4647],[22.11991,60.46316],[22.11448,60.44459],[22.12533,60.43892],[22.14443,60.43815],[22.20536,60.44335],[22.20443,60.43465],[22.14808,60.41251],[22.14125,60.40444],[22.17104,60.38313],[22.2254,60.38328],[22.28446,60.39091],[22.27423,60.40519],[22.30929,60.41024],[22.36908,60.43517],[22.37033,60.44067],[22.33819,60.47484],[22.34456,60.48065],[22.36,60.47545],[22.37127,60.48301],[22.20773,60.48192]]],"terms_url":"https://www.turku.fi/turku-tieto/kartat-ja-paikkatieto","terms_text":"© Turun kaupunki","best":true,"description":"Ortophotos from the city of Turku","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Turku.vaakuna.svg/200px-Turku.vaakuna.svg.png"},{"id":"Czech_CUZK-KM","name":"Czech CUZK:KM","type":"wms","template":"https://wms.cuzk.cz/wms.asp?LAYERS=parcelni_cisla_i,obrazy_parcel_i,RST_KMD_I,hranice_parcel_i,DEF_BUDOVY,RST_KN_I,dalsi_p_mapy_i,prehledka_kat_prac,prehledka_kat_uz,prehledka_kraju-linie&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"overlay":true},{"id":"Czech_CUZK-KM-tms","name":"Czech CUZK:KM tiles proxy","type":"tms","template":"https://osm-{switch:a,b,c}.zby.cz/tiles_cuzk.php/{zoom}/{x}/{y}.png","zoomExtent":[13,18],"polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"overlay":true},{"id":"Czech_pLPIS","name":"Czech pLPIS","type":"wms","template":"https://eagri.cz/public/app/wms/public_DPB_PB_OPV.fcgi?LAYERS=DPB_UCINNE,DPB_UCINNE_KOD&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]]},{"id":"Czech_RUIAN-budovy","name":"Czech RUIAN budovy","type":"tms","template":"https://tile.poloha.net/budovy/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"terms_url":"https://poloha.net/","terms_text":"Czech RUIAN"},{"id":"Czech_RUIAN-parcely","name":"Czech RUIAN parcely","type":"tms","template":"https://tile.poloha.net/parcely/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[15.00637,49.01774],[15.15599,49.00138],[15.1909,48.94246],[15.31059,48.98829],[15.40535,48.9752],[15.54,48.91624],[15.71456,48.86706],[15.83425,48.88018],[15.9689,48.81782],[16.0886,48.74553],[16.39781,48.74553],[16.48758,48.81454],[16.6721,48.7784],[16.68208,48.73566],[16.90152,48.71263],[16.9464,48.6237],[17.11597,48.83752],[17.21072,48.88018],[17.40523,48.81782],[17.48004,48.85393],[17.52991,48.81782],[17.70446,48.86706],[17.81418,48.9359],[17.884,48.9359],[17.94385,49.02101],[18.06354,49.03409],[18.1184,49.09944],[18.1982,49.30473],[18.38771,49.33399],[18.57723,49.50917],[18.75677,49.49946],[18.84654,49.52536],[18.87646,49.57066],[18.79666,49.69341],[18.64206,49.70954],[18.5872,49.83515],[18.61214,49.88338],[18.56226,49.93477],[18.51239,49.90587],[18.36277,49.95403],[18.32786,49.92193],[18.26303,49.97328],[18.1184,50.00534],[18.06354,50.07581],[17.91392,49.97969],[17.77927,50.03098],[17.71444,50.12379],[17.60472,50.16534],[17.75932,50.21962],[17.73438,50.34391],[17.63963,50.28021],[17.38029,50.28021],[17.35037,50.34391],[17.28055,50.33754],[17.18579,50.40752],[16.90152,50.46152],[16.86661,50.41388],[16.96635,50.31844],[17.03617,50.23238],[16.83668,50.21962],[16.712,50.1046],[16.58233,50.15895],[16.56238,50.23876],[16.43272,50.33754],[16.35292,50.39163],[16.27811,50.39163],[16.20829,50.44565],[16.39781,50.53449],[16.44768,50.59785],[16.35292,50.6706],[16.23821,50.67692],[16.21827,50.63266],[16.1285,50.68324],[16.0487,50.60734],[15.98885,50.7022],[15.87415,50.68324],[15.82926,50.76533],[15.72952,50.74324],[15.45023,50.81577],[15.39039,50.77479],[15.38041,50.85987],[15.29563,50.88504],[15.29563,50.98876],[15.17095,51.02014],[14.99141,51.00131],[15.00637,50.88819],[14.84179,50.8756],[14.7969,50.82522],[14.63233,50.85672],[14.66225,50.93536],[14.57248,50.92278],[14.61238,50.98562],[14.49767,51.04837],[14.41788,51.02328],[14.30816,51.06717],[14.2533,51.00445],[14.40291,50.93221],[14.37299,50.89763],[14.24332,50.90706],[14.20841,50.84412],[14.03386,50.81262],[13.979,50.82522],[13.90419,50.79686],[13.87427,50.74009],[13.53514,50.7243],[13.53015,50.65796],[13.4703,50.61367],[13.39051,50.66428],[13.32567,50.58835],[13.25086,50.61051],[13.196,50.50595],[13.05137,50.52181],[12.96659,50.4107],[12.82695,50.47105],[12.70227,50.41388],[12.50777,50.40116],[12.34319,50.25471],[12.32324,50.18451],[12.24843,50.27384],[12.17362,50.33118],[12.09881,50.33436],[12.11876,50.25152],[12.22349,50.16534],[12.20354,50.12379],[12.50278,49.97328],[12.47784,49.93798],[12.54766,49.91551],[12.46787,49.80298],[12.40802,49.76111],[12.48283,49.68696],[12.5327,49.68696],[12.51774,49.62885],[12.60751,49.54155],[12.67234,49.43788],[12.81199,49.34699],[12.94664,49.34374],[13.23091,49.12882],[13.32567,49.10597],[13.43539,49.0439],[13.41544,48.99484],[13.50022,48.94901],[13.56506,48.98829],[13.68475,48.88346],[13.7446,48.90313],[13.82439,48.77511],[13.8992,48.77511],[14.05879,48.67642],[14.04383,48.63029],[14.14358,48.59072],[14.37299,48.56103],[14.48271,48.65007],[14.57747,48.60721],[14.62734,48.63359],[14.70713,48.58083],[14.74703,48.70276],[14.81187,48.73895],[14.81685,48.79483],[14.98642,48.76525],[15.00637,49.01774]]],"terms_url":"https://poloha.net/","terms_text":"Czech RUIAN"},{"id":"Czestochowa-buildings","name":"Częstochowa: Buildings","type":"wms","template":"http://geoportal.czestochowa.um.gov.pl/isdp/scripts/isdp.dll/wms?LAYERS=ieg_budynek&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:900913","polygon":[[[19.08183,50.8554],[19.0888,50.86563],[19.11082,50.86616],[19.10961,50.86092],[19.11709,50.85933],[19.11531,50.86283],[19.11997,50.86327],[19.1227,50.85452],[19.12938,50.85519],[19.12566,50.86165],[19.13364,50.86147],[19.14318,50.86815],[19.1498,50.87916],[19.16507,50.8794],[19.16816,50.88501],[19.17265,50.88477],[19.18346,50.87706],[19.18084,50.86562],[19.18711,50.84712],[19.19973,50.84395],[19.19637,50.83678],[19.19358,50.83357],[19.19454,50.83145],[19.20696,50.82985],[19.20838,50.82484],[19.21831,50.82571],[19.22564,50.82475],[19.23075,50.82509],[19.2308,50.82666],[19.23351,50.82683],[19.23303,50.82335],[19.21868,50.80115],[19.21753,50.79272],[19.22592,50.78822],[19.20889,50.77561],[19.19891,50.76355],[19.19521,50.75182],[19.19074,50.75211],[19.18245,50.7545],[19.16504,50.7535],[19.16417,50.75586],[19.14559,50.75805],[19.14282,50.75543],[19.13021,50.75786],[19.127,50.75314],[19.1216,50.75363],[19.12066,50.74981],[19.10348,50.75228],[19.09598,50.75201],[19.0956,50.74912],[19.09351,50.7488],[19.09285,50.75027],[19.08442,50.74986],[19.08473,50.74349],[19.08382,50.73741],[19.07878,50.73668],[19.07503,50.73465],[19.07284,50.73708],[19.07153,50.74042],[19.0685,50.74339],[19.06632,50.74233],[19.06392,50.74554],[19.06595,50.7466],[19.06548,50.7496],[19.06202,50.75041],[19.06018,50.74455],[19.04257,50.74466],[19.0333,50.74827],[19.01869,50.76252],[19.01554,50.77044],[19.01101,50.7718],[19.01353,50.77766],[19.01159,50.78077],[19.01081,50.78759],[19.01362,50.79262],[19.01972,50.79555],[19.01896,50.80703],[19.03439,50.80116],[19.03453,50.804],[19.02593,50.80731],[19.02308,50.81499],[19.03154,50.81614],[19.02909,50.82435],[19.03787,50.82584],[19.03921,50.84083],[19.04676,50.84934],[19.05993,50.8532],[19.06209,50.8596],[19.06492,50.86134],[19.08183,50.8554]]],"terms_text":"Urząd Miasta Częstochowy"},{"id":"DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch","name":"Dakota County GIS 2017 Fall Leaf-Off 6-Inch","type":"wms","template":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2017AirPhotoLeafOff6Inch/ImageServer/WMSServer?LAYERS=2017AirPhotoLeafOff6Inch:None&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[4,20],"polygon":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"terms_url":"https://dakotacounty.us","terms_text":"Dakota County GIS","icon":"https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png"},{"id":"DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch","name":"Dakota County GIS 2019 Spring Leaf-Off 6-Inch","type":"wms","template":"https://gisimg.co.dakota.mn.us/arcgis/services/AerialPhotography/2019AirPhotoLeafOff6Inch_Spring/ImageServer/WMSServer?LAYERS=2019AirPhotoLeafOff6Inch_Spring:default&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[-93.32967,44.79107],[-93.32964,44.63037],[-93.28189,44.63074],[-93.28169,44.47194],[-93.28176,44.47137],[-93.0395,44.47103],[-93.03924,44.51125],[-92.91932,44.51049],[-92.91899,44.54325],[-92.79268,44.54324],[-92.7926,44.62971],[-92.73207,44.62948],[-92.73122,44.71411],[-92.80342,44.74652],[-92.82767,44.75056],[-92.85209,44.74695],[-92.85959,44.75359],[-92.87724,44.77283],[-92.88149,44.77492],[-92.9049,44.77408],[-92.92808,44.78111],[-92.93969,44.77563],[-92.94843,44.76786],[-92.95859,44.76724],[-92.98604,44.77501],[-92.99291,44.77517],[-93.00306,44.77206],[-93.01685,44.77635],[-93.02153,44.79431],[-93.00523,44.81541],[-93.0119,44.83657],[-93.00859,44.85652],[-93.01041,44.86586],[-93.02074,44.89279],[-93.0309,44.8967],[-93.04083,44.90391],[-93.04445,44.91514],[-93.04725,44.9195],[-93.04724,44.92318],[-93.12863,44.92335],[-93.12882,44.91965],[-93.13257,44.91243],[-93.1641,44.89048],[-93.18289,44.8872],[-93.20075,44.86486],[-93.20325,44.85263],[-93.22179,44.83825],[-93.25188,44.81146],[-93.28177,44.80611],[-93.30453,44.7945],[-93.32645,44.79245],[-93.32961,44.79107],[-93.32967,44.79107]]],"terms_url":"https://dakotacounty.us","terms_text":"Dakota County GIS","icon":"https://www.co.dakota.mn.us//SiteAssets/DakotaCountyLogo_W.png"},{"id":"Duna_2013","name":"Danube flood orthophoto 2013","type":"tms","template":"http://e.tile.openstreetmap.hu/dunai-arviz-2013/{zoom}/{x}/{y}.jpg","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[10,20],"polygon":[[[19.07732,47.69597],[19.07799,47.69598],[19.09462,47.69446],[19.08056,47.59587],[19.07434,47.58909],[19.07952,47.58883],[19.07717,47.57241],[19.05779,47.57209],[19.07732,47.69597]]],"terms_url":"http://fototerkep.hu","terms_text":"Fotótérkép.hu","description":"Riverbank of Danube at Budapest, Szentendre and Szigetmonostor"},{"id":"LPI_NSW_Administrative_Boundaries_County","name":"DCS NSW Administrative Boundaries County","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=4&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[0,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_LGA","name":"DCS NSW Administrative Boundaries LGA","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=6&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[0,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_NPWS_Reserve","name":"DCS NSW Administrative Boundaries NPWS Reserve","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=1&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[6,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_Parish","name":"DCS NSW Administrative Boundaries Parish","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=3&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[11,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_StateForest","name":"DCS NSW Administrative Boundaries State Forest","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=2&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[6,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"LPI_NSW_Administrative_Boundaries_Suburb","name":"DCS NSW Administrative Boundaries Suburb","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Administrative_Boundaries/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=7&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[0,21],"polygon":[[[159.00339,-31.48767],[159.03789,-31.70558],[159.31098,-31.85952],[159.37278,-31.77892],[159.17443,-31.4374],[159.00339,-31.48767]],[[140.99865,-28.99893],[148.9452,-28.99487],[149.48562,-28.5615],[150.29914,-28.53373],[151.0954,-28.71792],[151.39436,-28.97978],[151.98941,-28.73557],[151.92904,-28.49836],[152.49246,-28.2353],[153.57907,-28.14156],[153.69692,-28.64983],[153.25847,-30.97354],[152.75437,-32.50849],[151.90879,-33.05535],[151.25834,-34.38081],[151.01442,-35.11568],[150.46154,-36.1203],[150.41275,-36.61786],[149.97847,-37.507],[148.20135,-36.80566],[148.07918,-36.81716],[147.88542,-36.09019],[147.69029,-36.04418],[146.82844,-36.18868],[145.23484,-35.98499],[144.84457,-36.21492],[144.51935,-36.1296],[143.20218,-35.13174],[142.47856,-34.81194],[140.9937,-34.07017],[141.0026,-34.01974],[140.99865,-28.99893]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"NSW_LPI_BaseMap","name":"DCS NSW Base Map","type":"tms","template":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Base_Map/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[0,19],"polygon":[[[140.99486,-28.95297],[148.96114,-28.89977],[148.98701,-28.48623],[151.01361,-28.47865],[151.10847,-28.70329],[151.87599,-28.68312],[151.93348,-28.40788],[152.25544,-28.23327],[153.06608,-28.21047],[153.14082,-28.1091],[153.47351,-28.11648],[153.35765,-27.69361],[159.49383,-27.69925],[159.4857,-37.84741],[149.52569,-37.82815],[149.91596,-37.487],[148.04859,-36.81317],[147.9681,-36.15679],[146.71477,-36.28666],[145.30046,-36.15679],[144.53007,-36.14751],[142.8398,-35.02543],[142.35686,-34.78025],[141.97741,-34.40162],[140.99503,-34.13718],[140.99486,-28.95297]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"},{"id":"NSW_LPI_Imagery","name":"DCS NSW Imagery","type":"tms","template":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Imagery/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,21],"polygon":[[[140.98687,-28.98878],[148.99515,-28.97275],[148.99667,-28.49151],[151.0029,-28.49307],[151.0029,-28.72617],[151.49151,-28.73239],[151.49187,-28.71553],[151.92282,-28.71964],[151.92516,-28.48971],[151.99559,-28.48987],[151.99899,-28.11927],[152.49676,-28.12209],[152.49682,-28.11464],[153.00446,-28.11544],[153.00446,-28.1204],[153.50386,-28.11934],[153.50393,-28.12271],[153.59194,-28.12236],[153.59266,-28.17769],[153.61112,-28.17579],[153.61139,-28.18252],[153.74268,-28.21621],[153.77873,-28.71091],[152.6238,-32.58772],[152.3124,-32.63288],[151.41419,-33.57904],[150.89299,-35.26487],[150.46207,-35.77773],[150.01565,-37.51036],[149.99181,-37.51268],[149.51978,-37.51307],[149.51996,-37.52169],[149.4463,-37.53537],[149.06334,-37.5358],[148.98366,-37.52176],[148.98169,-37.5192],[148.98638,-37.2585],[148.48754,-37.26585],[148.48248,-37.00927],[147.99439,-37.01434],[147.98829,-36.53322],[147.95297,-36.52607],[147.94865,-36.0686],[147.5035,-36.07168],[147.50477,-36.2651],[146.492,-36.26613],[146.49225,-36.2565],[145.99298,-36.25343],[145.99659,-36.01881],[145.98316,-36.01871],[145.96245,-36.0219],[145.94624,-36.01209],[145.94543,-36.00603],[145.50415,-36.00136],[145.50379,-36.01091],[145.0072,-36.00362],[145.00354,-36.15204],[144.48608,-36.14231],[144.48741,-36.01375],[143.98747,-36.00241],[143.99329,-35.57238],[143.49717,-35.58371],[143.4918,-35.40656],[143.46134,-35.36749],[143.45856,-35.35559],[143.48978,-35.33965],[143.48955,-35.33221],[143.4317,-35.25706],[143.25055,-35.26066],[143.24384,-35.01327],[142.99333,-35.01772],[142.99198,-34.79619],[142.49714,-34.80323],[142.49732,-34.80076],[142.42114,-34.80176],[142.42092,-34.78383],[142.23309,-34.78592],[142.23077,-34.78075],[142.227,-34.50613],[141.99753,-34.50837],[141.9946,-34.25267],[141.49823,-34.25569],[141.49817,-34.25228],[140.99454,-34.25284],[140.98687,-28.98878]],[[159.22678,-31.74407],[159.26398,-31.74399],[159.28989,-31.77428],[159.28993,-31.79393],[159.26157,-31.79395],[159.22682,-31.75483],[159.22678,-31.74407]],[[159.03784,-31.49819],[159.04448,-31.5006],[159.04619,-31.49734],[159.04888,-31.49829],[159.04884,-31.48423],[159.06882,-31.48423],[159.06991,-31.482],[159.08317,-31.48203],[159.08203,-31.48434],[159.08205,-31.49567],[159.08564,-31.49703],[159.08383,-31.50058],[159.09007,-31.5026],[159.08682,-31.50859],[159.09433,-31.51136],[159.09174,-31.51585],[159.09537,-31.51724],[159.10276,-31.52611],[159.1161,-31.53006],[159.11422,-31.5342],[159.11875,-31.53417],[159.1193,-31.54888],[159.12618,-31.55796],[159.11841,-31.56323],[159.11553,-31.55983],[159.1115,-31.55983],[159.11154,-31.60158],[159.08954,-31.6016],[159.08626,-31.60845],[159.07954,-31.60611],[159.07714,-31.61149],[159.05943,-31.61155],[159.05296,-31.60369],[159.05893,-31.59087],[159.05891,-31.57897],[159.05541,-31.57773],[159.05735,-31.57387],[159.05585,-31.57333],[159.05038,-31.57335],[159.05035,-31.56329],[159.0463,-31.5619],[159.04847,-31.55793],[159.04237,-31.55601],[159.04533,-31.55038],[159.03783,-31.54763],[159.03802,-31.54723],[159.03487,-31.54724],[159.03487,-31.54383],[159.03244,-31.54297],[159.03461,-31.53808],[159.02754,-31.53554],[159.02964,-31.53159],[159.02305,-31.52935],[159.03784,-31.49819]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","best":true,"icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"},{"id":"NSW_LPI_Imagery_Dates","name":"DCS NSW Imagery Dates","type":"wms","template":"https://maps.six.nsw.gov.au/arcgis/services/public/NSW_Imagery_Dates/MapServer/WMSServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&CRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}&LAYERS=0&STYLES=&FORMAT=image/png32&DPI=96&MAP_RESOLUTION=96&FORMAT_OPTIONS=dpi:96&TRANSPARENT=TRUE","projection":"EPSG:3857","zoomExtent":[6,21],"polygon":[[[140.98687,-28.98878],[148.99515,-28.97275],[148.99667,-28.49151],[151.0029,-28.49307],[151.0029,-28.72617],[151.49151,-28.73239],[151.49187,-28.71553],[151.92282,-28.71964],[151.92516,-28.48971],[151.99559,-28.48987],[151.99899,-28.11927],[152.49676,-28.12209],[152.49682,-28.11464],[153.00446,-28.11544],[153.00446,-28.1204],[153.50386,-28.11934],[153.50393,-28.12271],[153.59194,-28.12236],[153.59266,-28.17769],[153.61112,-28.17579],[153.61139,-28.18252],[153.74268,-28.21621],[153.77873,-28.71091],[152.6238,-32.58772],[152.3124,-32.63288],[151.41419,-33.57904],[150.89299,-35.26487],[150.46207,-35.77773],[150.01565,-37.51036],[149.99181,-37.51268],[149.51978,-37.51307],[149.51996,-37.52169],[149.4463,-37.53537],[149.06334,-37.5358],[148.98366,-37.52176],[148.98169,-37.5192],[148.98638,-37.2585],[148.48754,-37.26585],[148.48248,-37.00927],[147.99439,-37.01434],[147.98829,-36.53322],[147.95297,-36.52607],[147.94865,-36.0686],[147.5035,-36.07168],[147.50477,-36.2651],[146.492,-36.26613],[146.49225,-36.2565],[145.99298,-36.25343],[145.99659,-36.01881],[145.98316,-36.01871],[145.96245,-36.0219],[145.94624,-36.01209],[145.94543,-36.00603],[145.50415,-36.00136],[145.50379,-36.01091],[145.0072,-36.00362],[145.00354,-36.15204],[144.48608,-36.14231],[144.48741,-36.01375],[143.98747,-36.00241],[143.99329,-35.57238],[143.49717,-35.58371],[143.4918,-35.40656],[143.46134,-35.36749],[143.45856,-35.35559],[143.48978,-35.33965],[143.48955,-35.33221],[143.4317,-35.25706],[143.25055,-35.26066],[143.24384,-35.01327],[142.99333,-35.01772],[142.99198,-34.79619],[142.49714,-34.80323],[142.49732,-34.80076],[142.42114,-34.80176],[142.42092,-34.78383],[142.23309,-34.78592],[142.23077,-34.78075],[142.227,-34.50613],[141.99753,-34.50837],[141.9946,-34.25267],[141.49823,-34.25569],[141.49817,-34.25228],[140.99454,-34.25284],[140.98687,-28.98878]],[[159.22678,-31.74407],[159.26398,-31.74399],[159.28989,-31.77428],[159.28993,-31.79393],[159.26157,-31.79395],[159.22682,-31.75483],[159.22678,-31.74407]],[[159.03784,-31.49819],[159.04448,-31.5006],[159.04619,-31.49734],[159.04888,-31.49829],[159.04884,-31.48423],[159.06882,-31.48423],[159.06991,-31.482],[159.08317,-31.48203],[159.08203,-31.48434],[159.08205,-31.49567],[159.08564,-31.49703],[159.08383,-31.50058],[159.09007,-31.5026],[159.08682,-31.50859],[159.09433,-31.51136],[159.09174,-31.51585],[159.09537,-31.51724],[159.10276,-31.52611],[159.1161,-31.53006],[159.11422,-31.5342],[159.11875,-31.53417],[159.1193,-31.54888],[159.12618,-31.55796],[159.11841,-31.56323],[159.11553,-31.55983],[159.1115,-31.55983],[159.11154,-31.60158],[159.08954,-31.6016],[159.08626,-31.60845],[159.07954,-31.60611],[159.07714,-31.61149],[159.05943,-31.61155],[159.05296,-31.60369],[159.05893,-31.59087],[159.05891,-31.57897],[159.05541,-31.57773],[159.05735,-31.57387],[159.05585,-31.57333],[159.05038,-31.57335],[159.05035,-31.56329],[159.0463,-31.5619],[159.04847,-31.55793],[159.04237,-31.55601],[159.04533,-31.55038],[159.03783,-31.54763],[159.03802,-31.54723],[159.03487,-31.54724],[159.03487,-31.54383],[159.03244,-31.54297],[159.03461,-31.53808],[159.02754,-31.53554],[159.02964,-31.53159],[159.02305,-31.52935],[159.03784,-31.49819]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico","overlay":true},{"id":"NSW_LPI_TopographicMap","name":"DCS NSW Topographic Map","type":"tms","template":"https://maps.six.nsw.gov.au/arcgis/rest/services/public/NSW_Topo_Map/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,16],"polygon":[[[140.99884,-28.99924],[140.99652,-34.13858],[142.03614,-34.37588],[142.40976,-34.76694],[143.33826,-35.23318],[143.99654,-35.98105],[144.49912,-36.0211],[144.50725,-36.24765],[145.01541,-36.25421],[145.00118,-36.00795],[146.50426,-36.12639],[146.49564,-36.24471],[146.98863,-36.25283],[146.99725,-36.12755],[147.38221,-36.13103],[147.38939,-36.01137],[147.81483,-36.00556],[147.99306,-36.138],[148.06846,-36.80624],[149.98571,-37.508],[163,-32],[153.76465,-28.11075],[153.25003,-28.12497],[153.24999,-28.23324],[153.16672,-28.23316],[153.16663,-28.25001],[153.11659,-28.24986],[153.1165,-28.2834],[152.9999,-28.28324],[152.99972,-28.24986],[152.24994,-28.25001],[152.24997,-28.37507],[151.99986,-28.37496],[151.99989,-28.50023],[151.93341,-28.50007],[151.93313,-28.62475],[151.98317,-28.62491],[151.98299,-28.64139],[151.99988,-28.64163],[152.00007,-28.68335],[152.03322,-28.6832],[152.0334,-28.71661],[151.99998,-28.71645],[151.99998,-28.74953],[151.03383,-28.75054],[151.03293,-28.74188],[151.02413,-28.74188],[151.02395,-28.73274],[151.00059,-28.73258],[151.00005,-28.50052],[148.99982,-28.50003],[148.99985,-28.74974],[149.0997,-28.74885],[149.10007,-28.81658],[149.00009,-28.81658],[148.99983,-28.96653],[148.94988,-28.96653],[148.95024,-28.99937],[140.99884,-28.99924]]],"terms_url":"https://www.spatial.nsw.gov.au/products_and_services/web_services/access_web_services","terms_text":"© State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au.","icon":"https://www.spatial.nsw.gov.au/__data/assets/file/0017/224801/favicon.ico"},{"id":"Delaware2012Orthophotography","name":"Delaware 2012 Orthophotography","type":"wms","template":"https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2012/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[5,22],"polygon":[[[-75.01771,38.45189],[-75.74174,38.44996],[-75.807,39.73907],[-75.75559,39.80106],[-75.64692,39.85638],[-75.47115,39.84646],[-75.37726,39.81478],[-75.48746,39.67181],[-75.50901,39.43446],[-75.39327,39.27784],[-75.30707,39.01667],[-75.19317,38.82219],[-75.05341,38.80876],[-75.01771,38.45189]]],"terms_url":"https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2012/ImageServer","terms_text":"Digital Aerial Solutions, LLC","description":"This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."},{"id":"Delaware2017Orthophotography","name":"Delaware 2017 Orthophotography","type":"wms","template":"https://firstmap.delaware.gov/arcgis/services/DE_Imagery/DE_Imagery_2017/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-75.01771,38.45189],[-75.74174,38.44996],[-75.807,39.73907],[-75.75559,39.80106],[-75.64692,39.85638],[-75.47115,39.84646],[-75.37726,39.81478],[-75.48746,39.67181],[-75.50901,39.43446],[-75.39327,39.27784],[-75.30707,39.01667],[-75.19317,38.82219],[-75.05341,38.80876],[-75.01771,38.45189]]],"terms_url":"https://firstmap.delaware.gov/arcgis/rest/services/DE_Imagery/DE_Imagery_2017/ImageServer","terms_text":"Digital Aerial Solutions, LLC","description":"This data set consists of 0.3-meter pixel resolution (approximately 1-foot), 4-band true color and near infrared (R, G, B, IR) orthoimages covering New Castle, Kent and Sussex Counties in Delaware."},{"id":"der-es","name":"DER-ES","type":"wms","template":"http://portal.der.es.gov.br/geoserver/wms?SERVICE=WMS&FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=deres-ext:TRECHOINFO&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-40.94577,-21.31404],[-40.6231,-20.86278],[-40.38882,-20.65177],[-40.22209,-20.29831],[-39.80383,-19.66412],[-39.69603,-19.42573],[-39.67304,-19.30437],[-39.70538,-18.61384],[-39.65292,-18.33096],[-40.22281,-17.97587],[-40.34282,-17.9198],[-40.45278,-17.91502],[-40.46499,-17.92049],[-40.48368,-17.90408],[-40.50164,-17.90681],[-40.51602,-17.88903],[-40.53326,-17.88903],[-40.54548,-17.90134],[-40.58932,-17.91502],[-40.58932,-17.93211],[-40.61519,-17.93416],[-40.62956,-17.9868],[-40.64609,-17.9868],[-40.65903,-18.00731],[-40.68777,-18.00594],[-40.70574,-18.01756],[-40.71365,-18.00184],[-40.72155,-17.99774],[-40.75102,-18.00252],[-40.76754,-17.99842],[-40.76754,-17.98133],[-40.80923,-17.94852],[-40.82432,-17.96014],[-40.83151,-17.94989],[-40.86528,-17.9827],[-40.88397,-17.96766],[-40.90912,-17.98475],[-40.77761,-18.10775],[-40.77832,-18.15146],[-40.79054,-18.15351],[-40.8351,-18.14531],[-40.89547,-18.10365],[-40.93283,-18.12755],[-40.95583,-18.1255],[-40.95296,-18.14463],[-40.96014,-18.15009],[-40.96374,-18.14326],[-40.97955,-18.13643],[-40.99248,-18.15009],[-40.99105,-18.16307],[-41.00901,-18.16307],[-41.05788,-18.1658],[-41.05788,-18.17536],[-41.09597,-18.19243],[-41.09597,-18.2054],[-41.1089,-18.21291],[-41.09812,-18.22997],[-41.10531,-18.2327],[-41.09884,-18.25591],[-41.12903,-18.27502],[-41.16137,-18.30572],[-41.15059,-18.37394],[-41.16424,-18.37939],[-41.16424,-18.4019],[-41.15059,-18.40735],[-41.15849,-18.41144],[-41.17358,-18.41144],[-41.18868,-18.44485],[-41.02123,-18.46667],[-41.04638,-18.60362],[-41.03776,-18.61452],[-41.05788,-18.62678],[-41.0471,-18.64857],[-41.03488,-18.65402],[-40.99895,-18.67716],[-40.94505,-18.69418],[-40.94433,-18.76973],[-40.92134,-18.81055],[-40.93715,-18.82347],[-40.94721,-18.82143],[-40.97092,-18.83572],[-41.08375,-18.83232],[-41.10675,-18.83572],[-41.11753,-18.80783],[-41.13118,-18.79286],[-41.23611,-18.7949],[-41.2512,-18.81667],[-41.2476,-18.85544],[-41.2203,-18.87992],[-41.20808,-18.87992],[-41.20664,-18.86632],[-41.16424,-18.867],[-41.15634,-18.88876],[-41.12903,-18.9044],[-41.12112,-18.92412],[-41.0392,-18.98665],[-41.07585,-19.00567],[-41.06507,-19.06342],[-40.96877,-19.12726],[-40.96158,-19.15102],[-40.92996,-19.206],[-40.94649,-19.22296],[-40.94793,-19.24264],[-40.92565,-19.26299],[-40.94936,-19.2786],[-40.92277,-19.31048],[-40.94361,-19.35252],[-40.93427,-19.381],[-40.95727,-19.39184],[-40.9738,-19.42641],[-40.95439,-19.46165],[-40.97883,-19.50298],[-41.01332,-19.50298],[-41.04638,-19.48333],[-41.05429,-19.48401],[-41.04135,-19.56664],[-41.09238,-19.58966],[-41.14627,-19.656],[-41.16496,-19.65871],[-41.17933,-19.6939],[-41.19658,-19.74599],[-41.16999,-19.80618],[-41.18939,-19.82375],[-41.18868,-19.88526],[-41.21239,-19.89743],[-41.22964,-19.90216],[-41.24689,-19.93324],[-41.25479,-19.92919],[-41.26988,-19.93797],[-41.30653,-19.93392],[-41.31516,-19.96972],[-41.3245,-19.97647],[-41.313,-20.01226],[-41.33672,-20.05548],[-41.34822,-20.08653],[-41.3554,-20.12094],[-41.37768,-20.15805],[-41.38702,-20.18638],[-41.41074,-20.19448],[-41.4208,-20.20257],[-41.7636,-20.2046],[-41.78516,-20.28483],[-41.85055,-20.3246],[-41.86349,-20.37513],[-41.85127,-20.38187],[-41.84337,-20.40949],[-41.80887,-20.42498],[-41.80672,-20.47211],[-41.83115,-20.47885],[-41.81103,-20.54212],[-41.83115,-20.55086],[-41.86205,-20.61814],[-41.82109,-20.64437],[-41.85343,-20.68068],[-41.87139,-20.72102],[-41.8678,-20.73849],[-41.88002,-20.73984],[-41.88289,-20.76739],[-41.85415,-20.77478],[-41.83331,-20.7983],[-41.80887,-20.80905],[-41.78444,-20.80569],[-41.75138,-20.82382],[-41.74707,-20.87487],[-41.72335,-20.87554],[-41.74132,-20.92723],[-41.72335,-20.97757],[-41.74347,-21.09763],[-41.7291,-21.12579],[-41.594,-21.16332],[-41.57244,-21.18678],[-41.49051,-21.18879],[-41.48332,-21.20085],[-41.43948,-21.22095],[-41.41289,-21.20956],[-41.34965,-21.21291],[-41.27994,-21.2464],[-41.24473,-21.23234],[-41.17718,-21.25511],[-41.09238,-21.2243],[-41.04854,-21.25913],[-41.01548,-21.25578],[-41.00254,-21.28726],[-40.94577,-21.31404]]],"terms_url":"https://der.es.gov.br","terms_text":"Departamento de Estradas de Rodagem do Estado do Espírito Santo","overlay":true},{"id":"db-inspire-2013-11","name":"Deutsche Bahn VzG lines January 2017","type":"wms","template":"https://wms.michreichert.de/vzg-strecken-2017?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2013-11-01T00:00:00.000Z","startDate":"2013-11-01T00:00:00.000Z","polygon":[[[8.19422,48.97504],[7.97355,49.02623],[7.94677,49.06313],[7.44328,49.18928],[7.05679,49.11163],[6.94302,49.21345],[6.81633,49.16389],[6.68209,49.24061],[6.3501,49.46202],[6.35353,49.57302],[6.42632,49.67177],[6.50254,49.71885],[6.45241,50.61258],[6.03871,50.71215],[6.00369,50.753],[6.05742,50.8559],[6.0787,50.90247],[6.0727,51.06792],[6.17123,51.33853],[6.22548,51.36554],[6.15715,51.5509],[6.12763,51.91069],[6.79985,51.86661],[7.02851,52.31255],[6.72947,52.64179],[7.07486,52.75269],[7.20532,53.18442],[7.04464,53.33106],[6.5173,53.65785],[8.23529,54.99001],[11.92257,54.52963],[14.1679,54.59631],[14.46591,53.24712],[14.14318,52.83946],[14.64375,52.58613],[14.57646,52.32756],[14.74537,52.06577],[14.66847,51.7353],[14.7234,51.53927],[15.03926,51.28745],[14.98845,51.09207],[14.88922,50.93856],[14.81593,50.87729],[14.63671,50.89116],[14.59311,50.91887],[14.57217,51.01076],[14.26283,51.06473],[14.28086,50.98024],[14.22816,50.85796],[13.69532,50.72883],[13.03442,50.50085],[12.49077,50.34582],[12.32632,50.29277],[12.35379,50.21462],[12.32701,50.16363],[12.1677,50.34889],[12.07707,50.2524],[12.18195,50.21136],[12.26014,50.09069],[12.53892,49.4164],[12.88808,49.3385],[13.21287,49.12439],[13.73952,48.83688],[13.45371,48.56222],[13.40555,48.37812],[13.03648,48.25986],[12.71376,48.10856],[12.93108,47.9376],[13.00455,47.84506],[12.90671,47.73249],[13.05228,47.59329],[12.15792,47.7087],[12.20393,47.61667],[12.17783,47.59815],[11.61753,47.60093],[11.26666,47.39124],[10.9247,47.46811],[10.91578,47.55623],[10.59031,47.5567],[10.29848,47.39937],[9.78144,47.61274],[9.74024,47.52842],[9.00278,47.69137],[8.68933,47.72371],[8.63809,47.70261],[8.63079,47.69359],[8.62127,47.69177],[8.62414,47.68221],[8.61243,47.68115],[8.35382,47.61367],[8.27485,47.619],[8.23709,47.61023],[8.22808,47.60583],[8.20284,47.61555],[8.10834,47.58251],[8.08568,47.5583],[8.06714,47.56444],[8.04981,47.55645],[8.02749,47.55112],[7.98097,47.55494],[7.91917,47.54787],[7.88862,47.58888],[7.81257,47.57122],[7.79455,47.55558],[7.71404,47.54063],[7.66043,47.54485],[7.65219,47.54702],[7.63439,47.56173],[7.61499,47.55669],[7.5834,47.57048],[7.58559,47.5845],[7.59366,47.60048],[7.58761,47.608],[7.51491,47.6652],[7.5434,47.81539],[7.57671,48.02454],[7.56812,48.06012],[7.80639,48.52438],[7.79987,48.58029],[7.80665,48.60106],[8.11014,48.84977],[8.19422,48.97504]]],"terms_url":"https://data.deutschebahn.com/dataset/data-streckennetz","terms_text":"Data CC-BY 4.0 Deutsche Bahn AG","overlay":true},{"id":"db-inspire-2015-11","name":"Deutsche Bahn VzG lines Nov 2015","type":"wms","template":"https://wms.michreichert.de/vzg-strecken-2015?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=vzg_strecken,station_codes,level_crossings&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-11-01T00:00:00.000Z","startDate":"2015-11-01T00:00:00.000Z","polygon":[[[8.19422,48.97504],[7.97355,49.02623],[7.94677,49.06313],[7.44328,49.18928],[7.05679,49.11163],[6.94302,49.21345],[6.81633,49.16389],[6.68209,49.24061],[6.3501,49.46202],[6.35353,49.57302],[6.42632,49.67177],[6.50254,49.71885],[6.45241,50.61258],[6.03871,50.71215],[6.00369,50.753],[6.05742,50.8559],[6.0787,50.90247],[6.0727,51.06792],[6.17123,51.33853],[6.22548,51.36554],[6.15715,51.5509],[6.12763,51.91069],[6.79985,51.86661],[7.02851,52.31255],[6.72947,52.64179],[7.07486,52.75269],[7.20532,53.18442],[7.04464,53.33106],[6.5173,53.65785],[8.23529,54.99001],[11.92257,54.52963],[14.1679,54.59631],[14.46591,53.24712],[14.14318,52.83946],[14.64375,52.58613],[14.57646,52.32756],[14.74537,52.06577],[14.66847,51.7353],[14.7234,51.53927],[15.03926,51.28745],[14.98845,51.09207],[14.88922,50.93856],[14.81593,50.87729],[14.63671,50.89116],[14.59311,50.91887],[14.57217,51.01076],[14.26283,51.06473],[14.28086,50.98024],[14.22816,50.85796],[13.69532,50.72883],[13.03442,50.50085],[12.49077,50.34582],[12.32632,50.29277],[12.35379,50.21462],[12.32701,50.16363],[12.1677,50.34889],[12.07707,50.2524],[12.18195,50.21136],[12.26014,50.09069],[12.53892,49.4164],[12.88808,49.3385],[13.21287,49.12439],[13.73952,48.83688],[13.45371,48.56222],[13.40555,48.37812],[13.03648,48.25986],[12.71376,48.10856],[12.93108,47.9376],[13.00455,47.84506],[12.90671,47.73249],[13.05228,47.59329],[12.15792,47.7087],[12.20393,47.61667],[12.17783,47.59815],[11.61753,47.60093],[11.26666,47.39124],[10.9247,47.46811],[10.91578,47.55623],[10.59031,47.5567],[10.29848,47.39937],[9.78144,47.61274],[9.74024,47.52842],[9.00278,47.69137],[8.68933,47.72371],[8.63809,47.70261],[8.63079,47.69359],[8.62127,47.69177],[8.62414,47.68221],[8.61243,47.68115],[8.35382,47.61367],[8.27485,47.619],[8.23709,47.61023],[8.22808,47.60583],[8.20284,47.61555],[8.10834,47.58251],[8.08568,47.5583],[8.06714,47.56444],[8.04981,47.55645],[8.02749,47.55112],[7.98097,47.55494],[7.91917,47.54787],[7.88862,47.58888],[7.81257,47.57122],[7.79455,47.55558],[7.71404,47.54063],[7.66043,47.54485],[7.65219,47.54702],[7.63439,47.56173],[7.61499,47.55669],[7.5834,47.57048],[7.58559,47.5845],[7.59366,47.60048],[7.58761,47.608],[7.51491,47.6652],[7.5434,47.81539],[7.57671,48.02454],[7.56812,48.06012],[7.80639,48.52438],[7.79987,48.58029],[7.80665,48.60106],[8.11014,48.84977],[8.19422,48.97504]]],"terms_url":"https://data.deutschebahn.com/dataset/data-streckennetz","terms_text":"Data CC-BY 4.0 Deutsche Bahn AG","overlay":true},{"id":"dgu-dof-2011","name":"dgu.hr: Croatia 2011 Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/dof/ows?LAYERS=DOF5_2011&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[16.2996,46.38154],[16.2369,46.4981],[16.36449,46.55763],[16.52243,46.48295],[16.66846,46.46184],[16.70966,46.40541],[16.87361,46.35365],[16.89119,46.28228],[16.97844,46.22821],[17.16198,46.17292],[17.18392,46.11177],[17.22194,46.11398],[17.29813,46.03422],[17.26272,46.01265],[17.37936,45.99119],[17.41445,45.93808],[17.57404,45.93991],[17.67025,45.83833],[17.83202,45.81131],[17.86526,45.77067],[17.90763,45.79537],[18.08054,45.76834],[18.18763,45.79041],[18.34028,45.75291],[18.36506,45.77628],[18.44336,45.74187],[18.48413,45.79491],[18.55212,45.79695],[18.61719,45.84118],[18.65729,45.91935],[18.79064,45.88142],[18.82036,45.91772],[18.90217,45.92088],[18.87259,45.89554],[18.90522,45.86687],[18.86071,45.85998],[18.85158,45.81307],[18.90807,45.82487],[18.92214,45.78927],[18.85405,45.77335],[18.91634,45.74661],[18.96932,45.76765],[18.98301,45.74223],[18.9716,45.69436],[18.92081,45.7012],[18.97826,45.65389],[18.90122,45.57133],[18.94963,45.53863],[19.02191,45.55954],[19.10712,45.51124],[19.08297,45.48304],[19.00346,45.49158],[19.03342,45.40972],[18.97303,45.38127],[19.08915,45.34237],[19.17636,45.27054],[19.26699,45.28238],[19.26243,45.24597],[19.42202,45.23666],[19.44988,45.19546],[19.43162,45.16858],[19.35639,45.16308],[19.31769,45.20625],[19.28602,45.20377],[19.28915,45.16938],[19.1756,45.20035],[19.19709,45.17897],[19.14222,45.12726],[19.08905,45.14323],[19.10612,45.01045],[19.05765,44.97822],[19.14008,44.98338],[19.16024,44.95324],[19.07103,44.89893],[19.00562,44.91331],[19.02647,44.85137],[18.96225,44.84597],[18.85055,44.849],[18.7633,44.8992],[18.74471,44.93786],[18.79579,44.93987],[18.78901,44.99224],[18.72679,44.99017],[18.66466,45.05817],[18.58771,45.08384],[18.53161,45.03995],[18.41924,45.10518],[18.32169,45.09696],[18.25755,45.13614],[18.19994,45.07562],[18.12115,45.07621],[18.06597,45.13909],[18.03733,45.12196],[18.0097,45.14872],[17.85061,45.04019],[17.66363,45.13094],[17.6005,45.10181],[17.5495,45.12663],[17.48821,45.10589],[17.44509,45.15769],[17.41754,45.13253],[17.3426,45.13809],[17.27318,45.18585],[17.25141,45.1444],[17.16542,45.14694],[17.03437,45.21983],[16.93264,45.22703],[16.9282,45.27307],[16.82178,45.1824],[16.59808,45.22881],[16.49998,45.21198],[16.46679,45.14146],[16.39821,45.11157],[16.3583,45.00232],[16.28569,44.9923],[16.08617,45.10185],[16.01122,45.21415],[15.84351,45.22157],[15.79069,45.19066],[15.79588,45.11433],[15.75122,45.06121],[15.78847,44.97482],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[16.0592,44.627],[16.02335,44.56378],[16.12673,44.51464],[16.17742,44.40236],[16.13524,44.38112],[16.22406,44.3489],[16.1923,44.29936],[16.21765,44.21695],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.54079,42.92978],[17.64304,42.88436],[17.68764,42.92563],[17.84605,42.90453],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.37062,42.61669],[18.43954,42.56497],[18.43987,42.48498],[18.55128,42.40206],[18.5331,42.38603],[18.06182,42.6374],[17.06039,42.69152],[16.35138,42.37123],[16.23677,42.38453],[16.39023,42.73995],[15.43075,43.08152],[15.63066,43.43802],[14.62071,44.3094],[14.29287,44.49332],[14.00808,44.80011],[13.88603,44.75271],[13.89153,44.8023],[13.70853,44.9134],[13.72398,44.94888],[13.7959,44.92877],[13.76116,44.98088],[13.60777,45.03763],[13.56139,45.19789],[13.58211,45.24115],[13.48227,45.48675],[13.5136,45.5099],[13.67463,45.44773],[13.76432,45.47054],[13.88238,45.429],[13.98027,45.45832],[13.95822,45.5071],[14.00195,45.52298],[14.07602,45.48728],[14.20335,45.47325],[14.24884,45.50803],[14.32381,45.47413],[14.48749,45.54141],[14.4953,45.60824],[14.56821,45.67686],[14.69391,45.58134],[14.69169,45.53064],[14.79864,45.50514],[14.82058,45.46316],[14.90782,45.4814],[14.93136,45.53217],[15.08738,45.48583],[15.16778,45.42529],[15.26912,45.46833],[15.3438,45.45993],[15.37766,45.48781],[15.29879,45.53386],[15.27225,45.6053],[15.39836,45.64787],[15.36734,45.68233],[15.34575,45.66692],[15.35424,45.7101],[15.32451,45.67005],[15.23367,45.72238],[15.47062,45.79902],[15.46272,45.82041],[15.5364,45.85015],[15.64191,45.82462],[15.69817,45.85137],[15.67547,45.90472],[15.72545,46.04492],[15.6009,46.1108],[15.63844,46.21388],[15.76893,46.21269],[15.79102,46.2621],[16.01284,46.3133],[16.07131,46.3449],[16.05625,46.39644],[16.2996,46.38154]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2014-2016","name":"dgu.hr: Croatia 2014-2016 Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2014-2016/ows?LAYERS=OI.OrthoImagery&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[16.66846,46.46184],[16.70966,46.40541],[16.83743,46.37895],[16.91732,46.26434],[17.16198,46.17292],[17.18392,46.11177],[17.22194,46.11398],[17.29813,46.03422],[17.26272,46.01265],[17.37936,45.99119],[17.39024,45.93723],[17.57404,45.93991],[17.67025,45.83833],[17.83202,45.81131],[17.86526,45.77067],[17.90763,45.79537],[18.08054,45.76834],[18.18763,45.79041],[18.34028,45.75291],[18.36506,45.77628],[18.44336,45.74187],[18.48413,45.79491],[18.55212,45.79695],[18.61719,45.84118],[18.65729,45.91935],[18.79064,45.88142],[18.81521,45.91536],[18.87237,45.91897],[18.85574,45.7726],[18.92405,45.74455],[18.90242,45.57188],[18.9269,45.5301],[19.00355,45.53163],[18.97987,45.34745],[19.06927,45.34532],[19.15525,45.27971],[19.16362,45.16268],[19.07065,45.14698],[19.10952,45.05083],[19.05765,44.97822],[19.14008,44.98338],[19.16024,44.95324],[19.07103,44.89893],[18.99675,44.90679],[19.02647,44.85137],[18.83925,44.8547],[18.74655,44.9263],[18.79579,44.93987],[18.78901,44.99224],[18.72679,44.99017],[18.71155,45.03475],[18.58771,45.08384],[18.53161,45.03995],[18.41924,45.10518],[18.32169,45.09696],[18.25755,45.13614],[18.19994,45.07562],[18.12115,45.07621],[18.06597,45.13909],[18.03733,45.12196],[18.0097,45.14872],[17.85061,45.04019],[17.66363,45.13094],[17.6005,45.10181],[17.5495,45.12663],[17.48821,45.10589],[17.44509,45.15769],[17.41754,45.13253],[17.3426,45.13809],[17.27318,45.18585],[17.25141,45.1444],[17.16542,45.14694],[17.03437,45.21983],[16.93264,45.22703],[16.9282,45.27307],[16.82178,45.1824],[16.52186,45.22151],[16.46768,45.13997],[16.3992,45.11095],[16.35817,45.00121],[16.28569,44.9923],[16.08617,45.10185],[16.01122,45.21415],[15.84351,45.22157],[15.77021,45.16383],[15.79588,45.11433],[15.75122,45.06121],[15.78847,44.97482],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[16.03586,44.65529],[16.06263,44.60805],[16.02335,44.56378],[16.12673,44.51464],[16.17742,44.40236],[16.13524,44.38112],[16.22406,44.3489],[16.1923,44.29936],[16.21765,44.21695],[16.32072,44.11655],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.60009,43.91158],[16.72161,43.84086],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.28139,43.47296],[17.25664,43.40208],[17.34462,43.25537],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71384,42.9707],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.84605,42.90453],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.43987,42.48498],[18.55131,42.40193],[18.53311,42.38604],[18.06174,42.63737],[17.06039,42.69152],[16.35138,42.37123],[16.23677,42.38453],[16.39023,42.73995],[15.43075,43.08152],[15.63066,43.43802],[14.62071,44.3094],[14.29287,44.49332],[13.99641,44.82337],[14.00808,44.80011],[13.88603,44.75271],[13.89153,44.8023],[13.70853,44.9134],[13.70336,44.94822],[13.76862,44.94342],[13.76116,44.98088],[13.60777,45.03763],[13.56139,45.19789],[13.58211,45.24115],[13.48227,45.48675],[13.50899,45.50995],[13.62167,45.43361],[13.8722,45.40671],[14.58984,45.47778],[15.19316,45.40185],[15.3636,45.44264],[15.40276,45.47625],[15.43753,45.70368],[15.53001,45.68943],[15.52357,45.74392],[15.72324,45.8379],[15.76007,46.11836],[15.82492,46.11357],[15.80066,46.18612],[15.903,46.22],[15.88479,46.24679],[16.17091,46.34181],[16.18926,46.3143],[16.30466,46.35117],[16.23649,46.48339],[16.26168,46.5177],[16.3701,46.55838],[16.66846,46.46184]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2017-s-e","name":"dgu.hr: Croatia 2017 South+East Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2017/ows?LAYERS=OI.OrthoImagery&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","polygon":[[[16.30898,45.22981],[16.59808,45.22881],[16.81516,45.18187],[16.93331,45.27307],[16.93264,45.22703],[17.03437,45.21983],[17.16542,45.14694],[17.25141,45.1444],[17.27318,45.18585],[17.3426,45.13809],[17.41754,45.13253],[17.44509,45.15769],[17.48821,45.10589],[17.5495,45.12663],[17.6005,45.10181],[17.66363,45.13094],[17.85061,45.04019],[18.0097,45.14872],[18.03733,45.12196],[18.06597,45.13909],[18.12115,45.07621],[18.19994,45.07562],[18.25755,45.13614],[18.32169,45.09696],[18.41924,45.10518],[18.53161,45.03995],[18.58771,45.08384],[18.66466,45.05817],[18.72679,44.99017],[18.78901,44.99224],[18.79579,44.93987],[18.74471,44.93786],[18.7633,44.8992],[18.85055,44.849],[18.92499,44.8468],[19.02647,44.85137],[18.99675,44.90679],[19.09204,44.9164],[19.09514,44.97513],[19.06357,44.97797],[19.09656,44.99355],[19.09354,45.1395],[19.13491,45.12692],[19.21077,45.1852],[19.24803,45.17269],[19.29316,45.20196],[19.40162,45.19073],[19.40389,45.23548],[19.18113,45.27092],[19.09426,45.33823],[18.97736,45.37577],[19.01538,45.40732],[18.99591,45.48099],[19.05766,45.48369],[19.07831,45.51814],[18.94705,45.53685],[18.90242,45.57188],[18.95593,45.62403],[18.96012,45.68346],[18.92202,45.7023],[18.95919,45.69186],[18.96016,45.73185],[18.85574,45.7726],[18.8835,45.92227],[18.81521,45.91536],[18.79801,45.88151],[18.65729,45.91935],[18.61719,45.84118],[18.55212,45.79695],[18.48413,45.79491],[18.44336,45.74187],[18.36506,45.77628],[18.34028,45.75291],[18.18763,45.79041],[18.08054,45.76834],[17.90763,45.79537],[17.86526,45.77067],[17.83202,45.81131],[17.67025,45.83833],[17.57404,45.93991],[17.39024,45.93723],[17.37936,45.99119],[17.26272,46.01265],[17.29813,46.03422],[17.22194,46.11398],[17.18392,46.11177],[17.16198,46.17292],[16.89119,46.28228],[16.83743,46.37895],[16.74466,46.38981],[16.66846,46.46184],[16.52243,46.48295],[16.35161,46.55198],[16.2364,46.48318],[16.30489,46.3793],[16.30898,45.22981]],[[15.45776,43.0729],[15.45639,43.10499],[16.30096,43.2312],[15.8828,43.53461],[15.86851,43.58153],[15.91202,43.57501],[15.91328,43.60843],[16.12836,43.60933],[16.12499,44.14937],[16.3091,44.14984],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.22801,43.49976],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.7879,42.89439],[17.80648,42.91838],[17.84605,42.90453],[17.90334,42.8331],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.43987,42.48498],[18.50708,42.4355],[18.48158,42.4112],[18.0617,42.63737],[17.06039,42.69152],[16.34491,42.37123],[16.22612,42.3834],[16.39023,42.73995],[15.45776,43.0729]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2018-w","name":"dgu.hr: Croatia 2018 West Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2018/ows?LAYERS=OI.OrthoImagery&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[16.29963,46.3815],[16.30862,45.22967],[16.49996,45.22994],[16.48159,45.15965],[16.39821,45.11157],[16.3583,45.00232],[16.28569,44.9923],[16.17582,45.03205],[16.16192,45.07231],[16.08175,45.10321],[16.00794,45.213],[15.84108,45.21869],[15.77476,45.17354],[15.79516,45.11278],[15.75122,45.06121],[15.79001,44.99352],[15.74281,44.93655],[15.79834,44.84699],[15.73551,44.82288],[15.82615,44.72649],[15.90631,44.74978],[15.9767,44.6772],[16.0397,44.654],[16.0651,44.60538],[16.0294,44.56185],[16.12724,44.51585],[16.14819,44.42716],[16.17977,44.4019],[16.13754,44.38031],[16.22406,44.3489],[16.19797,44.272],[16.30577,44.15084],[16.12495,44.1494],[16.12815,43.60943],[15.52195,43.61231],[14.78331,44.11942],[14.28198,44.49521],[13.88603,44.75271],[13.80363,44.85648],[13.73428,44.88604],[13.70905,44.94646],[13.76862,44.94342],[13.76673,44.96128],[13.64605,45.03605],[13.60777,45.03763],[13.55372,45.31784],[13.52898,45.32753],[13.48331,45.48595],[13.51439,45.51032],[13.67463,45.44773],[13.76432,45.47054],[13.88238,45.429],[13.91371,45.45664],[13.98027,45.45832],[13.95822,45.5071],[14.00195,45.52298],[14.07602,45.48728],[14.20335,45.47325],[14.24884,45.50803],[14.32381,45.47413],[14.48749,45.54141],[14.4953,45.60824],[14.54144,45.62448],[14.56821,45.67686],[14.61164,45.66673],[14.60522,45.62774],[14.69391,45.58134],[14.69169,45.53064],[14.79864,45.50514],[14.82058,45.46316],[14.90782,45.4814],[14.93136,45.53217],[14.98516,45.50063],[15.08738,45.48583],[15.16778,45.42529],[15.22158,45.42864],[15.26912,45.46833],[15.3438,45.45993],[15.37766,45.48781],[15.29879,45.53386],[15.27225,45.6053],[15.34292,45.64903],[15.39836,45.64787],[15.36734,45.68233],[15.34575,45.66692],[15.35424,45.7101],[15.32451,45.67005],[15.23367,45.72238],[15.39851,45.79415],[15.47062,45.79902],[15.46272,45.82041],[15.52513,45.82641],[15.5364,45.85015],[15.55871,45.83936],[15.57316,45.85585],[15.64191,45.82462],[15.69817,45.85137],[15.67547,45.90472],[15.7023,45.92368],[15.69584,45.99749],[15.72545,46.04492],[15.6009,46.1108],[15.59179,46.14731],[15.63844,46.21388],[15.67652,46.22955],[15.76893,46.21269],[15.79102,46.2621],[16.01284,46.3133],[16.07131,46.3449],[16.05625,46.39644],[16.1501,46.40762],[16.19405,46.38224],[16.29963,46.3815]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-dof-2019-s-e","name":"dgu.hr: Croatia 2019 South+East Aerial imagery","type":"wms","template":"https://geoportal.dgu.hr/services/inspire/orthophoto_2019/ows?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=OI.OrthoimageCoverage&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[15.45776,43.0729],[15.45639,43.10499],[16.30096,43.2312],[15.8828,43.53461],[15.86851,43.58153],[15.91202,43.57501],[15.91328,43.60843],[16.12836,43.60933],[16.12499,44.14937],[16.3091,44.14984],[16.37192,44.08445],[16.4303,44.08448],[16.43997,44.03188],[16.50428,44.02631],[16.55289,43.9553],[16.71315,43.85609],[16.7541,43.77221],[16.81478,43.75664],[17.0165,43.5733],[17.15204,43.49746],[17.22801,43.49976],[17.28532,43.46933],[17.25664,43.40208],[17.341,43.25936],[17.42366,43.23203],[17.43346,43.18123],[17.64429,43.09027],[17.71408,42.97496],[17.52028,42.92815],[17.64361,42.88081],[17.68764,42.92563],[17.7879,42.89439],[17.80648,42.91838],[17.84605,42.90453],[17.90334,42.8331],[17.89327,42.81196],[18.10392,42.71713],[18.24679,42.60541],[18.36845,42.61827],[18.43954,42.56497],[18.44102,42.5218],[18.45185,42.51158],[18.43987,42.48498],[18.47697,42.46784],[18.50708,42.4355],[18.53153,42.42054],[18.51637,42.41207],[18.54192,42.39241],[18.53153,42.38761],[18.50468,42.39688],[18.48158,42.4112],[18.0617,42.63737],[17.08737,42.67226],[16.34491,42.37123],[16.22612,42.3834],[16.39023,42.73995],[15.45776,43.0729]],[[16.30898,45.22981],[16.59808,45.22881],[16.81516,45.18187],[16.93331,45.27307],[16.93264,45.22703],[17.03437,45.21983],[17.16542,45.14694],[17.25141,45.1444],[17.27318,45.18585],[17.3426,45.13809],[17.41754,45.13253],[17.44509,45.15769],[17.48821,45.10589],[17.5495,45.12663],[17.6005,45.10181],[17.66363,45.13094],[17.85061,45.04019],[18.0097,45.14872],[18.03733,45.12196],[18.06597,45.13909],[18.12115,45.07621],[18.19994,45.07562],[18.25755,45.13614],[18.32169,45.09696],[18.41924,45.10518],[18.53161,45.03995],[18.58771,45.08384],[18.66466,45.05817],[18.72679,44.99017],[18.78901,44.99224],[18.79579,44.93987],[18.74471,44.93786],[18.7633,44.8992],[18.85055,44.849],[18.92499,44.8468],[18.97993,44.84748],[19.00602,44.85247],[19.00689,44.88592],[18.99693,44.8939],[18.9939,44.90532],[19.00797,44.9159],[19.00959,44.95047],[19.0477,44.94985],[19.06329,45.2552],[19.02345,45.25794],[19.02605,45.32823],[18.98772,45.32907],[18.99097,45.36742],[18.97592,45.37692],[18.97831,45.39236],[18.99119,45.39692],[18.99065,45.40117],[18.95243,45.40186],[18.95416,45.47425],[18.91909,45.47547],[18.92385,45.57164],[18.90263,45.57406],[18.90826,45.59043],[18.92429,45.5971],[18.92602,45.67249],[18.88791,45.67279],[18.89181,45.74567],[18.8524,45.74657],[18.85154,45.81664],[18.81906,45.81905],[18.82057,45.90861],[18.8065,45.90861],[18.79801,45.88151],[18.65729,45.91935],[18.61719,45.84118],[18.55212,45.79695],[18.48413,45.79491],[18.44336,45.74187],[18.36506,45.77628],[18.34028,45.75291],[18.18763,45.79041],[18.08054,45.76834],[17.90763,45.79537],[17.86526,45.77067],[17.83202,45.81131],[17.67025,45.83833],[17.57404,45.93991],[17.39024,45.93723],[17.37936,45.99119],[17.26272,46.01265],[17.29813,46.03422],[17.22194,46.11398],[17.18392,46.11177],[17.16198,46.17292],[16.89119,46.28228],[16.83743,46.37895],[16.74466,46.38981],[16.66846,46.46184],[16.52243,46.48295],[16.35161,46.55198],[16.2364,46.48318],[16.30489,46.3793],[16.30898,45.22981]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-hok","name":"dgu.hr: HOK","type":"wms","template":"https://geoportal.dgu.hr/services/hok/ows?LAYERS=HOK5&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2009-01-01T00:00:00.000Z","startDate":"1954-01-01T00:00:00.000Z","polygon":[[[15.34155,45.63868],[15.34189,45.6658],[15.28409,45.66592],[15.28413,45.69284],[15.22636,45.69305],[15.22662,45.74698],[15.28451,45.74695],[15.2846,45.7739],[15.34236,45.77372],[15.34254,45.80068],[15.45841,45.80029],[15.45879,45.85439],[15.66157,45.85331],[15.66243,45.93435],[15.69152,45.93405],[15.6929,46.04211],[15.6638,46.04223],[15.66414,46.06921],[15.60599,46.06951],[15.60621,46.09654],[15.57707,46.09666],[15.57806,46.17763],[15.63625,46.17733],[15.63702,46.23139],[15.7828,46.23041],[15.78358,46.28441],[15.87117,46.28382],[15.8716,46.3108],[15.95914,46.31006],[15.95979,46.33703],[16.01811,46.33653],[16.01862,46.36357],[16.04789,46.36331],[16.04884,46.41724],[16.19531,46.41579],[16.19471,46.38889],[16.25311,46.38812],[16.25492,46.47124],[16.22578,46.47156],[16.22694,46.5235],[16.3147,46.52252],[16.31551,46.54945],[16.49498,46.54726],[16.49507,46.52025],[16.5285,46.52066],[16.52923,46.49372],[16.61721,46.49476],[16.61798,46.46787],[16.67639,46.46855],[16.67703,46.44152],[16.7063,46.44188],[16.70699,46.41487],[16.76552,46.41549],[16.76617,46.38853],[16.85389,46.38939],[16.85449,46.36248],[16.88367,46.36271],[16.88474,46.30879],[16.91401,46.30911],[16.91452,46.2821],[16.94362,46.28228],[16.94422,46.25534],[16.9734,46.25567],[16.97392,46.2286],[17.06134,46.22946],[17.0619,46.20241],[17.14931,46.20303],[17.14974,46.17606],[17.20798,46.17647],[17.20888,46.12257],[17.23786,46.1227],[17.23824,46.0957],[17.26734,46.09594],[17.2678,46.06891],[17.29669,46.06918],[17.29746,46.01514],[17.38458,46.01562],[17.38501,45.98861],[17.41389,45.98879],[17.41432,45.96183],[17.58847,45.96255],[17.58864,45.93557],[17.61761,45.93566],[17.61786,45.9087],[17.64683,45.90879],[17.647,45.88182],[17.67597,45.88185],[17.67619,45.85487],[17.76296,45.85505],[17.76318,45.82808],[17.85004,45.82823],[17.85012,45.80125],[18.05273,45.80131],[18.05268,45.77432],[18.11053,45.77426],[18.11058,45.80131],[18.25533,45.80104],[18.2552,45.77405],[18.39974,45.7736],[18.39961,45.74662],[18.42871,45.74656],[18.42879,45.77354],[18.45772,45.77333],[18.45793,45.80038],[18.54488,45.80014],[18.54509,45.82698],[18.57415,45.82689],[18.57436,45.85388],[18.60329,45.8537],[18.60354,45.88072],[18.63264,45.8806],[18.63316,45.93459],[18.72019,45.93399],[18.71984,45.90706],[18.80688,45.90643],[18.80726,45.93339],[18.83627,45.93318],[18.8355,45.87925],[18.86438,45.87904],[18.8631,45.79808],[18.89206,45.79793],[18.89172,45.77085],[18.97845,45.7701],[18.97609,45.60815],[18.94674,45.60836],[18.94635,45.58143],[19.06167,45.58044],[19.06145,45.55343],[19.08986,45.55325],[19.08952,45.52622],[19.1181,45.52595],[19.11716,45.47187],[19.00223,45.47295],[19.00167,45.44598],[19.05918,45.44556],[19.05823,45.39143],[19.00055,45.39197],[19.00014,45.36502],[19.08625,45.36421],[19.08573,45.33727],[19.11448,45.3371],[19.11397,45.31],[19.14267,45.30979],[19.14207,45.28274],[19.28549,45.28127],[19.28489,45.25415],[19.4568,45.25211],[19.45472,45.17123],[19.16856,45.17445],[19.16817,45.14748],[19.13939,45.14775],[19.13879,45.12072],[19.08165,45.12126],[19.08114,45.09439],[19.10975,45.09406],[19.10873,45.04013],[19.08016,45.04028],[19.07909,44.98637],[19.13611,44.98592],[19.13517,44.93186],[19.10656,44.9321],[19.10609,44.90514],[18.99209,44.90614],[18.99124,44.85213],[18.79191,44.85367],[18.79234,44.8808],[18.73541,44.88107],[18.73651,44.96209],[18.76496,44.96185],[18.76538,44.98887],[18.70828,44.98926],[18.70866,45.0163],[18.68009,45.01642],[18.6803,45.04344],[18.42323,45.04465],[18.42374,45.09866],[18.2236,45.09923],[18.22349,45.07223],[18.08061,45.07241],[18.08057,45.09944],[18.02342,45.09938],[18.02346,45.12646],[17.99489,45.12649],[17.99502,45.0995],[17.9377,45.09947],[17.93774,45.04546],[17.88064,45.04546],[17.88077,45.01844],[17.82362,45.01831],[17.82354,45.04528],[17.76635,45.04519],[17.76626,45.0722],[17.70911,45.07196],[17.70894,45.09908],[17.42317,45.09794],[17.42287,45.12498],[17.30845,45.12429],[17.3082,45.1513],[17.27945,45.15115],[17.27988,45.1242],[17.16546,45.12342],[17.16503,45.15034],[17.10789,45.14992],[17.10755,45.17694],[17.05014,45.17634],[17.04972,45.20347],[16.93521,45.20239],[16.93428,45.25649],[16.90553,45.25619],[16.9066,45.20233],[16.84932,45.20161],[16.84996,45.17466],[16.67818,45.1727],[16.6775,45.19975],[16.49516,45.19753],[16.49495,45.17051],[16.48371,45.17063],[16.48239,45.11675],[16.42516,45.11744],[16.42384,45.06345],[16.39526,45.06375],[16.39462,45.03685],[16.36605,45.03715],[16.36473,44.98321],[16.25065,44.98453],[16.2512,45.01145],[16.16557,45.01229],[16.16668,45.06634],[16.10953,45.06691],[16.11017,45.0925],[16.10689,45.094],[16.08143,45.09424],[16.08202,45.12129],[16.05341,45.12147],[16.05405,45.14847],[16.02539,45.1488],[16.02581,45.17571],[15.99724,45.17598],[15.99775,45.20305],[15.79723,45.20455],[15.79531,45.06961],[15.76665,45.06979],[15.7664,45.04278],[15.79489,45.04263],[15.79382,44.96167],[15.76529,44.9618],[15.76423,44.88077],[15.79271,44.88062],[15.79199,44.82667],[15.76355,44.82685],[15.7632,44.79982],[15.79156,44.79967],[15.79088,44.74562],[15.87618,44.74498],[15.87656,44.77185],[15.9049,44.77176],[15.90449,44.74477],[15.93273,44.74465],[15.93243,44.71754],[15.98923,44.71706],[15.98885,44.69012],[16.01713,44.68985],[16.01679,44.66278],[16.0451,44.6626],[16.04459,44.6356],[16.07287,44.6353],[16.07197,44.5814],[16.01525,44.58182],[16.01483,44.55486],[16.12797,44.55379],[16.12712,44.49979],[16.15522,44.49954],[16.15429,44.44558],[16.1826,44.44527],[16.1815,44.39122],[16.20964,44.39101],[16.20905,44.36395],[16.23741,44.36368],[16.23673,44.33664],[16.20858,44.33691],[16.207,44.25603],[16.2349,44.25572],[16.23396,44.20168],[16.29013,44.20104],[16.2897,44.17414],[16.31772,44.17379],[16.31663,44.11979],[16.37272,44.11914],[16.37225,44.09218],[16.45636,44.09113],[16.4552,44.0371],[16.5352,44.0371],[16.53597,44.0101],[16.56391,44.01041],[16.56528,43.95653],[16.62128,43.95714],[16.6218,43.93011],[16.62798,43.93014],[16.62875,43.90327],[16.67858,43.90383],[16.67918,43.87683],[16.7351,43.87739],[16.73686,43.79647],[16.76479,43.79672],[16.76535,43.76982],[16.82123,43.77041],[16.82174,43.74335],[16.84959,43.74366],[16.85019,43.71671],[16.90603,43.71718],[16.90646,43.69013],[16.93431,43.69047],[16.93508,43.66353],[16.96272,43.66368],[16.96323,43.63673],[16.99104,43.63698],[16.99169,43.60998],[17.01932,43.61026],[17.01993,43.58328],[17.04773,43.58347],[17.04829,43.55648],[17.10378,43.55688],[17.10421,43.52991],[17.15987,43.53038],[17.1603,43.50337],[17.27149,43.50415],[17.27192,43.47709],[17.29969,43.47728],[17.30055,43.39625],[17.27283,43.39607],[17.27325,43.36912],[17.30093,43.36928],[17.30149,43.31522],[17.3293,43.31544],[17.32995,43.28845],[17.35728,43.28855],[17.35758,43.26158],[17.44067,43.26202],[17.44148,43.18102],[17.4968,43.18121],[17.49706,43.15426],[17.58006,43.15454],[17.58023,43.12755],[17.60782,43.12758],[17.60808,43.1007],[17.66331,43.10079],[17.66361,43.04688],[17.69116,43.04688],[17.69142,43.01974],[17.71897,43.01993],[17.71927,42.93889],[17.77442,42.93902],[17.77459,42.91203],[17.80223,42.91215],[17.80197,42.93911],[17.82952,42.93918],[17.82969,42.91221],[17.88476,42.91221],[17.88488,42.85819],[17.91248,42.85826],[17.91248,42.8312],[17.93999,42.83116],[17.9399,42.80422],[17.995,42.80428],[17.995,42.77726],[18.05002,42.77716],[18.05002,42.75023],[18.105,42.75023],[18.105,42.72318],[18.13229,42.72309],[18.13233,42.69616],[18.1598,42.69619],[18.15976,42.66906],[18.21456,42.66899],[18.21443,42.64201],[18.24203,42.64191],[18.2419,42.61495],[18.26928,42.61489],[18.26941,42.64185],[18.37913,42.64156],[18.37897,42.61457],[18.40648,42.61444],[18.40635,42.58753],[18.46111,42.58718],[18.46025,42.47925],[18.48763,42.47909],[18.48746,42.45215],[18.54218,42.45187],[18.54149,42.37078],[18.51411,42.37097],[18.51424,42.39792],[16.48009,42.74046],[15.71251,42.99134],[13.71386,44.87631],[13.59592,45.03763],[13.56502,45.11763],[13.56067,45.30623],[13.53207,45.30586],[13.52983,45.38682],[13.50211,45.38736],[13.49885,45.46741],[13.47018,45.46705],[13.46956,45.49407],[13.49675,45.49442],[13.49658,45.49889],[13.49816,45.49892],[13.49761,45.52141],[13.55507,45.52207],[13.5558,45.49522],[13.61331,45.49597],[13.61403,45.46895],[13.84428,45.47145],[13.84488,45.44442],[13.90234,45.44505],[13.90182,45.47205],[13.98808,45.47289],[13.98757,45.49985],[14.10275,45.50081],[14.10305,45.47379],[14.33334,45.47533],[14.33308,45.50232],[14.39059,45.50268],[14.39042,45.52959],[14.44797,45.52995],[14.44771,45.55697],[14.47642,45.55712],[14.47625,45.58419],[14.50504,45.58422],[14.50487,45.61128],[14.53375,45.61137],[14.53354,45.63832],[14.56229,45.63844],[14.56186,45.69242],[14.59074,45.69257],[14.59109,45.66553],[14.61984,45.66568],[14.62014,45.63868],[14.64885,45.63871],[14.6492,45.61173],[14.70683,45.61194],[14.70713,45.5579],[14.7358,45.55793],[14.73601,45.531],[14.79378,45.53112],[14.79382,45.50415],[14.82236,45.50421],[14.82262,45.47717],[14.88004,45.47735],[14.88008,45.5043],[15.11036,45.50421],[15.11028,45.47735],[15.1392,45.4772],[15.13899,45.45029],[15.22533,45.45011],[15.22593,45.47704],[15.34056,45.47674],[15.34073,45.50379],[15.28314,45.50394],[15.28391,45.63895],[15.34155,45.63868]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-topo-25","name":"dgu.hr: Topo 25","type":"wms","template":"https://geoportal.dgu.hr/services/tk/ows?LAYERS=tk:TK25&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"1996-01-01T00:00:00.000Z","polygon":[[[16.245,46.6248],[16.49546,46.62492],[16.49503,46.50016],[16.87019,46.49981],[16.86968,46.375],[16.99482,46.375],[16.99448,46.25003],[17.24459,46.25015],[17.24476,46.12501],[17.3699,46.12489],[17.37007,46.00018],[17.74498,45.99994],[17.74481,45.87483],[18.61994,45.87507],[18.61959,46.00018],[18.99485,45.99982],[18.99485,45.62499],[19.1199,45.62496],[19.11982,45.37476],[19.36984,45.37494],[19.3701,45.25012],[19.49507,45.25],[19.49524,45.12502],[19.12016,45.12466],[19.11982,44.99989],[19.24444,45.00013],[19.24496,44.87509],[19.11982,44.87485],[19.11982,44.75015],[18.74474,44.74978],[18.74508,44.9903],[18.72568,44.9903],[18.72568,44.99977],[17.37007,44.99965],[17.37024,45.12514],[16.49528,45.1249],[16.49546,45.00001],[16.31693,45.00013],[16.31676,44.99491],[16.28483,44.99491],[16.28534,44.99977],[15.99524,45.00013],[15.99506,45.12514],[15.87009,45.12502],[15.87044,44.75015],[16.1202,44.75015],[16.11986,44.51671],[16.1257,44.51646],[16.12553,44.50006],[16.245,44.49993],[16.24517,44.25012],[16.37014,44.25012],[16.3698,44.12506],[16.62043,44.1253],[16.62077,44.00035],[16.74488,43.99998],[16.7454,43.87587],[16.87054,43.87538],[16.87019,43.75039],[16.99482,43.75002],[16.99533,43.62551],[17.24493,43.62489],[17.24527,43.50013],[17.36973,43.50001],[17.37024,43.24995],[17.61967,43.25008],[17.62018,43.12517],[17.74498,43.12529],[17.74498,43.00038],[17.87012,43.00025],[17.86995,42.87546],[18.11989,42.87559],[18.12006,42.75016],[18.24503,42.75016],[18.2452,42.62512],[18.49462,42.62537],[18.49514,42.50058],[18.61994,42.50033],[18.62011,42.37491],[18.37017,42.37529],[18.37017,42.48919],[18.34528,42.48931],[18.34528,42.50045],[18.12023,42.50007],[18.12006,42.61817],[18.11079,42.6183],[18.11062,42.62512],[17.49487,42.62487],[17.49453,42.73831],[17.43324,42.73806],[17.43324,42.74991],[17.2451,42.75016],[17.2451,42.87521],[16.99516,42.87508],[16.99516,42.83368],[17.17043,42.83343],[17.17026,42.75016],[16.95345,42.75016],[16.95345,42.66716],[16.77887,42.66716],[16.77835,42.75016],[16.72832,42.7502],[16.72829,42.74769],[16.70636,42.74775],[16.70628,42.75026],[16.62008,42.75029],[16.62008,42.97947],[16.60605,42.9795],[16.60601,42.99109],[16.62013,42.99137],[16.61991,43.12523],[16.36989,43.12504],[16.36989,43.00006],[16.12003,43.00038],[16.12038,42.95831],[16.01266,42.95824],[16.0124,42.9502],[15.99515,42.95008],[15.99524,43.08356],[16.1202,43.08356],[16.1202,43.12529],[16.24552,43.12492],[16.24466,43.37486],[15.99524,43.37511],[15.99524,43.48902],[15.99309,43.48911],[15.99313,43.49558],[15.99524,43.49558],[15.99524,43.49848],[15.9827,43.49854],[15.98266,43.49042],[15.95648,43.49032],[15.95657,43.50007],[15.87018,43.50007],[15.87018,43.62508],[15.74555,43.62483],[15.74547,43.61949],[15.62011,43.61936],[15.62024,43.62085],[15.49544,43.62085],[15.49527,43.62508],[15.3703,43.62502],[15.37028,43.74428],[15.35541,43.74433],[15.35537,43.74996],[15.12019,43.74996],[15.12011,43.87507],[14.99539,43.87507],[14.99522,44.00004],[14.87051,44.00004],[14.87025,44.12487],[14.7452,44.12493],[14.74545,44.24557],[14.7331,44.24557],[14.73292,44.24999],[14.49543,44.24993],[14.49552,44.4913],[14.48419,44.49987],[14.31004,44.49987],[14.31004,44.49706],[14.29871,44.49709],[14.29871,44.49999],[14.24549,44.50006],[14.24515,44.61552],[14.22884,44.61577],[14.22884,44.62493],[14.12035,44.62444],[14.12052,44.7499],[14.24532,44.75003],[14.24515,44.87497],[14.00448,44.87497],[14.00499,44.7995],[13.99555,44.79938],[13.99538,44.75015],[13.74544,44.74978],[13.74561,44.87497],[13.62064,44.87509],[13.62039,45.04157],[13.60382,45.04139],[13.60391,45.12478],[13.4955,45.12478],[13.49567,45.46519],[13.48675,45.46519],[13.4864,45.49648],[13.49533,45.49648],[13.49516,45.50683],[13.53807,45.50719],[13.53807,45.49997],[13.87041,45.49985],[13.87058,45.62472],[14.11983,45.62472],[14.12052,45.49997],[14.20618,45.50033],[14.20618,45.5096],[14.27708,45.50996],[14.27725,45.50021],[14.36995,45.50009],[14.37012,45.62484],[14.49526,45.62472],[14.4956,45.7498],[14.62023,45.74992],[14.6204,45.62496],[14.99514,45.62484],[14.99548,45.50009],[15.24508,45.49997],[15.24525,45.71649],[15.23701,45.71661],[15.23701,45.72524],[15.24542,45.72524],[15.24559,45.87483],[15.61998,45.87507],[15.61981,45.9997],[15.49519,45.99947],[15.49484,46.25003],[15.74512,46.24979],[15.7453,46.37489],[15.99472,46.37512],[15.99472,46.49993],[16.24517,46.49981],[16.245,46.6248]],[[15.68264,42.95868],[15.80795,42.95818],[15.80761,43.08318],[15.68264,43.08368],[15.68264,42.95868]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"dgu-topo-25-new","name":"dgu.hr: Topo 25 new","type":"wms","template":"https://geoportal.dgu.hr/services/tk/ows?LAYERS=tk:TK25_NOVI&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[16.49987,42.70991],[17.04993,42.70902],[17.04963,42.7443],[17.17218,42.74374],[17.17218,42.77966],[17.04993,42.78022],[17.05023,42.79823],[17.00138,42.79873],[17.00138,42.82574],[16.96479,42.82585],[16.96456,42.79895],[16.49941,42.79968],[16.49987,42.7711],[16.4826,42.7711],[16.4826,42.74363],[16.50002,42.74363],[16.49987,42.70991]],[[13.42719,45.54859],[13.61807,45.55389],[13.62292,45.46386],[13.76198,45.4671],[13.76191,45.46936],[13.77081,45.46955],[13.77088,45.46742],[14.58109,45.48389],[14.58723,45.30405],[14.77841,45.30701],[14.78114,45.21712],[14.97186,45.21981],[14.97694,45.03983],[14.78659,45.03716],[14.78924,44.94727],[14.5992,44.94406],[14.6051,44.76444],[14.2263,44.75745],[14.21941,44.93719],[14.05163,44.93381],[14.05277,44.91124],[14.03103,44.91065],[14.03717,44.75352],[13.8478,44.74922],[13.845,44.81933],[13.82273,44.8189],[13.82175,44.83856],[13.65443,44.83453],[13.64534,45.01441],[13.45529,45.00943],[13.42719,45.54859]],[[15.44375,43.10094],[15.48034,43.10133],[15.48064,43.08341],[15.44383,43.08352],[15.44375,43.10094]],[[15.72242,46.21722],[15.91671,46.21827],[15.91962,45.94844],[15.7261,45.94721],[15.72242,46.21722]],[[15.57866,43.0662],[15.58047,42.97671],[15.76423,42.97704],[15.76438,42.99522],[15.81316,42.99588],[15.81347,43.01328],[15.7715,43.0135],[15.77181,43.04041],[15.76363,43.04041],[15.76393,43.06764],[15.57866,43.0662]],[[16.3049,46.48965],[16.49957,46.48986],[16.49972,46.39978],[16.30505,46.39967],[16.3049,46.48965]],[[15.53442,45.85567],[16.30679,45.85976],[16.30619,46.03979],[16.50032,46.04037],[16.49998,46.12978],[16.69404,46.12965],[16.6944,46.21962],[16.88874,46.21911],[16.88837,46.12915],[17.27626,46.12721],[17.27514,46.03719],[17.0814,46.0383],[17.08045,45.94841],[17.27391,45.94717],[17.27268,45.85726],[17.46569,45.8558],[17.46429,45.76578],[17.84972,45.762],[17.84549,45.58197],[18.03768,45.57957],[18.04509,45.8494],[18.61388,45.84029],[18.61457,45.85834],[18.62487,45.85816],[18.6276,45.92998],[19.01399,45.9222],[18.99776,45.56262],[19.1899,45.55823],[19.17731,45.28839],[19.55905,45.27899],[19.54953,45.09925],[19.16873,45.10881],[19.15621,44.8391],[18.58784,44.85076],[18.59384,45.03073],[18.21341,45.03721],[17.4521,45.04599],[17.45339,45.12428],[17.44581,45.12431],[17.44577,45.13107],[17.45339,45.13107],[17.45346,45.13599],[17.42309,45.13617],[17.42309,45.13131],[17.35944,45.13181],[17.35954,45.13676],[16.49994,45.13997],[16.50032,44.96003],[16.11978,44.95936],[16.11914,45.04937],[15.92881,45.04857],[15.92777,45.1387],[15.7374,45.13737],[15.7395,44.95747],[15.74304,44.68753],[15.93235,44.68862],[15.93144,44.7785],[16.12088,44.77934],[16.1258,44.50938],[16.31126,44.50983],[16.3125,44.14984],[16.49991,44.14998],[16.50002,44.06],[16.68726,44.05983],[16.68669,43.87982],[16.87325,43.87936],[16.87221,43.70925],[16.87842,43.70922],[16.87837,43.69932],[17.05822,43.6986],[17.05747,43.6086],[17.24319,43.6075],[17.24217,43.51755],[17.42761,43.51622],[17.4236,43.24615],[17.60821,43.24448],[17.60668,43.15452],[17.791,43.15255],[17.78723,42.97258],[17.9711,42.97037],[17.96681,42.79042],[18.15005,42.78789],[18.14778,42.69789],[18.3307,42.6951],[18.32853,42.62021],[18.37964,42.61937],[18.37926,42.60432],[18.51071,42.60206],[18.50551,42.43715],[18.55404,42.43625],[18.55355,42.42127],[18.68705,42.41881],[18.68394,42.32883],[18.50215,42.33212],[18.50454,42.40708],[18.48025,42.40746],[18.48072,42.42256],[18.32286,42.42516],[18.32527,42.5084],[18.31006,42.50865],[18.31025,42.51538],[18.14308,42.51789],[18.14539,42.60794],[17.59706,42.61447],[17.59861,42.70448],[17.23248,42.7074],[17.23346,42.79734],[17.33863,42.79667],[17.33875,42.80837],[17.40722,42.80784],[17.40714,42.7962],[17.41691,42.79617],[17.41813,42.88612],[16.50006,42.88987],[16.49994,43.06991],[16.31585,43.06971],[16.31611,42.97987],[16.13228,42.9792],[16.13273,42.88914],[15.94913,42.88859],[15.94746,43.07965],[16.13152,43.08075],[16.13114,43.15921],[16.31573,43.15987],[16.31543,43.16694],[16.30505,43.167],[16.30498,43.17777],[16.31558,43.17788],[16.31497,43.33975],[16.13008,43.33926],[16.12955,43.41313],[16.11724,43.41305],[16.11717,43.42569],[16.10607,43.42567],[16.106,43.42923],[15.9442,43.42857],[15.94344,43.5087],[15.91625,43.50859],[15.91618,43.51839],[15.75789,43.51755],[15.75673,43.60747],[15.3852,43.6044],[15.38335,43.69456],[15.19751,43.69259],[15.19372,43.8618],[15.17509,43.86158],[15.17463,43.87207],[15.00701,43.87026],[15.00481,43.96046],[15.37823,43.9646],[15.37687,44.05438],[15.18963,44.05242],[15.18357,44.32247],[14.99572,44.32011],[14.98633,44.67999],[15.17548,44.68236],[15.16299,45.22216],[15.35396,45.22424],[15.35218,45.31423],[15.5434,45.31596],[15.53442,45.85567]],[[16.23264,42.36768],[16.35459,42.36858],[16.35413,42.4036],[16.23218,42.40349],[16.23264,42.36768]]],"terms_url":"https://dgu.gov.hr/","terms_text":"Sadrži podatke Državne geodetske uprave","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/dgu.png"},{"id":"LV_TERRAIN_LIDAR_LGIA","name":"Digital terrain model (2013–2019), LĢIA, Latvia","type":"wms","template":"https://lvmgeoserver.lvm.lv/geoserver/ows?width={width}&height={height}&bbox={bbox}&format=image/vnd.jpeg-png8&request=GetMap&service=WMS&styles=&transparent=true&version=1.3.0&crs={proj}&layers=public:ZemeLKS","projection":"EPSG:3857","polygon":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"terms_text":"LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry).","description":"The data were obtained by aerial laser scanning method. LIDAR point cloud with resolution of 1 m has been used for the development of this service and for better visualization relief shading has been used. The total density of points obtained shall be not less than 4 p/m² and the mean density of points characterizing the surface shall be not less than 1.5 p/m². WMS service is freely provided by LVM (Latvian State Forestry, https://lvmgeo.lv/en/data/services/digital-terrain-model)."},{"id":"drone-imagery-2016","name":"Drone Imagery Matthew(Haiti) October 2016","type":"tms","template":"https://imagery.openstreetmap.fr/tms/1.0.0/haiti_uav_201610/{zoom}/{x}/{y}","endDate":"2016-10-01T00:00:00.000Z","startDate":"2016-10-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[-74.11291,18.64948],[-74.10903,18.64598],[-74.10873,18.64446],[-74.1095,18.64452],[-74.1095,18.64181],[-74.10968,18.64187],[-74.11053,18.64103],[-74.10988,18.64034],[-74.11005,18.64014],[-74.11005,18.64009],[-74.11011,18.64002],[-74.10949,18.63959],[-74.1095,18.63924],[-74.10904,18.63926],[-74.10894,18.63917],[-74.10905,18.63912],[-74.10898,18.63899],[-74.10782,18.63839],[-74.10823,18.63775],[-74.10812,18.63764],[-74.10786,18.63774],[-74.10768,18.63733],[-74.10748,18.63719],[-74.10722,18.63559],[-74.10901,18.63394],[-74.11678,18.62847],[-74.11952,18.62815],[-74.12251,18.63132],[-74.12731,18.63703],[-74.12684,18.6374],[-74.12731,18.63771],[-74.12768,18.63756],[-74.13403,18.64671],[-74.13401,18.64897],[-74.13087,18.65167],[-74.13076,18.65153],[-74.13053,18.65179],[-74.13054,18.65195],[-74.12878,18.65342],[-74.1274,18.65412],[-74.12514,18.65497],[-74.11997,18.65432],[-74.11938,18.65429],[-74.11291,18.64948]],[[-74.11305,18.4922],[-74.10884,18.49216],[-74.10118,18.49095],[-74.10105,18.49057],[-74.10131,18.4902],[-74.10101,18.48996],[-74.10142,18.48933],[-74.10099,18.48931],[-74.1009,18.48886],[-74.10166,18.48725],[-74.10108,18.48713],[-74.10133,18.48664],[-74.10058,18.48654],[-74.10048,18.48552],[-74.10062,18.4849],[-74.10037,18.48478],[-74.10012,18.4827],[-74.09994,18.48123],[-74.10033,18.48114],[-74.10242,18.48116],[-74.10492,18.48149],[-74.10771,18.48189],[-74.1099,18.48226],[-74.10987,18.48243],[-74.10992,18.48246],[-74.11018,18.48232],[-74.11196,18.48261],[-74.11247,18.48278],[-74.11316,18.48382],[-74.1134,18.48521],[-74.11349,18.48709],[-74.11338,18.48704],[-74.11336,18.48717],[-74.11349,18.48727],[-74.11355,18.48931],[-74.11349,18.48949],[-74.1135,18.48951],[-74.11349,18.48952],[-74.11347,18.48951],[-74.11334,18.48957],[-74.11336,18.48962],[-74.11341,18.48958],[-74.11344,18.48959],[-74.11349,18.48956],[-74.11352,18.48957],[-74.11355,18.48956],[-74.11357,18.48998],[-74.11359,18.49067],[-74.11354,18.49108],[-74.11322,18.492],[-74.11305,18.4922]],[[-74.10198,18.24954],[-74.09767,18.24744],[-74.09419,18.2474],[-74.09338,18.24885],[-74.09638,18.25292],[-74.09934,18.25335],[-74.10198,18.24954]],[[-74.02901,18.59744],[-74.02881,18.60255],[-74.00847,18.60182],[-74.00867,18.59671],[-74.02901,18.59744]],[[-73.91991,18.07466],[-73.91468,18.07482],[-73.91535,18.07742],[-73.91478,18.08009],[-73.91997,18.08014],[-73.91924,18.07802],[-73.91999,18.07637],[-73.91991,18.07466]],[[-74.22365,18.3081],[-74.22061,18.30272],[-74.21902,18.30278],[-74.21592,18.30364],[-74.21615,18.30804],[-74.22365,18.3081]],[[-74.00508,18.17646],[-74.00072,18.17657],[-74.00186,18.18175],[-74.00269,18.18344],[-74.00653,18.18336],[-74.00715,18.18218],[-74.00649,18.18056],[-74.0052,18.17922],[-74.00508,18.17646]],[[-74.0653,18.22881],[-74.06361,18.2268],[-74.06114,18.22672],[-74.05968,18.22853],[-74.06281,18.23083],[-74.06446,18.23034],[-74.0653,18.22881]],[[-74.11371,18.47184],[-74.11002,18.47177],[-74.10959,18.47536],[-74.11341,18.47497],[-74.11371,18.47184]],[[-73.95852,18.47452],[-73.95446,18.47465],[-73.95548,18.4794],[-73.95965,18.47878],[-73.95852,18.47452]],[[-74.16719,18.27229],[-74.16196,18.27232],[-74.16175,18.27303],[-74.16255,18.27452],[-74.16372,18.27542],[-74.16341,18.27749],[-74.16404,18.27854],[-74.16756,18.27868],[-74.16742,18.27592],[-74.16775,18.27416],[-74.16719,18.27229]],[[-74.11091,18.45286],[-74.10701,18.45258],[-74.10684,18.4586],[-74.11102,18.45781],[-74.11091,18.45286]],[[-73.76854,18.18022],[-73.75773,18.18006],[-73.73559,18.19311],[-73.73567,18.20143],[-73.74563,18.20191],[-73.74468,18.22311],[-73.77121,18.22417],[-73.77129,18.20844],[-73.76915,18.2064],[-73.76854,18.18022]],[[-74.13455,18.60914],[-74.1388,18.60929],[-74.13871,18.61165],[-74.13447,18.6115],[-74.13455,18.60914]],[[-74.04228,18.20945],[-74.042,18.20484],[-74.04155,18.20239],[-74.03959,18.20051],[-74.03836,18.20028],[-74.03764,18.20242],[-74.03792,18.20562],[-74.03918,18.20932],[-74.04228,18.20945]],[[-74.08668,18.61121],[-74.08669,18.61217],[-74.09146,18.61689],[-74.09211,18.61603],[-74.09313,18.61699],[-74.09603,18.62025],[-74.09627,18.6206],[-74.0967,18.62202],[-74.09337,18.62651],[-74.09237,18.62754],[-74.08862,18.62596],[-74.08863,18.62561],[-74.08778,18.62561],[-74.08661,18.6251],[-74.08662,18.62368],[-74.08514,18.62367],[-74.08462,18.62289],[-74.08463,18.62175],[-74.08339,18.62174],[-74.08261,18.62057],[-74.08262,18.61982],[-74.07659,18.6198],[-74.07658,18.61596],[-74.07255,18.61591],[-74.07259,18.61403],[-74.07062,18.61402],[-74.06858,18.6129],[-74.06855,18.61208],[-74.06614,18.61207],[-74.06414,18.61206],[-74.0625,18.61105],[-74.06254,18.61011],[-74.05927,18.61013],[-74.0545,18.60876],[-74.05451,18.60817],[-74.05168,18.60816],[-74.04932,18.60776],[-74.04647,18.60664],[-74.04646,18.6062],[-74.04243,18.6062],[-74.04133,18.60592],[-74.03625,18.60378],[-74.03597,18.60345],[-74.03642,18.60252],[-74.03719,18.6019],[-74.04003,18.60217],[-74.05608,18.60473],[-74.05851,18.6054],[-74.05861,18.60623],[-74.0611,18.60627],[-74.06481,18.60745],[-74.06518,18.60686],[-74.06679,18.60802],[-74.0696,18.60885],[-74.07142,18.60711],[-74.07239,18.60736],[-74.07515,18.61024],[-74.07701,18.61019],[-74.07798,18.61096],[-74.07901,18.61013],[-74.08109,18.61234],[-74.08234,18.60896],[-74.08383,18.60922],[-74.08513,18.60977],[-74.08668,18.61121]],[[-74.45922,18.4663],[-74.45589,18.46471],[-74.44779,18.47],[-74.44693,18.4713],[-74.44726,18.47934],[-74.44554,18.47915],[-74.44515,18.48326],[-74.43968,18.4839],[-74.439,18.48762],[-74.44299,18.49004],[-74.44906,18.49104],[-74.45382,18.49311],[-74.45571,18.49635],[-74.45786,18.49725],[-74.46052,18.49523],[-74.46241,18.49143],[-74.46198,18.48799],[-74.45537,18.48597],[-74.45526,18.47111],[-74.45944,18.46871],[-74.45922,18.4663]],[[-74.41888,18.57551],[-74.41499,18.57331],[-74.41045,18.57648],[-74.40824,18.58233],[-74.40954,18.58894],[-74.4112,18.59195],[-74.41081,18.59689],[-74.41663,18.60063],[-74.42178,18.59671],[-74.42146,18.59416],[-74.41745,18.59419],[-74.41753,18.59067],[-74.41538,18.59002],[-74.41533,18.58382],[-74.41652,18.58382],[-74.41756,18.5814],[-74.41756,18.57967],[-74.41924,18.57754],[-74.41888,18.57551]]]},{"id":"Erlangen-2016","name":"Erlangen Luftbild (2016 5,0 cm)","type":"tms","template":"https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2016/{zoom}/{x}/{y}.jpg","endDate":"2016-03-18T00:00:00.000Z","startDate":"2016-03-18T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[10.97664,49.53765],[10.99101,49.53392],[10.99389,49.53835],[11.02784,49.53254],[11.0346,49.53462],[11.03407,49.53759],[11.04318,49.54321],[11.03557,49.55303],[11.0384,49.55842],[11.03508,49.56929],[11.03791,49.58659],[11.04797,49.5902],[11.04922,49.5937],[11.05749,49.59521],[11.05623,49.59905],[11.05127,49.6003],[11.05351,49.60904],[11.04309,49.61381],[11.04076,49.61823],[11.0285,49.61735],[11.01929,49.61896],[11.0152,49.61372],[11.00581,49.61448],[11.00639,49.61931],[11.00083,49.6221],[10.9856,49.61651],[10.97837,49.61753],[10.9737,49.62495],[10.96539,49.62557],[10.96063,49.62856],[10.96382,49.63176],[10.95474,49.6379],[10.94837,49.637],[10.94185,49.64377],[10.9273,49.64837],[10.92063,49.63963],[10.91136,49.63773],[10.92429,49.60505],[10.92205,49.58004],[10.91221,49.57008],[10.91441,49.5618],[10.92353,49.55842],[10.92712,49.55976],[10.93345,49.55892],[10.93071,49.54467],[10.93067,49.53225],[10.9406,49.53325],[10.95488,49.53021],[10.97199,49.53126],[10.97664,49.53765]]],"terms_text":"© Stadt Erlangen | © GEOCART GmbH"},{"id":"Erlangen-2018","name":"Erlangen Luftbild (2018 5,0 cm)","type":"tms","template":"https://osm.rrze.fau.de/protected/YgktSWTTo6HS9nKi/lbe2018/{zoom}/{x}/{y}.jpg","endDate":"2018-04-09T00:00:00.000Z","startDate":"2018-04-09T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[10.85157,49.55172],[10.93037,49.55272],[10.9326,49.55818],[10.91627,49.55882],[10.91144,49.56652],[10.92281,49.60584],[10.9108,49.63751],[10.92775,49.64838],[10.94444,49.64321],[10.96487,49.63317],[10.96384,49.62711],[10.9745,49.62483],[10.9786,49.61794],[10.98478,49.61694],[10.998,49.62228],[11.00813,49.62194],[11.0071,49.61449],[11.01448,49.61394],[11.02081,49.62292],[11.05757,49.63993],[11.08136,49.62614],[11.08312,49.62034],[11.10419,49.61524],[11.11767,49.61449],[11.11997,49.60377],[11.13132,49.60348],[11.1272,49.58815],[11.10271,49.58378],[11.08898,49.59124],[11.07988,49.60837],[11.05808,49.60971],[11.06049,49.59803],[11.06512,49.59614],[11.0689,49.58879],[11.06031,49.58556],[11.04469,49.58913],[11.03851,49.58556],[11.03577,49.57276],[11.03937,49.55785],[11.04272,49.5432],[11.03465,49.5324],[10.97531,49.53467],[10.97158,49.53084],[10.94279,49.52986],[10.94273,49.50582],[10.92163,49.50566],[10.91245,49.51829],[10.88818,49.52834],[10.87518,49.51725],[10.84872,49.52291],[10.84652,49.52797],[10.84637,49.53223],[10.85157,49.55172]]],"terms_text":"© Stadt Erlangen | © Hansa Luftbild AG","best":true},{"id":"EsriWorldImagery","name":"Esri World Imagery","type":"tms","template":"https://{switch:services,server}.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[0,22],"terms_url":"https://wiki.openstreetmap.org/wiki/Esri","terms_text":"Terms & Feedback","default":true,"description":"Esri world imagery.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png"},{"id":"EsriWorldImageryClarity","name":"Esri World Imagery (Clarity) Beta","type":"tms","template":"https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[0,22],"terms_url":"https://wiki.openstreetmap.org/wiki/Esri","terms_text":"Terms & Feedback","default":true,"description":"Esri archive imagery that may be clearer and more accurate than the default layer.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/EsriImageryClarity.png"},{"id":"maaamet.ee-pohi_vr2","name":"Estonia Basemap (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?LAYERS=pohi_vr2&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti põhikaart"},{"id":"Maaamet-Estonia_Cadastre","name":"Estonia Cadastre (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?LAYERS=of10000,TOPOYKSUS_6569,TOPOYKSUS_6573&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti katastrikaart ortofoto alusel"},{"id":"maaamet.ee-cir_ngr","name":"Estonia Forestry (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?LAYERS=cir_ngr&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti metsanduslik ortofoto"},{"id":"maaamet.ee-reljeef","name":"Estonia Hillshading (Maaamet)","type":"wms","template":"https://kaart.maaamet.ee/wms/alus-geo?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=reljeef&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti reljeefikaart"},{"id":"maaamet.ee-orto","name":"Estonia Ortho (Maaamet)","type":"tms","template":"https://tiles.maaamet.ee/tm/tms/1.0.0/foto@GMC/{zoom}/{x}/{-y}.png","zoomExtent":[6,18],"polygon":[[[22.35364,58.85385],[22.09411,58.85038],[22.09179,58.8951],[22.00503,58.89371],[21.99979,58.98374],[22.34754,58.98845],[22.34535,59.03337],[22.51935,59.03538],[22.51556,59.1251],[22.69017,59.12686],[22.69212,59.08218],[22.77912,59.083],[22.78083,59.03814],[22.86808,59.03877],[22.8693,58.99399],[22.9563,58.99487],[22.95495,59.03959],[23.12895,59.04097],[23.12786,59.08582],[23.47671,59.0877],[23.47415,59.26726],[23.64924,59.26788],[23.64888,59.31281],[23.73698,59.313],[23.73649,59.3578],[23.91158,59.35787],[23.91207,59.4028],[24.176,59.4028],[24.17637,59.4478],[24.26446,59.44767],[24.26471,59.49236],[24.70605,59.49082],[24.70898,59.62553],[24.79744,59.62497],[24.79659,59.58009],[24.97327,59.57885],[24.97462,59.62386],[24.88603,59.62473],[24.88725,59.66918],[24.9762,59.66863],[24.9773,59.71346],[25.06601,59.71259],[25.0632,59.62306],[25.24037,59.62145],[25.24184,59.66647],[25.33055,59.66548],[25.32884,59.62078],[25.41755,59.61979],[25.41938,59.66468],[25.6855,59.66148],[25.68757,59.70613],[25.86511,59.70386],[25.86279,59.65901],[26.12855,59.65507],[26.12575,59.6101],[26.39114,59.60565],[26.38809,59.56099],[26.82967,59.55215],[26.82626,59.50729],[26.91423,59.50549],[26.91057,59.46051],[27.96689,59.43303],[27.9719,59.4778],[28.03669,59.4757],[28.04377,59.47223],[28.04767,59.46578],[28.05182,59.46342],[28.06915,59.46256],[28.08452,59.45939],[28.12174,59.44091],[28.13577,59.4277],[28.13711,59.42267],[28.14163,59.41901],[28.16652,59.41205],[28.17225,59.40789],[28.19275,59.4015],[28.21069,59.3836],[28.21069,59.37994],[28.20386,59.37459],[28.21057,59.37235],[28.21105,59.36937],[28.20678,59.36719],[28.20703,59.36377],[28.19971,59.36091],[28.20203,59.35731],[28.19263,59.35227],[28.19397,59.34642],[28.16969,59.33354],[28.13626,59.29244],[28.12515,59.28901],[28.11722,59.28895],[28.1099,59.29063],[28.05353,59.2902],[28.02022,59.28334],[27.99825,59.2753],[27.97983,59.27293],[27.96433,59.27268],[27.95335,59.26863],[27.9492,59.26533],[27.90564,59.24044],[27.90113,59.23488],[27.901,59.22639],[27.89783,59.21746],[27.90235,59.20728],[27.89234,59.19222],[27.88978,59.18379],[27.87648,59.17372],[27.87184,59.16841],[27.86818,59.16159],[27.84414,59.14814],[27.83206,59.14401],[27.82035,59.13362],[27.80986,59.12905],[27.80595,59.12166],[27.80534,59.1127],[27.81071,59.10819],[27.8101,59.10606],[27.80205,59.1028],[27.78887,59.0909],[27.7907,59.08112],[27.79375,59.07842],[27.79411,59.07566],[27.79277,59.0729],[27.79302,59.06927],[27.7885,59.06657],[27.78265,59.065],[27.77508,59.0581],[27.77313,59.05107],[27.77667,59.04743],[27.76983,59.03325],[27.76605,59.03155],[27.75153,59.03017],[27.74628,59.02716],[27.74567,59.01705],[27.74165,59.00951],[27.74787,58.99267],[27.74274,58.98845],[27.73213,58.9855],[27.6544,58.98783],[27.65501,58.99241],[27.39414,58.99964],[27.38974,58.95474],[27.12935,58.96135],[27.12557,58.9164],[27.03882,58.91841],[27.0271,58.7841],[27.11361,58.78183],[27.10934,58.73709],[27.19537,58.73512],[27.18731,58.64533],[27.27309,58.64305],[27.25259,58.41883],[27.53397,58.41142],[27.5552,58.36575],[27.51762,58.33265],[27.51408,58.32214],[27.49993,58.32246],[27.48687,58.18803],[27.52872,58.18687],[27.59205,58.11875],[27.63695,58.09735],[27.60938,58.05399],[27.62268,58.0058],[27.64489,58.00205],[27.65294,58.00644],[27.64781,58.01426],[27.64781,58.02086],[27.66172,58.01866],[27.66856,58.01045],[27.68393,58.00845],[27.6965,58.0045],[27.70065,57.99862],[27.69882,57.98827],[27.69125,57.98549],[27.68064,57.97449],[27.6821,57.9719],[27.68893,57.97184],[27.68588,57.95928],[27.65892,57.9554],[27.66758,57.951],[27.67161,57.94627],[27.66917,57.94174],[27.67649,57.93552],[27.68247,57.93655],[27.68613,57.92794],[27.68247,57.92437],[27.71078,57.92392],[27.72029,57.92036],[27.72054,57.91174],[27.70834,57.90616],[27.69882,57.90616],[27.70614,57.90136],[27.72896,57.90739],[27.74677,57.90169],[27.7536,57.90409],[27.75739,57.90318],[27.75592,57.89806],[27.76959,57.89566],[27.78094,57.89832],[27.799,57.89961],[27.81852,57.89579],[27.82096,57.89047],[27.81949,57.888],[27.81059,57.88612],[27.81827,57.88249],[27.81169,57.87204],[27.81583,57.87166],[27.8184,57.8651],[27.81632,57.86134],[27.79875,57.85205],[27.7946,57.84634],[27.80058,57.8442],[27.7957,57.84017],[27.78862,57.84186],[27.78411,57.83725],[27.77715,57.8325],[27.75849,57.83536],[27.74165,57.82679],[27.72383,57.83179],[27.70541,57.84192],[27.68771,57.83419],[27.66636,57.83653],[27.66026,57.83893],[27.64818,57.8377],[27.63634,57.83978],[27.62487,57.83751],[27.62207,57.83874],[27.59791,57.83328],[27.56252,57.83023],[27.5563,57.83127],[27.55227,57.82113],[27.54446,57.82204],[27.5452,57.81808],[27.55056,57.81769],[27.55667,57.81366],[27.5408,57.81288],[27.54471,57.808],[27.53726,57.80644],[27.53958,57.80144],[27.53592,57.79663],[27.53861,57.79396],[27.52921,57.78856],[27.5175,57.78876],[27.51847,57.79201],[27.50298,57.78798],[27.50005,57.78973],[27.4959,57.78869],[27.50774,57.78349],[27.51457,57.77516],[27.5081,57.77158],[27.51115,57.76416],[27.51591,57.7639],[27.52018,57.75993],[27.52811,57.75818],[27.53007,57.75368],[27.53116,57.74073],[27.548,57.7333],[27.5419,57.73037],[27.52799,57.72946],[27.5236,57.71616],[27.52762,57.70899],[27.5236,57.70802],[27.51652,57.70873],[27.51066,57.71101],[27.50859,57.70723],[27.49993,57.70495],[27.49529,57.70749],[27.48711,57.7191],[27.47357,57.71545],[27.47064,57.70802],[27.46149,57.70619],[27.44807,57.71616],[27.43086,57.70756],[27.42818,57.69902],[27.41341,57.69915],[27.41647,57.69524],[27.40744,57.69276],[27.40231,57.68493],[27.39133,57.68539],[27.39377,57.67913],[27.39145,57.67671],[27.38193,57.67332],[27.37779,57.66836],[27.38364,57.66059],[27.3801,57.65883],[27.38755,57.6555],[27.38047,57.6495],[27.38352,57.64799],[27.38157,57.64368],[27.39072,57.6431],[27.38816,57.64009],[27.40085,57.63742],[27.40317,57.62905],[27.40182,57.62376],[27.39597,57.62115],[27.39023,57.62036],[27.39084,57.6169],[27.40195,57.61775],[27.40634,57.61546],[27.40683,57.61246],[27.38572,57.60304],[27.37827,57.59513],[27.35692,57.59696],[27.3413,57.58984],[27.34179,57.58539],[27.32886,57.5797],[27.32141,57.57898],[27.3341,57.56596],[27.33178,57.56066],[27.33776,57.56007],[27.33886,57.54671],[27.34386,57.5454],[27.35472,57.52575],[27.35131,57.51632],[27.34569,57.52104],[27.32446,57.52274],[27.29664,57.53859],[27.28017,57.53643],[27.2737,57.54311],[27.26431,57.54377],[27.2637,57.54841],[27.25772,57.54979],[27.24796,57.54769],[27.2249,57.55385],[27.19329,57.54966],[27.16145,57.55922],[27.11654,57.56118],[27.10092,57.5653],[27.08506,57.57538],[27.07262,57.57734],[27.07225,57.57989],[27.0559,57.58251],[27.05285,57.58087],[27.04687,57.58048],[27.04492,57.58251],[27.0332,57.58532],[27.04126,57.58761],[27.04418,57.5967],[27.03101,57.60461],[26.99513,57.60461],[26.99233,57.61076],[26.98696,57.60867],[26.98366,57.61174],[26.97549,57.612],[26.97097,57.60448],[26.9595,57.60625],[26.9578,57.60468],[26.94596,57.60272],[26.93961,57.60932],[26.95133,57.61579],[26.94999,57.62056],[26.94059,57.61978],[26.92961,57.62376],[26.92644,57.6331],[26.90679,57.63304],[26.89971,57.63056],[26.90057,57.62918],[26.89581,57.62572],[26.88849,57.62357],[26.88898,57.62193],[26.87458,57.61906],[26.87275,57.61736],[26.86555,57.61592],[26.85786,57.60997],[26.86469,57.6084],[26.85811,57.60049],[26.85994,57.59598],[26.86433,57.59415],[26.86177,57.59108],[26.84688,57.5884],[26.83504,57.58244],[26.81589,57.58153],[26.80954,57.58473],[26.79685,57.58179],[26.79929,57.58002],[26.79295,57.57315],[26.78685,57.57525],[26.7766,57.55994],[26.76915,57.56039],[26.76354,57.56314],[26.75366,57.56249],[26.75817,57.5653],[26.76891,57.57041],[26.77379,57.57473],[26.76769,57.57754],[26.74804,57.5778],[26.75317,57.58009],[26.73816,57.58774],[26.72901,57.58016],[26.73828,57.57584],[26.73072,57.56903],[26.72388,57.57244],[26.71107,57.56596],[26.69972,57.57106],[26.69753,57.5706],[26.69741,57.56733],[26.69155,57.56615],[26.67569,57.56668],[26.67105,57.56327],[26.6719,57.55385],[26.66531,57.55287],[26.64652,57.55391],[26.64262,57.54658],[26.63444,57.54357],[26.61443,57.52909],[26.61712,57.50885],[26.60467,57.51212],[26.60479,57.51442],[26.5954,57.51376],[26.59479,57.51592],[26.58808,57.51619],[26.59015,57.52516],[26.58698,57.52621],[26.58771,57.53781],[26.58381,57.53957],[26.57978,57.53695],[26.57966,57.53375],[26.56123,57.5285],[26.56184,57.52261],[26.5666,57.51946],[26.55794,57.5137],[26.52585,57.51619],[26.49961,57.52451],[26.49095,57.54534],[26.46996,57.57551],[26.40151,57.57237],[26.34489,57.58408],[26.33476,57.5797],[26.32781,57.57963],[26.32635,57.58277],[26.3117,57.58473],[26.30853,57.59291],[26.3006,57.59343],[26.29291,57.59114],[26.28352,57.59232],[26.28217,57.5952],[26.27754,57.595],[26.27034,57.6001],[26.27022,57.60461],[26.25423,57.61383],[26.24715,57.62082],[26.24813,57.62775],[26.23947,57.63408],[26.24203,57.63539],[26.24667,57.63559],[26.23959,57.64649],[26.23239,57.6461],[26.23117,57.64904],[26.24215,57.65146],[26.2363,57.65753],[26.23032,57.65805],[26.21043,57.66601],[26.21372,57.66888],[26.21092,57.67071],[26.21018,57.67906],[26.20079,57.68102],[26.19896,57.68356],[26.19444,57.68519],[26.18541,57.68454],[26.17712,57.68761],[26.18871,57.69472],[26.19859,57.70906],[26.20567,57.71486],[26.1726,57.72867],[26.141,57.73278],[26.13563,57.73923],[26.13905,57.74548],[26.13551,57.7503],[26.10537,57.757],[26.08035,57.76547],[26.07974,57.76384],[26.07328,57.76371],[26.07047,57.7656],[26.05912,57.75987],[26.049,57.7611],[26.0435,57.76703],[26.03326,57.77054],[26.02374,57.76761],[26.01776,57.7723],[26.02459,57.77516],[26.02496,57.7816],[26.02252,57.78355],[26.02776,57.7898],[26.03081,57.79097],[26.03338,57.80105],[26.03679,57.80592],[26.03606,57.8108],[26.04851,57.82289],[26.05705,57.83842],[26.05558,57.84764],[26.03667,57.84926],[26.02008,57.84517],[26.00958,57.85731],[25.99848,57.85816],[25.96273,57.84491],[25.931,57.85244],[25.89537,57.84972],[25.8883,57.84595],[25.88085,57.84946],[25.88573,57.85277],[25.88427,57.85595],[25.87561,57.85796],[25.87475,57.86322],[25.8595,57.85614],[25.81923,57.86419],[25.78312,57.89948],[25.78629,57.90428],[25.77165,57.91206],[25.75102,57.91692],[25.73724,57.92295],[25.72833,57.92133],[25.72247,57.91245],[25.70356,57.90331],[25.67916,57.90461],[25.67549,57.91277],[25.66207,57.91511],[25.65609,57.91439],[25.64889,57.91666],[25.64987,57.91841],[25.63828,57.93059],[25.57983,57.9442],[25.59399,57.95961],[25.58935,57.96504],[25.58239,57.96783],[25.58044,57.9721],[25.57483,57.9741],[25.56556,57.96718],[25.56604,57.96258],[25.55714,57.96038],[25.55567,57.96711],[25.55079,57.97255],[25.53725,57.97139],[25.52566,57.97184],[25.5226,57.96802],[25.51638,57.96737],[25.51211,57.96977],[25.52212,57.97488],[25.51943,57.98031],[25.48539,57.97475],[25.47843,57.98006],[25.47843,57.98264],[25.44219,57.99616],[25.44817,58.00114],[25.46648,58.00515],[25.44817,58.01698],[25.40693,58.02893],[25.37155,58.02926],[25.36374,58.03171],[25.35336,58.04334],[25.34482,58.04676],[25.33604,58.05709],[25.3292,58.05858],[25.32664,58.0638],[25.31981,58.066],[25.31908,58.06929],[25.29553,58.08161],[25.28686,58.08149],[25.28113,58.07019],[25.266,58.06716],[25.26502,58.06],[25.27991,58.05063],[25.29309,58.0467],[25.30431,58.03449],[25.30114,58.01504],[25.29748,58.01459],[25.30285,58.00011],[25.29577,57.99972],[25.29736,57.99661],[25.30358,57.99396],[25.30138,57.99273],[25.29187,57.99286],[25.28308,57.98963],[25.26722,57.99454],[25.25611,57.9939],[25.25502,58.00347],[25.2455,58.00302],[25.22768,58.01782],[25.24587,58.01872],[25.23562,58.02286],[25.23635,58.02441],[25.22732,58.02435],[25.22537,58.02195],[25.21902,58.02977],[25.21658,58.04088],[25.22695,58.04799],[25.22817,58.05348],[25.22122,58.05302],[25.22146,58.05051],[25.2178,58.04908],[25.21597,58.05954],[25.21219,58.06226],[25.20523,58.06122],[25.20389,58.0651],[25.21621,58.07413],[25.21207,58.08052],[25.19962,58.08536],[25.18949,58.08007],[25.19169,58.07613],[25.1535,58.07478],[25.15154,58.07703],[25.13397,58.07974],[25.10579,58.07749],[25.10518,58.06645],[25.07662,58.06645],[25.02037,58.01769],[24.99512,58.01084],[24.94863,58.00942],[24.83234,57.97177],[24.80806,57.99066],[24.74229,57.98187],[24.74339,57.96491],[24.7329,57.96239],[24.71508,57.96271],[24.6919,57.94653],[24.67335,57.95896],[24.64468,57.95889],[24.64187,57.95423],[24.64577,57.95268],[24.62869,57.94193],[24.61612,57.94368],[24.60892,57.95125],[24.58464,57.96174],[24.57317,57.95436],[24.54792,57.94938],[24.54352,57.94478],[24.5301,57.94705],[24.5207,57.94303],[24.51839,57.93675],[24.5096,57.93442],[24.51326,57.93066],[24.4625,57.92496],[24.44579,57.90798],[24.46018,57.90662],[24.45225,57.89942],[24.46006,57.87977],[24.41138,57.86491],[24.40906,57.87191],[24.33707,57.87393],[24.33829,58.0109],[24.42272,58.01097],[24.42614,58.28002],[24.51155,58.2797],[24.51216,58.32471],[24.42638,58.32503],[24.42712,58.36972],[24.34182,58.37017],[24.34048,58.23547],[24.17014,58.23572],[24.17014,58.1908],[24.08485,58.19092],[24.0851,58.23605],[24.00066,58.23579],[23.99993,58.28092],[23.82971,58.28047],[23.82947,58.32554],[23.65864,58.32496],[23.65791,58.41493],[23.57225,58.41468],[23.57127,58.50436],[23.39935,58.50359],[23.40106,58.41391],[23.14421,58.41238],[23.14567,58.36735],[23.05989,58.36703],[23.06172,58.32221],[22.9757,58.32157],[22.97716,58.27681],[22.89187,58.27598],[22.89358,58.23103],[22.80865,58.2302],[22.81012,58.18539],[22.89529,58.1861],[22.89663,58.1413],[22.72641,58.13982],[22.72495,58.18475],[22.55522,58.18276],[22.55693,58.13744],[22.64173,58.13886],[22.64344,58.094],[22.38903,58.0909],[22.38525,58.18063],[22.29995,58.17967],[22.30679,58.04527],[22.22198,58.0436],[22.22626,57.95404],[22.14206,57.95281],[22.1445,57.90804],[22.06007,57.90681],[22.06263,57.86186],[21.97807,57.86043],[21.96831,58.04004],[22.05274,58.04134],[22.04506,58.17581],[21.96038,58.17471],[21.95781,58.21941],[21.78723,58.21638],[21.78211,58.30631],[21.69681,58.3049],[21.69401,58.34975],[21.77942,58.35122],[21.76795,58.53074],[22.02566,58.53488],[22.02797,58.49001],[22.11375,58.49167],[22.11144,58.53621],[22.19709,58.53742],[22.19453,58.5823],[22.45236,58.58573],[22.44638,58.7203],[22.36023,58.71916],[22.35364,58.85385]],[[23.47415,59.26726],[23.29868,59.26632],[23.29795,59.31138],[23.47293,59.31194],[23.47415,59.26726]],[[24.17014,58.1908],[24.25507,58.19073],[24.25458,58.14581],[24.17002,58.14588],[24.17014,58.1908]],[[24.08485,58.19092],[24.08497,58.10129],[23.99968,58.10116],[23.99993,58.05632],[23.91525,58.05612],[23.915,58.14613],[23.83032,58.146],[23.82971,58.23572],[23.91451,58.23585],[23.91476,58.19099],[24.08485,58.19092]],[[24.61854,59.53612],[24.44183,59.5368],[24.44309,59.62659],[24.62016,59.6258],[24.61854,59.53612]],[[26.40403,59.7852],[26.31501,59.78667],[26.31814,59.83152],[26.40732,59.82994],[26.40403,59.7852]],[[26.48308,59.649],[26.48647,59.69383],[26.57514,59.69202],[26.57166,59.64719],[26.48308,59.649]],[[23.15944,57.78408],[23.24346,57.78461],[23.24445,57.73971],[23.32848,57.74031],[23.32679,57.82998],[23.15845,57.82885],[23.15944,57.78408]]],"terms_text":"Maa-Ameti ortofoto"},{"id":"eufar-balaton","name":"EUFAR Balaton orthophotos","type":"tms","template":"http://e.tile.openstreetmap.hu/balaton/0/{zoom}/{x}/{y}.jpg","endDate":"2010-08-31T00:00:00.000Z","startDate":"2010-08-01T00:00:00.000Z","zoomExtent":[12,19],"polygon":[[[18.17918,46.98502],[18.17773,47.01816],[18.08176,47.05643],[18.10281,47.06311],[18.08152,47.09344],[18.06436,47.09049],[18.03537,47.07983],[18.03344,47.08262],[17.9582,47.05567],[17.99436,47.00449],[17.86441,46.95517],[17.80274,47.0103],[17.67184,46.97207],[17.23875,46.77079],[17.22244,46.6796],[17.47175,46.70306],[18.16735,46.94133],[18.17918,46.98502]]],"terms_url":"http://www.bli.okologia.mta.hu/","terms_text":"EUFAR Balaton ortofotó 2010","best":true,"description":"1940 geo-tagged photography from Balaton Limnological Institute."},{"id":"Fiez-2013","name":"Fiez Orthophoto 2013","type":"tms","template":"https://osmdata.asitvd.ch/tiles/fiez2013/{zoom}/{x}/{y}.png","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[6.62313,46.82339],[6.62899,46.82484],[6.62882,46.82674],[6.62531,46.83274],[6.62382,46.83317],[6.61839,46.83194],[6.62313,46.82339]]],"terms_url":"https://osmdata.asitvd.ch/","terms_text":"Fiez - Orthophoto technique 2013"},{"id":"fiskeridir-akvakultur","name":"Fiskeridirektoratet Aquaculture overlay","type":"wms","template":"https://ogc.fiskeridir.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_262&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[3,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.fiskeridir.no/Kart","terms_text":"© Fiskeridirektoratet","description":"Aquaculture/marine farms (licensed sites, may not yet have any installations)","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg/175px-Emblem_of_the_Norwegian_Directorate_of_Fisheries.svg.png","overlay":true},{"id":"FOMI_2005","name":"FÖMI orthophoto 2005","type":"tms","template":"http://e.tile.openstreetmap.hu/ortofoto2005/{zoom}/{x}/{y}.jpg","endDate":"2005-01-01T00:00:00.000Z","startDate":"2005-01-01T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"terms_url":"https://www.fomi.hu","terms_text":"Földmérési és Távérzékelési Intézet"},{"id":"FOMI_2007_2010","name":"FÖMI orthophoto 2007-2010","type":"tms","template":"http://e.tile.openstreetmap.hu/ortofoto-2007-2010/{zoom}/{x}/{y}.jpg","endDate":"2010-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[16.11391,46.8691],[16.17897,46.90662],[16.20004,46.94151],[16.22175,46.93554],[16.24628,46.94639],[16.25532,46.96421],[16.27647,46.96261],[16.29058,47.01398],[16.30162,46.99923],[16.34146,46.99652],[16.35052,47.01063],[16.3734,46.99859],[16.41277,47.00475],[16.43327,46.99274],[16.44781,47.00389],[16.48,46.99412],[16.5122,47.00117],[16.46356,47.03227],[16.44786,47.02275],[16.43912,47.02966],[16.44567,47.03887],[16.52032,47.0561],[16.47321,47.07362],[16.46372,47.09392],[16.5008,47.11006],[16.50004,47.12329],[16.52953,47.12874],[16.51716,47.14969],[16.45495,47.14259],[16.46487,47.16833],[16.45556,47.18756],[16.43056,47.1847],[16.4195,47.19491],[16.41892,47.21071],[16.43713,47.2097],[16.44263,47.23371],[16.43131,47.25276],[16.46715,47.25317],[16.48923,47.27989],[16.46463,47.33385],[16.4337,47.35281],[16.45851,47.36705],[16.44546,47.40702],[16.48317,47.40936],[16.49638,47.38927],[16.51709,47.41002],[16.57491,47.40542],[16.58073,47.41917],[16.66185,47.4556],[16.67064,47.47422],[16.65234,47.50034],[16.68956,47.51016],[16.71478,47.5402],[16.66354,47.56773],[16.6732,47.60495],[16.65953,47.6061],[16.65276,47.62285],[16.63142,47.62832],[16.57391,47.61967],[16.51474,47.6462],[16.49675,47.63931],[16.42546,47.66217],[16.44374,47.67421],[16.44805,47.69647],[16.4747,47.68116],[16.48722,47.69798],[16.55217,47.72255],[16.53638,47.73678],[16.54798,47.75154],[16.60952,47.76037],[16.63441,47.75908],[16.65729,47.74149],[16.72094,47.73536],[16.75341,47.68282],[16.83016,47.68106],[16.83943,47.70451],[16.86689,47.72115],[16.87668,47.68765],[17.09374,47.70777],[17.07066,47.72854],[17.0516,47.79385],[17.07495,47.8085],[17.04714,47.82856],[17.05195,47.83777],[17.01055,47.85818],[17.01639,47.86733],[17.08575,47.87462],[17.11317,47.92716],[17.09171,47.93429],[17.11838,47.96011],[17.09466,47.97088],[17.20103,48.01999],[17.24177,48.02247],[17.25795,47.99865],[17.33465,47.99312],[17.40299,47.94785],[17.45392,47.88526],[17.52674,47.86551],[17.56758,47.81513],[17.6084,47.82189],[17.70858,47.75668],[17.77987,47.73949],[17.8661,47.74575],[17.90013,47.73926],[17.94687,47.74467],[17.97087,47.75784],[18.00441,47.74634],[18.03806,47.75768],[18.29588,47.73146],[18.45407,47.76512],[18.49316,47.75276],[18.55908,47.766],[18.64609,47.75909],[18.72607,47.78904],[18.74118,47.81382],[18.792,47.82309],[18.84854,47.81672],[18.85588,47.82608],[18.82801,47.83429],[18.81357,47.85555],[18.76353,47.8716],[18.75686,47.89684],[18.77675,47.95509],[18.75525,47.97635],[18.81574,47.99344],[18.82,48.03968],[18.83327,48.04824],[18.87494,48.04707],[18.88667,48.05868],[18.90898,48.05114],[18.9439,48.05886],[18.98161,48.0536],[19.01486,48.07818],[19.05852,48.05735],[19.08436,48.07278],[19.1074,48.0656],[19.13529,48.07415],[19.24137,48.05365],[19.25578,48.07156],[19.30311,48.08871],[19.3866,48.09191],[19.40002,48.0823],[19.45405,48.10144],[19.46735,48.08393],[19.49442,48.10991],[19.49238,48.13966],[19.51282,48.15466],[19.50452,48.17344],[19.52897,48.19036],[19.52604,48.20313],[19.5775,48.21601],[19.63083,48.25007],[19.64452,48.23917],[19.66986,48.23921],[19.69122,48.20389],[19.72113,48.20147],[19.74618,48.21651],[19.78716,48.19253],[19.79873,48.19482],[19.80528,48.18373],[19.78242,48.16504],[19.79481,48.15353],[19.82133,48.16908],[19.84528,48.16274],[19.85517,48.17843],[19.86013,48.16941],[19.89875,48.16631],[19.91454,48.14686],[19.8983,48.1249],[19.93738,48.13112],[19.97439,48.166],[19.98871,48.16217],[20.02904,48.17768],[20.04945,48.1672],[20.07299,48.17961],[20.07004,48.1917],[20.13409,48.22518],[20.13319,48.25398],[20.20616,48.25098],[20.20383,48.26191],[20.22847,48.26278],[20.23495,48.27993],[20.28686,48.26164],[20.32571,48.27279],[20.33746,48.30167],[20.36566,48.31661],[20.38408,48.35118],[20.40983,48.36586],[20.40253,48.38256],[20.42053,48.40386],[20.41623,48.41854],[20.50793,48.48936],[20.50651,48.53442],[20.53747,48.52788],[20.54649,48.54429],[20.58659,48.53576],[20.65387,48.56141],[20.83636,48.58284],[20.8378,48.57421],[20.85044,48.58163],[20.84533,48.5665],[20.86815,48.55182],[20.92232,48.55945],[20.93463,48.53834],[20.95588,48.53396],[20.9562,48.52167],[20.98158,48.51777],[21.01511,48.53231],[21.06632,48.52589],[21.11745,48.49105],[21.16087,48.5215],[21.17963,48.51823],[21.22106,48.5375],[21.30549,48.52225],[21.31338,48.55084],[21.32688,48.55413],[21.31938,48.5612],[21.41545,48.55895],[21.42266,48.57882],[21.44061,48.5851],[21.51409,48.55107],[21.54202,48.5084],[21.61393,48.50942],[21.62019,48.46983],[21.66355,48.41796],[21.66456,48.39216],[21.70174,48.3807],[21.71187,48.35762],[21.81741,48.33279],[21.8352,48.33464],[21.83721,48.36325],[21.8843,48.35605],[21.88484,48.36754],[21.89788,48.36256],[21.8998,48.37022],[21.92819,48.3616],[21.92681,48.3709],[21.9492,48.37873],[21.99446,48.37732],[22.02133,48.39275],[22.0546,48.37753],[22.07649,48.38724],[22.08674,48.37156],[22.13591,48.38052],[22.13106,48.39123],[22.15277,48.39624],[22.15619,48.40931],[22.21257,48.42565],[22.23714,48.41004],[22.26549,48.40987],[22.23988,48.38701],[22.26757,48.36116],[22.31781,48.35454],[22.31329,48.32507],[22.33729,48.30791],[22.33843,48.27921],[22.38475,48.23396],[22.40064,48.2492],[22.43284,48.25252],[22.45639,48.24231],[22.4899,48.25342],[22.49722,48.23955],[22.51615,48.23797],[22.53111,48.20943],[22.57114,48.19614],[22.56164,48.18161],[22.59824,48.14476],[22.59028,48.10734],[22.67545,48.092],[22.73472,48.11985],[22.75762,48.12006],[22.77039,48.10902],[22.77232,48.12187],[22.80277,48.12211],[22.80253,48.10708],[22.82543,48.11751],[22.83644,48.08025],[22.86113,48.07503],[22.8678,48.05243],[22.88204,48.05481],[22.86597,48.01132],[22.83556,47.9906],[22.84076,47.98136],[22.87257,47.97527],[22.86973,47.96596],[22.89157,47.96724],[22.89744,47.95406],[22.84733,47.90776],[22.79281,47.89086],[22.75869,47.89414],[22.77775,47.84225],[22.71363,47.83609],[22.68019,47.78775],[22.61112,47.77175],[22.549,47.77222],[22.48121,47.81089],[22.45131,47.80339],[22.43133,47.73981],[22.35662,47.74862],[22.31777,47.76609],[22.31762,47.74337],[22.28514,47.72928],[22.26432,47.73107],[22.259,47.69791],[22.23068,47.6932],[22.17965,47.59161],[22.12892,47.5979],[22.09428,47.55836],[22.07826,47.56213],[22.05345,47.54748],[22.07122,47.53807],[22.06179,47.5288],[22.04513,47.53989],[22.03672,47.53267],[22.00719,47.48362],[22.03279,47.45084],[22.02388,47.39086],[22.01198,47.3758],[21.96274,47.38105],[21.93825,47.37253],[21.87779,47.28578],[21.88728,47.27305],[21.85349,47.23976],[21.85807,47.18736],[21.81248,47.16675],[21.79241,47.10598],[21.72683,47.09839],[21.6976,47.05792],[21.65042,47.04083],[21.68887,47.002],[21.66787,46.97123],[21.68149,46.96521],[21.6382,46.93305],[21.59845,46.92747],[21.61429,46.88673],[21.60167,46.86682],[21.52033,46.83737],[21.51861,46.80007],[21.48318,46.76502],[21.52634,46.73932],[21.52937,46.72097],[21.49233,46.68597],[21.47284,46.69591],[21.4299,46.69394],[21.43096,46.67814],[21.45467,46.66086],[21.41624,46.64262],[21.4098,46.62181],[21.3657,46.63795],[21.33005,46.63182],[21.31397,46.61767],[21.30124,46.59087],[21.32079,46.58286],[21.2743,46.54074],[21.26003,46.50216],[21.27442,46.47673],[21.29645,46.4763],[21.31743,46.45073],[21.28952,46.41548],[21.29633,46.40696],[21.22501,46.41369],[21.20642,46.40338],[21.19926,46.3479],[21.17623,46.33577],[21.1805,46.30445],[21.11554,46.30185],[21.10305,46.26246],[21.07088,46.2539],[21.06608,46.24294],[21.03662,46.24804],[21.02467,46.26653],[20.96082,46.2623],[20.94658,46.2793],[20.92507,46.27662],[20.92181,46.26181],[20.87327,46.28776],[20.77565,46.27596],[20.74905,46.25085],[20.76186,46.20456],[20.7274,46.20775],[20.73411,46.19394],[20.71405,46.16605],[20.68436,46.14478],[20.65492,46.14977],[20.63945,46.12676],[20.54505,46.17909],[20.50148,46.19033],[20.49494,46.17099],[20.45923,46.14288],[20.39751,46.15747],[20.36853,46.15286],[20.35571,46.16963],[20.29681,46.15215],[20.2549,46.11585],[20.24848,46.1301],[20.23301,46.12417],[20.18174,46.16011],[20.1365,46.14495],[20.10097,46.17728],[20.06362,46.14373],[20.03461,46.14589],[20.01581,46.17684],[19.93541,46.17642],[19.85335,46.15],[19.81797,46.12817],[19.75854,46.14798],[19.69821,46.18793],[19.68277,46.18004],[19.66151,46.19044],[19.63174,46.1693],[19.56765,46.17911],[19.5604,46.16658],[19.50266,46.14245],[19.52712,46.12103],[19.4645,46.09538],[19.46658,46.08204],[19.416,46.04605],[19.3804,46.03587],[19.36409,46.0523],[19.2819,46.0148],[19.29653,45.98812],[19.28565,45.9969],[19.14799,45.99634],[19.13384,46.0371],[19.10487,46.04017],[19.06604,46.0002],[19.07968,45.96364],[19.00598,45.95907],[19.00927,45.92366],[18.90613,45.93538],[18.87946,45.91668],[18.86471,45.92085],[18.86856,45.91134],[18.82768,45.90517],[18.822,45.91459],[18.80751,45.90361],[18.80925,45.87962],[18.79562,45.87845],[18.70489,45.91819],[18.67002,45.91084],[18.65966,45.91689],[18.66513,45.89928],[18.64128,45.88904],[18.65502,45.87424],[18.62777,45.87338],[18.61484,45.85314],[18.62367,45.83985],[18.57324,45.81376],[18.57498,45.80043],[18.55972,45.8038],[18.52235,45.78269],[18.49067,45.79472],[18.48219,45.7655],[18.45628,45.76952],[18.44508,45.76052],[18.44685,45.73713],[18.40763,45.73971],[18.39189,45.7617],[18.36423,45.77294],[18.33942,45.74716],[18.29682,45.76122],[18.24405,45.76123],[18.23073,45.77903],[18.19087,45.78788],[18.16819,45.77627],[18.12465,45.78963],[18.10681,45.77083],[18.08189,45.76452],[17.99588,45.79573],[17.93021,45.78633],[17.90668,45.79257],[17.86531,45.76701],[17.82627,45.81],[17.80898,45.8041],[17.78091,45.81749],[17.76034,45.81192],[17.74086,45.8296],[17.66329,45.83818],[17.62762,45.89794],[17.57007,45.93582],[17.43783,45.95038],[17.4259,45.92727],[17.41081,45.93997],[17.39215,45.93021],[17.38287,45.94757],[17.34762,45.94234],[17.34388,45.96053],[17.35377,45.9525],[17.39054,45.95819],[17.38742,45.96618],[17.35835,45.96427],[17.37549,45.96869],[17.37519,45.98811],[17.36357,45.99154],[17.35672,45.97358],[17.33396,45.99608],[17.33198,45.97289],[17.313,45.96653],[17.32365,45.98878],[17.29877,45.98387],[17.3042,46.00211],[17.25797,46.01103],[17.29632,46.02852],[17.25415,46.03001],[17.27096,46.05671],[17.23248,46.0592],[17.25251,46.06647],[17.23131,46.07903],[17.20199,46.07655],[17.23313,46.09896],[17.2104,46.10017],[17.21297,46.11386],[17.17593,46.10846],[17.17434,46.12876],[17.18652,46.13323],[17.1811,46.15055],[17.15623,46.15858],[17.15929,46.16968],[17.1261,46.16845],[17.12274,46.17898],[17.07525,46.18895],[17.06616,46.2023],[16.97354,46.2252],[16.97395,46.24311],[16.95041,46.24153],[16.88624,46.28146],[16.87137,46.32528],[16.88021,46.3357],[16.86154,46.34524],[16.86562,46.35565],[16.8522,46.35172],[16.84986,46.36262],[16.83529,46.36382],[16.83765,46.3748],[16.82617,46.3671],[16.79334,46.38739],[16.75921,46.37766],[16.72987,46.40149],[16.71821,46.38987],[16.67729,46.44945],[16.66318,46.4487],[16.66637,46.4583],[16.61879,46.46199],[16.60447,46.47608],[16.5236,46.50538],[16.53258,46.5314],[16.51767,46.53635],[16.50841,46.56527],[16.483,46.56604],[16.4834,46.5786],[16.44557,46.61095],[16.42486,46.61316],[16.38594,46.64425],[16.39154,46.66373],[16.41985,46.65848],[16.42863,46.69397],[16.36892,46.70401],[16.37983,46.71539],[16.37109,46.72229],[16.35706,46.71424],[16.3186,46.75414],[16.33054,46.77521],[16.31216,46.778],[16.31277,46.79731],[16.34064,46.80519],[16.35084,46.83006],[16.34033,46.84688],[16.3015,46.85951],[16.29139,46.87283],[16.23323,46.87667],[16.15609,46.85371],[16.12657,46.85691],[16.11391,46.8691]]],"terms_url":"https://www.fomi.hu","terms_text":"Földmérési és Távérzékelési Intézet"},{"id":"Frankfurt-am-Main-2016","name":"Frankfurt am Main Luftbild 2016","type":"wms","template":"https://geoinfo.frankfurt.de/opendata/luftbild-2016.exe?LAYERS=wms_opendata_luftbilder_2016&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-05-06T00:00:00.000Z","startDate":"2016-05-06T00:00:00.000Z","polygon":[[[8.8046,50.0111],[8.8046,50.228],[8.46726,50.228],[8.46726,50.0111],[8.8046,50.0111]]],"terms_url":"http://offenedaten.frankfurt.de/dataset/wms-luftbild-2016","terms_text":"Stadtvermessungsam Frankfurt am Main","description":"aerial imagery of Frankfurt am Main, photographed on 2016-05-06"},{"id":"Frankfurt-am-Main-2017","name":"Frankfurt am Main Luftbild 2017","type":"wms","template":"https://geoinfo.frankfurt.de/opendata/luftbild-2017.exe?LAYERS=wms_opendata_luftbilder_2017&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-05-06T00:00:00.000Z","startDate":"2016-05-06T00:00:00.000Z","polygon":[[[8.8046,50.0111],[8.8046,50.228],[8.46726,50.228],[8.46726,50.0111],[8.8046,50.0111]]],"terms_url":"https://offenedaten.frankfurt.de/dataset/wms-luftbild-2017","terms_text":"Stadtvermessungsam Frankfurt am Main","description":"aerial imagery of Frankfurt am Main, photographed on 11.06.2017 and 06.07.2017"},{"id":"Frankfurt-am-Main-2018","name":"Frankfurt am Main Luftbild 2018","type":"wms","template":"https://geoinfo.frankfurt.de/opendata/luftbild-2018.exe?LAYERS=wms_opendata_luftbilder_2018&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-04-14T00:00:00.000Z","startDate":"2018-04-08T00:00:00.000Z","polygon":[[[8.8046,50.0111],[8.8046,50.228],[8.46726,50.228],[8.46726,50.0111],[8.8046,50.0111]]],"terms_url":"https://offenedaten.frankfurt.de/dataset/wms-luftbild-2018","terms_text":"Stadtvermessungsam Frankfurt am Main","description":"aerial imagery of Frankfurt am Main, photographed on 08.04.2018 and 14.04.2018"},{"id":"Freemap.sk-Cyclo","name":"Freemap.sk Bicycle","type":"tms","template":"https://tile.freemap.sk/C/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=C","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Car","name":"Freemap.sk Car","type":"tms","template":"https://tile.freemap.sk/A/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=A","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Hiking","name":"Freemap.sk Hiking","type":"tms","template":"https://tile.freemap.sk/T/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=T","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Outdoor","name":"Freemap.sk Outdoor","type":"tms","template":"https://outdoor.tiles.freemap.sk/{zoom}/{x}/{y}","zoomExtent":[6,19],"polygon":[[[23.64258,50.62507],[21.56616,51.21377],[14.34815,51.21377],[11.83227,50.41202],[11.84051,47.80209],[10.30243,47.80024],[8.60229,47.94211],[6.88293,47.58764],[5.59753,46.29761],[6.86096,44.20387],[7.55859,43.56447],[9.2395,43.56447],[10.18433,42.19597],[13.64502,40.40513],[21.10474,40.63897],[23.64258,41.16211],[26.12549,41.16211],[28.2019,41.86956],[29.94873,45.24395],[26.99341,48.35625],[23.64258,50.62507]]],"terms_url":"https://www.freemap.sk/?layers=X","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"Freemap.sk-Ski","name":"Freemap.sk Ski","type":"tms","template":"https://tile.freemap.sk/K/{zoom}/{x}/{y}.jpeg","zoomExtent":[8,16],"polygon":[[[16.69,47.64],[22.67,47.64],[22.67,49.65],[16.69,49.65],[16.69,47.64]]],"terms_url":"https://www.freemap.sk/?layers=K","terms_text":"Map © Freemap Slovakia, data © OpenStreetMap contributors and SRTM","icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"fta-digiroad-functional","name":"FTIA Road Networkk","type":"wms","template":"https://julkinen.vayla.fi/inspirepalvelu/wms?LAYERS=digiroad:dr_tielinkki_toim_lk&STYLES=digiroad:DR_Tielinkki_toiminnallinen_luokka_2018&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[3,20],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://vayla.fi/web/en/open-data/digiroad/","terms_text":"© Liikennevirasto","description":"Digiroad national road network from the Finnish Transport Agency, functional road classes.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/86/V%C3%A4yl%C3%A4virasto_logo.svg/200px-V%C3%A4yl%C3%A4virasto_logo.svg.png","overlay":true},{"id":"gaza_pleiades_20140706","name":"Gaza Strip - Pléiades - 2014/07/06","type":"tms","template":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706/{zoom}/{x}/{y}","endDate":"2014-07-06T00:00:00.000Z","startDate":"2014-07-06T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[34.49022,31.59487],[34.49339,31.59263],[34.5678,31.5401],[34.5653,31.53226],[34.55613,31.52552],[34.54729,31.5121],[34.53011,31.5066],[34.5255,31.50251],[34.51369,31.50067],[34.505,31.49543],[34.4887,31.48263],[34.48532,31.48028],[34.47962,31.47778],[34.47471,31.47207],[34.4674,31.46448],[34.46576,31.46275],[34.45308,31.45139],[34.44585,31.4441],[34.44216,31.44327],[34.43798,31.44112],[34.43226,31.43458],[34.43164,31.43265],[34.4268,31.42804],[34.42211,31.42437],[34.41326,31.41862],[34.41329,31.41758],[34.41174,31.41604],[34.40918,31.41542],[34.4067,31.41295],[34.40506,31.41295],[34.40197,31.4112],[34.40134,31.40986],[34.39492,31.40391],[34.39351,31.40113],[34.38824,31.39599],[34.38037,31.38951],[34.38074,31.38791],[34.37407,31.37915],[34.37338,31.37422],[34.37159,31.37209],[34.37214,31.37093],[34.37158,31.36972],[34.3704,31.36909],[34.36827,31.36992],[34.36685,31.36914],[34.36497,31.36137],[34.37438,31.30609],[34.36708,31.29074],[34.34339,31.27846],[34.33119,31.26149],[34.31931,31.25317],[34.29093,31.24009],[34.26762,31.21894],[34.25915,31.22131],[34.231,31.26295],[34.21113,31.32157],[34.2434,31.34554],[34.29954,31.39629],[34.34172,31.43251],[34.36439,31.45715],[34.41099,31.50162],[34.42619,31.52686],[34.44463,31.54193],[34.49022,31.59487]]],"terms_url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip","terms_text":"Copyright CNES 2014, Distribution Airbus Defence and Space"},{"id":"gaza_pleiades_20140706_nir","name":"Gaza Strip - Pléiades - 2014/07/06 (NIR)","type":"tms","template":"https://imagery.openstreetmap.fr/tms/1.0.0/gaza_pleiades_20140706_nir/{zoom}/{x}/{y}","endDate":"2014-07-06T00:00:00.000Z","startDate":"2014-07-06T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[34.49022,31.59487],[34.49339,31.59263],[34.5678,31.5401],[34.5653,31.53226],[34.55613,31.52552],[34.54729,31.5121],[34.53011,31.5066],[34.5255,31.50251],[34.51369,31.50067],[34.505,31.49543],[34.4887,31.48263],[34.48532,31.48028],[34.47962,31.47778],[34.47471,31.47207],[34.4674,31.46448],[34.46576,31.46275],[34.45308,31.45139],[34.44585,31.4441],[34.44216,31.44327],[34.43798,31.44112],[34.43226,31.43458],[34.43164,31.43265],[34.4268,31.42804],[34.42211,31.42437],[34.41326,31.41862],[34.41329,31.41758],[34.41174,31.41604],[34.40918,31.41542],[34.4067,31.41295],[34.40506,31.41295],[34.40197,31.4112],[34.40134,31.40986],[34.39492,31.40391],[34.39351,31.40113],[34.38824,31.39599],[34.38037,31.38951],[34.38074,31.38791],[34.37407,31.37915],[34.37338,31.37422],[34.37159,31.37209],[34.37214,31.37093],[34.37158,31.36972],[34.3704,31.36909],[34.36827,31.36992],[34.36685,31.36914],[34.36497,31.36137],[34.37438,31.30609],[34.36708,31.29074],[34.34339,31.27846],[34.33119,31.26149],[34.31931,31.25317],[34.29093,31.24009],[34.26762,31.21894],[34.25915,31.22131],[34.231,31.26295],[34.21113,31.32157],[34.2434,31.34554],[34.29954,31.39629],[34.34172,31.43251],[34.36439,31.45715],[34.41099,31.50162],[34.42619,31.52686],[34.44463,31.54193],[34.49022,31.59487]]],"terms_url":"https://wiki.openstreetmap.org/wiki/2014_Gaza_Strip","terms_text":"Copyright CNES 2014, Distribution Airbus Defence and Space"},{"id":"Geobase_Hydrography","name":"Geobase Hydrography - English","type":"wms","template":"https://maps.geogratis.gc.ca/wms/hydro_network_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"overlay":true},{"id":"Geobase_Hydrography_French","name":"Geobase Hydrography - French","type":"wms","template":"https://maps.geogratis.gc.ca/wms/hydro_network_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=nhn:nhn&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]],"overlay":true},{"id":"Geobase_Roads","name":"Geobase Roads - English","type":"wms","template":"https://maps.geogratis.gc.ca/wms/roads_en?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=roads&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[4,20],"polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"Geobase_Roads_French","name":"Geobase Roads - French","type":"wms","template":"https://cartes.geogratis.gc.ca/wms/roads_fr?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=routes&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[4,20],"polygon":[[[-141.0678,60.2442],[-139.3842,60.10331],[-137.4746,58.82791],[-135.4766,59.65971],[-134.399,58.86279],[-132.5239,57.08342],[-130.1435,55.27452],[-130.7734,54.75597],[-132.4355,54.71514],[-134.5711,54.38827],[-141.7761,53.58405],[-128.9768,46.41459],[-124.8087,48.42976],[-123.4286,48.17889],[-123.0256,48.40444],[-123.19237,48.65504],[-122.99582,48.51065],[-122.4869,48.4098],[-122.32915,48.4528],[-122.22939,48.50649],[-122.17908,48.52965],[-122.1842,48.5669],[-121.77833,48.57593],[-121.66578,48.42791],[-121.33068,48.35714],[-121.02713,48.34977],[-121.03054,48.49406],[-120.698,48.51497],[-120.51041,48.8718],[-119.97579,48.88134],[-119.95447,48.51497],[-119.90758,48.29421],[-119.73193,48.15503],[-119.74386,48.07419],[-119.62279,48.10951],[-119.60232,48.14707],[-119.25273,48.16243],[-114.1499,48.99487],[-95.12094,48.98405],[-95.13419,49.35564],[-94.94415,49.34356],[-94.8839,49.29522],[-94.71704,48.87631],[-94.71791,48.7485],[-93.83204,48.49765],[-93.43778,48.53066],[-93.38216,48.59507],[-92.98471,48.60312],[-92.73847,48.50725],[-92.7095,48.42081],[-92.54293,48.40158],[-92.38361,48.20406],[-92.11564,48.27641],[-91.58697,48.02516],[-91.24658,48.05422],[-90.86275,48.20889],[-90.78308,48.0639],[-90.0774,48.07435],[-89.93835,47.96584],[-89.75469,47.99609],[-89.32745,47.93943],[-88.41489,48.26677],[-84.9566,46.86086],[-84.84795,46.6762],[-84.55904,46.45441],[-84.47642,46.44972],[-84.43758,46.48872],[-84.3669,46.5055],[-84.34899,46.5055],[-84.29026,46.49077],[-84.25742,46.49386],[-84.22507,46.53187],[-84.1962,46.53804],[-84.18027,46.52468],[-84.15987,46.52468],[-84.13449,46.52879],[-84.11558,46.50653],[-84.15944,46.42769],[-84.10024,46.20338],[-83.95558,46.05132],[-83.8864,46.06125],[-83.8203,46.11181],[-83.76975,46.09563],[-83.67498,46.11391],[-83.58084,46.09921],[-83.44747,45.99521],[-83.60888,45.81772],[-82.14271,43.57905],[-82.39133,43.06666],[-82.41252,43.01127],[-82.42522,42.99864],[-82.42618,42.99374],[-82.42363,42.98536],[-82.41503,42.97697],[-82.41853,42.96578],[-82.43064,42.95203],[-82.44911,42.93711],[-82.45739,42.92568],[-82.46472,42.90562],[-82.47228,42.8877],[-82.47228,42.84743],[-82.48536,42.80967],[-82.46844,42.76365],[-82.48586,42.73697],[-82.49155,42.71168],[-82.51488,42.66652],[-82.51224,42.63893],[-82.52421,42.61103],[-82.56854,42.58184],[-82.59498,42.55148],[-82.61286,42.56409],[-82.65158,42.55707],[-82.83439,42.3763],[-83.01489,42.33457],[-83.07244,42.31502],[-83.09647,42.29542],[-83.12823,42.24126],[-83.14167,42.18582],[-83.12799,42.12172],[-83.16266,42.04963],[-83.05136,41.70911],[-82.41932,41.6377],[-81.22563,42.19633],[-80.06688,42.37121],[-78.86642,42.825],[-78.90301,42.92307],[-78.92063,42.95234],[-78.93331,42.95708],[-78.96058,42.9595],[-78.98479,42.9761],[-79.01825,42.9964],[-79.01969,43.01561],[-79.00695,43.0333],[-78.99599,43.06448],[-79.07335,43.07876],[-79.07286,43.083],[-79.0652,43.0917],[-79.05623,43.10825],[-79.05982,43.11563],[-79.06764,43.11992],[-79.05411,43.12801],[-79.04112,43.13986],[-79.04465,43.16192],[-79.05101,43.17037],[-79.04758,43.19974],[-79.05511,43.25682],[-79.18688,43.44858],[-78.68836,43.62502],[-76.77647,43.61369],[-76.41665,44.08498],[-75.49023,44.70772],[-75.29544,44.82587],[-75.16845,44.88548],[-75.1275,44.8975],[-75.00499,44.95265],[-74.98159,44.97728],[-74.90496,44.98222],[-74.8313,45.01108],[-74.77954,45.00158],[-74.74562,44.98526],[-74.70475,44.99877],[-74.49079,44.99343],[-74.23203,44.98552],[-73.93713,44.99512],[-73.01809,45.0121],[-72.63177,45.0121],[-72.54779,45.00506],[-72.32259,45.00286],[-71.49404,45.01093],[-71.48648,45.06221],[-71.42303,45.12765],[-71.43112,45.14037],[-71.37175,45.22117],[-71.28959,45.28578],[-71.23613,45.24302],[-71.11683,45.22933],[-71.0531,45.29866],[-70.98936,45.31088],[-70.90246,45.22525],[-70.82473,45.22714],[-70.77626,45.40013],[-70.7119,45.3754],[-70.63387,45.37346],[-70.60302,45.41179],[-70.67659,45.56319],[-70.3752,45.73075],[-70.36334,45.82013],[-70.25417,45.87468],[-70.22569,45.94403],[-70.27316,45.99022],[-70.17586,46.33538],[-70.06195,46.4107],[-69.98891,46.69363],[-69.22424,47.44463],[-69.06999,47.41092],[-69.07473,47.24202],[-68.89684,47.17469],[-68.78685,47.21493],[-68.72415,47.23217],[-68.68583,47.24028],[-68.66044,47.23183],[-68.62162,47.24028],[-68.59425,47.24974],[-68.59226,47.27001],[-68.57385,47.28486],[-68.55941,47.2798],[-68.542,47.2798],[-68.51214,47.29195],[-68.47381,47.29229],[-68.46038,47.28149],[-68.43898,47.27777],[-68.37229,47.2825],[-68.3703,47.34796],[-68.33173,47.35822],[-68.29664,47.352],[-68.2399,47.34897],[-68.0906,47.26798],[-68.00002,47.21223],[-67.96344,47.19753],[-67.93582,47.15947],[-67.88619,47.10424],[-67.80218,47.06386],[-67.79415,45.93923],[-67.82753,45.8489],[-67.82753,45.6704],[-67.54943,45.57445],[-67.45302,45.58742],[-67.44189,45.52251],[-67.54201,45.49393],[-67.4456,45.38726],[-67.51605,45.29343],[-67.38257,45.11839],[-67.3047,45.11316],[-67.26762,45.18116],[-67.12671,45.09484],[-66.94835,44.78406],[-66.52283,43.61294],[-65.02339,42.10691],[-42.53366,47.50263],[-75.90901,77.3176],[-71.86482,78.7359],[-67.20011,80.66812],[-66.20727,80.78637],[-54.82473,83.07464],[-57.62518,85.04043],[-106.7949,85.04625],[-141.3957,79.2514],[-141.0678,60.2442]]]},{"id":"geoimage.at","name":"Geoimage.at MaxRes","type":"wms","template":"https://gis.bmlfuw.gv.at/wmsgw/?key=4d80de696cd562a63ce463a58a61488d&service=WMS&LAYERS=Luftbild&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[16.50733,46.99293],[16.28342,46.99293],[16.13584,46.8713],[15.98317,46.81909],[16.04933,46.65517],[15.86104,46.71801],[15.75926,46.69009],[15.56079,46.67962],[15.57606,46.63421],[15.47937,46.60276],[15.43357,46.65168],[15.22493,46.63421],[15.04682,46.64819],[14.99084,46.58877],[14.9603,46.62373],[14.85344,46.60276],[14.83308,46.50127],[14.75166,46.49776],[14.68041,46.43818],[14.61426,46.43818],[14.57864,46.37853],[14.44124,46.43116],[14.16135,46.42766],[14.12573,46.47674],[14.01886,46.47674],[13.91199,46.52578],[13.82548,46.50477],[13.44381,46.56078],[13.30641,46.55028],[13.1283,46.58877],[12.84332,46.61324],[12.72628,46.6412],[12.51255,46.66565],[12.35988,46.70405],[12.36497,46.77032],[12.28863,46.77729],[12.27337,46.88522],[12.20721,46.87478],[12.13088,46.90261],[12.11561,46.99987],[12.25301,47.06577],[12.2123,47.0935],[11.9833,47.04497],[11.73394,46.96168],[11.63217,47.01028],[11.54057,46.97557],[11.49986,47.00681],[11.41843,46.96515],[11.25559,46.97557],[11.1131,46.91304],[11.04185,46.76335],[10.88919,46.75986],[10.74161,46.78426],[10.70599,46.86435],[10.57877,46.83998],[10.45663,46.85043],[10.47699,46.92694],[10.38539,46.98946],[10.23272,46.86435],[10.12076,46.83302],[9.86632,46.94084],[9.90194,47.00334],[9.68312,47.05884],[9.61188,47.03804],[9.63223,47.12813],[9.58134,47.1662],[9.54063,47.26644],[9.60679,47.34926],[9.67294,47.36994],[9.64241,47.44571],[9.56608,47.48011],[9.71365,47.52824],[9.7849,47.59692],[9.83579,47.54542],[9.94774,47.53855],[10.09023,47.44915],[10.11059,47.36649],[10.2429,47.38717],[10.18692,47.2699],[10.32432,47.29751],[10.48208,47.44915],[10.43119,47.48699],[10.44137,47.59005],[10.48717,47.55229],[10.54823,47.53511],[10.59912,47.56602],[10.75688,47.53168],[10.88919,47.54542],[10.94008,47.48699],[10.99605,47.39061],[11.23523,47.44227],[11.28103,47.3975],[11.42352,47.51449],[11.57619,47.50762],[11.60672,47.59005],[11.83572,47.58662],[12.00366,47.62436],[12.20721,47.60378],[12.16141,47.69634],[12.2581,47.74427],[12.25301,47.67921],[12.43112,47.71004],[12.49219,47.63122],[12.56852,47.62779],[12.62959,47.68949],[12.77208,47.66893],[12.83315,47.54198],[12.97564,47.47323],[13.04179,47.49387],[13.0367,47.55572],[13.09777,47.64151],[13.03161,47.71004],[12.90439,47.72031],[13.00617,47.84683],[12.9451,47.93555],[12.86368,47.95941],[12.86368,48.00369],[12.75172,48.09894],[12.87386,48.21097],[12.96037,48.21097],[13.04179,48.2652],[13.18428,48.29907],[13.26061,48.2923],[13.39801,48.35659],[13.44381,48.41742],[13.43872,48.55234],[13.50997,48.58601],[13.61175,48.57255],[13.72879,48.5119],[13.78477,48.57255],[13.82039,48.62639],[13.79495,48.71713],[13.85093,48.77417],[14.05957,48.66338],[14.01377,48.63312],[14.07484,48.59274],[14.21733,48.59611],[14.3649,48.54897],[14.46668,48.64993],[14.55828,48.59611],[14.59899,48.62639],[14.72113,48.57591],[14.72113,48.6869],[14.8229,48.7272],[14.81782,48.77753],[14.96472,48.78518],[14.98936,49.01266],[15.14859,48.99503],[15.19439,48.93155],[15.30635,48.98501],[15.39286,48.98501],[15.48446,48.92821],[15.74908,48.8546],[15.84068,48.88807],[16.00862,48.78088],[16.20708,48.73391],[16.39537,48.73727],[16.49206,48.81105],[16.69053,48.77417],[16.7058,48.73391],[16.89917,48.71377],[16.97551,48.51527],[16.84828,48.45118],[16.85337,48.34644],[16.95515,48.25165],[16.99077,48.1499],[17.09255,48.13971],[17.08237,48.02412],[17.17397,48.02071],[17.08237,47.87414],[16.98568,47.86732],[17.08237,47.80925],[17.09255,47.70319],[16.74142,47.67921],[16.7058,47.75112],[16.53786,47.75454],[16.54804,47.70662],[16.42082,47.66893],[16.57348,47.6175],[16.67017,47.63122],[16.71088,47.53855],[16.66,47.44915],[16.54295,47.39406],[16.46153,47.39406],[16.49206,47.2768],[16.42591,47.19733],[16.47171,47.1489],[16.54804,47.1489],[16.47679,47.07964],[16.52768,47.05884],[16.50733,46.99293]]],"terms_url":"http://geoimage.at","terms_text":"geoimage.at","description":"Aktuelle Digitale Orthophotos des LFRZ aus gemeinsamen Befliegungen mit den Landesregierungen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/GeoimageatMaxRes.png"},{"id":"Geolittoral-Sentiers","name":"Géolittoral - Sentiers","type":"wms","template":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=n_sentier_littoral_l&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-0.98385,46.18807],[-0.89497,46.15628],[-0.93455,46.10163],[-0.84388,46.06949],[-0.88241,46.01637],[-0.53787,45.89558],[-0.63498,45.76444],[-0.86666,45.8479],[-0.76264,45.6245],[-0.69695,45.62659],[-0.69397,45.60184],[-0.68755,45.60174],[-0.688,45.50986],[-0.63799,45.50892],[-0.63978,45.44747],[-0.61574,45.44695],[-0.61619,45.38586],[-0.58544,45.38596],[-0.58529,45.32334],[-0.55379,45.32344],[-0.55275,45.19661],[-0.49094,45.19577],[-0.49184,45.13315],[-0.45661,45.13325],[-0.45512,45.07161],[-0.41611,45.07089],[-0.41621,45.02696],[-0.2907,44.98278],[-0.22,45.06771],[-0.12252,45.02563],[-0.18925,44.94591],[-0.09266,44.91019],[-0.14521,44.8392],[-0.15491,44.84238],[-0.19387,44.78678],[-0.43541,44.87317],[-0.39048,44.68413],[-0.58798,44.66014],[-0.66628,44.99129],[-0.77838,44.99263],[-0.77764,45.05389],[-0.81584,45.05321],[-0.81838,45.11962],[-0.88393,45.12051],[-0.88171,45.18081],[-0.93438,45.18185],[-0.9328,45.24484],[-1.00163,45.24439],[-1.00247,45.30827],[-1.0524,45.31013],[-1.04828,45.36911],[-1.06412,45.36911],[-1.05039,45.18252],[-1.10761,44.80787],[-1.01514,44.80113],[-1.01946,44.76914],[-0.93365,44.76149],[-0.9404,44.7018],[-0.96035,44.56434],[-1.01408,44.56765],[-1.09916,44.1456],[-1.22689,44.14022],[-1.21853,44.03249],[-1.30762,44.029],[-1.39572,43.74301],[-1.31296,43.72951],[-1.37439,43.53109],[-1.34589,43.50606],[-1.59964,43.35423],[-1.76549,43.25548],[-1.79281,43.28038],[-1.80281,43.40425],[-1.72832,43.45033],[-1.58531,43.489],[-1.33584,44.22832],[-1.30744,44.41847],[-1.22511,45.44416],[-1.48685,46.06042],[-1.60176,46.17019],[-1.64442,46.22375],[-1.75643,46.42214],[-2.03483,46.61895],[-2.3466,46.62382],[-2.46561,46.71196],[-2.3233,46.83812],[-2.45286,46.93856],[-2.31733,47.16214],[-2.92848,47.28413],[-2.96742,47.22147],[-3.35602,47.32474],[-3.18803,47.48441],[-3.22791,47.61132],[-3.38912,47.59473],[-3.9162,47.67831],[-4.10163,47.70921],[-4.14314,47.78847],[-4.37619,47.71067],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.60147,48.11469],[-4.5921,48.14758],[-4.67101,48.2331],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.83515,48.54319],[-4.63117,48.66129],[-3.96692,48.77978],[-3.94939,48.74715],[-3.67013,48.89508],[-3.54444,48.90297],[-3.40954,48.91866],[-3.33344,48.90458],[-3.02769,48.9275],[-2.80207,48.79793],[-2.69353,48.76722],[-2.45786,48.70896],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.7243,48.75828],[-1.70557,48.84512],[-1.90304,48.86288],[-1.91027,48.92348],[-1.68714,48.93249],[-1.74277,49.24473],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.18545,49.54836],[-0.96463,49.42509],[-0.74429,49.36802],[-0.39014,49.3622],[-0.24976,49.3158],[-0.13342,49.31293],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.59712,51.17355],[2.66071,51.0196],[2.07124,50.92022],[2.05937,50.94709],[1.7976,50.89906],[1.68089,50.8717],[1.65569,50.59729],[1.75357,50.5932],[1.72295,50.24702],[1.82156,50.24262],[1.80149,50.05116],[1.54565,50.06311],[1.54155,50.01267],[1.42462,50.01747],[1.42667,50.05276],[1.03838,49.84609],[0.9827,49.88916],[0.57961,49.82133],[0.42063,49.76297],[0.4281,49.75445],[0.20831,49.67269],[0.14765,49.57767],[0.13461,49.5809],[0.11117,49.54365],[0.56598,49.52045],[0.5632,49.49989],[0.63001,49.49666],[0.61478,49.37441],[0.54825,49.37851],[0.54254,49.33461],[0.45741,49.33938],[0.45843,49.34492],[0.32597,49.35456],[0.32846,49.38128],[0.28011,49.38433],[0.27689,49.36334],[0.21095,49.36658],[0.20817,49.35084],[0.14326,49.35532],[0.13769,49.3115],[0.07204,49.31532],[0.0675,49.28713],[0.00274,49.29076],[0.00508,49.25711],[-0.02027,49.26036],[-0.03492,49.1973],[-0.19448,49.21463],[-0.38966,49.12726],[-0.45369,49.18792],[-0.3561,49.23214],[-0.82088,49.28331],[-0.99778,49.30149],[-1.16728,49.24545],[-1.19515,49.28183],[-1.26768,49.24099],[-1.34114,49.2975],[-1.24768,49.35025],[-1.44583,49.60689],[-1.81105,49.61757],[-1.77479,49.44333],[-1.72775,49.46509],[-1.5339,49.29098],[-1.47909,49.29233],[-1.47608,49.24027],[-1.43557,49.20326],[-1.47225,49.1822],[-1.45091,48.75725],[-1.31155,48.76408],[-1.30533,48.70216],[-1.2584,48.70421],[-1.25229,48.64353],[-1.23519,48.64435],[-1.2269,48.56824],[-1.85218,48.53086],[-1.84908,48.4975],[-1.92326,48.49187],[-1.92813,48.44096],[-2.04272,48.43601],[-2.03889,48.48191],[-2.2895,48.46102],[-2.3021,48.52433],[-2.40863,48.51618],[-2.42035,48.56954],[-2.43084,48.57852],[-2.49083,48.54924],[-2.47353,48.53326],[-2.54978,48.49647],[-2.54005,48.48747],[-2.70681,48.40746],[-3.02979,48.69115],[-4.01034,48.53179],[-4.05342,48.64412],[-4.38281,48.57349],[-4.35482,48.5118],[-4.38853,48.50473],[-4.13495,48.44868],[-4.16411,48.38936],[-4.01832,48.35685],[-4.04733,48.29918],[-3.98814,48.2867],[-4.0214,48.21606],[-4.03634,48.21958],[-4.06623,48.16028],[-4.16675,48.18247],[-4.18331,48.14934],[-4.17232,48.1065],[-4.20111,48.10285],[-4.18643,48.04389],[-4.18806,48.04061],[-4.35686,48.02305],[-4.25657,47.93997],[-4.23363,47.93497],[-4.21371,47.97598],[-4.21854,47.97726],[-4.1806,48.05569],[-3.6172,47.93124],[-2.17991,47.58642],[-2.25449,47.44501],[-2.30182,47.4568],[-2.32043,47.42092],[-2.30372,47.41755],[-2.34753,47.33499],[-2.36219,47.33837],[-2.38079,47.3039],[-2.35852,47.29854],[-2.29962,47.29784],[-2.29742,47.3618],[-2.13199,47.35852],[-2.13478,47.39107],[-2.01565,47.39623],[-2.01404,47.38095],[-1.92862,47.38254],[-1.92891,47.37956],[-1.8322,47.38184],[-1.82986,47.34165],[-1.73608,47.34304],[-1.73418,47.305],[-1.64084,47.30639],[-1.64011,47.29427],[-1.58355,47.29566],[-1.58531,47.33708],[-1.4612,47.33966],[-1.46003,47.32924],[-1.37211,47.33221],[-1.36054,47.11239],[-1.48567,47.11149],[-1.48582,47.11877],[-1.66897,47.11688],[-1.66971,47.12864],[-1.72553,47.12764],[-1.72612,47.13761],[-1.93975,47.13263],[-1.94019,47.1422],[-1.9925,47.14309],[-1.81066,47.00588],[-1.94723,46.92078],[-1.92891,46.90677],[-1.99529,46.86461],[-1.73652,46.66839],[-1.77535,46.64386],[-1.82678,46.64174],[-1.82473,46.62071],[-1.18192,46.39987],[-0.91261,46.3048],[-0.95481,46.2489],[-0.94235,46.24424],[-0.98385,46.18807]],[[3.14769,42.40072],[3.14949,42.40015],[3.15305,42.40052],[3.15804,42.40243],[3.1877,42.42805],[3.14227,42.5248],[3.06837,42.54635],[3.04884,42.6942],[3.0799,43.03073],[3.22641,43.18727],[3.40916,43.26032],[3.52104,43.25877],[3.66429,43.37628],[3.73841,43.39054],[4.00979,43.53607],[4.17692,43.45636],[4.54355,43.43349],[4.54943,43.35401],[4.83506,43.30891],[4.97506,43.38309],[5.03219,43.31928],[5.25919,43.31928],[5.31082,43.20504],[5.35682,43.18645],[5.36882,43.16785],[5.40232,43.16211],[5.41382,43.17123],[5.40919,43.19921],[5.54232,43.18827],[5.60582,43.14797],[5.6197,43.1529],[5.63832,43.17159],[5.67157,43.1674],[5.69095,43.13411],[5.77607,43.10637],[5.7762,43.09432],[5.75407,43.08328],[5.75707,43.0725],[5.77032,43.06465],[5.85933,43.03469],[5.8877,43.06273],[5.9567,43.06109],[5.96383,43.09277],[6.00033,43.09186],[6.01745,43.06849],[6.10233,43.07415],[6.10483,43.0526],[6.0666,43.04318],[6.06722,43.03785],[6.1427,43.00923],[6.15676,42.98715],[6.19635,42.97331],[6.22221,42.9801],[6.26891,42.99651],[6.25515,43.03627],[6.2019,43.02713],[6.18378,43.09188],[6.30153,43.09909],[6.32478,43.07974],[6.37778,43.08011],[6.38866,43.13395],[6.51341,43.14608],[6.57704,43.17881],[6.62291,43.14563],[6.69779,43.19969],[6.68016,43.23357],[6.72116,43.26007],[6.72241,43.27472],[6.67054,43.29192],[6.68741,43.33113],[6.72416,43.34267],[6.75291,43.409],[6.79104,43.39674],[6.90629,43.41672],[6.96767,43.50273],[6.96617,43.52812],[7.00617,43.53845],[7.03554,43.4982],[7.06892,43.5001],[7.09079,43.51642],[7.06267,43.53672],[7.08254,43.5456],[7.1238,43.53074],[7.1558,43.5437],[7.1433,43.62284],[7.16867,43.64636],[7.2138,43.63469],[7.25417,43.68497],[7.3403,43.66744],[7.36442,43.6894],[7.35305,43.7082],[7.4163,43.71091],[7.45405,43.74506],[7.4943,43.74524],[7.57943,43.78424],[7.60552,43.78603],[7.60368,43.78898],[7.59588,43.79528],[7.59628,43.79549],[7.53853,43.84195],[7.45996,43.79988],[7.44781,43.80934],[7.32353,43.74806],[7.30822,43.76357],[6.64878,43.3885],[6.66865,43.37178],[6.51003,43.27803],[6.56584,43.22509],[6.12681,43.10527],[5.48229,43.24939],[5.47267,43.2309],[5.41567,43.24657],[5.45267,43.3451],[4.80191,43.48158],[4.76416,43.39244],[4.65716,43.42368],[4.67228,43.45608],[4.43203,43.52419],[4.41453,43.49255],[4.16102,43.56433],[4.14452,43.57067],[4.14165,43.57393],[4.18677,43.59946],[4.10565,43.68196],[3.79689,43.52165],[3.77851,43.51313],[3.76464,43.50597],[3.76201,43.50334],[3.74226,43.49328],[3.71601,43.52075],[3.26213,43.28143],[3.24638,43.29735],[3.18388,43.28052],[3.10675,43.24083],[3.15475,43.19419],[2.90625,43.19383],[2.90675,42.76189],[2.94613,42.76208],[2.9465,42.61516],[2.99238,42.61497],[2.99238,42.5125],[3.041,42.51259],[3.04121,42.50093],[3.09086,42.50082],[3.14769,42.40072]],[[6.35945,43.02321],[6.42477,43.02444],[6.45244,43.03504],[6.46985,43.05461],[6.51121,43.05765],[6.52156,43.04318],[6.48364,43.02444],[6.47179,43.00725],[6.41178,42.9918],[6.39852,42.98048],[6.35178,42.99905],[6.35945,43.02321]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral","terms_text":"Ortho littorale 2000"},{"id":"GeolittoralV2-Orthophotos","name":"Géolittoral V2 - Orthophotos 2011-2014","type":"wms","template":"http://geolittoral.din.developpement-durable.gouv.fr/wxs?LAYERS=ortholittorale_v2_rvb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[-0.98385,46.18807],[-0.89497,46.15628],[-0.93455,46.10163],[-0.84388,46.06949],[-0.88241,46.01637],[-0.53787,45.89558],[-0.63498,45.76444],[-0.86666,45.8479],[-0.76264,45.6245],[-0.69695,45.62659],[-0.69397,45.60184],[-0.68755,45.60174],[-0.688,45.50986],[-0.63799,45.50892],[-0.63978,45.44747],[-0.61574,45.44695],[-0.61619,45.38586],[-0.58544,45.38596],[-0.58529,45.32334],[-0.55379,45.32344],[-0.55275,45.19661],[-0.49094,45.19577],[-0.49184,45.13315],[-0.45661,45.13325],[-0.45512,45.07161],[-0.41611,45.07089],[-0.41621,45.02696],[-0.2907,44.98278],[-0.22,45.06771],[-0.12252,45.02563],[-0.18925,44.94591],[-0.09266,44.91019],[-0.14521,44.8392],[-0.15491,44.84238],[-0.19387,44.78678],[-0.43541,44.87317],[-0.39048,44.68413],[-0.58798,44.66014],[-0.66628,44.99129],[-0.77838,44.99263],[-0.77764,45.05389],[-0.81584,45.05321],[-0.81838,45.11962],[-0.88393,45.12051],[-0.88171,45.18081],[-0.93438,45.18185],[-0.9328,45.24484],[-1.00163,45.24439],[-1.00247,45.30827],[-1.0524,45.31013],[-1.04828,45.36911],[-1.06412,45.36911],[-1.05039,45.18252],[-1.10761,44.80787],[-1.01514,44.80113],[-1.01946,44.76914],[-0.93365,44.76149],[-0.9404,44.7018],[-0.96035,44.56434],[-1.01408,44.56765],[-1.09916,44.1456],[-1.22689,44.14022],[-1.21853,44.03249],[-1.30762,44.029],[-1.39572,43.74301],[-1.31296,43.72951],[-1.37439,43.53109],[-1.34589,43.50606],[-1.59964,43.35423],[-1.76549,43.25548],[-1.79281,43.28038],[-1.80281,43.40425],[-1.72832,43.45033],[-1.58531,43.489],[-1.33584,44.22832],[-1.30744,44.41847],[-1.22511,45.44416],[-1.48685,46.06042],[-1.60176,46.17019],[-1.64442,46.22375],[-1.75643,46.42214],[-2.03483,46.61895],[-2.3466,46.62382],[-2.46561,46.71196],[-2.3233,46.83812],[-2.45286,46.93856],[-2.31733,47.16214],[-2.92848,47.28413],[-2.96742,47.22147],[-3.35602,47.32474],[-3.18803,47.48441],[-3.22791,47.61132],[-3.38912,47.59473],[-3.9162,47.67831],[-4.10163,47.70921],[-4.14314,47.78847],[-4.37619,47.71067],[-4.47962,47.9776],[-4.98565,47.99896],[-4.96938,48.08972],[-4.60147,48.11469],[-4.5921,48.14758],[-4.67101,48.2331],[-4.84243,48.3005],[-5.19867,48.44926],[-5.10346,48.51722],[-4.83515,48.54319],[-4.63117,48.66129],[-3.96692,48.77978],[-3.94939,48.74715],[-3.67013,48.89508],[-3.54444,48.90297],[-3.40954,48.91866],[-3.33344,48.90458],[-3.02769,48.9275],[-2.80207,48.79793],[-2.69353,48.76722],[-2.45786,48.70896],[-2.28475,48.71909],[-2.17543,48.65016],[-2.0137,48.73221],[-1.80953,48.73178],[-1.7243,48.75828],[-1.70557,48.84512],[-1.90304,48.86288],[-1.91027,48.92348],[-1.68714,48.93249],[-1.74277,49.24473],[-1.85748,49.3253],[-1.9262,49.65573],[-2.03908,49.67872],[-2.00445,49.76087],[-1.61759,49.68498],[-1.28373,49.76067],[-1.1492,49.63504],[-1.18545,49.54836],[-0.96463,49.42509],[-0.74429,49.36802],[-0.39014,49.3622],[-0.24976,49.3158],[-0.13342,49.31293],[0.02731,49.37619],[0.01801,49.54656],[0.12211,49.69292],[0.51713,49.86466],[1.05727,49.94904],[1.43908,50.11819],[1.53177,50.46437],[1.52549,50.85867],[1.64118,50.95919],[2.59712,51.17355],[2.66071,51.0196],[2.07124,50.92022],[2.05937,50.94709],[1.7976,50.89906],[1.68089,50.8717],[1.65569,50.59729],[1.75357,50.5932],[1.72295,50.24702],[1.82156,50.24262],[1.80149,50.05116],[1.54565,50.06311],[1.54155,50.01267],[1.42462,50.01747],[1.42667,50.05276],[1.03838,49.84609],[0.9827,49.88916],[0.57961,49.82133],[0.42063,49.76297],[0.4281,49.75445],[0.20831,49.67269],[0.14765,49.57767],[0.13461,49.5809],[0.11117,49.54365],[0.56598,49.52045],[0.5632,49.49989],[0.63001,49.49666],[0.61478,49.37441],[0.54825,49.37851],[0.54254,49.33461],[0.45741,49.33938],[0.45843,49.34492],[0.32597,49.35456],[0.32846,49.38128],[0.28011,49.38433],[0.27689,49.36334],[0.21095,49.36658],[0.20817,49.35084],[0.14326,49.35532],[0.13769,49.3115],[0.07204,49.31532],[0.0675,49.28713],[0.00274,49.29076],[0.00508,49.25711],[-0.02027,49.26036],[-0.03492,49.1973],[-0.19448,49.21463],[-0.38966,49.12726],[-0.45369,49.18792],[-0.3561,49.23214],[-0.82088,49.28331],[-0.99778,49.30149],[-1.16728,49.24545],[-1.19515,49.28183],[-1.26768,49.24099],[-1.34114,49.2975],[-1.24768,49.35025],[-1.44583,49.60689],[-1.81105,49.61757],[-1.77479,49.44333],[-1.72775,49.46509],[-1.5339,49.29098],[-1.47909,49.29233],[-1.47608,49.24027],[-1.43557,49.20326],[-1.47225,49.1822],[-1.45091,48.75725],[-1.31155,48.76408],[-1.30533,48.70216],[-1.2584,48.70421],[-1.25229,48.64353],[-1.23519,48.64435],[-1.2269,48.56824],[-1.85218,48.53086],[-1.84908,48.4975],[-1.92326,48.49187],[-1.92813,48.44096],[-2.04272,48.43601],[-2.03889,48.48191],[-2.2895,48.46102],[-2.3021,48.52433],[-2.40863,48.51618],[-2.42035,48.56954],[-2.43084,48.57852],[-2.49083,48.54924],[-2.47353,48.53326],[-2.54978,48.49647],[-2.54005,48.48747],[-2.70681,48.40746],[-3.02979,48.69115],[-4.01034,48.53179],[-4.05342,48.64412],[-4.38281,48.57349],[-4.35482,48.5118],[-4.38853,48.50473],[-4.13495,48.44868],[-4.16411,48.38936],[-4.01832,48.35685],[-4.04733,48.29918],[-3.98814,48.2867],[-4.0214,48.21606],[-4.03634,48.21958],[-4.06623,48.16028],[-4.16675,48.18247],[-4.18331,48.14934],[-4.17232,48.1065],[-4.20111,48.10285],[-4.18643,48.04389],[-4.18806,48.04061],[-4.35686,48.02305],[-4.25657,47.93997],[-4.23363,47.93497],[-4.21371,47.97598],[-4.21854,47.97726],[-4.1806,48.05569],[-3.6172,47.93124],[-2.17991,47.58642],[-2.25449,47.44501],[-2.30182,47.4568],[-2.32043,47.42092],[-2.30372,47.41755],[-2.34753,47.33499],[-2.36219,47.33837],[-2.38079,47.3039],[-2.35852,47.29854],[-2.29962,47.29784],[-2.29742,47.3618],[-2.13199,47.35852],[-2.13478,47.39107],[-2.01565,47.39623],[-2.01404,47.38095],[-1.92862,47.38254],[-1.92891,47.37956],[-1.8322,47.38184],[-1.82986,47.34165],[-1.73608,47.34304],[-1.73418,47.305],[-1.64084,47.30639],[-1.64011,47.29427],[-1.58355,47.29566],[-1.58531,47.33708],[-1.4612,47.33966],[-1.46003,47.32924],[-1.37211,47.33221],[-1.36054,47.11239],[-1.48567,47.11149],[-1.48582,47.11877],[-1.66897,47.11688],[-1.66971,47.12864],[-1.72553,47.12764],[-1.72612,47.13761],[-1.93975,47.13263],[-1.94019,47.1422],[-1.9925,47.14309],[-1.81066,47.00588],[-1.94723,46.92078],[-1.92891,46.90677],[-1.99529,46.86461],[-1.73652,46.66839],[-1.77535,46.64386],[-1.82678,46.64174],[-1.82473,46.62071],[-1.18192,46.39987],[-0.91261,46.3048],[-0.95481,46.2489],[-0.94235,46.24424],[-0.98385,46.18807]],[[3.14769,42.40072],[3.14949,42.40015],[3.15305,42.40052],[3.15804,42.40243],[3.1877,42.42805],[3.14227,42.5248],[3.06837,42.54635],[3.04884,42.6942],[3.0799,43.03073],[3.22641,43.18727],[3.40916,43.26032],[3.52104,43.25877],[3.66429,43.37628],[3.73841,43.39054],[4.00979,43.53607],[4.17692,43.45636],[4.54355,43.43349],[4.54943,43.35401],[4.83506,43.30891],[4.97506,43.38309],[5.03219,43.31928],[5.25919,43.31928],[5.31082,43.20504],[5.35682,43.18645],[5.36882,43.16785],[5.40232,43.16211],[5.41382,43.17123],[5.40919,43.19921],[5.54232,43.18827],[5.60582,43.14797],[5.6197,43.1529],[5.63832,43.17159],[5.67157,43.1674],[5.69095,43.13411],[5.77607,43.10637],[5.7762,43.09432],[5.75407,43.08328],[5.75707,43.0725],[5.77032,43.06465],[5.85933,43.03469],[5.8877,43.06273],[5.9567,43.06109],[5.96383,43.09277],[6.00033,43.09186],[6.01745,43.06849],[6.10233,43.07415],[6.10483,43.0526],[6.0666,43.04318],[6.06722,43.03785],[6.1427,43.00923],[6.15676,42.98715],[6.19635,42.97331],[6.22221,42.9801],[6.26891,42.99651],[6.25515,43.03627],[6.2019,43.02713],[6.18378,43.09188],[6.30153,43.09909],[6.32478,43.07974],[6.37778,43.08011],[6.38866,43.13395],[6.51341,43.14608],[6.57704,43.17881],[6.62291,43.14563],[6.69779,43.19969],[6.68016,43.23357],[6.72116,43.26007],[6.72241,43.27472],[6.67054,43.29192],[6.68741,43.33113],[6.72416,43.34267],[6.75291,43.409],[6.79104,43.39674],[6.90629,43.41672],[6.96767,43.50273],[6.96617,43.52812],[7.00617,43.53845],[7.03554,43.4982],[7.06892,43.5001],[7.09079,43.51642],[7.06267,43.53672],[7.08254,43.5456],[7.1238,43.53074],[7.1558,43.5437],[7.1433,43.62284],[7.16867,43.64636],[7.2138,43.63469],[7.25417,43.68497],[7.3403,43.66744],[7.36442,43.6894],[7.35305,43.7082],[7.4163,43.71091],[7.45405,43.74506],[7.4943,43.74524],[7.57943,43.78424],[7.60552,43.78603],[7.60368,43.78898],[7.59588,43.79528],[7.59628,43.79549],[7.53853,43.84195],[7.45996,43.79988],[7.44781,43.80934],[7.32353,43.74806],[7.30822,43.76357],[6.64878,43.3885],[6.66865,43.37178],[6.51003,43.27803],[6.56584,43.22509],[6.12681,43.10527],[5.48229,43.24939],[5.47267,43.2309],[5.41567,43.24657],[5.45267,43.3451],[4.80191,43.48158],[4.76416,43.39244],[4.65716,43.42368],[4.67228,43.45608],[4.43203,43.52419],[4.41453,43.49255],[4.16102,43.56433],[4.14452,43.57067],[4.14165,43.57393],[4.18677,43.59946],[4.10565,43.68196],[3.79689,43.52165],[3.77851,43.51313],[3.76464,43.50597],[3.76201,43.50334],[3.74226,43.49328],[3.71601,43.52075],[3.26213,43.28143],[3.24638,43.29735],[3.18388,43.28052],[3.10675,43.24083],[3.15475,43.19419],[2.90625,43.19383],[2.90675,42.76189],[2.94613,42.76208],[2.9465,42.61516],[2.99238,42.61497],[2.99238,42.5125],[3.041,42.51259],[3.04121,42.50093],[3.09086,42.50082],[3.14769,42.40072]],[[6.35945,43.02321],[6.42477,43.02444],[6.45244,43.03504],[6.46985,43.05461],[6.51121,43.05765],[6.52156,43.04318],[6.48364,43.02444],[6.47179,43.00725],[6.41178,42.9918],[6.39852,42.98048],[6.35178,42.99905],[6.35945,43.02321]]],"terms_url":"https://wiki.openstreetmap.org/wiki/WikiProject_France/G%C3%A9oLittoral","terms_text":"Ortho Littorale V2 - MEDDE"},{"id":"lu.geoportail.opendata.ortho_10cm_proto_lidar","name":"geoportail.lu LIDAR prototype Nordstad 2017","type":"tms","template":"https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_10cm_proto_lidar/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2017-04-09T00:00:00.000Z","startDate":"2017-04-09T00:00:00.000Z","zoomExtent":[6,21],"polygon":[[[6.05001,49.82175],[6.04979,49.91166],[6.18901,49.91172],[6.18897,49.82181],[6.05001,49.82175]]],"terms_url":"https://act.public.lu/fr/cartographie/lidar","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"lu.geoportail.opendata.ortho_2019_winter","name":"geoportail.lu ortho technique 2019 (10cm)","type":"tms","template":"https://{switch:wmts1,wmts2,wmts3}.geoportail.lu/opendata/wmts/ortho_2019_winter/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","startDate":"2019-02-15T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"Geoportal2-PL-Streets_WMS","name":"Geoportal 2 Nazwy ulic","type":"wms","template":"https://integracja.gugik.gov.pl/cgi-bin/KrajowaIntegracjaNumeracjiAdresowej?LAYERS=prg-ulice&STYLES=default&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://www.geoportal.gov.pl/","terms_text":"Główny Urząd Geodezji i Kartografii","best":true,"description":"Usługa przeglądania WMS Krajowa Integracja Numeracji Adresowej umożliwiająca pobieranie obrazów mapowych utworzonych na podstawie danych przestrzennych z Państwowego Rejestru Granic w zakresie ewidencji ulic i adresów.","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","overlay":true},{"id":"Geoportal2-PL-buildings_WMS","name":"Geoportal 2: Ewidencja budynków WMS","type":"wms","template":"https://integracja.gugik.gov.pl/cgi-bin/KrajowaIntegracjaEwidencjiGruntow?LAYERS=budynki&STYLES=default&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://www.geoportal.gov.pl/","terms_text":"Główny Urząd Geodezji i Kartografii","best":true,"description":"Usługa Krajowa Integracja Ewidencji Gruntów jest usługą zbiorczą prezentacji danych ewidencyjnych pochodzących bezpośrednio z jednostek szczebla powiatowego. Usługa zawiera jedynie dane tych jednostek, które dysponują usługą WMS o odpowiednich parametrach i zdecydowały się włączyć swoją usługę WMS do usługi zbiorczej KrajowaIntegracjaEwidencjiGruntow.","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","overlay":true},{"id":"Geoportal2-PL-HighResolution-aerial_image_WMS","name":"Geoportal 2: High Resolution Orthophotomap (aerial image)","type":"wms","template":"https://mapy.geoportal.gov.pl/wss/service/PZGIK/ORTO/WMS/HighResolution?LAYERS=Raster&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://www.geoportal.gov.pl/","terms_text":"Główny Urząd Geodezji i Kartografii","best":true,"description":"Ortofotomapa o rozdzielczości 10 cm lub większej. Dane posortowane są wg rozdzielczości a następnie wg aktualności, np. arkusz z 2012 roku o rozdzielczości 8 cm przysłania arkusz z 2019 roku o rozdzielczości 10 cm.","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png"},{"id":"Geoportal2-PL-aerial_image_WMS","name":"Geoportal 2: Orthophotomap (aerial image)","type":"wms","template":"https://mapy.geoportal.gov.pl/wss/service/PZGIK/ORTO/WMS/StandardResolution?LAYERS=Raster&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://www.geoportal.gov.pl/","terms_text":"Główny Urząd Geodezji i Kartografii","best":true,"description":"Usługa przeglądania (Web Map Service,WMS) umożliwiająca przeglądanie ortofotomap dla obszaru Polski. Dane udostępniane za pomocą tej usługi stanowią ortofotomapę wykonaną ze zdjęć lotniczych. Usługa oferuje wsparcie dla interfejsu WMS 1.3.0.","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png"},{"id":"Geoportal2-PL-prng","name":"Geoportal 2: PRNG (geo names)","type":"wms","template":"https://mapy.geoportal.gov.pl/wss/service/pub/guest/G2_PRNG_WMS/MapServer/WMSServer?LAYERS=PozostaleObiektyFizjograficzne,Hydrografia,PozostaleMiejscowosci,Wies,UksztaltowanieTerenu&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"http://www.codgik.gov.pl/index.php/darmowe-dane/prng.html","terms_text":"Centralny Ośrodek Dokumentacji Geodezyjnej i Kartograficznej","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","overlay":true},{"id":"Geoportal2-PL-addres_points_WMS","name":"Geoportal 2: Punkty adresowe","type":"wms","template":"https://integracja.gugik.gov.pl/cgi-bin/KrajowaIntegracjaNumeracjiAdresowej?LAYERS=prg-adresy&STYLES=default&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,23],"polygon":[[[15.9751,54.37092],[16.31116,54.55618],[17.13919,54.78457],[18.34485,54.90227],[19.66137,54.47372],[20.28152,54.42135],[21.46639,54.34064],[22.77599,54.37698],[22.8626,54.42336],[23.29567,54.26786],[23.53472,54.09553],[23.52086,53.97752],[23.71834,53.46296],[23.92968,53.18567],[23.92968,52.68873],[23.7322,52.60675],[23.5659,52.58781],[23.20905,52.33026],[23.19519,52.23701],[23.50354,52.18606],[23.69062,52.00301],[23.59708,51.7399],[23.66291,51.38886],[23.9366,50.98278],[24.16873,50.86048],[24.01975,50.80358],[24.10983,50.66105],[24.05786,50.41884],[23.61787,50.30834],[22.68244,49.51635],[22.73788,49.20949],[22.90417,49.07804],[22.8626,48.99401],[22.60969,49.03718],[22.07615,49.20044],[21.84749,49.37219],[21.37631,49.44883],[21.10262,49.37219],[20.91207,49.3022],[20.6453,49.39023],[20.18451,49.33156],[20.11869,49.20044],[19.942,49.13021],[19.76531,49.21176],[19.74798,49.39925],[19.60247,49.41503],[19.50893,49.58154],[19.42925,49.59052],[19.23177,49.41503],[18.99618,49.38798],[18.93382,49.4916],[18.83681,49.49386],[18.80216,49.66234],[18.6428,49.70941],[18.52154,49.89947],[18.08154,50.01092],[17.88753,49.98865],[17.73855,50.06877],[17.6069,50.17096],[17.74548,50.21532],[17.71084,50.3017],[17.41635,50.26407],[16.94864,50.44533],[16.89321,50.40339],[17.00061,50.31055],[17.01793,50.22419],[16.81352,50.18649],[16.64029,50.09767],[16.43242,50.28621],[16.19683,50.42767],[16.42203,50.58852],[16.33888,50.66324],[16.22802,50.63688],[16.05479,50.61271],[15.57322,50.76415],[15.26834,50.89764],[15.24409,50.9806],[15.02929,51.0133],[15.00157,50.85829],[14.81102,50.87359],[14.95653,51.07212],[15.01889,51.29146],[14.93921,51.46015],[14.72094,51.55718],[14.75212,51.62606],[14.59968,51.84276],[14.70362,52.07334],[14.55811,52.24974],[14.51654,52.42544],[14.60315,52.58781],[14.11465,52.82083],[14.15276,52.9734],[14.35024,53.07342],[14.42299,53.26656],[14.1978,53.87348],[14.22205,53.99585],[15.9751,54.37092]]],"terms_url":"https://www.geoportal.gov.pl/","terms_text":"Główny Urząd Geodezji i Kartografii","best":true,"description":"Usługa przeglądania WMS Krajowa Integracja Numeracji Adresowej umożliwiająca pobieranie obrazów mapowych utworzonych na podstawie danych przestrzennych z Państwowego Rejestru Granic w zakresie ewidencji ulic i adresów.","icon":"https://wiki.openstreetmap.org/w/images/2/25/Geoportal-josm.png","overlay":true},{"id":"Gliwice-buildings","name":"Gliwice: Buildings","type":"wms","template":"http://msip-mapa.um.gliwice.pl:9090/isdp/gs/ows/wms?LAYERS=default:EGIB_budynek,default:pkt_adr&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&TRANSPARENT=True","projection":"EPSG:900913","polygon":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"terms_text":"Urząd Miasta Gliwice","overlay":true},{"id":"Gliwice-2013","name":"Gliwice: Orthophotomap 2013 (aerial image)","type":"wms","template":"http://msip-mapa.um.gliwice.pl:9090/isdp/gs/ows/wms2?LAYERS=default:orto_2013&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[15,22],"polygon":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"terms_text":"Urząd Miasta Gliwice"},{"id":"Gliwice-2017","name":"Gliwice: Orthophotomap 2017 (aerial image)","type":"wms","template":"http://msip-mapa.um.gliwice.pl:9090/isdp/gs/ows/wms2?LAYERS=default:orto_2017&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[15,22],"polygon":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"terms_text":"Urząd Miasta Gliwice"},{"id":"Gliwice-2018","name":"Gliwice: Orthophotomap 2018 (aerial image)","type":"wms","template":"http://msip-mapa.um.gliwice.pl:9090/isdp/gs/ows/wms2?LAYERS=default:orto_2018&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[15,22],"polygon":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"terms_text":"Urząd Miasta Gliwice"},{"id":"Gliwice-2020","name":"Gliwice: Orthophotomap 2020 (aerial image)","type":"wms","template":"http://msip-mapa.um.gliwice.pl:9090/isdp/gs/ows/wms2?LAYERS=default:orto_2020&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[15,22],"polygon":[[[18.57376,50.34828],[18.58723,50.35464],[18.58421,50.3601],[18.59264,50.37522],[18.65228,50.38297],[18.67384,50.37675],[18.67672,50.36174],[18.69218,50.34467],[18.70805,50.33799],[18.74154,50.3391],[18.75145,50.33046],[18.74679,50.31236],[18.75512,50.30193],[18.76358,50.29989],[18.76539,50.26873],[18.744,50.26541],[18.73482,50.25377],[18.72775,50.22843],[18.71439,50.22835],[18.71426,50.21978],[18.67522,50.21969],[18.67607,50.22562],[18.65098,50.23169],[18.6288,50.22539],[18.61744,50.24044],[18.62699,50.24369],[18.6315,50.25487],[18.61406,50.2576],[18.60319,50.25206],[18.56536,50.24763],[18.54841,50.2492],[18.55857,50.2826],[18.5459,50.29947],[18.52896,50.33687],[18.55118,50.35332],[18.57376,50.34828]]],"terms_text":"Urząd Miasta Gliwice"},{"id":"gothenburg-citymap","name":"Gothenburg City map","type":"wms","template":"https://opengeodata.goteborg.se/services/stadskarta/wms/v4?LAYERS=stadskarta&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,21],"polygon":[[[12.59094,57.40211],[12.59094,57.94354],[11.15583,57.94354],[11.15583,57.40211],[12.59094,57.40211]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/718","terms_text":"© Gothenburg municipality, CC0","description":"The city map is an overview map that describes Gothenburg. It contains general information about land, communications, hydrography, buildings, address numbers and street names, administrative division and other orientation text.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"gothenburg-dtm-2017","name":"Gothenburg Hillshade","type":"wms","template":"https://opengeodata.goteborg.se/services/hojdmodell/wms/v2?LAYERS=terranglutning&STYLES=hojdmodell-v2:terranglutning&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[5,21],"polygon":[[[11.71898,57.54716],[12.01767,57.56411],[11.95862,57.66818],[12.09595,57.68177],[12.06574,57.73166],[12.1138,57.77086],[12.24289,57.79466],[12.16187,57.86704],[11.95519,57.86631],[11.68534,57.72396],[11.71898,57.54716]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/6520","terms_text":"© Gothenburg municipality, CC0","description":"Web map service presenting hillshade and slope based on the 2017 elevation model for City of Gothenburg. Resolution 0.5 meters per pixel.","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"gothenburg-ortho","name":"Gothenburg Orthophoto 2015","type":"wms","template":"https://opengeodata.goteborg.se/services/ortofoto/wms/v1?LAYERS=orto_2015&STYLES=raster&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[6,20],"polygon":[[[11.71898,57.54716],[12.01767,57.56411],[11.95862,57.66818],[12.09595,57.68177],[12.06574,57.73166],[12.1138,57.77086],[12.24289,57.79466],[12.16187,57.86704],[11.95519,57.86631],[11.68534,57.72396],[11.71898,57.54716]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/892","terms_text":"© Gothenburg municipality, CC0","description":"Orthophoto for Gothenburg municipality","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"gothenburg-ortho_2017","name":"Gothenburg Orthophoto 2017","type":"wms","template":"https://opengeodata.goteborg.se/services/ortofoto/wms/v1?LAYERS=orto_2017&STYLES=raster&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[6,20],"polygon":[[[11.71898,57.54716],[12.01767,57.56411],[11.95862,57.66818],[12.09595,57.68177],[12.06574,57.73166],[12.1138,57.77086],[12.24289,57.79466],[12.16187,57.86704],[11.95519,57.86631],[11.68534,57.72396],[11.71898,57.54716]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/892","terms_text":"© Gothenburg municipality, CC0","description":"Orthophoto for Gothenburg municipality","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"gothenburg-ortho_2019","name":"Gothenburg Orthophoto 2019","type":"wms","template":"https://opengeodata.goteborg.se/services/ortofoto/wms/v1?LAYERS=orto_2019&STYLES=raster&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[6,20],"polygon":[[[11.71898,57.54716],[12.01767,57.56411],[11.95862,57.66818],[12.09595,57.68177],[12.06574,57.73166],[12.1138,57.77086],[12.24289,57.79466],[12.16187,57.86704],[11.95519,57.86631],[11.68534,57.72396],[11.71898,57.54716]]],"terms_url":"https://catalog.goteborg.se/catalog/6/datasets/892","terms_text":"© Gothenburg municipality, CC0","best":true,"description":"Orthophoto for Gothenburg municipality","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/9/97/G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png/206px-G%C3%B6teborg_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"GRAFCAN_Express-Canary_Islands","name":"GRAFCAN OrtoExpress - Canary Islands","type":"wms","template":"https://idecan1.grafcan.es/ServicioWMS/OrtoExpress?LAYERS=ortoexpress&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[-17.92917,28.89106],[-18.03334,28.79981],[-18.03743,28.73178],[-17.87811,28.43224],[-17.83113,28.41787],[-17.72696,28.56328],[-17.73105,28.67982],[-17.68407,28.73715],[-17.75352,28.86781],[-17.85768,28.86065],[-17.92917,28.89106]],[[-18.07818,27.77211],[-18.13707,27.78751],[-18.17054,27.76441],[-18.1779,27.70695],[-18.15782,27.68799],[-18.0581,27.6791],[-18.00656,27.62574],[-17.96105,27.62218],[-17.93896,27.70814],[-17.90751,27.7194],[-17.86199,27.80468],[-17.8727,27.84079],[-17.92558,27.86801],[-18.00522,27.83605],[-18.01392,27.8035],[-18.07818,27.77211]],[[-17.26878,28.23996],[-17.33403,28.21933],[-17.36331,28.1537],[-17.36666,28.08803],[-17.33069,28.04742],[-17.27296,28.00681],[-17.20017,28.00533],[-17.14412,28.02896],[-17.07803,28.0836],[-17.08723,28.1537],[-17.1826,28.2149],[-17.26878,28.23996]],[[-16.9358,28.37623],[-16.945,28.33574],[-16.71995,27.98317],[-16.62541,27.98317],[-16.52753,28.01641],[-16.39953,28.14632],[-16.33594,28.30922],[-16.33009,28.36445],[-16.10253,28.52408],[-16.09834,28.5814],[-16.14268,28.62547],[-16.33929,28.59609],[-16.43801,28.53143],[-16.53924,28.44025],[-16.83959,28.41229],[-16.9358,28.37623]],[[-15.68833,28.20585],[-15.47395,28.16437],[-15.42427,28.21046],[-15.36283,28.17244],[-15.38375,28.05598],[-15.33146,27.98444],[-15.3576,27.8042],[-15.5916,27.69777],[-15.7001,27.73365],[-15.79944,27.80305],[-15.87134,27.92439],[-15.84781,28.03637],[-15.74716,28.08943],[-15.73147,28.18396],[-15.68833,28.20585]],[[-14.50882,28.13448],[-14.41078,28.13448],[-14.24868,28.24278],[-14.23822,28.34637],[-14.03953,28.73911],[-13.89442,28.78265],[-13.78592,28.77692],[-13.82122,28.38433],[-13.91534,28.19095],[-14.18593,28.13563],[-14.30881,28.00529],[-14.54019,28.05144],[-14.50882,28.13448]],[[-13.5525,29.37727],[-13.50868,29.36824],[-13.47955,29.38728],[-13.47543,29.40963],[-13.5003,29.42807],[-13.5505,29.40712],[-13.5525,29.37727]],[[-13.3976,29.16102],[-13.42814,29.12157],[-13.44174,28.99084],[-13.53899,28.91947],[-13.70841,28.88468],[-13.77116,28.80865],[-13.90083,28.83522],[-13.90711,28.88926],[-13.85796,28.93686],[-13.85691,29.03657],[-13.67599,29.14988],[-13.56723,29.15719],[-13.55428,29.35073],[-13.39988,29.21806],[-13.3976,29.16102]],[[-13.33792,29.28667],[-13.35035,29.27436],[-13.3386,29.26533],[-13.32617,29.27765],[-13.33792,29.28667]]],"terms_url":"https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOWMS_20160101","terms_text":"GRAFCAN OrtoExpress","description":"High resolution imagery covering the Canary Islands, 20 cm/pixel. More recent in some urban areas than the higher-resolution \"GRAFCAN OrtoExpress Urbana\"."},{"id":"GRAFCAN-Canary_Islands","name":"GRAFCAN OrtoExpress Urbana - Canary Islands","type":"wms","template":"https://idecan1.grafcan.es/ServicioWMS/OrtoUrb?LAYERS=OU&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[-17.92917,28.89106],[-18.03334,28.79981],[-18.03743,28.73178],[-17.87811,28.43224],[-17.83113,28.41787],[-17.72696,28.56328],[-17.73105,28.67982],[-17.68407,28.73715],[-17.75352,28.86781],[-17.85768,28.86065],[-17.92917,28.89106]],[[-18.07818,27.77211],[-18.13707,27.78751],[-18.17054,27.76441],[-18.1779,27.70695],[-18.15782,27.68799],[-18.0581,27.6791],[-18.00656,27.62574],[-17.96105,27.62218],[-17.93896,27.70814],[-17.90751,27.7194],[-17.86199,27.80468],[-17.8727,27.84079],[-17.92558,27.86801],[-18.00522,27.83605],[-18.01392,27.8035],[-18.07818,27.77211]],[[-17.26878,28.23996],[-17.33403,28.21933],[-17.36331,28.1537],[-17.36666,28.08803],[-17.33069,28.04742],[-17.27296,28.00681],[-17.20017,28.00533],[-17.14412,28.02896],[-17.07803,28.0836],[-17.08723,28.1537],[-17.1826,28.2149],[-17.26878,28.23996]],[[-16.9358,28.37623],[-16.945,28.33574],[-16.71995,27.98317],[-16.62541,27.98317],[-16.52753,28.01641],[-16.39953,28.14632],[-16.33594,28.30922],[-16.33009,28.36445],[-16.10253,28.52408],[-16.09834,28.5814],[-16.14268,28.62547],[-16.33929,28.59609],[-16.43801,28.53143],[-16.53924,28.44025],[-16.83959,28.41229],[-16.9358,28.37623]],[[-15.68833,28.20585],[-15.47395,28.16437],[-15.42427,28.21046],[-15.36283,28.17244],[-15.38375,28.05598],[-15.33146,27.98444],[-15.3576,27.8042],[-15.5916,27.69777],[-15.7001,27.73365],[-15.79944,27.80305],[-15.87134,27.92439],[-15.84781,28.03637],[-15.74716,28.08943],[-15.73147,28.18396],[-15.68833,28.20585]],[[-14.50882,28.13448],[-14.41078,28.13448],[-14.24868,28.24278],[-14.23822,28.34637],[-14.03953,28.73911],[-13.89442,28.78265],[-13.78592,28.77692],[-13.82122,28.38433],[-13.91534,28.19095],[-14.18593,28.13563],[-14.30881,28.00529],[-14.54019,28.05144],[-14.50882,28.13448]],[[-13.5525,29.37727],[-13.50868,29.36824],[-13.47955,29.38728],[-13.47543,29.40963],[-13.5003,29.42807],[-13.5505,29.40712],[-13.5525,29.37727]],[[-13.3976,29.16102],[-13.42814,29.12157],[-13.44174,28.99084],[-13.53899,28.91947],[-13.70841,28.88468],[-13.77116,28.80865],[-13.90083,28.83522],[-13.90711,28.88926],[-13.85796,28.93686],[-13.85691,29.03657],[-13.67599,29.14988],[-13.56723,29.15719],[-13.55428,29.35073],[-13.39988,29.21806],[-13.3976,29.16102]],[[-13.33792,29.28667],[-13.35035,29.27436],[-13.3386,29.26533],[-13.32617,29.27765],[-13.33792,29.28667]]],"terms_url":"https://catalogo.idecanarias.es/geonetwork/srv/spa/catalog.search#/metadata/spagrafcan_ORTOURBANAWMS_20160101","terms_text":"GRAFCAN OrtoExpress Urbana","best":true,"description":"High resolution imagery covering the Canary Islands, 12.5 or 10 cm/pixel in urban areas, and 20 cm/pixel elsewhere. Older in some urban areas than the lower-resolution \"GRAFCAN OrtoExpress\"."},{"id":"GrandNancy_Orthophotographie_2012","name":"GrandNancy - Orthophoto - 2012","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/nancy_2012/{zoom}/{x}/{y}","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[6.06066,48.60554],[6.29717,48.59923],[6.30611,48.74077],[6.06896,48.7471],[6.06066,48.60554]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie","terms_text":"GrandNancy Orthophotographie 2012"},{"id":"GURS-buildings","name":"GURS: Building outlines","type":"tms","template":"https://wms.openstreetmap.de/tms/GURS-building-outlines/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/","terms_text":"CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png","overlay":true},{"id":"GURS-roads","name":"GURS: Road lines","type":"tms","template":"https://wms.openstreetmap.de/tms/GURS-road-lines/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://www.gov.si/drzavni-organi/organi-v-sestavi/geodetska-uprava/","terms_text":"CC-BY ©2020 Geodetska uprava Republike Slovenije (gov.si).","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/GURSRoadlines.png","overlay":true},{"id":"GURS-DOF025","name":"GURS: Slovenia orthophoto 25cm (DOF025)","type":"tms","template":"https://gis.level2.si/geoserver/gwc/service/tms/1.0.0/level2%3ADOF025_latest@EPSG%3A3857@jpeg/{zoom}/{x}/{-y}.jpeg","endDate":"2019-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.66258,45.57393],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.50227,45.53338],[14.36774,45.4702],[14.33394,45.46206],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.98768,45.44408],[13.91892,45.43951],[13.88867,45.416],[13.81063,45.42531],[13.76403,45.45271],[13.67553,45.43241],[13.57898,45.46183],[13.54054,45.53059],[13.61345,45.54452],[13.71618,45.55473],[13.72281,45.56958],[13.69431,45.58953],[13.69763,45.59973],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.73292,45.75707],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56428,45.86095],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.57859,46.48947],[16.64289,46.48765],[16.64189,46.45889],[16.49276,46.46071],[16.49143,46.48673],[16.40593,46.48856],[16.40626,46.51525],[16.32407,46.51616],[16.32274,46.49084],[16.2582,46.489],[16.28533,46.42441],[16.29755,46.41161],[16.3476,46.41024],[16.34627,46.35468],[16.16698,46.35514],[16.09937,46.35605],[16.07551,46.33684],[16.04058,46.32708],[16.01819,46.29964],[15.89754,46.27342],[15.87799,46.25165],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.73184,46.03213],[15.72802,45.98275],[15.71791,45.97827],[15.71645,45.9178],[15.69803,45.91005],[15.69737,45.8766],[15.7272,45.87591],[15.72554,45.82097],[15.64036,45.81635],[15.58071,45.84199],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.30332,45.74794],[15.29139,45.73452],[15.29371,45.71833],[15.36032,45.71856],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.31145,45.5423],[15.39644,45.48763],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://level2.si/sl/pogoji-uporabe-spletnih-servisov/","terms_text":"CC-BY Geodetska uprava Republike Slovenije, DOF025, 2017-2019; Level2.si 2020","best":true,"description":"Slovenia orthophoto 25cm/pixel (GURS DOF050), hosted by Level2.si","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/level2.png"},{"id":"hamburg-20cm","name":"Hamburg (20 cm)","type":"wms","template":"https://geodienste.hamburg.de/HH_WMS_DOP20?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[8.4826,53.9356],[8.48274,53.90924],[8.5275,53.90941],[8.52792,53.93577],[8.4826,53.9356]],[[9.77232,53.54352],[9.77434,53.55433],[9.76314,53.55521],[9.73047,53.55787],[9.73465,53.56536],[9.75793,53.61828],[9.77129,53.63131],[9.7707,53.61607],[9.79634,53.6103],[9.78993,53.60386],[9.81817,53.58591],[9.83773,53.59198],[9.84498,53.59498],[9.85416,53.59805],[9.86814,53.6093],[9.86931,53.61323],[9.88505,53.62199],[9.88697,53.6252],[9.89356,53.63026],[9.89637,53.63122],[9.89688,53.63492],[9.90678,53.65231],[9.93115,53.65262],[9.94552,53.65276],[9.95024,53.65085],[9.95155,53.65065],[9.97795,53.64887],[9.98492,53.6483],[9.98739,53.65072],[9.9996,53.68153],[10.02282,53.68157],[10.04338,53.68198],[10.05148,53.67759],[10.06925,53.67955],[10.0604,53.68833],[10.071,53.69585],[10.0707,53.70996],[10.08198,53.72044],[10.11908,53.71324],[10.16939,53.73896],[10.19369,53.731],[10.1779,53.70992],[10.15694,53.70451],[10.15829,53.68944],[10.14342,53.68057],[10.14176,53.67744],[10.14473,53.67613],[10.14643,53.67588],[10.14955,53.67545],[10.17153,53.66869],[10.19885,53.64675],[10.18973,53.63838],[10.22202,53.63349],[10.18887,53.61316],[10.19236,53.59474],[10.20117,53.58392],[10.15169,53.57619],[10.15067,53.56973],[10.148,53.5639],[10.15308,53.56242],[10.15942,53.56091],[10.15189,53.5417],[10.15465,53.53657],[10.16874,53.5374],[10.16327,53.52185],[10.16611,53.52013],[10.16919,53.51965],[10.18951,53.51148],[10.21043,53.51996],[10.21828,53.49923],[10.2367,53.49629],[10.25008,53.47898],[10.26592,53.47079],[10.29043,53.45512],[10.30962,53.44309],[10.31223,53.45229],[10.32514,53.44979],[10.30799,53.43332],[10.25598,53.41623],[10.25089,53.41024],[10.24578,53.40261],[10.24155,53.39797],[10.16555,53.39933],[10.14506,53.41614],[10.10949,53.42649],[10.1068,53.42658],[10.07581,53.45436],[10.05155,53.46394],[10.03517,53.4469],[10.01449,53.44203],[10.02294,53.43228],[9.99754,53.42546],[9.98243,53.41478],[9.97873,53.4142],[9.9581,53.42708],[9.92953,53.42007],[9.92552,53.41924],[9.90667,53.41596],[9.92305,53.43631],[9.91704,53.44664],[9.90436,53.45707],[9.89493,53.45583],[9.86885,53.44462],[9.86211,53.42942],[9.84872,53.44111],[9.80663,53.46648],[9.80021,53.47372],[9.8028,53.49383],[9.78203,53.49236],[9.76885,53.5053],[9.77107,53.52185],[9.78105,53.51838],[9.77352,53.52796],[9.77232,53.54352]]],"terms_url":"https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung","terms_text":"Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"},{"id":"Hamburg-DK5","name":"Hamburg (DK5)","type":"wms","template":"https://geodienste.hamburg.de/HH_WMS_DK5?LAYERS=1&STYLES=&FORMAT=image/png&TRANSPARENT=false&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[8.4826,53.9356],[8.48274,53.90924],[8.5275,53.90941],[8.52792,53.93577],[8.4826,53.9356]],[[9.77232,53.54352],[9.77434,53.55433],[9.76314,53.55521],[9.73047,53.55787],[9.73465,53.56536],[9.75793,53.61828],[9.77129,53.63131],[9.7707,53.61607],[9.79634,53.6103],[9.78993,53.60386],[9.81817,53.58591],[9.83773,53.59198],[9.84498,53.59498],[9.85416,53.59805],[9.86814,53.6093],[9.86931,53.61323],[9.88505,53.62199],[9.88697,53.6252],[9.89356,53.63026],[9.89637,53.63122],[9.89688,53.63492],[9.90678,53.65231],[9.93115,53.65262],[9.94552,53.65276],[9.95024,53.65085],[9.95155,53.65065],[9.97795,53.64887],[9.98492,53.6483],[9.98739,53.65072],[9.9996,53.68153],[10.02282,53.68157],[10.04338,53.68198],[10.05148,53.67759],[10.06925,53.67955],[10.0604,53.68833],[10.071,53.69585],[10.0707,53.70996],[10.08198,53.72044],[10.11908,53.71324],[10.16939,53.73896],[10.19369,53.731],[10.1779,53.70992],[10.15694,53.70451],[10.15829,53.68944],[10.14342,53.68057],[10.14176,53.67744],[10.14473,53.67613],[10.14643,53.67588],[10.14955,53.67545],[10.17153,53.66869],[10.19885,53.64675],[10.18973,53.63838],[10.22202,53.63349],[10.18887,53.61316],[10.19236,53.59474],[10.20117,53.58392],[10.15169,53.57619],[10.15067,53.56973],[10.148,53.5639],[10.15308,53.56242],[10.15942,53.56091],[10.15189,53.5417],[10.15465,53.53657],[10.16874,53.5374],[10.16327,53.52185],[10.16611,53.52013],[10.16919,53.51965],[10.18951,53.51148],[10.21043,53.51996],[10.21828,53.49923],[10.2367,53.49629],[10.25008,53.47898],[10.26592,53.47079],[10.29043,53.45512],[10.30962,53.44309],[10.31223,53.45229],[10.32514,53.44979],[10.30799,53.43332],[10.25598,53.41623],[10.25089,53.41024],[10.24578,53.40261],[10.24155,53.39797],[10.16555,53.39933],[10.14506,53.41614],[10.10949,53.42649],[10.1068,53.42658],[10.07581,53.45436],[10.05155,53.46394],[10.03517,53.4469],[10.01449,53.44203],[10.02294,53.43228],[9.99754,53.42546],[9.98243,53.41478],[9.97873,53.4142],[9.9581,53.42708],[9.92953,53.42007],[9.92552,53.41924],[9.90667,53.41596],[9.92305,53.43631],[9.91704,53.44664],[9.90436,53.45707],[9.89493,53.45583],[9.86885,53.44462],[9.86211,53.42942],[9.84872,53.44111],[9.80663,53.46648],[9.80021,53.47372],[9.8028,53.49383],[9.78203,53.49236],[9.76885,53.5053],[9.77107,53.52185],[9.78105,53.51838],[9.77352,53.52796],[9.77232,53.54352]]],"terms_url":"https://www.hamburg.de/bsw/landesbetrieb-geoinformation-und-vermessung","terms_text":"Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung"},{"id":"Hampshire-Aerial-FCIR","name":"Hampshire Aerial FCIR","type":"tms","template":"https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_fcir/{zoom}/{x}/{y}.png","endDate":"2014-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-1.31567,50.77809],[-1.49139,50.73027],[-1.57113,50.69041],[-1.68095,50.71748],[-1.69338,50.73484],[-1.69528,50.74065],[-1.68689,50.74999],[-1.71068,50.74812],[-1.7195,50.75261],[-1.746,50.74452],[-1.74845,50.75675],[-1.74287,50.76397],[-1.75101,50.77577],[-1.78525,50.76177],[-1.79911,50.77236],[-1.82256,50.77225],[-1.82678,50.78077],[-1.8225,50.79933],[-1.80732,50.80074],[-1.81566,50.80752],[-1.80889,50.81358],[-1.80579,50.83249],[-1.79816,50.83535],[-1.80649,50.84414],[-1.80988,50.86189],[-1.81378,50.85591],[-1.83052,50.85261],[-1.85271,50.85651],[-1.85655,50.86684],[-1.8492,50.87802],[-1.85082,50.89178],[-1.84077,50.90051],[-1.82693,50.89939],[-1.82006,50.90492],[-1.82151,50.91691],[-1.81689,50.92412],[-1.84114,50.92886],[-1.87446,50.91441],[-1.91129,50.9439],[-1.92339,50.95917],[-1.95751,50.97575],[-1.9591,50.99152],[-1.94907,50.98649],[-1.92879,51.00055],[-1.88709,51.0026],[-1.87393,51.0097],[-1.8717,50.99083],[-1.85433,51.00786],[-1.83567,51.01238],[-1.81502,50.9899],[-1.80031,50.99457],[-1.75184,50.98133],[-1.71927,50.98047],[-1.69142,50.95943],[-1.66829,50.95041],[-1.6526,50.95029],[-1.63536,50.96269],[-1.62397,50.95903],[-1.6089,50.97686],[-1.62172,50.98099],[-1.63115,50.99984],[-1.60984,51.01225],[-1.60173,51.01042],[-1.60787,51.01582],[-1.6057,51.02271],[-1.63542,51.03176],[-1.63858,51.04126],[-1.63107,51.07819],[-1.64025,51.09201],[-1.6306,51.10359],[-1.63408,51.11099],[-1.63067,51.11652],[-1.64109,51.12237],[-1.66525,51.12546],[-1.65724,51.15539],[-1.67474,51.177],[-1.67213,51.18708],[-1.69679,51.20233],[-1.69247,51.21617],[-1.65288,51.22301],[-1.63564,51.22019],[-1.62395,51.24136],[-1.61402,51.24467],[-1.60741,51.25513],[-1.57717,51.25863],[-1.54443,51.24826],[-1.5384,51.25085],[-1.53436,51.25919],[-1.54345,51.25957],[-1.54007,51.27602],[-1.54596,51.28095],[-1.53591,51.28978],[-1.52595,51.28975],[-1.53093,51.29948],[-1.53008,51.3111],[-1.53628,51.31596],[-1.52986,51.34057],[-1.51552,51.34219],[-1.49498,51.33228],[-1.43599,51.33861],[-1.44759,51.3464],[-1.4463,51.35699],[-1.43056,51.35941],[-1.41608,51.37517],[-1.34899,51.37045],[-1.31472,51.37627],[-1.27555,51.3707],[-1.25116,51.37511],[-1.24118,51.36938],[-1.22209,51.37271],[-1.17602,51.36102],[-1.14321,51.36028],[-1.11875,51.36156],[-1.12096,51.36859],[-1.11678,51.3767],[-1.08363,51.38712],[-1.04754,51.36122],[-0.9904,51.36619],[-0.97264,51.36297],[-0.92376,51.36937],[-0.87681,51.3555],[-0.86549,51.35947],[-0.82728,51.35574],[-0.81122,51.34418],[-0.78322,51.34084],[-0.76325,51.32721],[-0.76005,51.32013],[-0.74183,51.31112],[-0.72842,51.28238],[-0.72631,51.25653],[-0.73713,51.23126],[-0.74898,51.2277],[-0.77712,51.23901],[-0.80193,51.23628],[-0.80611,51.24056],[-0.82491,51.23137],[-0.82701,51.22315],[-0.84493,51.20998],[-0.82268,51.18268],[-0.83042,51.15022],[-0.81952,51.15047],[-0.80504,51.15847],[-0.79382,51.15491],[-0.78879,51.14141],[-0.77846,51.13664],[-0.77813,51.13063],[-0.76654,51.11946],[-0.74365,51.11491],[-0.74715,51.10131],[-0.75411,51.10116],[-0.75122,51.09547],[-0.75506,51.08987],[-0.75076,51.0852],[-0.7785,51.07715],[-0.78645,51.06467],[-0.79954,51.06078],[-0.82645,51.05881],[-0.83646,51.0664],[-0.84519,51.06052],[-0.8499,51.0436],[-0.89485,51.01978],[-0.89065,51.00194],[-0.90461,50.99327],[-0.91461,50.97806],[-0.91278,50.9708],[-0.93246,50.94278],[-0.92119,50.9232],[-0.93793,50.91615],[-0.95132,50.89178],[-0.92368,50.86513],[-0.92976,50.85365],[-0.92903,50.84245],[-0.94342,50.82191],[-0.9299,50.78445],[-0.93275,50.77435],[-0.95347,50.73682],[-1.31567,50.77809]]]},{"id":"Hampshire-Aerial-RGB","name":"Hampshire Aerial RGB","type":"tms","template":"https://{switch:a,b,c}.hampshire.aerial.openstreetmap.org.uk/layer/gb_hampshire_aerial_rgb/{zoom}/{x}/{y}.png","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-1.31567,50.77809],[-1.49139,50.73027],[-1.57113,50.69041],[-1.68095,50.71748],[-1.69338,50.73484],[-1.69528,50.74065],[-1.68689,50.74999],[-1.71068,50.74812],[-1.7195,50.75261],[-1.746,50.74452],[-1.74845,50.75675],[-1.74287,50.76397],[-1.75101,50.77577],[-1.78525,50.76177],[-1.79911,50.77236],[-1.82256,50.77225],[-1.82678,50.78077],[-1.8225,50.79933],[-1.80732,50.80074],[-1.81566,50.80752],[-1.80889,50.81358],[-1.80579,50.83249],[-1.79816,50.83535],[-1.80649,50.84414],[-1.80988,50.86189],[-1.81378,50.85591],[-1.83052,50.85261],[-1.85271,50.85651],[-1.85655,50.86684],[-1.8492,50.87802],[-1.85082,50.89178],[-1.84077,50.90051],[-1.82693,50.89939],[-1.82006,50.90492],[-1.82151,50.91691],[-1.81689,50.92412],[-1.84114,50.92886],[-1.87446,50.91441],[-1.91129,50.9439],[-1.92339,50.95917],[-1.95751,50.97575],[-1.9591,50.99152],[-1.94907,50.98649],[-1.92879,51.00055],[-1.88709,51.0026],[-1.87393,51.0097],[-1.8717,50.99083],[-1.85433,51.00786],[-1.83567,51.01238],[-1.81502,50.9899],[-1.80031,50.99457],[-1.75184,50.98133],[-1.71927,50.98047],[-1.69142,50.95943],[-1.66829,50.95041],[-1.6526,50.95029],[-1.63536,50.96269],[-1.62397,50.95903],[-1.6089,50.97686],[-1.62172,50.98099],[-1.63115,50.99984],[-1.60984,51.01225],[-1.60173,51.01042],[-1.60787,51.01582],[-1.6057,51.02271],[-1.63542,51.03176],[-1.63858,51.04126],[-1.63107,51.07819],[-1.64025,51.09201],[-1.6306,51.10359],[-1.63408,51.11099],[-1.63067,51.11652],[-1.64109,51.12237],[-1.66525,51.12546],[-1.65724,51.15539],[-1.67474,51.177],[-1.67213,51.18708],[-1.69679,51.20233],[-1.69247,51.21617],[-1.65288,51.22301],[-1.63564,51.22019],[-1.62395,51.24136],[-1.61402,51.24467],[-1.60741,51.25513],[-1.57717,51.25863],[-1.54443,51.24826],[-1.5384,51.25085],[-1.53436,51.25919],[-1.54345,51.25957],[-1.54007,51.27602],[-1.54596,51.28095],[-1.53591,51.28978],[-1.52595,51.28975],[-1.53093,51.29948],[-1.53008,51.3111],[-1.53628,51.31596],[-1.52986,51.34057],[-1.51552,51.34219],[-1.49498,51.33228],[-1.43599,51.33861],[-1.44759,51.3464],[-1.4463,51.35699],[-1.43056,51.35941],[-1.41608,51.37517],[-1.34899,51.37045],[-1.31472,51.37627],[-1.27555,51.3707],[-1.25116,51.37511],[-1.24118,51.36938],[-1.22209,51.37271],[-1.17602,51.36102],[-1.14321,51.36028],[-1.11875,51.36156],[-1.12096,51.36859],[-1.11678,51.3767],[-1.08363,51.38712],[-1.04754,51.36122],[-0.9904,51.36619],[-0.97264,51.36297],[-0.92376,51.36937],[-0.87681,51.3555],[-0.86549,51.35947],[-0.82728,51.35574],[-0.81122,51.34418],[-0.78322,51.34084],[-0.76325,51.32721],[-0.76005,51.32013],[-0.74183,51.31112],[-0.72842,51.28238],[-0.72631,51.25653],[-0.73713,51.23126],[-0.74898,51.2277],[-0.77712,51.23901],[-0.80193,51.23628],[-0.80611,51.24056],[-0.82491,51.23137],[-0.82701,51.22315],[-0.84493,51.20998],[-0.82268,51.18268],[-0.83042,51.15022],[-0.81952,51.15047],[-0.80504,51.15847],[-0.79382,51.15491],[-0.78879,51.14141],[-0.77846,51.13664],[-0.77813,51.13063],[-0.76654,51.11946],[-0.74365,51.11491],[-0.74715,51.10131],[-0.75411,51.10116],[-0.75122,51.09547],[-0.75506,51.08987],[-0.75076,51.0852],[-0.7785,51.07715],[-0.78645,51.06467],[-0.79954,51.06078],[-0.82645,51.05881],[-0.83646,51.0664],[-0.84519,51.06052],[-0.8499,51.0436],[-0.89485,51.01978],[-0.89065,51.00194],[-0.90461,50.99327],[-0.91461,50.97806],[-0.91278,50.9708],[-0.93246,50.94278],[-0.92119,50.9232],[-0.93793,50.91615],[-0.95132,50.89178],[-0.92368,50.86513],[-0.92976,50.85365],[-0.92903,50.84245],[-0.94342,50.82191],[-0.9299,50.78445],[-0.93275,50.77435],[-0.95347,50.73682],[-1.31567,50.77809]]]},{"id":"fr.dpt.05.2010","name":"Hautes-Alpes 2010","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/paca05_2010/{zoom}/{x}/{y}","endDate":"2010-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[6.22101,45.13071],[6.18393,45.0119],[6.2368,44.98374],[6.31027,44.98423],[6.3089,44.93856],[6.34735,44.9371],[6.34186,44.85733],[6.30478,44.88458],[6.28143,44.88653],[6.23955,44.86852],[6.11526,44.87242],[6.0569,44.83347],[6.03699,44.84759],[6.01364,44.84857],[5.93605,44.81448],[5.93399,44.79499],[5.94566,44.79548],[5.94292,44.76916],[5.89348,44.77111],[5.89142,44.76087],[5.81863,44.76331],[5.78979,44.71747],[5.78842,44.69843],[5.80147,44.69892],[5.80147,44.68428],[5.78705,44.68281],[5.78705,44.66426],[5.73761,44.66572],[5.71289,44.64961],[5.70053,44.65693],[5.63599,44.6584],[5.63461,44.62566],[5.59547,44.57873],[5.59273,44.53372],[5.60646,44.52344],[5.62843,44.52344],[5.62843,44.5063],[5.61745,44.50679],[5.61539,44.47985],[5.56389,44.48083],[5.54123,44.49944],[5.47806,44.50091],[5.47806,44.50924],[5.45334,44.50973],[5.44853,44.43819],[5.41351,44.43819],[5.41077,44.4019],[5.42175,44.40141],[5.42107,44.35822],[5.45883,44.35724],[5.45814,44.33711],[5.48355,44.33711],[5.48218,44.32827],[5.50896,44.32729],[5.50964,44.33711],[5.53368,44.33711],[5.5323,44.31844],[5.59479,44.31648],[5.59479,44.29879],[5.62157,44.29781],[5.61882,44.27274],[5.64491,44.25159],[5.66688,44.25159],[5.66482,44.19993],[5.64217,44.19944],[5.63942,44.17974],[5.62706,44.18122],[5.62569,44.17285],[5.93948,44.16349],[5.94704,44.34497],[6.01089,44.34349],[6.01364,44.38669],[6.20109,44.38178],[6.19904,44.3376],[6.26221,44.33809],[6.26633,44.38031],[6.32812,44.37884],[6.3295,44.42397],[6.70647,44.41171],[6.71196,44.50091],[6.77513,44.49847],[6.77856,44.544],[6.84311,44.54155],[6.84654,44.58509],[6.90697,44.58411],[6.91246,44.63006],[6.9873,44.62811],[6.98524,44.63837],[6.95915,44.63983],[6.9619,44.65302],[6.97563,44.654],[6.97632,44.67207],[6.98936,44.67158],[6.99074,44.68135],[7.0388,44.6794],[7.03812,44.66914],[7.09167,44.66768],[7.09167,44.69599],[7.07725,44.69599],[7.08069,44.72234],[7.04292,44.7243],[7.0443,44.74283],[7.03125,44.74186],[7.03468,44.77842],[7.01958,44.7794],[7.02988,44.8325],[7.00928,44.83299],[7.01408,44.85198],[6.96258,44.8549],[6.9619,44.86317],[6.93855,44.86366],[6.93855,44.87242],[6.92757,44.87242],[6.90079,44.85636],[6.86165,44.85782],[6.86371,44.8656],[6.83899,44.86658],[6.84036,44.87631],[6.81427,44.8768],[6.81496,44.89528],[6.79024,44.89528],[6.79092,44.9055],[6.76346,44.90501],[6.76758,44.94925],[6.77925,44.94974],[6.782,44.96771],[6.75659,44.98811],[6.75934,45.02258],[6.68518,45.02647],[6.68655,45.05412],[6.67282,45.05364],[6.67625,45.07934],[6.6378,45.10891],[6.63917,45.12635],[6.56296,45.12974],[6.53686,45.11133],[6.49773,45.11327],[6.49773,45.10261],[6.47095,45.10212],[6.4682,45.06722],[6.37962,45.07061],[6.38374,45.10697],[6.35834,45.12587],[6.31851,45.12684],[6.31988,45.11812],[6.28212,45.11908],[6.28281,45.12877],[6.22101,45.13071]]],"terms_url":"http://www.crige-paca.org/geoportail/geocatalogue.html?id_lot_donnee_carto=206","terms_text":"ORTHO 2010 © PACA-04-05-84"},{"id":"helsingborg-orto","name":"Helsingborg Orthophoto","type":"tms","template":"https://mapproxy.openstreetmap.se/tiles/1.0.0/hborg2016_EPSG3857/{zoom}/{x}/{y}.jpeg","zoomExtent":[5,20],"polygon":[[[12.74345,55.94997],[12.93777,55.90804],[13.00369,55.96842],[12.79083,56.25022],[12.56698,56.1356],[12.74345,55.94997]]],"terms_url":"https://helsingborg.opendatasoft.com/","terms_text":"© Helsingborg municipality","best":true,"description":"Orthophotos from the municipality of Helsingborg 2016, public domain","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/Helsingborg_vapen.svg/198px-Helsingborg_vapen.svg.png"},{"id":"hri-orto","name":"Helsinki region orthophoto","type":"wms","template":"https://kartta.hsy.fi/geoserver/ows?LAYERS=taustakartat_ja_aluejaot:Ortoilmakuva_2017&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[24.26948,59.8593],[24.26674,60.22549],[24.55307,60.36703],[24.50363,60.49038],[24.76387,60.60079],[25.00625,60.54175],[24.90051,60.38197],[24.9884,60.35073],[25.06943,60.44096],[25.17517,60.45248],[25.18066,60.34122],[25.27954,60.2943],[25.19577,60.08813],[24.26948,59.8593]]],"terms_url":"https://hri.fi/data/en_GB/dataset/paakaupunkiseudun-ortokuva-2017","terms_text":"© Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY","best":true,"description":"Ortophotos from the municipalities of Espoo, Helsinki, Vantaa, Kirkkonummi and Nurmijärvi + HSL and HSY","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/fi/hri_logo.png"},{"id":"hu-hillshade","name":"Hillshade Hungary","type":"tms","template":"https://{switch:a,b,c}.map.turistautak.hu/tiles/shading/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[15,45],[24,45],[24,49],[15,49],[15,45]]],"terms_text":"SRTM","overlay":true},{"id":"IBGE_DF_Addresses","name":"IBGE Distrito Federal","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/wille/cirnnxni1000jg8nfppc8g7pm/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g","zoomExtent":[0,20],"polygon":[[[-48.2444,-16.0508],[-48.2444,-15.5005],[-47.5695,-15.5005],[-47.5695,-16.0508],[-48.2444,-16.0508]]],"terms_text":"IBGE","description":"Addresses data from IBGE","overlay":true},{"id":"IBGE_Setores_Rurais","name":"IBGE Mapa de Setores Rurais","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.i00mo1kj/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ","zoomExtent":[0,14],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"terms_text":"IBGE","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png"},{"id":"IBGE_Setores_Urbanos","name":"IBGE Mapa de Setores Urbanos","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/tmpsantos.hgda0m6h/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJjaml5MjVyb3MwMWV0M3hxYmUzdGdwbzE4In0.q548FjhsSJzvXsGlPsFxAQ","zoomExtent":[0,19],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"terms_text":"IBGE","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png"},{"id":"IBGE_Nomes_Ruas","name":"IBGE Nomes de Ruas","type":"tms","template":"https://api.maptiler.com/maps/b2037b15-5614-4fed-9608-9830b8dc574a/256/{zoom}/{x}/{y}.png?key=YmPoUxbTlEHlrASzv56Z","zoomExtent":[4,22],"polygon":[[[-69.94793,-4.23168],[-69.45659,-1.49119],[-69.3973,-1.36508],[-69.42989,-1.22173],[-69.39523,-1.12555],[-69.44292,-1.03351],[-69.41861,-0.99827],[-69.528,-0.92514],[-69.52577,-0.86807],[-69.62491,-0.74667],[-69.56179,-0.63692],[-69.60783,-0.5008],[-69.8446,-0.33732],[-69.92054,-0.32573],[-70.04323,-0.18998],[-70.04302,0.56359],[-69.80272,0.57162],[-69.6711,0.66759],[-69.60529,0.61328],[-69.59701,0.6542],[-69.48002,0.73577],[-69.35277,0.61416],[-69.28914,0.64997],[-69.29484,0.60389],[-69.19975,0.60591],[-69.19425,0.64982],[-69.11563,0.64484],[-69.19001,0.74056],[-69.14881,0.76751],[-69.13576,0.87204],[-69.18846,0.91324],[-69.1646,0.94156],[-69.21679,0.97245],[-69.19773,0.99974],[-69.24494,1.05655],[-69.37641,1.08794],[-69.42312,1.04265],[-69.60989,1.09826],[-69.67718,1.06994],[-69.70963,1.11817],[-69.84266,1.07272],[-69.83972,1.71893],[-69.78236,1.69244],[-69.53464,1.77691],[-69.39109,1.72935],[-68.1645,1.72945],[-68.19207,1.7797],[-68.23954,1.77044],[-68.22688,1.82918],[-68.28555,1.83084],[-68.19583,2.03479],[-68.18033,1.9767],[-68.14417,1.97854],[-68.09043,1.89774],[-67.90162,1.81165],[-67.76942,2.00924],[-67.55095,2.04769],[-67.49519,2.16312],[-67.39404,2.22894],[-67.32672,2.06387],[-67.33083,1.94158],[-67.22831,1.84127],[-67.15384,1.8315],[-67.15922,1.67504],[-67.08017,1.38546],[-67.13923,1.32002],[-67.08675,1.16704],[-66.85119,1.22896],[-66.31032,0.74494],[-66.19737,0.78161],[-66.07783,0.76174],[-66.07024,0.8123],[-65.96712,0.81511],[-65.88369,0.94159],[-65.77261,0.95859],[-65.7421,1.00125],[-65.58894,1.00471],[-65.49624,0.87415],[-65.60623,0.70748],[-65.54116,0.64881],[-65.44499,0.68921],[-65.39213,0.75692],[-65.41198,0.82415],[-65.32734,0.93596],[-65.21302,0.90282],[-65.1749,0.94131],[-65.15831,1.1246],[-65.07232,1.15303],[-65.06317,1.11205],[-65.01361,1.10905],[-64.97445,1.20288],[-64.90439,1.25153],[-64.86966,1.22713],[-64.80053,1.31527],[-64.74446,1.22569],[-64.5789,1.34041],[-64.52608,1.44322],[-64.43586,1.47006],[-64.3939,1.52901],[-64.35111,1.52921],[-64.34777,1.49508],[-64.41019,1.40301],[-64.33791,1.36134],[-64.3136,1.45617],[-64.19707,1.52071],[-64.0735,1.64902],[-64.05781,1.92899],[-63.97219,1.99194],[-63.83555,1.96644],[-63.71155,2.04645],[-63.66501,2.01861],[-63.6268,2.11222],[-63.56474,2.13571],[-63.44059,2.126],[-63.36742,2.26864],[-63.37088,2.41121],[-63.42123,2.45102],[-63.46036,2.39684],[-63.56398,2.44573],[-63.76805,2.43994],[-63.84358,2.4916],[-64.01914,2.46135],[-64.0573,2.49752],[-63.98033,2.7237],[-64.07709,2.87262],[-64.07156,2.92142],[-64.12349,2.99048],[-64.15754,2.98243],[-64.14592,3.03459],[-64.22642,3.12356],[-64.19795,3.20121],[-64.2444,3.43036],[-64.17437,3.56841],[-64.281,3.70928],[-64.54357,3.85713],[-64.72239,4.11775],[-64.80203,4.17422],[-64.81123,4.27048],[-64.69522,4.25323],[-64.623,4.135],[-64.5565,4.10529],[-64.164,4.127],[-63.964,3.868],[-63.928,3.925],[-63.85,3.95],[-63.682,3.908],[-63.676,4.019],[-63.591,3.886],[-63.497,3.84],[-63.489,3.874],[-63.434,3.865],[-63.428,3.977],[-63.204,3.952],[-63.226,3.836],[-63.103,3.794],[-63.059,3.748],[-63.081,3.694],[-62.96,3.608],[-62.835,3.739],[-62.743,3.674],[-62.729,3.805],[-62.788,3.894],[-62.753,4.032],[-62.555,4.019],[-62.552,4.109],[-62.437,4.183],[-62.14308,4.07768],[-62.071,4.126],[-62.076,4.154],[-61.982,4.181],[-61.93175,4.12009],[-61.92213,4.16126],[-61.824,4.164],[-61.802,4.229],[-61.724,4.27],[-61.56,4.252],[-61.508,4.322],[-61.513,4.406],[-61.288,4.458],[-61.323,4.535],[-61.217,4.536],[-61.14559,4.48016],[-61.095,4.522],[-60.994,4.519],[-60.932,4.587],[-60.949,4.653],[-60.899,4.717],[-60.751,4.756],[-60.591,4.927],[-60.661,5.164],[-60.73197,5.21203],[-60.434,5.182],[-60.20825,5.28346],[-60.172,5.227],[-60.135,5.249],[-60.094,5.14],[-59.96984,5.06334],[-60.02524,4.7065],[-60.0705,4.61688],[-60.15725,4.57247],[-60.16114,4.51773],[-59.79503,4.46554],[-59.66948,4.37629],[-59.7319,4.28587],[-59.73069,4.18076],[-59.61818,4.13166],[-59.65406,4.06943],[-59.58417,3.96851],[-59.5153,3.94493],[-59.59279,3.88538],[-59.59631,3.79386],[-59.66555,3.78126],[-59.66842,3.70277],[-59.86728,3.57776],[-59.80205,3.50156],[-59.8408,3.43174],[-59.80488,3.35695],[-59.907,3.212],[-59.98944,2.88185],[-59.99,2.686],[-59.895,2.482],[-59.89872,2.36245],[-59.72315,2.27614],[-59.751,1.859],[-59.677,1.839],[-59.663,1.871],[-59.69,1.757],[-59.539,1.723],[-59.381,1.507],[-59.329,1.514],[-59.327,1.464],[-59.284,1.45],[-59.253,1.389],[-58.978,1.302],[-58.918,1.317],[-58.886,1.261],[-58.912,1.239],[-58.82512,1.17127],[-58.73956,1.1999],[-58.69456,1.29732],[-58.49622,1.26796],[-58.45787,1.37145],[-58.50511,1.40317],[-58.50873,1.46295],[-58.38559,1.46999],[-58.39472,1.52651],[-58.32237,1.59702],[-58.236,1.54669],[-58.16064,1.56011],[-58.12942,1.4989],[-58.00423,1.50303],[-57.99009,1.65844],[-57.85206,1.66782],[-57.77431,1.72973],[-57.70509,1.73093],[-57.65042,1.68237],[-57.5376,1.7005],[-57.50187,1.78609],[-57.43776,1.82681],[-57.43343,1.90598],[-57.36768,1.92372],[-57.36912,1.95638],[-57.30712,1.99665],[-57.22923,1.93759],[-57.08668,2.02644],[-57.01421,1.91489],[-56.91971,1.93036],[-56.79793,1.85336],[-56.72096,1.92582],[-56.62145,1.94588],[-56.57976,1.90588],[-56.45126,1.95614],[-56.24404,1.87808],[-56.1709,1.90048],[-56.11762,1.85097],[-55.95638,1.84509],[-55.90385,1.88803],[-55.93635,1.98647],[-55.9031,2.04108],[-56.00307,2.1676],[-56.05505,2.18464],[-56.04288,2.22778],[-56.13887,2.26574],[-56.09012,2.37228],[-56.02181,2.34247],[-55.97052,2.52931],[-55.76663,2.45524],[-55.71028,2.39917],[-55.49971,2.44324],[-55.38533,2.41836],[-55.32019,2.51537],[-55.23474,2.50338],[-55.1234,2.56762],[-55.10302,2.52564],[-54.95424,2.58359],[-54.86846,2.43989],[-54.68917,2.45389],[-54.68861,2.32472],[-54.54667,2.31833],[-54.53778,2.26556],[-54.46861,2.21306],[-54.24917,2.14667],[-54.18056,2.1725],[-54.11083,2.11222],[-54.06139,2.19167],[-53.94083,2.21917],[-53.93194,2.27194],[-53.88667,2.26778],[-53.745,2.37389],[-53.73389,2.31222],[-53.52972,2.24917],[-53.45861,2.2575],[-53.32833,2.35333],[-53.21667,2.25333],[-53.27899,2.18603],[-53.11861,2.2225],[-52.99472,2.17528],[-52.90972,2.19583],[-52.84722,2.28556],[-52.67528,2.37389],[-52.59444,2.47389],[-52.54028,2.57028],[-52.56417,2.63944],[-52.43944,2.87778],[-52.39583,2.90222],[-52.33187,3.16938],[-52.21472,3.26833],[-51.97104,3.70696],[-51.92148,3.72422],[-51.922,3.7792],[-51.79731,3.88888],[-51.77783,3.97406],[-51.65867,4.05276],[-51.61325,4.17437],[-51.63716,4.50834],[-51.49427,4.67426],[-51.11466,4.42286],[-50.94232,4.20165],[-50.85475,3.92491],[-50.85507,3.45573],[-50.75331,2.94057],[-50.29908,2.33079],[-49.73896,1.79143],[-48.23746,-0.07449],[-44.84728,-1.07246],[-43.54602,-2.04705],[-43.24389,-2.12403],[-42.78189,-2.33053],[-41.78084,-2.51859],[-41.5085,-2.68486],[-40.66365,-2.63829],[-40.50396,-2.57531],[-39.8907,-2.65328],[-39.15187,-3.04444],[-38.57151,-3.48047],[-38.34306,-3.54434],[-38.21421,-3.74103],[-38.12555,-3.80544],[-37.90182,-4.07265],[-37.77934,-4.18046],[-37.63401,-4.24454],[-37.51218,-4.41535],[-37.22122,-4.51045],[-37.07874,-4.71355],[-36.91716,-4.71372],[-36.62299,-4.85815],[-36.18969,-4.88505],[-35.93627,-4.83327],[-35.56471,-4.90758],[-35.33677,-4.99239],[-35.17659,-5.12497],[-34.79469,-6.33583],[-34.71587,-6.74615],[-34.62306,-6.90323],[-34.59953,-7.11133],[-34.64374,-7.98735],[-34.81497,-8.62472],[-35.0253,-9.13761],[-35.55848,-9.81261],[-35.69663,-9.90026],[-35.96401,-10.31281],[-36.06155,-10.37447],[-36.26639,-10.64593],[-36.61764,-10.81082],[-36.78725,-10.95151],[-36.99511,-11.29602],[-37.11368,-11.41261],[-37.46002,-12.10275],[-37.89668,-12.75844],[-38.22146,-13.09717],[-38.61146,-13.26537],[-38.85337,-14.65508],[-38.74388,-15.60089],[-38.66456,-15.74741],[-38.64697,-15.88327],[-38.8013,-16.24838],[-38.92933,-16.80775],[-38.53193,-17.80026],[-38.49171,-18.0046],[-38.53661,-18.09683],[-38.67053,-18.16855],[-39.35288,-18.10892],[-39.4675,-18.30359],[-39.54529,-18.78548],[-39.49227,-19.40134],[-39.63477,-19.74403],[-39.86353,-19.88681],[-40.17827,-20.75426],[-40.81442,-21.67672],[-40.76948,-21.87786],[-40.81442,-22.09702],[-41.5086,-22.52638],[-41.59666,-22.83627],[-41.79292,-23.08823],[-41.91484,-23.18527],[-43.19603,-23.26703],[-44.07735,-23.40501],[-45.13508,-24.12014],[-46.61368,-24.67512],[-47.85376,-25.47012],[-48.2801,-26.23036],[-48.34897,-26.75081],[-48.11076,-27.28208],[-48.21148,-27.85592],[-48.40713,-28.43255],[-48.68615,-28.76016],[-48.9156,-28.86305],[-49.1579,-29.02871],[-49.52748,-29.42005],[-49.82565,-29.86559],[-50.17344,-30.64282],[-50.60441,-31.24135],[-51.18785,-31.77646],[-51.74211,-32.10539],[-51.89236,-32.29596],[-52.06117,-32.38504],[-52.27087,-32.92102],[-52.45986,-33.25369],[-52.61505,-33.42291],[-53.18109,-33.86891],[-53.43053,-33.73947],[-53.43951,-33.69347],[-53.53228,-33.6888],[-53.51819,-33.15342],[-53.44438,-33.05296],[-53.24468,-32.93489],[-53.31008,-32.91875],[-53.29454,-32.89931],[-53.18496,-32.85043],[-53.14569,-32.79202],[-53.0858,-32.78835],[-53.07558,-32.74088],[-53.24992,-32.6041],[-53.39137,-32.58573],[-53.46423,-32.48446],[-53.58321,-32.45192],[-53.74599,-32.07848],[-53.83375,-32.05524],[-53.84978,-32.00064],[-53.96073,-31.95532],[-53.96972,-31.91765],[-54.10019,-31.92825],[-54.4549,-31.65295],[-54.4528,-31.59959],[-54.58676,-31.45656],[-54.8367,-31.442],[-54.88623,-31.3773],[-54.94087,-31.38068],[-55.00723,-31.26692],[-55.07446,-31.33216],[-55.24003,-31.26062],[-55.29118,-31.14226],[-55.34037,-31.13144],[-55.34981,-31.03922],[-55.42306,-31.01823],[-55.57742,-30.83309],[-55.65834,-30.864],[-55.66621,-30.95395],[-55.723,-30.943],[-55.727,-30.979],[-55.882,-31.077],[-56.00989,-31.08267],[-56.02241,-30.78565],[-56.12508,-30.73871],[-56.17074,-30.61517],[-56.26095,-30.58509],[-56.29193,-30.51967],[-56.38177,-30.49956],[-56.46126,-30.38486],[-56.54706,-30.35946],[-56.54115,-30.31291],[-56.6187,-30.30054],[-56.64628,-30.20346],[-56.77662,-30.1633],[-56.80777,-30.10301],[-57.07113,-30.08671],[-57.22081,-30.28928],[-57.31303,-30.25785],[-57.39229,-30.30474],[-57.46574,-30.26589],[-57.52431,-30.28569],[-57.56087,-30.21134],[-57.64744,-30.19483],[-57.48047,-30.12315],[-57.33713,-29.99284],[-57.294,-29.831],[-57.121,-29.765],[-56.89888,-29.53179],[-56.81905,-29.48816],[-56.76618,-29.37768],[-56.70164,-29.35913],[-56.59315,-29.12516],[-56.418,-29.075],[-56.40775,-28.9748],[-56.29995,-28.89614],[-56.29652,-28.8027],[-56.17858,-28.75922],[-56.00984,-28.60718],[-56.01249,-28.50873],[-55.88357,-28.47923],[-55.87739,-28.36159],[-55.75157,-28.37095],[-55.69433,-28.42204],[-55.67047,-28.33218],[-55.77415,-28.27414],[-55.7757,-28.24481],[-55.63167,-28.17719],[-55.60747,-28.11604],[-55.55957,-28.16523],[-55.4952,-28.07682],[-55.44611,-28.09787],[-55.368,-28.029],[-55.38299,-27.97948],[-55.343,-27.972],[-55.32706,-27.92664],[-55.26574,-27.92969],[-55.196,-27.856],[-55.133,-27.897],[-55.106,-27.846],[-55.035,-27.858],[-55.081,-27.779],[-54.936,-27.772],[-54.90617,-27.63871],[-54.85,-27.624],[-54.814,-27.533],[-54.775,-27.586],[-54.67926,-27.57394],[-54.67709,-27.508],[-54.621,-27.541],[-54.574,-27.453],[-54.5246,-27.5059],[-54.444,-27.472],[-54.47081,-27.42674],[-54.41,-27.405],[-54.35466,-27.46528],[-54.34067,-27.40311],[-54.28484,-27.44819],[-54.261,-27.397],[-54.21736,-27.38603],[-54.172,-27.254],[-54.15619,-27.29619],[-54.08872,-27.30149],[-54.01026,-27.19978],[-53.96219,-27.19698],[-53.95195,-27.15169],[-53.79879,-27.14629],[-53.80233,-27.04028],[-53.76087,-27.06543],[-53.78585,-27.02674],[-53.7473,-27.03218],[-53.7092,-26.93414],[-53.67125,-26.94222],[-53.69684,-26.86015],[-53.66059,-26.85814],[-53.75814,-26.72045],[-53.7205,-26.65099],[-53.75864,-26.64113],[-53.63739,-26.24968],[-53.742,-26.108],[-53.73409,-26.04333],[-53.83619,-25.97166],[-53.82214,-25.79377],[-53.89113,-25.62286],[-53.94895,-25.6117],[-53.95638,-25.64628],[-54.01,-25.567],[-54.07592,-25.55766],[-54.098,-25.619],[-54.099,-25.495],[-54.206,-25.541],[-54.178,-25.584],[-54.23,-25.562],[-54.25,-25.597],[-54.28,-25.556],[-54.38395,-25.59747],[-54.43288,-25.69756],[-54.4927,-25.6181],[-54.59354,-25.59275],[-54.61941,-25.45312],[-54.4295,-25.15915],[-54.43548,-24.94769],[-54.32437,-24.66059],[-54.32714,-24.47073],[-54.25877,-24.36377],[-54.34537,-24.14705],[-54.28223,-24.07336],[-54.43984,-23.90446],[-54.66978,-23.81262],[-54.70533,-23.86452],[-54.89,-23.898],[-54.924,-23.959],[-55.06223,-23.99335],[-55.107,-23.961],[-55.22907,-24.01383],[-55.30415,-23.96504],[-55.34542,-23.99458],[-55.41423,-23.9645],[-55.44167,-23.70084],[-55.47306,-23.64834],[-55.53989,-23.625],[-55.52356,-23.19733],[-55.54199,-23.1561],[-55.59635,-23.14993],[-55.66578,-22.85274],[-55.61432,-22.65521],[-55.72364,-22.55166],[-55.74302,-22.39266],[-55.78939,-22.3846],[-55.84304,-22.28725],[-56.20983,-22.27805],[-56.36485,-22.16949],[-56.39404,-22.07434],[-56.50711,-22.09561],[-56.63705,-22.26341],[-56.70344,-22.21693],[-56.72026,-22.26479],[-56.79344,-22.24238],[-56.84285,-22.30155],[-56.88343,-22.24755],[-56.9967,-22.22246],[-57.3744,-22.23204],[-57.5804,-22.17534],[-57.6106,-22.09462],[-57.70751,-22.09111],[-57.80183,-22.15072],[-57.99384,-22.09023],[-58.00946,-22.04038],[-57.91281,-21.88266],[-57.96603,-21.85045],[-57.90866,-21.77355],[-57.94714,-21.74413],[-57.88329,-21.68903],[-57.93436,-21.65037],[-57.91387,-21.59021],[-57.96795,-21.52432],[-57.8535,-21.33109],[-57.92019,-21.27655],[-57.85066,-21.22407],[-57.86834,-21.04417],[-57.81919,-20.94066],[-57.92836,-20.90036],[-57.8552,-20.83403],[-57.89863,-20.78872],[-57.96183,-20.7916],[-57.93478,-20.74565],[-57.86732,-20.73265],[-57.92414,-20.66392],[-57.98848,-20.69879],[-57.99847,-20.43551],[-58.09339,-20.35554],[-58.09596,-20.25445],[-58.16216,-20.25953],[-58.12152,-20.19246],[-58.16932,-20.1694],[-57.95347,-20.02094],[-57.90248,-20.04207],[-57.85796,-19.9703],[-58.131,-19.758],[-57.784,-19.033],[-57.694,-19.011],[-57.719,-18.899],[-57.766,-18.899],[-57.557,-18.24],[-57.453,-18.231],[-57.574,-18.131],[-57.72302,-17.83074],[-57.68472,-17.8306],[-57.70991,-17.72702],[-57.783,-17.639],[-57.73696,-17.5583],[-57.883,-17.449],[-57.996,-17.515],[-58.06,-17.45],[-58.116,-17.451],[-58.151,-17.384],[-58.263,-17.344],[-58.396,-17.181],[-58.423,-16.989],[-58.474,-16.935],[-58.47,-16.703],[-58.436,-16.592],[-58.333,-16.49],[-58.32227,-16.26559],[-58.388,-16.261],[-58.43059,-16.32264],[-60.17335,-16.26672],[-60.238,-15.473],[-60.57543,-15.09677],[-60.244,-15.096],[-60.272,-14.62],[-60.321,-14.608],[-60.492,-14.188],[-60.479,-14.097],[-60.38066,-13.9888],[-60.45062,-13.9364],[-60.45599,-13.85422],[-60.49068,-13.85782],[-60.46776,-13.79446],[-60.76755,-13.68329],[-60.87678,-13.62149],[-60.91857,-13.54334],[-61.0056,-13.552],[-61.0129,-13.48925],[-61.0938,-13.49081],[-61.10314,-13.53056],[-61.18155,-13.50557],[-61.19236,-13.53695],[-61.29954,-13.47718],[-61.46527,-13.55427],[-61.57927,-13.48711],[-61.852,-13.538],[-61.892,-13.431],[-61.96968,-13.40759],[-61.97592,-13.36695],[-62.11498,-13.25932],[-62.115,-13.163],[-62.15254,-13.15993],[-62.16703,-13.11346],[-62.19,-13.153],[-62.214,-13.111],[-62.27269,-13.15687],[-62.39178,-13.13471],[-62.453,-13.064],[-62.612,-13.041],[-62.65,-12.965],[-62.729,-13.02],[-62.779,-13.009],[-62.89672,-12.8539],[-63.01134,-12.83602],[-63.08186,-12.72323],[-63.06163,-12.68584],[-63.15726,-12.6138],[-63.24621,-12.66222],[-63.23713,-12.69043],[-63.30125,-12.68138],[-63.44052,-12.608],[-63.43627,-12.56526],[-63.50641,-12.56562],[-63.55295,-12.50598],[-63.7848,-12.42871],[-63.88957,-12.44745],[-63.89949,-12.50204],[-63.95144,-12.53179],[-64.13464,-12.47732],[-64.16781,-12.51503],[-64.17504,-12.46675],[-64.22945,-12.45419],[-64.29018,-12.50313],[-64.29452,-12.4582],[-64.41057,-12.44436],[-64.51217,-12.3551],[-64.51256,-12.22562],[-64.70406,-12.1827],[-64.70719,-12.08684],[-64.75486,-12.15762],[-64.7688,-12.09356],[-64.83747,-12.11786],[-64.80954,-12.05633],[-64.84077,-12.01027],[-65.03548,-11.99408],[-65.01398,-11.90303],[-65.0727,-11.86587],[-65.08672,-11.7082],[-65.18953,-11.72353],[-65.18216,-11.75609],[-65.2593,-11.71053],[-65.21178,-11.52857],[-65.3074,-11.49957],[-65.33276,-11.33986],[-65.29053,-11.32275],[-65.34347,-11.3082],[-65.35834,-11.26834],[-65.35938,-11.22067],[-65.31294,-11.19578],[-65.35387,-11.18419],[-65.36177,-11.14031],[-65.28269,-11.09009],[-65.30071,-11.03142],[-65.25053,-10.98506],[-65.27476,-10.87302],[-65.35376,-10.78881],[-65.34667,-10.68155],[-65.40569,-10.63935],[-65.43011,-10.48505],[-65.288,-10.219],[-65.333,-9.965],[-65.28588,-9.84413],[-65.39313,-9.68683],[-65.44394,-9.66957],[-65.4883,-9.71015],[-65.55611,-9.84498],[-65.627,-9.83804],[-65.66963,-9.78129],[-65.71023,-9.80857],[-65.68395,-9.74992],[-65.7432,-9.78296],[-65.77013,-9.73442],[-65.79437,-9.79295],[-65.79962,-9.75663],[-65.86532,-9.79533],[-65.87184,-9.75307],[-65.91976,-9.75314],[-65.98222,-9.81011],[-66.151,-9.785],[-66.426,-9.899],[-66.435,-9.866],[-66.61995,-9.89353],[-66.63701,-9.94983],[-66.8751,-10.08268],[-66.9528,-10.18886],[-66.99683,-10.20017],[-67.01537,-10.25919],[-67.17745,-10.33923],[-67.31545,-10.31932],[-67.31155,-10.37716],[-67.40717,-10.37386],[-67.44361,-10.45492],[-67.57925,-10.5028],[-67.64028,-10.59807],[-67.67631,-10.60484],[-67.70825,-10.71083],[-67.86386,-10.64067],[-68.03289,-10.65486],[-68.10456,-10.71426],[-68.10333,-10.77541],[-68.27819,-10.98926],[-68.71576,-11.14483],[-68.75767,-11.00079],[-68.9118,-11.02192],[-69.41453,-10.92575],[-69.73653,-10.97445],[-69.76903,-10.92972],[-69.93442,-10.9219],[-70.15869,-11.04096],[-70.30672,-11.06983],[-70.43675,-11.03923],[-70.53033,-10.93465],[-70.62103,-10.99982],[-70.62338,-9.82054],[-70.53663,-9.76584],[-70.59972,-9.56264],[-70.55282,-9.57093],[-70.56894,-9.53127],[-70.50506,-9.50557],[-70.49665,-9.42489],[-70.59581,-9.4425],[-70.6632,-9.52601],[-70.75067,-9.56043],[-70.79332,-9.63846],[-70.96337,-9.74891],[-70.99391,-9.81721],[-71.13974,-9.85702],[-71.22052,-9.96968],[-72.1804,-9.99967],[-72.15136,-9.79742],[-72.26296,-9.75085],[-72.25282,-9.61633],[-72.28821,-9.60316],[-72.2829,-9.53995],[-72.35688,-9.4946],[-72.51954,-9.49128],[-72.71676,-9.4122],[-73.2038,-9.40715],[-73.07352,-9.23461],[-73.0093,-9.22236],[-73.02612,-9.17786],[-72.9582,-9.14302],[-72.94091,-8.98494],[-72.99931,-8.91778],[-73.05901,-8.90561],[-73.14992,-8.6839],[-73.20907,-8.6857],[-73.28745,-8.61948],[-73.3055,-8.47197],[-73.38956,-8.46878],[-73.41286,-8.41099],[-73.53744,-8.34587],[-73.62739,-8.02187],[-73.73175,-7.9684],[-73.7725,-7.90237],[-73.76164,-7.85803],[-73.69706,-7.86527],[-73.6843,-7.77644],[-73.82217,-7.71788],[-73.99094,-7.53635],[-73.948,-7.52661],[-73.91981,-7.46568],[-73.96394,-7.34764],[-73.87014,-7.37882],[-73.7003,-7.30429],[-73.79842,-7.11306],[-73.71046,-6.84019],[-73.53639,-6.6834],[-73.39115,-6.64193],[-73.35281,-6.59327],[-73.22741,-6.58884],[-73.18797,-6.52302],[-73.13523,-6.51046],[-73.10473,-6.40666],[-73.24664,-6.14963],[-73.23821,-6.04399],[-73.1868,-6.00512],[-73.15207,-5.86796],[-73.05303,-5.79517],[-72.95912,-5.65689],[-72.95888,-5.46613],[-72.86052,-5.27117],[-72.88725,-5.16307],[-72.73986,-5.08859],[-72.72765,-5.05199],[-72.6212,-5.0518],[-72.598,-4.98386],[-72.38202,-4.87296],[-72.36895,-4.80387],[-72.12601,-4.73454],[-72.04335,-4.62384],[-72.00689,-4.64622],[-71.99464,-4.60996],[-71.94743,-4.60877],[-71.91909,-4.5298],[-71.88549,-4.53803],[-71.9073,-4.51644],[-71.76637,-4.50446],[-71.75109,-4.46887],[-71.70817,-4.51165],[-71.65479,-4.47246],[-71.65032,-4.50395],[-71.61548,-4.4687],[-71.6335,-4.51524],[-71.59625,-4.52928],[-71.53703,-4.46442],[-71.49428,-4.48701],[-71.50716,-4.43909],[-71.43438,-4.42882],[-71.42562,-4.47058],[-71.35026,-4.42728],[-71.30752,-4.46288],[-71.32091,-4.42009],[-71.27782,-4.44217],[-71.26975,-4.385],[-71.20263,-4.37987],[-71.19422,-4.42471],[-71.14478,-4.38158],[-71.11491,-4.41119],[-71.10616,-4.37764],[-70.99389,-4.38654],[-70.99595,-4.34632],[-70.9357,-4.38432],[-70.84483,-4.27905],[-70.86447,-4.25245],[-70.81677,-4.23005],[-70.8458,-4.21872],[-70.75901,-4.15944],[-70.68147,-4.20791],[-70.64256,-4.12805],[-70.62521,-4.19151],[-70.56118,-4.1775],[-70.57357,-4.21169],[-70.54796,-4.13671],[-70.51036,-4.14824],[-70.50417,-4.20098],[-70.48535,-4.16132],[-70.43435,-4.16266],[-70.43146,-4.13217],[-70.33892,-4.17997],[-70.32281,-4.14206],[-70.28769,-4.16555],[-70.29141,-4.28709],[-70.21457,-4.29749],[-70.19194,-4.36179],[-70.15508,-4.27308],[-70.11749,-4.28585],[-70.10881,-4.25454],[-70.04189,-4.29409],[-70.07948,-4.31428],[-70.02826,-4.3703],[-69.99182,-4.37482],[-69.94793,-4.23168]],[[-34.00035,-3.76654],[-34.01797,-3.84985],[-34.00664,-3.91809],[-33.98608,-3.95952],[-33.95923,-3.99217],[-33.8921,-4.03653],[-33.81658,-4.05077],[-33.72931,-4.03151],[-33.66638,-3.9838],[-33.62736,-3.9185],[-33.61519,-3.84985],[-33.63239,-3.76864],[-33.68693,-3.69537],[-33.74987,-3.65978],[-33.81658,-3.6489],[-33.89336,-3.66397],[-33.96007,-3.70877],[-34.00035,-3.76654]],[[-32.5538,-4.00884],[-32.59937,-3.9531],[-32.64061,-3.87309],[-32.61755,-3.73712],[-32.58338,-3.70527],[-32.54228,-3.65606],[-32.4592,-3.63029],[-32.35174,-3.63887],[-32.30049,-3.67684],[-32.24749,-3.75266],[-32.23155,-3.81889],[-32.2357,-3.90247],[-32.30194,-3.9883],[-32.42898,-4.0384],[-32.5538,-4.00884]],[[-29.50321,0.79391],[-29.54097,0.8689],[-29.54727,0.92553],[-29.52367,0.99422],[-29.48958,1.06134],[-29.43136,1.10224],[-29.35899,1.1206],[-29.29238,1.11378],[-29.22158,1.0776],[-29.16285,1.00314],[-29.14501,0.92605],[-29.14764,0.88358],[-29.17176,0.8196],[-29.24885,0.74357],[-29.29448,0.72521],[-29.36371,0.71892],[-29.43556,0.73937],[-29.50321,0.79391]],[[-29.09537,-20.42649],[-29.19756,-20.33509],[-29.3343,-20.28932],[-29.46741,-20.3288],[-29.54604,-20.42958],[-29.55396,-20.52706],[-29.51696,-20.62613],[-29.40995,-20.68955],[-29.27599,-20.72578],[-29.15968,-20.66209],[-29.07188,-20.57088],[-28.9712,-20.64769],[-28.83286,-20.69814],[-28.67968,-20.62099],[-28.63549,-20.49284],[-28.63412,-20.47146],[-28.7431,-20.30094],[-28.8683,-20.27288],[-29.0031,-20.32416],[-29.09537,-20.42649]]],"terms_text":"IBGE, OSM Brasil","icon":"https://osmlab.github.io/editor-layer-index/sources/south-america/br/IBGE.png","overlay":true},{"id":"IBGE_BC250_Aglomerado_Rural","name":"IBGE-BC250-Aglomerado Rural Isolado","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Aglomerado_Rural_Isolado_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Pista_Pouso","name":"IBGE-BC250-Pista de Pouso","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Pista_Ponto_Pouso_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Rios_Drenagem","name":"IBGE-BC250-Rios Drenagem","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Drenagem_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Terra_Indegina","name":"IBGE-BC250-Terra Indigena","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Terra_Indigena_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Rodoviario","name":"IBGE-BC250-Trecho Rodoviario","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Trecho_Rodoviario_L&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image/png&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Uso_Sustentavel","name":"IBGE-BC250-Unidade de Uso Sistentável - APA","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Unidade_Uso_Sustentavel_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BC250_Villa","name":"IBGE-BC250-Villa","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BC250_Vila_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BCIM_Gerador_Eletrica","name":"IBGE-BCIM-Estações Geradora de Energia Elétrica","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Est_Gerad_Energia_Eletrica_P&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"IBGE_BCIM_Municipio","name":"IBGE-BCIM-Município","type":"wms","template":"https://geoservicos.ibge.gov.br/geoserver/wms?service=WMS&version=1.1.0&request=GetMap&layers=CCAR:BCIM_Municipio_A&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&FORMAT=image%2Fpng&TRANSPARENT=TRUE","projection":"EPSG:3857","polygon":[[[-29.3325,2.33596],[-28.72472,2.03155],[-27.76041,-8.93703],[-27.67249,-22.20839],[-51.11495,-35.46552],[-53.39394,-33.85064],[-53.62553,-33.72493],[-53.62503,-33.15428],[-53.24498,-32.73392],[-53.65747,-32.51873],[-53.8329,-32.16592],[-54.64174,-31.55507],[-55.29638,-31.3429],[-55.57371,-30.99691],[-56.06384,-31.16749],[-56.10468,-30.86436],[-56.86862,-30.20752],[-57.39671,-30.40464],[-57.74384,-30.22142],[-55.83724,-28.16598],[-54.86969,-27.44994],[-53.9016,-27.02998],[-53.74972,-26.25781],[-53.97158,-25.74513],[-54.44723,-25.79609],[-54.67802,-25.64668],[-54.36097,-24.35145],[-54.41679,-24.06527],[-54.64355,-23.94107],[-55.22163,-24.11355],[-55.49138,-24.02797],[-55.71734,-22.68488],[-55.90555,-22.39886],[-56.45255,-22.21731],[-56.8256,-22.4002],[-57.34109,-22.34351],[-58.08472,-22.13075],[-57.95766,-20.99818],[-58.26551,-20.24147],[-58.03577,-19.95871],[-58.23083,-19.75211],[-57.64739,-18.19828],[-57.89356,-17.57377],[-58.16997,-17.53519],[-58.48825,-17.21961],[-58.57691,-16.81466],[-58.45563,-16.42158],[-60.2541,-16.32571],[-60.33481,-15.51483],[-60.67423,-15.1122],[-60.34999,-14.99707],[-60.63603,-13.84119],[-61.07283,-13.62569],[-61.9025,-13.62647],[-62.21395,-13.25048],[-62.80185,-13.10905],[-63.17194,-12.76568],[-63.74229,-12.54071],[-64.32845,-12.59578],[-65.10261,-12.0682],[-65.45781,-11.27865],[-65.41641,-9.83894],[-66.52331,-9.98587],[-67.66452,-10.80093],[-67.99778,-10.75991],[-68.52286,-11.20807],[-69.88988,-11.02776],[-70.30957,-11.1699],[-70.71896,-11.02003],[-70.68128,-9.66908],[-71.27536,-10.08971],[-72.18053,-10.09967],[-72.41623,-9.5874],[-73.29207,-9.45415],[-73.0625,-9.01727],[-73.61432,-8.40982],[-74.09056,-7.52755],[-74.03652,-7.27885],[-73.84718,-7.23829],[-73.78618,-6.77487],[-73.22362,-6.43011],[-73.33719,-6.02974],[-72.93016,-5.03871],[-71.93973,-4.42503],[-70.96802,-4.24829],[-70.79598,-4.06493],[-70.02393,-4.16735],[-69.51025,-1.13409],[-69.70776,-0.56762],[-70.13645,-0.22616],[-70.14083,0.5844],[-69.26594,0.8065],[-69.34226,0.96892],[-69.92481,1.01571],[-69.92343,1.77385],[-68.38511,1.82943],[-68.24848,2.11981],[-67.94571,1.94842],[-67.37696,2.32747],[-67.05751,1.85834],[-67.00579,1.2916],[-66.79967,1.31468],[-66.28683,0.85771],[-65.67671,1.11115],[-65.42494,0.96655],[-65.15671,1.24203],[-64.27483,1.60159],[-64.0486,2.06514],[-63.47236,2.27936],[-64.13446,2.43391],[-64.10005,2.72378],[-64.32628,3.11828],[-64.28142,3.54198],[-64.88451,4.11767],[-64.88064,4.34246],[-64.13653,4.22315],[-63.95465,4.02132],[-63.17706,4.0483],[-62.96093,3.76366],[-62.82024,4.10602],[-62.49922,4.27081],[-61.91181,4.26284],[-61.35393,4.6301],[-61.04904,4.62312],[-60.70452,4.96985],[-60.78709,5.29676],[-60.22457,5.37121],[-59.89857,5.10754],[-59.97549,4.60302],[-59.59676,4.43987],[-59.41942,3.96994],[-59.71017,3.54201],[-59.88955,2.72301],[-59.63006,2.31633],[-59.63382,1.96658],[-59.18812,1.47808],[-58.80545,1.32073],[-58.35933,1.68993],[-57.6,1.80391],[-57.39854,2.06512],[-57.12392,2.12876],[-56.02925,1.94945],[-56.23884,2.26335],[-55.98195,2.62866],[-55.64816,2.51995],[-54.93958,2.68251],[-54.24988,2.25056],[-53.73937,2.47373],[-52.98578,2.28049],[-52.65712,2.56407],[-52.41739,3.22121],[-51.73983,4.11916],[-51.7246,4.55687],[-51.0112,5.5229],[-43.48209,5.33583],[-29.3325,2.33596]]],"terms_text":"IBGE","overlay":true},{"id":"ign-topografico-tms","name":"IGN topographical map (TMS)","type":"tms","template":"https://ide.ign.gob.ar/geoservicios/rest/services/Mapas_IGN/mapa_topografico/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[1,19],"polygon":[[[-55.5438,-35.77219],[-64.31743,-49.44788],[-61.52546,-55.68296],[-66.04226,-55.24192],[-66.6896,-55.17191],[-66.86233,-55.04496],[-67.23387,-54.9245],[-67.47633,-54.92785],[-67.71808,-54.91261],[-67.96138,-54.88571],[-68.18753,-54.89288],[-68.61804,-54.92151],[-68.66375,-52.66716],[-68.51023,-52.39432],[-70.01629,-52.05707],[-72.05562,-52.01749],[-72.09055,-51.93758],[-72.02273,-51.88832],[-72.49598,-51.597],[-72.3623,-51.25935],[-72.46252,-51.08654],[-72.31217,-50.90093],[-72.39293,-50.69005],[-72.49148,-50.66866],[-72.59646,-50.73916],[-72.76983,-50.68829],[-73.22154,-50.87193],[-73.22709,-50.66897],[-73.39438,-50.58008],[-73.57703,-50.15788],[-73.53993,-50.01443],[-73.61453,-49.91795],[-73.52684,-49.7716],[-73.02779,-49.70085],[-73.02788,-49.23743],[-73.16148,-49.13062],[-72.96385,-48.89084],[-72.80952,-48.90039],[-72.59462,-48.77255],[-72.63621,-48.45823],[-72.46698,-48.45706],[-72.42158,-48.31422],[-72.3428,-48.29046],[-72.37166,-48.15995],[-72.57678,-47.96054],[-72.5731,-47.72062],[-72.3839,-47.57888],[-72.38448,-47.41759],[-72.07162,-47.2755],[-72.04726,-47.14867],[-71.93566,-47.15037],[-72.00956,-47.08473],[-72.00759,-46.78833],[-71.71488,-46.64453],[-71.7985,-46.26925],[-71.97019,-46.14972],[-71.63332,-45.97063],[-71.66595,-45.89232],[-71.77408,-45.85187],[-71.8548,-45.61169],[-71.7885,-45.50505],[-71.58354,-45.45607],[-71.58236,-45.36316],[-71.40574,-45.27206],[-71.61593,-45.03146],[-72.07949,-44.93988],[-72.11766,-44.73884],[-71.47444,-44.68048],[-71.2897,-44.75036],[-71.28469,-44.60892],[-71.20209,-44.5359],[-71.40536,-44.44891],[-71.86374,-44.44274],[-71.9047,-44.10354],[-71.70007,-43.98287],[-71.78725,-43.80985],[-71.63263,-43.65888],[-71.87866,-43.56195],[-71.95542,-43.44292],[-71.91512,-43.319],[-71.80268,-43.29535],[-71.73869,-43.19234],[-71.94149,-43.11061],[-72.18001,-42.8948],[-72.18733,-42.66619],[-72.06314,-42.53751],[-72.0441,-42.41231],[-72.14365,-42.40333],[-72.20024,-42.17229],[-72.17802,-42.13207],[-72.06032,-42.10593],[-71.78041,-42.12128],[-71.83133,-41.78089],[-71.94135,-41.60926],[-71.9023,-41.06778],[-72.02097,-40.73647],[-71.91507,-40.61832],[-71.87117,-40.38959],[-71.76665,-40.35676],[-71.87961,-40.24227],[-71.8856,-40.10093],[-71.67779,-39.92156],[-71.74365,-39.86164],[-71.77001,-39.61946],[-71.68665,-39.50983],[-71.58545,-39.55159],[-71.45202,-39.31025],[-71.47673,-38.89162],[-71.25594,-38.74909],[-70.95844,-38.70272],[-70.89411,-38.57644],[-71.03346,-38.45451],[-71.08724,-38.09054],[-71.23505,-37.86541],[-71.26668,-37.68295],[-71.18031,-37.4828],[-71.27241,-37.28686],[-71.17697,-37.1077],[-71.27586,-36.9637],[-71.20495,-36.91075],[-71.2345,-36.83303],[-71.07654,-36.43571],[-70.96469,-36.43366],[-70.90086,-36.34336],[-70.77062,-36.35412],[-70.59553,-36.12118],[-70.44219,-36.14876],[-70.42788,-35.73781],[-70.50607,-35.38014],[-70.59764,-35.34459],[-70.63128,-35.23712],[-70.42629,-35.12462],[-70.32933,-34.83081],[-70.35687,-34.72532],[-70.07752,-34.38253],[-70.06901,-34.24694],[-69.87771,-34.20233],[-69.95948,-33.77235],[-69.83371,-33.34911],[-70.02502,-33.37388],[-70.14906,-33.04145],[-70.06223,-33.01233],[-70.00981,-32.90747],[-70.19517,-32.75732],[-70.19589,-32.50891],[-70.28486,-32.45564],[-70.44343,-32.05325],[-70.41077,-31.9809],[-70.29402,-31.95849],[-70.5117,-31.85844],[-70.62295,-31.59949],[-70.59941,-31.29869],[-70.5377,-31.08557],[-70.35748,-31.0002],[-70.20264,-30.32249],[-69.97775,-30.32288],[-69.847,-30.16294],[-70.01824,-30.10003],[-69.95038,-29.73744],[-70.03755,-29.35428],[-69.97565,-29.18743],[-69.85112,-29.06923],[-69.70118,-28.37779],[-69.20484,-27.90816],[-68.84844,-27.13115],[-68.76133,-27.08588],[-68.60693,-27.09636],[-68.3489,-26.92771],[-68.64137,-26.50722],[-68.60352,-26.25391],[-68.45177,-26.1377],[-68.63052,-25.43524],[-68.55582,-25.14476],[-68.44595,-25.0658],[-68.62011,-24.81717],[-68.55162,-24.58836],[-68.28078,-24.34935],[-67.32648,-24.02538],[-66.99882,-23.00044],[-67.18775,-22.81375],[-67.08088,-22.62433],[-67.03366,-22.53815],[-66.84345,-22.39746],[-66.73734,-22.22282],[-66.38248,-22.07602],[-66.28978,-21.76554],[-66.21845,-21.72575],[-65.89675,-21.88263],[-65.71368,-22.09054],[-65.61493,-22.09152],[-65.60973,-22.09505],[-65.60607,-22.09358],[-65.60256,-22.09658],[-65.60015,-22.09543],[-65.59229,-22.09511],[-65.59015,-22.09735],[-65.58691,-22.09645],[-65.58512,-22.08432],[-65.57523,-22.07312],[-65.47487,-22.08487],[-64.99026,-22.06739],[-64.59768,-22.19269],[-64.52643,-22.29504],[-64.33114,-22.68517],[-64.10381,-22.34114],[-64.10712,-22.32023],[-64.06522,-22.23093],[-64.04702,-22.23757],[-64.03654,-22.19469],[-64.0029,-22.10735],[-63.99022,-22.07925],[-63.97147,-22.07619],[-63.94118,-21.99823],[-63.70932,-21.99896],[-63.68839,-22.01037],[-63.68079,-22.03116],[-63.68507,-22.04019],[-63.68156,-22.05185],[-63.67659,-22.03287],[-63.67201,-22.02293],[-63.66821,-22.01634],[-63.67191,-22.01399],[-63.66566,-21.99839],[-62.79606,-21.98778],[-62.74618,-22.10033],[-62.18511,-22.50843],[-61.93761,-22.97376],[-61.45605,-23.36182],[-61.05842,-23.56621],[-60.95137,-23.75997],[-60.28746,-24.01906],[-60.03728,-24.00408],[-59.46607,-24.33428],[-59.12256,-24.59772],[-58.46645,-24.84584],[-58.332,-24.98132],[-58.2349,-24.91756],[-57.8565,-25.08005],[-57.76981,-25.15013],[-57.75374,-25.17277],[-57.71597,-25.26456],[-57.71837,-25.27146],[-57.71111,-25.27265],[-57.71008,-25.28146],[-57.70692,-25.2845],[-57.70438,-25.28159],[-57.70273,-25.28239],[-57.70175,-25.28459],[-57.69741,-25.28283],[-57.69281,-25.28588],[-57.69733,-25.29337],[-57.70246,-25.29847],[-57.69612,-25.30832],[-57.69763,-25.3199],[-57.69143,-25.32127],[-57.67993,-25.33318],[-57.64822,-25.3679],[-57.63902,-25.38287],[-57.61504,-25.38841],[-57.59954,-25.39704],[-57.57673,-25.42029],[-57.56698,-25.43147],[-57.55477,-25.43999],[-57.55285,-25.44705],[-57.55811,-25.45717],[-57.55763,-25.46897],[-57.56523,-25.48014],[-57.56806,-25.49501],[-57.57722,-25.50575],[-57.57566,-25.52264],[-57.5661,-25.54112],[-57.56809,-25.55797],[-57.58142,-25.57145],[-57.59952,-25.57438],[-57.60444,-25.59855],[-57.6122,-25.61963],[-57.6367,-25.61807],[-57.66569,-25.60273],[-57.67006,-25.65579],[-57.67513,-25.66052],[-57.68626,-25.66287],[-57.69808,-25.65933],[-57.71855,-25.64914],[-57.72537,-25.71924],[-57.77786,-25.77559],[-57.84986,-26.01142],[-58.08597,-26.14202],[-58.13896,-26.66834],[-58.28224,-26.80127],[-58.32056,-26.82169],[-58.3167,-26.86081],[-58.32384,-26.87074],[-58.56858,-27.20629],[-57.90834,-27.24265],[-56.99114,-27.41858],[-56.60886,-27.36586],[-56.40607,-27.52701],[-56.32355,-27.36897],[-56.09353,-27.25219],[-55.76168,-27.38106],[-55.65541,-27.30153],[-55.67524,-27.17004],[-55.59643,-27.06538],[-55.40826,-26.91763],[-55.20788,-26.89214],[-54.97304,-26.63717],[-54.8532,-26.59894],[-54.72264,-26.31238],[-54.73235,-25.98554],[-54.65309,-25.84138],[-54.71357,-25.66721],[-54.62995,-25.55106],[-54.44288,-25.5795],[-54.11451,-25.4396],[-53.80059,-25.65093],[-53.766,-25.94301],[-53.59024,-26.19274],[-53.67264,-26.61495],[-53.61669,-26.95395],[-53.76351,-27.18917],[-54.15393,-27.36033],[-54.26461,-27.49923],[-54.79439,-27.6397],[-55.0044,-27.90341],[-55.19076,-27.92946],[-55.41589,-28.14304],[-55.66542,-28.26547],[-55.61633,-28.32205],[-55.65957,-28.46539],[-55.83413,-28.42136],[-55.87339,-28.49468],[-56.13558,-28.7265],[-56.37343,-29.10817],[-56.569,-29.13892],[-56.76306,-29.48638],[-57.05958,-29.72263],[-57.24463,-29.86452],[-57.3045,-30.03966],[-57.61942,-30.20517],[-57.60863,-30.32424],[-57.82983,-30.53118],[-57.75241,-30.68756],[-57.75273,-30.91942],[-57.93419,-31.27388],[-57.99,-31.36053],[-57.98302,-31.3734],[-57.97736,-31.38022],[-57.97778,-31.38599],[-57.98203,-31.39213],[-58.00944,-31.41341],[-58.06637,-31.47395],[-57.92613,-31.57745],[-57.98622,-31.77449],[-58.12179,-31.89772],[-58.11905,-32.14059],[-58.04227,-32.29153],[-58.14327,-32.45845],[-58.0758,-33.00587],[-58.18964,-33.09402],[-58.2723,-33.1061],[-58.31012,-33.1048],[-58.35418,-33.1221],[-58.37567,-33.17644],[-58.44465,-33.5853],[-58.43016,-33.71813],[-58.42434,-33.86887],[-58.41858,-33.91742],[-58.33697,-34.00477],[-58.241,-34.16246],[-57.84696,-34.50017],[-55.5438,-35.77219]]],"terms_url":"https://www.ign.gob.ar/","terms_text":"Instituto Geográfico Nacional de la República Argentina","icon":"https://www.ign.gob.ar/sites/default/files/favicon.png"},{"id":"osmim-imagicode-S2A_R119_N09_20160327T050917","name":"imagico.de: Adams Bridge","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R119_N09_20160327T050917&z={zoom}&x={x}&y={-y}","endDate":"2016-03-27T00:00:00.000Z","startDate":"2016-03-27T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[79.01779,8.82757],[79.01402,9.64678],[80.17642,9.65042],[80.17728,8.8313],[79.01779,8.82757]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Supplementing incomplete coverage in other sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80700162014211LGN00","name":"imagico.de: Alaska Range","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80700162014211LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-07-31T00:00:00.000Z","startDate":"2014-07-31T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-152.70873,62.30357],[-152.70839,62.58153],[-152.00835,63.54646],[-148.99432,63.5333],[-148.99432,62.30357],[-152.70873,62.30357]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent summer image of the Alaska Range for mapping natural features (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R032_S07_20200921T025549","name":"imagico.de: Anak Krakatau","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R032_S07_20200921T025549&z={zoom}&x={x}&y={-y}","endDate":"2020-09-21T00:00:00.000Z","startDate":"2020-09-21T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[105.3221,-6.1813],[105.3221,-6.0505],[105.4972,-6.0505],[105.4972,-6.1813],[105.3221,-6.1813]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of the volcanic island (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R095_S6X_20200119T131859","name":"imagico.de: Antarctic Peninsula","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R095_S6X_20200119T131859&z={zoom}&x={x}&y={-y}","endDate":"2020-01-19T00:00:00.000Z","startDate":"2020-01-19T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-68.9971,-73.0747],[-72.0726,-72.1629],[-72.3142,-70.6072],[-72.3142,-70.2615],[-64.7792,-64.9187],[-58.2107,-64.9187],[-58.2107,-65.3528],[-59.5727,-66.8905],[-60.4075,-67.7459],[-61.484,-68.7709],[-62.6922,-69.8191],[-64.0103,-70.8465],[-65.7018,-72.0346],[-67.3714,-73.0683],[-67.3934,-73.0747],[-68.9971,-73.0747]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent mostly cloud free Sentinel-2 image of the central and southern part of the Antarctic Peninsula including the eastern part of Alexander Island (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aral2","name":"imagico.de: Aral Sea (high water level)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aral2&z={zoom}&x={x}&y={-y}","endDate":"2016-03-03T00:00:00.000Z","startDate":"2016-03-03T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[58.049,43.2623],[58.049,46.7189],[58.1014,46.8645],[61.5524,46.8629],[61.5524,46.3896],[61.4675,45.3416],[60.6317,43.2623],[58.049,43.2623]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Water and wetland extents, dams etc. - some remaining winter ice in the north (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aral1","name":"imagico.de: Aral Sea (low water level)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aral1&z={zoom}&x={x}&y={-y}","endDate":"2016-09-09T00:00:00.000Z","startDate":"2016-09-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[58.049,43.2623],[58.049,46.7334],[58.096,46.8645],[61.5524,46.8629],[61.5524,46.3896],[61.4685,45.3544],[60.6267,43.2623],[58.049,43.2623]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Water and wetland extents, dams etc. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R067_S40_20170417T140051","name":"imagico.de: Bahía Blanca (high tide)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170417T140051&z={zoom}&x={x}&y={-y}","endDate":"2017-04-17T00:00:00.000Z","startDate":"2017-04-17T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-62.9988,-40.7327],[-62.9988,-37.9476],[-61.7505,-37.9474],[-61.7501,-40.7322],[-62.9988,-40.7327]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Tidal flats and islands at the coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R067_S40_20170127T140051","name":"imagico.de: Bahía Blanca (low tide)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R067_S40_20170127T140051&z={zoom}&x={x}&y={-y}","endDate":"2017-01-27T00:00:00.000Z","startDate":"2017-01-27T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-62.9988,-40.7327],[-62.9988,-37.9476],[-61.7505,-37.9474],[-61.7501,-40.7322],[-62.9988,-40.7327]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Tidal flats and islands at the coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81190582014075LGN00","name":"imagico.de: Bakun Reservoir","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81190582014075LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-03-16T00:00:00.000Z","startDate":"2014-03-16T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[114.36,2.02846],[113.53448,2.03],[113.53619,3.07077],[114.76512,3.06751],[114.76254,2.08816],[114.36,2.02846]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in older pre-2011 images (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81250592016107LGN00","name":"imagico.de: Batam","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81250592016107LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[104.00155,-0.00008],[104.00137,1.45099],[104.91015,1.45116],[104.91015,-0.00008],[104.00155,-0.00008]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing Islands in OSM (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80691332019346LGN01","name":"imagico.de: Belgica Mountains evening","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80691332019346LGN01&z={zoom}&x={x}&y={-y}","endDate":"2019-12-12T00:00:00.000Z","startDate":"2019-12-12T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[30.0359,-72.8301],[30.0359,-72.2248],[32.3599,-72.2248],[32.3595,-72.7236],[31.7635,-72.8301],[30.0359,-72.8301]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Landsat 8 evening image of the Belgica Mountains showing a different lighting compared to the daytime image (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80770232017156LGN00","name":"imagico.de: Bogoslof Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80770232017156LGN00&z={zoom}&x={x}&y={-y}","endDate":"2017-06-05T00:00:00.000Z","startDate":"2017-06-05T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-168.2544,53.8749],[-168.2544,54.0213],[-167.8591,54.0213],[-167.8591,53.8749],[-168.2544,53.8749]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image from after the eruption (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R015_N52_20190816T222539","name":"imagico.de: Bogoslof Island 2019","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R015_N52_20190816T222539&z={zoom}&x={x}&y={-y}","endDate":"2019-08-16T00:00:00.000Z","startDate":"2019-08-16T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-168.5059,53.7714],[-168.5059,54.0751],[-167.8205,54.0751],[-167.8205,53.7714],[-168.5059,53.7714]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Image update for the small volcanic island (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81800982013291LGN00","name":"imagico.de: Bouvet Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81800982013291LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-10-18T00:00:00.000Z","startDate":"2013-10-18T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[3.24653,-54.47047],[3.24653,-54.37539],[3.46385,-54.37539],[3.46385,-54.47047],[3.24653,-54.47047]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"For more accurate coastline and glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R017_S67_20170223T022551","name":"imagico.de: Bunger Hills","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R017_S67_20170223T022551&z={zoom}&x={x}&y={-y}","endDate":"2017-02-23T00:00:00.000Z","startDate":"2017-02-23T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[96.1197,-67.6542],[96.1201,-67.1899],[98.7331,-65.044],[105.1028,-65.044],[105.1028,-65.7224],[103.3017,-67.6542],[96.1197,-67.6542]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Largest ice free area at the East Antarctic coast - shows considerable amounts of non-permanent ice. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R071_S72_20200216T210519","name":"imagico.de: Cape Adare","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R071_S72_20200216T210519&z={zoom}&x={x}&y={-y}","endDate":"2020-02-16T00:00:00.000Z","startDate":"2020-02-16T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[165.8304,-73.0695],[170.0783,-71.1973],[171.2715,-71.2021],[171.2727,-72.9873],[169.691,-73.0299],[168.0541,-73.0608],[167.3965,-73.0695],[165.8304,-73.0695]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of Cape Adare and parts of northern Victoria Land (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R065_N47_20160929T102022","name":"imagico.de: Central Alps in late September 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R065_N47_20160929T102022&z={zoom}&x={x}&y={-y}","endDate":"2016-09-29T00:00:00.000Z","startDate":"2016-09-29T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[10.55906,45.95485],[7.47396,45.95533],[7.55585,46.2708],[8.0547,47.66469],[11.75245,47.66481],[11.75245,46.81334],[11.38424,45.95509],[10.55906,45.95485]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping - beware of some fresh snow at higher altitudes (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82050982015344LGN00","name":"imagico.de: Clerke Rocks","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82050982015344LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-12-10T00:00:00.000Z","startDate":"2015-12-10T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-34.17701,-55.29693],[-35.19599,-55.28285],[-35.16664,-54.72097],[-34.12517,-54.73465],[-34.1401,-55.29693],[-34.17701,-55.29693]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R086_N60_20160831T213532","name":"imagico.de: Cook Inlet","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R086_N60_20160831T213532&z={zoom}&x={x}&y={-y}","endDate":"2016-08-31T00:00:00.000Z","startDate":"2016-08-31T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-154.5102,59.4577],[-154.5097,60.6888],[-153.5403,62.1718],[-148.0423,62.1718],[-148.0445,61.5342],[-149.7291,59.4584],[-154.5102,59.4577]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Tidal flats and glaciers in surrounding mountains (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-EO1A0040712016264110KF","name":"imagico.de: Coropuna","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=EO1A0040712016264110KF&z={zoom}&x={x}&y={-y}","endDate":"2016-09-21T00:00:00.000Z","startDate":"2016-09-21T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-72.75945,-15.68684],[-72.75945,-15.4957],[-72.74434,-15.4263],[-72.41286,-15.4263],[-72.41286,-15.65296],[-72.42411,-15.68667],[-72.75945,-15.68684]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R022_N06_20151221T103009","name":"imagico.de: Cotonou","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R022_N06_20151221T103009&z={zoom}&x={x}&y={-y}","endDate":"2015-12-21T00:00:00.000Z","startDate":"2015-12-21T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[1.83975,6.2578],[1.83975,7.11427],[2.5494,7.11427],[2.5494,6.48905],[2.49781,6.25806],[1.83975,6.2578]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Patchy and partly cloudy coverage in usual sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R040_N01_20160311T164128","name":"imagico.de: Darwin and Wolf islands, Galapagos","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R040_N01_20160311T164128&z={zoom}&x={x}&y={-y}","endDate":"2016-03-11T00:00:00.000Z","startDate":"2016-03-11T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-92.05216,1.3213],[-92.05216,1.72181],[-91.74849,1.72181],[-91.74849,1.3213],[-92.05216,1.3213]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image, only old and poor images in most other sources currently (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R022_N47_20191026T101029","name":"imagico.de: Eastern Alps autumn colors 2019","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R022_N47_20191026T101029&z={zoom}&x={x}&y={-y}","endDate":"2017-10-26T00:00:00.000Z","startDate":"2017-10-26T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[9.8813,45.1489],[9.882,45.7551],[10.9491,48.7111],[14.9569,48.7111],[14.9569,48.3679],[13.5583,45.1489],[9.8813,45.1489]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Autumn colors in the eastern Alps - Austria, Germany, Italy and Slovenia (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80360072014245LGN00","name":"imagico.de: Eastern Devon Island coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80360072014245LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-09-02T00:00:00.000Z","startDate":"2014-09-02T00:00:00.000Z","zoomExtent":[0,11],"polygon":[[[-84.34799,74.38946],[-84.34799,75.8903],[-79.14871,75.8903],[-79.14871,74.38946],[-84.34799,74.38946]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Coastline mostly mapped meanwhile (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82160152013239LGN00","name":"imagico.de: Eastern Iceland","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82160152013239LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-08-27T00:00:00.000Z","startDate":"2013-08-27T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-13.04701,64.21109],[-15.16496,64.22408],[-15.16805,64.81573],[-13.04357,64.8036],[-13.04701,64.21109]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing islets and inaccurate coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-AST_L1T_00302052007154424_20150518041444_91492","name":"imagico.de: El Altar","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00302052007154424_20150518041444_91492&z={zoom}&x={x}&y={-y}","endDate":"2012-02-05T00:00:00.000Z","startDate":"2012-02-05T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-78.532,-1.80509],[-78.532,-1.60811],[-78.33562,-1.60811],[-78.33562,-1.80509],[-78.532,-1.80509]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"2007 ASTER image offering better glacier coverage than common sources (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R009_S61_20160109","name":"imagico.de: Elephant Island/Clarence Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R009_S61_20160109&z={zoom}&x={x}&y={-y}","endDate":"2016-01-09T00:00:00.000Z","startDate":"2016-01-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-56.13476,-61.63472],[-56.13476,-61.19936],[-55.83264,-60.84015],[-53.72343,-60.83982],[-53.72343,-61.63472],[-56.13476,-61.63472]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Fairly clear up-to-date image for updating glacier edges (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-enderby","name":"imagico.de: Enderby Land and Kemp Coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=enderby&z={zoom}&x={x}&y={-y}","endDate":"2017-03-27T00:00:00.000Z","startDate":"2017-01-25T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[45.4547,-68.5091],[45.4547,-67.5724],[49.7155,-65.7176],[59.2693,-65.7176],[67.3735,-67.3449],[67.3735,-68.2581],[67.088,-68.5091],[45.4547,-68.5091]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Sentinel-2 images of Enderby Land and Kemp Coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aster_anti_east","name":"imagico.de: Far southern Transantarctic Mnts. east","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aster_anti_east&z={zoom}&x={x}&y={-y}","endDate":"2009-01-01T00:00:00.000Z","startDate":"2001-01-01T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[159.6688,-83.1798],[180,-83.8305],[180,-85.0511],[155.693,-85.0511],[153.0905,-84.8712],[159.6688,-83.1798]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"ASTER imagery from 2001-2009 from the far southern Transantarctic Mountains - eastern hemisphere, positional accuracy in parts is bad (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aster_anti_west","name":"imagico.de: Far southern Transantarctic Mnts. west","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aster_anti_west&z={zoom}&x={x}&y={-y}","endDate":"2009-01-01T00:00:00.000Z","startDate":"2001-01-01T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-179.9988,-83.9364],[-165.5249,-84.1526],[-162.7266,-85.0511],[-179.9988,-85.0511],[-179.9988,-83.9364]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"ASTER imagery from 2001-2009 from the far southern Transantarctic Mountains - western hemisphere, positional accuracy in parts is bad (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82100502015347LGN00","name":"imagico.de: Fogo, Cape Verde","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82100502015347LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-12-13T00:00:00.000Z","startDate":"2015-12-13T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-24.75878,14.74814],[-24.75878,15.09249],[-24.26706,15.09249],[-24.26706,14.74814],[-24.75878,14.74814]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Image from after the 2014/2015 eruption (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-greenland","name":"imagico.de: Greenland mosaic","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=greenland&z={zoom}&x={x}&y={-y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-43.9774,59.7171],[-44.545,59.7302],[-44.9203,59.7672],[-45.3587,59.8218],[-45.763,59.8848],[-46.0859,59.9827],[-46.3381,60.119],[-46.577,60.2652],[-46.8114,60.4418],[-47.2635,60.5314],[-47.6937,60.5549],[-48.1457,60.6192],[-48.5771,60.7015],[-48.8689,60.8506],[-49.0578,61.0555],[-49.396,61.2957],[-49.7601,61.4934],[-50.2064,61.7324],[-50.4699,61.9539],[-50.8647,62.1596],[-51.0631,62.3869],[-51.2121,62.6001],[-51.3005,62.8389],[-51.4238,62.9979],[-51.6767,63.1944],[-51.9465,63.4079],[-52.0253,63.6377],[-52.2255,63.8378],[-52.3658,64.0705],[-52.4829,64.3792],[-52.4988,64.6788],[-52.789,64.9063],[-53.2046,65.1321],[-53.6649,65.4753],[-53.9977,65.8019],[-54.1348,66.1568],[-54.1441,66.5235],[-54.2285,66.8319],[-54.4519,67.303],[-54.5141,67.7648],[-54.604,68.2021],[-54.568,68.5698],[-54.598,68.8347],[-54.7606,69.1207],[-55.0028,69.4125],[-55.2735,69.6187],[-55.3808,69.8283],[-55.3945,70.0838],[-55.3094,70.2573],[-55.4307,70.479],[-55.5501,70.6707],[-55.7654,70.861],[-56.2489,71.2343],[-56.5018,71.5429],[-56.5867,71.9015],[-56.5189,72.2355],[-56.5085,72.5258],[-56.8923,72.8144],[-57.4027,73.1054],[-57.8066,73.4566],[-58.1461,73.7696],[-58.3554,74.0972],[-58.5125,74.3783],[-58.7336,74.6328],[-59.3551,74.8869],[-60.1412,75.102],[-61.0067,75.2763],[-61.911,75.3886],[-62.4706,75.5595],[-62.9776,75.7454],[-64.1463,75.779],[-65.4481,75.7235],[-66.7068,75.6792],[-67.8379,75.6525],[-69.0456,75.6195],[-70.055,75.5344],[-71.0898,75.4705],[-72.1119,75.4476],[-74.2311,76.4102],[-74.5601,76.5328],[-74.5601,82.6959],[-14.4462,82.6959],[-14.3994,82.5997],[-13.5339,82.4379],[-12.0312,82.3426],[-10.7796,82.3196],[-10.7796,80.1902],[-11.2123,80.069],[-11.136,79.8103],[-10.7796,79.5176],[-10.7796,79.0441],[-11.2626,78.7128],[-12.2579,78.3558],[-13.2398,78.1272],[-13.7649,77.9279],[-14.1169,77.6779],[-14.7129,77.5278],[-15.5507,77.3655],[-16.0936,77.0771],[-16.0586,76.5548],[-15.838,75.9611],[-15.6879,75.4726],[-16.253,75.058],[-17.0427,74.6425],[-18.3155,74.2702],[-19.4463,73.9378],[-19.8329,73.632],[-20.2938,73.3524],[-20.7831,73.0446],[-21.01,72.6766],[-20.8774,72.2926],[-20.7672,71.8726],[-20.7765,71.4304],[-20.9411,70.9802],[-21.219,70.6126],[-21.5326,70.3001],[-21.8039,70.0911],[-22.166,69.8947],[-22.4831,69.7539],[-22.9027,69.6585],[-23.3545,69.544],[-23.9177,69.4036],[-24.1794,69.3088],[-24.6745,69.1084],[-25.1222,68.9555],[-25.6659,68.7995],[-26.0994,68.583],[-26.6316,68.4043],[-27.7638,68.2813],[-28.4575,68.0023],[-29.353,67.8135],[-30.6456,67.4911],[-31.7673,67.0005],[-32.9783,66.2596],[-33.9313,66.0156],[-34.8956,65.7403],[-35.5914,65.5208],[-36.1483,65.372],[-36.7532,65.2559],[-37.1858,65.1349],[-37.6032,64.9727],[-38.0624,64.4901],[-38.5304,64.1244],[-39.0545,63.7213],[-39.3131,63.4405],[-39.5739,62.7506],[-39.9532,62.2739],[-40.2757,61.8547],[-40.714,61.3365],[-41.2091,60.8495],[-41.821,60.5526],[-42.4368,60.3264],[-42.8643,60.0299],[-43.1131,59.9147],[-43.3282,59.83],[-43.5459,59.7695],[-43.797,59.7284],[-43.9774,59.7171]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Landsat mosaic of Greenland (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R047_S54_20160411T044330","name":"imagico.de: Heard Island coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R047_S54_20160411T044330&z={zoom}&x={x}&y={-y}","endDate":"2016-04-12T00:00:00.000Z","startDate":"2016-04-12T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[73.06897,-53.27059],[73.06897,-52.87549],[73.67338,-52.87673],[74.08863,-52.9495],[74.08863,-53.27059],[73.06897,-53.27059]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image of Heard island with interior mostly cloud covered but mostly well visible coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82280982013259LGN00","name":"imagico.de: Isla Londonderry","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82280982013259LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-09-16T00:00:00.000Z","startDate":"2013-09-16T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-69.8568,-55.55949],[-72.26521,-55.14943],[-72.26521,-54.51089],[-72.08531,-54.17909],[-69.49116,-54.17889],[-69.4915,-55.28379],[-69.62231,-55.5591],[-69.8568,-55.55949]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"A lot of very coarse coastlines could be improved here, much snow cover though so no use for glacier mapping (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_kangerlussuaq_20151008","name":"imagico.de: Kangerlussuaq Autumn","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20151008&z={zoom}&x={x}&y={-y}","endDate":"2015-10-08T00:00:00.000Z","startDate":"2015-10-08T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[-50.6992,66.9888],[-50.721,67.0017],[-50.7341,67.0125],[-50.7396,67.0193],[-50.7396,67.0212],[-50.7158,67.0265],[-50.7017,67.0265],[-50.6829,67.0176],[-50.6686,67.0077],[-50.6638,66.998],[-50.6642,66.9946],[-50.6891,66.9888],[-50.6992,66.9888]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image of the airport and settlement - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_kangerlussuaq_20160518","name":"imagico.de: Kangerlussuaq Spring","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_kangerlussuaq_20160518&z={zoom}&x={x}&y={-y}","endDate":"2016-05-18T00:00:00.000Z","startDate":"2016-05-18T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[-50.7519,66.9996],[-50.7555,67.0023],[-50.7555,67.0033],[-50.6395,67.0297],[-50.6162,67.0339],[-50.6097,67.0281],[-50.6331,67.022],[-50.7323,66.9996],[-50.7519,66.9996]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image of the airport and roads - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R021_N44_20160807T083013","name":"imagico.de: Kerch Strait","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20160807T083013&z={zoom}&x={x}&y={-y}","endDate":"2016-08-07T00:00:00.000Z","startDate":"2016-08-07T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[35.93259,44.96237],[35.93259,45.55926],[37.36991,45.55926],[37.36991,44.96237],[35.93259,44.96237]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"State of bridge construction in August 2016 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R021_N44_20180429T082601","name":"imagico.de: Kerch Strait 2018","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R021_N44_20180429T082601&z={zoom}&x={x}&y={-y}","endDate":"2018-04-29T00:00:00.000Z","startDate":"2018-04-29T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[35.8787,45.0348],[35.8787,45.6095],[36.9208,45.6095],[36.9208,45.0348],[35.8787,45.0348]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Bridge and surrounding after completion in April 2018 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R075_S7X_20190113T034629","name":"imagico.de: Lambert Glacier east","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R075_S7X_20190113T034629&z={zoom}&x={x}&y={-y}","endDate":"2019-01-13T00:00:00.000Z","startDate":"2019-01-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[68.8748,-75.7213],[68.3695,-75.6398],[66.436,-75.2924],[62.2835,-74.491],[61.6244,-74.3494],[61.6244,-74.3019],[75.3343,-67.6196],[76.7844,-67.6029],[82.9143,-67.6029],[82.9143,-67.8775],[82.8924,-67.9023],[81.0468,-69.5821],[79.8164,-70.5701],[78.4762,-71.5469],[77.07,-72.4695],[75.3343,-73.4916],[74.1479,-74.1226],[73.0054,-74.6837],[72.1046,-75.096],[70.6325,-75.7158],[70.6105,-75.7213],[68.8748,-75.7213]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of the western part of the Lambert Glacier region and the eastern Prydz Bay coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R061_S7X_20200226T041719","name":"imagico.de: Lambert Glacier west","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R061_S7X_20200226T041719&z={zoom}&x={x}&y={-y}","endDate":"2020-02-26T00:00:00.000Z","startDate":"2020-02-26T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[65.0308,-74.6419],[63.6901,-74.4193],[60.8329,-73.9098],[58.0416,-73.3842],[57.4921,-73.2708],[57.4921,-73.0992],[67.8441,-67.6029],[73.9322,-67.6029],[75.0092,-67.6196],[75.0092,-68.2467],[74.9652,-68.2955],[74.0201,-69.1561],[72.9651,-70.0441],[72.1739,-70.6643],[71.075,-71.4626],[69.8442,-72.2892],[68.4155,-73.1503],[67.0968,-73.8794],[66.0858,-74.3897],[65.5583,-74.6419],[65.0308,-74.6419]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of the western part of the Lambert Glacier region (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar4","name":"imagico.de: Landsat off-nadir early July 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar4&z={zoom}&x={x}&y={-y}","endDate":"2020-07-12T00:00:00.000Z","startDate":"2020-07-12T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-82.9935,81.9147],[-84.4409,82.1649],[-84.4409,82.9562],[-78.3559,83.4863],[-71.9,83.8983],[-28.3104,83.8983],[-22.4464,83.5671],[-16.7075,83.1347],[-16.7075,81.9147],[-82.9935,81.9147]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Latest images north of the regular Landsat limit (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar2","name":"imagico.de: Landsat off-nadir July 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar2&z={zoom}&x={x}&y={-y}","endDate":"2016-07-17T00:00:00.000Z","startDate":"2016-07-17T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-79.05175,81.91484],[-79.05175,83.43339],[-73.6039,83.80225],[-26.42449,83.80225],[-21.493,83.50352],[-16.88835,83.15095],[-16.88835,81.91484],[-79.05175,81.91484]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Latest images north of the regular Landsat limit (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar5","name":"imagico.de: Landsat off-nadir late July 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar5&z={zoom}&x={x}&y={-y}","endDate":"2020-07-12T00:00:00.000Z","startDate":"2020-07-12T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-82.9935,81.9147],[-84.4409,82.1649],[-84.4409,82.9562],[-78.3559,83.4863],[-71.9,83.8983],[-28.3104,83.8983],[-22.3489,83.5611],[-16.7075,83.1347],[-16.7075,81.9147],[-82.9935,81.9147]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Latest images north of the regular Landsat limit (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-larsen_2018","name":"imagico.de: Larsen C ice shelf after calving","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=larsen_2018&z={zoom}&x={x}&y={-y}","endDate":"2018-01-06T00:00:00.000Z","startDate":"2018-01-06T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[-62.7282,-68.9652],[-64.0489,-68.7318],[-64.0486,-68.5373],[-60.8845,-65.9399],[-59.9187,-65.9389],[-59.1088,-66.0775],[-59.1088,-68.8359],[-59.2544,-68.9652],[-62.7282,-68.9652]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"For updating the ice edge after the 2017 iceberg calving (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-AST_L1T_00311162013112731_20150618142416_109190","name":"imagico.de: Leskov Island ASTER","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=AST_L1T_00311162013112731_20150618142416_109190&z={zoom}&x={x}&y={-y}","endDate":"2013-11-16T00:00:00.000Z","startDate":"2013-11-16T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-28.21075,-56.72108],[-28.21075,-56.62498],[-27.96956,-56.62498],[-27.96956,-56.72108],[-28.21075,-56.72108]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81991002015286LGN00","name":"imagico.de: Leskov Island Landsat","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81991002015286LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-10-13T00:00:00.000Z","startDate":"2015-10-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-27.99293,-56.73479],[-28.22776,-56.73262],[-28.22416,-56.60075],[-27.96975,-56.60283],[-27.97319,-56.73479],[-27.99293,-56.73479]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R005_S69_20180222T061749","name":"imagico.de: Lützow-Holm Bay","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R005_S69_20180222T061749&z={zoom}&x={x}&y={-y}","endDate":"2018-02-22T00:00:00.000Z","startDate":"2018-02-22T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[35.124,-70.3693],[35.1241,-69.2795],[36.3864,-68.4765],[42.2208,-68.4762],[42.2208,-70.3651],[35.124,-70.3693]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late season image or an area poorly mapped in OSM at the moment - lots of sea ice, be careful with distinguishing sea ice from ice shelves and floating glacier tongues. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ls_polar","name":"imagico.de: May 2013 off-nadir Landsat","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ls_polar&z={zoom}&x={x}&y={-y}","endDate":"2013-05-17T00:00:00.000Z","startDate":"2013-05-17T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-85.76109,81.39333],[-89.83016,82.14952],[-89.83153,82.24405],[-84.99342,82.73099],[-79.95207,83.13108],[-74.55641,83.46267],[-69.35851,83.70451],[-28.20784,83.70451],[-23.06624,83.46532],[-17.96584,83.15518],[-17.96721,82.72386],[-22.78197,81.4419],[-85.76109,81.39333]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"First available image north of the regular Landsat limit, mostly with seasonal snow cover so difficult to interpret, superseeded by newer images (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R042_S78_20170214T202521","name":"imagico.de: McMurdo Sound and Dry Valleys","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R042_S78_20170214T202521&z={zoom}&x={x}&y={-y}","endDate":"2017-02-14T00:00:00.000Z","startDate":"2017-02-14T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[162.9125,-78.4514],[162.6595,-78.4257],[159.2712,-77.6013],[159.2712,-77.4108],[164.157,-76.477],[169.7813,-76.4764],[169.7813,-78.4514],[162.9125,-78.4514]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late season image - not ice minimum, be careful with distinguishing sea ice from ice shelves. (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R092_S02_20160613T075613","name":"imagico.de: Mount Kenya 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S02_20160613T075613&z={zoom}&x={x}&y={-y}","endDate":"2016-06-13T00:00:00.000Z","startDate":"2016-06-13T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[37.20666,-0.26685],[37.20666,-0.01193],[37.56552,-0.01193],[37.56552,-0.26685],[37.20666,-0.26685]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R092_S05_20160802T075556","name":"imagico.de: Mount Kilimanjaro 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R092_S05_20160802T075556&z={zoom}&x={x}&y={-y}","endDate":"2016-08-02T00:00:00.000Z","startDate":"2016-08-02T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[37.24769,-3.22921],[37.24769,-2.96816],[37.61581,-2.96816],[37.61581,-3.22921],[37.24769,-3.22921]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80940622015159LGN00","name":"imagico.de: New Ireland","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80940622015159LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-06-08T00:00:00.000Z","startDate":"2015-06-08T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[150.38853,-2.80053],[150.38853,-2.3834],[150.83348,-2.3834],[150.83348,-2.80053],[150.38853,-2.80053]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Many missing islands in OSM (mostly mapped meanwhile) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-northsea_s2_2016","name":"imagico.de: North Sea Coast 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2016&z={zoom}&x={x}&y={-y}","endDate":"2016-09-25T00:00:00.000Z","startDate":"2016-09-25T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[5.1562,52.8755],[5.1615,53.0325],[6.4155,55.7379],[9.8813,55.7459],[9.8813,53.2428],[9.6846,52.8877],[5.1562,52.8755]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-northsea_s2_2017","name":"imagico.de: North Sea Coast 2017","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2017&z={zoom}&x={x}&y={-y}","endDate":"2017-06-02T00:00:00.000Z","startDate":"2017-06-02T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[5.1713,53.0918],[6.477,55.8973],[9.8813,55.8973],[9.8813,53.2761],[9.7789,53.0918],[5.1713,53.0918]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-northsea_s2_2018","name":"imagico.de: North Sea Coast spring 2018","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=northsea_s2_2018&z={zoom}&x={x}&y={-y}","endDate":"2018-05-08T00:00:00.000Z","startDate":"2018-05-08T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[5.3179,53.0918],[5.322,53.4418],[6.7023,56.3572],[9.8813,56.3578],[9.8813,53.2819],[9.7758,53.0921],[5.3179,53.0918]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-caspian_2018","name":"imagico.de: Northeast Caspian Sea 2018","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=caspian_2018&z={zoom}&x={x}&y={-y}","endDate":"2018-05-16T00:00:00.000Z","startDate":"2018-05-16T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[51.0243,45.0729],[51.0243,46.569],[52.4259,46.5687],[53.6471,46.3177],[53.6474,45.0729],[51.0243,45.0729]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Coastal contruction and Kashagan oil field in Kazakhstan in May 2018 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ural_s2_2016","name":"imagico.de: Northern and Polar Ural mountains August 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ural_s2_2016&z={zoom}&x={x}&y={-y}","endDate":"2016-08-12T00:00:00.000Z","startDate":"2016-08-12T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[59.19898,64.89205],[59.19898,66.91656],[60.73329,68.44289],[67.73295,68.44327],[67.73295,67.74883],[64.21647,64.91957],[59.19898,64.89205]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late summer imagery with few clouds - caution: not all visible snow is glaciers (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ndvina","name":"imagico.de: Northern Dvina delta at low tide","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ndvina&z={zoom}&x={x}&y={-y}","endDate":"2015-09-13T00:00:00.000Z","startDate":"2015-09-13T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[37.7291,64.1971],[37.7291,65.1161],[37.8592,65.2705],[41.3223,65.2705],[41.3223,64.3142],[41.2114,64.1973],[37.7291,64.1971]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Beaches, tidal flats and other costal forms (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-nellesmere_ast","name":"imagico.de: Northern Ellesmere Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast&z={zoom}&x={x}&y={-y}","endDate":"2012-07-09T00:00:00.000Z","startDate":"2012-07-09T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-81.62923,82.4597],[-83.03136,82.47986],[-83.03136,83.05876],[-72.80309,83.09567],[-65.65786,83.03232],[-65.81167,82.4597],[-81.62923,82.4597]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Assembled from July 2012 ASTER imagery (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-nellesmere_ast_2016","name":"imagico.de: Northern Ellesmere Island July 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=nellesmere_ast_2016&z={zoom}&x={x}&y={-y}","endDate":"2012-07-15T00:00:00.000Z","startDate":"2012-07-08T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-78.89729,82.17577],[-82.64501,82.19426],[-82.64501,83.08067],[-66.58986,83.08497],[-63.78011,82.98908],[-63.78011,82.72198],[-65.0092,82.17577],[-78.89729,82.17577]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Assembled from July 2016 ASTER imagery (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81960222015233LGN00vis","name":"imagico.de: Northern German west coast tidalflats","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00vis&z={zoom}&x={x}&y={-y}","endDate":"2015-08-21T00:00:00.000Z","startDate":"2015-08-21T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[7.63568,53.28027],[7.63568,53.6677],[8.49433,55.50246],[9.20775,55.48106],[9.20775,53.28027],[7.63568,53.28027]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals, superseeded by newer images (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81960222015233LGN00ir","name":"imagico.de: Northern German west coast tidalflats (infrared)","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81960222015233LGN00ir&z={zoom}&x={x}&y={-y}","endDate":"2015-08-21T00:00:00.000Z","startDate":"2015-08-21T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[7.63568,53.28027],[7.63568,53.66811],[8.49433,55.50246],[9.20775,55.48106],[9.20775,53.28027],[7.63568,53.28027]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date low tide imagery of the coast for updating mapping of tidalflats and shoals, superseeded by newer images (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-ngreenland_ast","name":"imagico.de: Northern Greenland ASTER","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=ngreenland_ast&z={zoom}&x={x}&y={-y}","endDate":"2012-08-13T00:00:00.000Z","startDate":"2005-06-21T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-52.49222,82.48972],[-52.49222,82.94295],[-49.28696,83.47312],[-44.5285,83.73214],[-29.5253,83.73214],[-25.26398,83.58271],[-21.18393,83.39776],[-21.18393,82.74312],[-23.40454,82.48972],[-52.49222,82.48972]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Assembled from mostly 2012 ASTER imagery, some 2005 images mainly in the northeast (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-EO1A1350972013086110KF","name":"imagico.de: Northwest Heard Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=EO1A1350972013086110KF&z={zoom}&x={x}&y={-y}","endDate":"2013-03-13T00:00:00.000Z","startDate":"2013-03-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[73.2279,-53.20333],[73.2279,-53.01073],[73.25949,-52.94944],[73.78992,-52.94944],[73.78992,-53.06048],[73.71783,-53.20333],[73.2279,-53.20333]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Glaciers of Northwest Heard Island (mapped meanwhile) (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aster_anti2","name":"imagico.de: Ohio Range","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aster_anti2&z={zoom}&x={x}&y={-y}","endDate":"2009-01-01T00:00:00.000Z","startDate":"2001-01-01T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-120.615,-85.0511],[-121.0602,-84.7506],[-115.2085,-84.1075],[-93.6269,-84.0855],[-85.4314,-84.0794],[-85.0513,-84.2365],[-87.4598,-85.0511],[-120.615,-85.0511]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"ASTER imagery from 2001-2009 from the Ohio Range, positional accuracy in parts is bad (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R111_N09_20160604T154554","name":"imagico.de: Panama Canal","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R111_N09_20160604T154554&z={zoom}&x={x}&y={-y}","endDate":"2016-06-07T00:00:00.000Z","startDate":"2016-06-07T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-80.01654,8.84898],[-80.01654,9.41481],[-79.46859,9.41481],[-79.46859,8.84898],[-80.01654,8.84898]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Images of the new locks (but partly cloudy) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-EO1A0120532016364110KF","name":"imagico.de: Panama Canal - Pacific side","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=EO1A0120532016364110KF&z={zoom}&x={x}&y={-y}","endDate":"2016-12-30T00:00:00.000Z","startDate":"2016-12-30T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-79.62539,8.77083],[-79.68684,8.82197],[-79.68667,8.93705],[-79.65363,9.09294],[-79.26816,9.09294],[-79.32833,8.77083],[-79.62539,8.77083]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"New locks with less clouds than in the Sentinel-2 image - make sure to check image alignment (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-aster_anti3","name":"imagico.de: Patuxent Range","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=aster_anti3&z={zoom}&x={x}&y={-y}","endDate":"2009-01-01T00:00:00.000Z","startDate":"2001-01-01T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-69.1012,-85.0511],[-71.7929,-84.3003],[-68.4315,-83.9809],[-63.0926,-83.7207],[-56.4886,-84.922],[-58.9149,-85.0511],[-69.1012,-85.0511]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"ASTER imagery from 2001-2009 from the Patuxent Range, positional accuracy in parts is bad (true color with estimated blue)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R078_N68_20160930T081002","name":"imagico.de: Pechora Sea Coast","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N68_20160930T081002&z={zoom}&x={x}&y={-y}","endDate":"2016-09-30T00:00:00.000Z","startDate":"2016-09-30T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[53.1802,67.5344],[53.1821,68.414],[54.2107,69.3367],[55.3584,70.2786],[59.004,70.2786],[60.6947,69.977],[61.9837,69.7161],[61.9823,68.9395],[59.9153,67.5344],[53.1802,67.5344]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Sentinel-2 image of the Pechora Sea coast in autumn 2016 (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81511242016033LGN00","name":"imagico.de: Pensacola Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81511242016033LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-02-02T00:00:00.000Z","startDate":"2016-02-02T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[-53.20922,-84.12525],[-60.61538,-83.78609],[-60.61538,-82.29969],[-48.72405,-82.29987],[-44.52178,-82.43683],[-44.51354,-84.12525],[-53.20922,-84.12525]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Outside regular Landsat coverage and therefore not in LIMA and Bing/Maxar/Esri/Mapbox (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R136_N41_20150831T093006","name":"imagico.de: Prokletije Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R136_N41_20150831T093006&z={zoom}&x={x}&y={-y}","endDate":"2015-08-31T00:00:00.000Z","startDate":"2015-08-31T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[19.11233,42.15316],[19.08426,43.08074],[20.63299,43.09603],[20.63788,42.16779],[19.11233,42.15316]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Late summer imagery where usual sources are severely limited by clouds and snow (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-DMS_1142622_03746_20110415_17533956","name":"imagico.de: Qasigiannguit","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=DMS_1142622_03746_20110415_17533956&z={zoom}&x={x}&y={-y}","endDate":"2011-04-15T00:00:00.000Z","startDate":"2011-04-15T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[-51.23857,68.79972],[-51.24334,68.85303],[-51.15167,68.85303],[-51.14038,68.80116],[-51.23857,68.79972]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image of the settlement - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81510432015030LGN00","name":"imagico.de: Rann of Kutch","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81510432015030LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[67.9684,22.36265],[67.86231,22.38392],[67.86231,24.88693],[71.48986,24.88693],[71.48986,22.36265],[67.9684,22.36265]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Land/water distinction difficult to properly map based on Bing/Maxar/Esri/Mapbox images (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R093_N41_20150828T092005","name":"imagico.de: Rila and Pirin Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N41_20150828T092005&z={zoom}&x={x}&y={-y}","endDate":"2015-08-28T00:00:00.000Z","startDate":"2015-08-28T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[23.80811,41.58488],[22.99238,41.60195],[23.01186,42.29984],[23.99402,42.28339],[23.96561,41.58488],[23.80811,41.58488]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Late summer imagery where usual sources are severely limited by clouds and snow (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81730602015040LGN00","name":"imagico.de: Rwenzori Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81730602015040LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-02-09T00:00:00.000Z","startDate":"2015-02-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[29.7663,0.20689],[29.7663,0.50918],[30.0346,0.50918],[30.0346,0.20689],[29.7663,0.20689]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image of most of the remaining Rwenzori Mountains glaciers (false color IR)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R078_N01_20160702T082522","name":"imagico.de: Rwenzori Mountains 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R078_N01_20160702T082522&z={zoom}&x={x}&y={-y}","endDate":"2016-07-02T00:00:00.000Z","startDate":"2016-07-02T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[29.80514,0.23586],[29.80514,0.46709],[30.02503,0.46709],[30.02503,0.23586],[29.80514,0.23586]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date image for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80611072014036LGN00","name":"imagico.de: Scott Island","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80611072014036LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-02-05T00:00:00.000Z","startDate":"2014-02-05T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-180,-67.42635],[-180,-67.32544],[-179.82473,-67.32538],[-179.82473,-67.42635],[-180,-67.42635]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82100972015347LGN00","name":"imagico.de: Shag Rocks","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82100972015347LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-12-13T00:00:00.000Z","startDate":"2015-12-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-42.12875,-53.7205],[-42.14626,-53.45782],[-41.67573,-53.44586],[-41.65582,-53.70872],[-42.12875,-53.7205]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing in other image sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81130622013270LGN00","name":"imagico.de: Southeastern Sulawesi","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81130622013270LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-09-27T00:00:00.000Z","startDate":"2013-09-27T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[120.84382,-3.59545],[120.84382,-3.15985],[120.98184,-2.51468],[122.62618,-2.51468],[122.62618,-3.00215],[122.5007,-3.59545],[120.84382,-3.59545]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Missing islands and coarse coastline due to cloud cover in Bing, lakes could also use additional detail (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80281222016035LGN00","name":"imagico.de: Southern Transantarctic Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80281222016035LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-02-04T00:00:00.000Z","startDate":"2016-02-04T00:00:00.000Z","zoomExtent":[0,10],"polygon":[[[156.96951,-84.50098],[154.50858,-84.46255],[154.50858,-82.60681],[175.46774,-82.58505],[177.00583,-83.52807],[177.00583,-84.19262],[171.93839,-84.34633],[166.83798,-84.4437],[161.67029,-84.50045],[156.96951,-84.50098]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Outside regular Landsat coverage and therefore not in LIMA and Bing/Maxar/Esri/Mapbox (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R043_S67_20190301T220359","name":"imagico.de: Sturge Island/Buckle Island March 2019","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R043_S67_20190301T220359&z={zoom}&x={x}&y={-y}","endDate":"2019-03-01T00:00:00.000Z","startDate":"2019-03-01T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[164.9206,-67.7033],[162.6383,-67.6861],[162.2717,-66.7722],[162.2717,-66.6441],[162.6365,-66.3561],[165.2182,-66.3561],[165.2306,-67.7031],[164.9206,-67.7033]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Mostly cloud free image, including southern Young Island (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81030632015286LGN00","name":"imagico.de: Sudirman Range 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81030632015286LGN00&z={zoom}&x={x}&y={-y}","endDate":"2015-10-13T00:00:00.000Z","startDate":"2015-10-13T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[136.4226,-4.2853],[136.4226,-3.6447],[137.7971,-3.6447],[137.7971,-4.2853],[136.4226,-4.2853]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Older image of the Sudirman Range with no fresh snow showing glacier extent (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R088_S05_20160812T011732","name":"imagico.de: Sudirman Range 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R088_S05_20160812T011732&z={zoom}&x={x}&y={-y}","endDate":"2016-08-12T00:00:00.000Z","startDate":"2016-08-12T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[136.8044,-4.2585],[136.8044,-3.7836],[137.7701,-3.7836],[137.7701,-4.2585],[136.8044,-4.2585]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Cloud free image of the Sudirman Range but with fresh snow (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-s2sval","name":"imagico.de: Svalbard mosaic","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=s2sval&z={zoom}&x={x}&y={-y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[16.6108,76.4137],[16.4731,76.4268],[16.3788,76.4589],[14.4124,77.1324],[14.0784,77.2536],[10.9875,78.4054],[10.631,78.5605],[10.2314,78.8392],[10.3952,79.6074],[10.516,79.7731],[10.9632,79.8707],[20.2294,80.849],[20.4702,80.8493],[25.1752,80.6817],[33.4391,80.3438],[33.7809,80.3016],[34.0395,80.239],[33.977,80.1527],[25.5722,76.5917],[25.2739,76.481],[25.1416,76.4327],[24.937,76.4176],[16.6108,76.4137]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Sentinel-2 mosaic of Svalbard (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-DMS_1142636_160xx_20110507_1822xxxx","name":"imagico.de: Thule Air Base","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=DMS_1142636_160xx_20110507_1822xxxx&z={zoom}&x={x}&y={-y}","endDate":"2011-05-07T00:00:00.000Z","startDate":"2011-05-07T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[-68.93977,76.51133],[-68.93977,76.5499],[-68.76635,76.55176],[-68.50993,76.55176],[-68.50744,76.51612],[-68.67897,76.51194],[-68.93977,76.51133]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS image - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_thule2_2015.09.25","name":"imagico.de: Thule Airbase DMS low altitude overflight September 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_thule2_2015.09.25&z={zoom}&x={x}&y={-y}","endDate":"2015-09-25T00:00:00.000Z","startDate":"2015-09-25T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[-68.74292,76.52636],[-68.74446,76.5284],[-68.74807,76.54939],[-68.74615,76.56017],[-68.72276,76.56022],[-68.72017,76.55775],[-68.71853,76.52921],[-68.71978,76.52637],[-68.74292,76.52636]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_thule_2015.10.06","name":"imagico.de: Thule Airbase DMS overflight October 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.10.06&z={zoom}&x={x}&y={-y}","endDate":"2015-10-06T00:00:00.000Z","startDate":"2015-10-06T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[-68.81924,76.5251],[-68.82651,76.54177],[-68.77345,76.5439],[-68.7021,76.54545],[-68.59177,76.5456],[-68.59183,76.52793],[-68.6597,76.5251],[-68.81924,76.5251]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-dms_thule_2015.09.25","name":"imagico.de: Thule Airbase DMS overflight September 2015","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=dms_thule_2015.09.25&z={zoom}&x={x}&y={-y}","endDate":"2015-09-25T00:00:00.000Z","startDate":"2015-09-25T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[-68.77771,76.50688],[-68.77662,76.57064],[-68.68115,76.57065],[-68.6763,76.55384],[-68.6762,76.53074],[-68.68523,76.50688],[-68.77771,76.50688]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Icebridge DMS aerial images from Thule Airbase - alignment might be poor","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R094_N79_20160812T105622","name":"imagico.de: Ushakov Island August 2016","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R094_N79_20160812T105622&z={zoom}&x={x}&y={-y}","endDate":"2016-08-12T00:00:00.000Z","startDate":"2016-08-12T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[78.45886,80.72643],[78.45886,80.9099],[80.48892,80.9099],[80.48892,80.72643],[78.45886,80.72643]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Late summer imagery with few clouds (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R093_N79_20200831T091601","name":"imagico.de: Ushakov Island August 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R093_N79_20200831T091601&z={zoom}&x={x}&y={-y}","endDate":"2020-08-31T00:00:00.000Z","startDate":"2020-08-31T00:00:00.000Z","zoomExtent":[0,12],"polygon":[[[78.4585,80.7264],[78.4585,80.9099],[80.4889,80.9099],[80.4889,80.7264],[78.4585,80.7264]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Up-to-date late summer imagery with few clouds (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC80910682014358LGN00","name":"imagico.de: Vanatinai","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC80910682014358LGN00&z={zoom}&x={x}&y={-y}","endDate":"2014-12-24T00:00:00.000Z","startDate":"2014-12-24T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[153.06138,-11.78923],[153.06138,-11.28869],[153.10927,-11.07229],[154.41201,-11.07229],[154.41201,-11.78923],[153.06138,-11.78923]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Coarse coastline due to cloud cover in Bing/Mapbox (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R057_S7X_20190210T213409","name":"imagico.de: Victoria Land east","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R057_S7X_20190210T213409&z={zoom}&x={x}&y={-y}","endDate":"2019-02-10T00:00:00.000Z","startDate":"2019-02-10T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[155.6745,-78.1324],[154.3999,-77.8999],[152.6637,-77.5638],[148.1367,-76.6121],[147.3236,-76.4175],[147.3236,-76.3035],[164.2451,-70.2968],[172.9257,-70.2968],[172.9257,-70.62],[172.9037,-70.6419],[171.6291,-71.5664],[170.5742,-72.2685],[168.4865,-73.5088],[167.7173,-73.9215],[166.3109,-74.6239],[164.9484,-75.2461],[163.2782,-75.9347],[161.5421,-76.5764],[159.806,-77.1553],[158.3995,-77.5827],[157.0809,-77.955],[156.3997,-78.1324],[155.6745,-78.1324]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of the eastern part of Victoria Land, some clouds at the coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R143_S7X_20200302T215359","name":"imagico.de: Victoria Land west","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R143_S7X_20200302T215359&z={zoom}&x={x}&y={-y}","endDate":"2020-03-02T00:00:00.000Z","startDate":"2020-03-02T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[151.067,-75.7434],[148.1884,-75.1695],[147.7709,-75.0735],[147.683,-75.0509],[147.683,-74.9371],[160.7574,-69.4103],[160.7794,-69.4025],[164.3611,-69.4025],[165.262,-69.4103],[168.0747,-70.281],[168.0747,-70.4802],[167.3495,-71.0308],[166.1849,-71.8423],[165.0203,-72.5873],[163.7898,-73.3154],[162.3615,-74.0863],[161.087,-74.7127],[159.7906,-75.2983],[158.7139,-75.7434],[151.067,-75.7434]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of the western part of Victoria Land, some clouds at the coast (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC82330892016031LGN00","name":"imagico.de: Volcán Calbuco","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC82330892016031LGN00&z={zoom}&x={x}&y={-y}","endDate":"2016-01-31T00:00:00.000Z","startDate":"2016-01-31T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[-72.86696,-41.51741],[-72.86696,-41.04527],[-72.23181,-41.04527],[-71.8751,-41.10829],[-72.00007,-41.51741],[-72.86696,-41.51741]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Image from after the 2015 eruption (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R089_N52_20160623T024048","name":"imagico.de: Vostochny Cosmodrome","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20160623T024048&z={zoom}&x={x}&y={-y}","endDate":"2016-06-23T00:00:00.000Z","startDate":"2016-06-23T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[126.36143,51.37553],[126.34804,52.33932],[128.60762,52.3409],[128.61174,51.37553],[126.36143,51.37553]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent image showing newest features (superseeded by newer image) (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R089_N52_20200930T023551","name":"imagico.de: Vostochny Cosmodrome 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R089_N52_20200930T023551&z={zoom}&x={x}&y={-y}","endDate":"2020-09-30T00:00:00.000Z","startDate":"2020-09-30T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[127.5631,51.3587],[127.5338,52.3414],[129.1417,52.3464],[129.1403,51.3632],[127.5631,51.3587]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"September 2020 image with autumn colors (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-walps_autumn_2017","name":"imagico.de: Western Alps autumn colors 2017","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=walps_autumn_2017&z={zoom}&x={x}&y={-y}","endDate":"2017-10-17T00:00:00.000Z","startDate":"2017-10-17T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[4.6412,43.2493],[4.3118,43.2653],[4.3118,44.2167],[5.2562,46.965],[5.9151,48.7177],[7.3866,48.7467],[10.088,48.7467],[10.088,48.7032],[7.7819,43.2813],[7.76,43.2653],[7.3646,43.2493],[4.6412,43.2493]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Autumn colors in the Alps, Jura and southwestern Germany (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-LC81490352013282LGN00","name":"imagico.de: Western Karakoram","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=LC81490352013282LGN00&z={zoom}&x={x}&y={-y}","endDate":"2013-10-09T00:00:00.000Z","startDate":"2013-10-09T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[75.98364,34.97851],[73.96164,35.36957],[74.44281,37.09391],[76.50601,36.70267],[75.98364,34.97851]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Represents approximately minimum snow cover so can be well used for glacier mapping (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2A_R039_S15_20160510T145731","name":"imagico.de: Willkanuta Mountains and Quelccaya Ice Cap","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2A_R039_S15_20160510T145731&z={zoom}&x={x}&y={-y}","endDate":"2016-05-10T00:00:00.000Z","startDate":"2016-05-10T00:00:00.000Z","zoomExtent":[0,14],"polygon":[[[-71.18071,-14.49785],[-71.17976,-13.71029],[-70.55637,-13.71263],[-70.55637,-14.49785],[-71.18071,-14.49785]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Poor and outdated imagery in other sources (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R005_S7X_20200303T061749","name":"imagico.de: Yamato/Queen Fabiola Mountains","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R005_S7X_20200303T061749&z={zoom}&x={x}&y={-y}","endDate":"2020-03-03T00:00:00.000Z","startDate":"2020-03-03T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[19.143,-75.7213],[19.143,-75.667],[37.6211,-67.6112],[37.6431,-67.6029],[43.949,-67.6029],[44.9157,-67.6196],[44.9157,-68.1489],[43.5974,-69.3432],[42.4549,-70.2905],[40.7631,-71.5399],[39.0273,-72.667],[36.94,-73.8499],[35.9073,-74.379],[35.0505,-74.7878],[33.9079,-75.298],[32.9192,-75.7104],[32.8753,-75.7213],[19.143,-75.7213]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Recent Sentinel-2 image of the Yamato or Queen Fabiola Mountains, Belgica Mountains and Lützow-Holm Bay (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R129_S67_20200301T222409","name":"imagico.de: Young Island March 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R129_S67_20200301T222409&z={zoom}&x={x}&y={-y}","endDate":"2020-03-01T00:00:00.000Z","startDate":"2020-03-01T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[161.9249,-66.6775],[161.9249,-66.1208],[163.0622,-66.1208],[163.0622,-66.6775],[161.9249,-66.6775]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Almost cloud and sea ice free view of the island (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"osmim-imagicode-S2B_R129_S67_20200121T222409","name":"imagico.de: Young Island/Buckle Island January 2020","type":"tms","template":"https://imagico.de/map/osmim_tiles.php?layer=S2B_R129_S67_20200121T222409&z={zoom}&x={x}&y={-y}","endDate":"2020-01-21T00:00:00.000Z","startDate":"2020-01-21T00:00:00.000Z","zoomExtent":[0,13],"polygon":[[[161.7057,-67.0978],[161.7057,-65.9895],[163.9874,-65.9895],[163.9874,-67.0978],[161.7057,-67.0978]]],"terms_url":"http://maps.imagico.de/#osmim","terms_text":"imagico.de OSM images for mapping","description":"Cloud free summer image with sea ice (true color)","icon":"https://osmlab.github.io/editor-layer-index/sources/misc/osmim-imagicode.png"},{"id":"IndianaMap2016","name":"IndianaMap Orthoimagery 2016","type":"wms","template":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2016/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=FALSE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-86.93095,41.086],[-86.93041,40.99844],[-86.92929,40.9136],[-86.69579,40.91281],[-86.57968,40.91095],[-86.58017,40.82402],[-86.58133,40.73508],[-86.69536,40.73677],[-86.75238,40.73713],[-86.75719,40.72441],[-86.74927,40.71899],[-86.75651,40.709],[-86.75831,40.70082],[-86.7528,40.68632],[-86.75884,40.68177],[-86.74611,40.67998],[-86.7455,40.67817],[-86.75688,40.66457],[-86.7743,40.66412],[-86.7711,40.56207],[-86.69544,40.56209],[-86.69619,40.17853],[-86.24242,40.18069],[-86.24065,39.94074],[-86.24067,39.92607],[-86.32632,39.92421],[-86.6937,39.92283],[-86.69294,39.86434],[-86.68456,39.86481],[-86.68529,39.68845],[-86.68574,39.62997],[-86.66543,39.63046],[-86.64035,39.63049],[-86.64033,39.62006],[-86.65224,39.60871],[-86.65462,39.6001],[-86.65276,39.56656],[-86.64915,39.55523],[-86.67058,39.53389],[-86.68607,39.52616],[-86.68604,39.51438],[-86.68593,39.46995],[-86.63229,39.46957],[-86.63088,39.34809],[-86.64755,39.35578],[-86.65112,39.35623],[-86.65585,39.34353],[-86.65345,39.33402],[-86.66534,39.33173],[-86.68439,39.33715],[-86.6849,39.00994],[-86.68529,38.99402],[-86.31766,38.99358],[-86.27858,38.99352],[-86.27876,38.93414],[-86.27518,38.763],[-86.25877,38.76964],[-86.25766,38.76989],[-86.25632,38.76464],[-86.25595,38.76412],[-86.2429,38.7655],[-86.24046,38.76564],[-86.22518,38.77887],[-86.22435,38.77922],[-86.2209,38.77188],[-86.22004,38.77071],[-86.2156,38.77862],[-86.21476,38.77934],[-86.20226,38.77383],[-86.19747,38.77366],[-86.1851,38.7837],[-86.1836,38.78391],[-86.17766,38.77509],[-86.173,38.77274],[-86.13588,38.76259],[-86.13545,38.76235],[-86.10381,38.76552],[-86.10252,38.76556],[-86.0931,38.78364],[-86.09219,38.78371],[-86.07581,38.77482],[-86.07469,38.77421],[-86.062,38.77849],[-86.06126,38.77817],[-86.02771,38.75574],[-86.02649,38.75529],[-86.0218,38.76733],[-86.02092,38.76757],[-86.01255,38.75668],[-86.01133,38.75667],[-85.98508,38.76808],[-85.98354,38.76793],[-85.98577,38.75933],[-85.98563,38.75823],[-85.97835,38.7528],[-85.97723,38.75239],[-85.96239,38.76394],[-85.96129,38.76424],[-85.95064,38.76109],[-85.95026,38.76081],[-85.94987,38.75358],[-85.94931,38.75345],[-85.93697,38.76276],[-85.93642,38.76271],[-85.93698,38.75636],[-85.93658,38.7555],[-85.91801,38.74601],[-85.91691,38.74554],[-85.91924,38.75314],[-85.91903,38.75375],[-85.91141,38.7472],[-85.91054,38.74747],[-85.91027,38.75725],[-85.90966,38.75713],[-85.90954,38.75157],[-85.90878,38.75108],[-85.89661,38.75053],[-85.8963,38.75027],[-85.89425,38.7303],[-85.89408,38.72998],[-85.88619,38.73486],[-85.88581,38.73485],[-85.88175,38.72502],[-85.88146,38.72485],[-85.84755,38.73477],[-85.84734,38.73492],[-85.82006,38.77551],[-85.81989,38.77593],[-85.8048,38.77951],[-85.80465,38.77961],[-85.8074,38.78896],[-85.80736,38.7892],[-85.79512,38.80755],[-85.79493,38.8078],[-85.79893,39.12907],[-85.688,39.13067],[-85.68507,39.3387],[-85.68494,39.35049],[-85.94282,39.34752],[-85.95215,39.3473],[-85.954,39.86768],[-85.95401,39.86965],[-85.94827,39.86972],[-85.93807,39.86981],[-85.93738,39.92643],[-85.93759,39.92714],[-85.86955,39.92885],[-85.86242,39.92894],[-85.86218,40.40686],[-85.86405,40.56663],[-86.01292,40.56503],[-86.16541,40.56325],[-86.16901,40.96017],[-86.16763,40.99646],[-86.01846,40.9978],[-85.94662,40.99932],[-85.94044,40.7008],[-85.93961,40.65272],[-85.67424,40.65399],[-85.6385,40.65421],[-85.64054,40.78532],[-85.64402,41.00129],[-85.68359,41.00155],[-85.68562,41.08958],[-85.68764,41.17898],[-85.65224,41.17875],[-85.65887,41.69895],[-85.6598,41.7591],[-86.51946,41.75968],[-86.52422,41.75966],[-86.52661,41.6516],[-86.52664,41.65022],[-86.49012,41.64955],[-86.48727,41.64952],[-86.48627,41.58005],[-86.48617,41.57768],[-86.49511,41.56343],[-86.49809,41.56109],[-86.49811,41.52928],[-86.4982,41.52832],[-86.50521,41.51995],[-86.52484,41.51999],[-86.52465,41.43601],[-86.52467,41.43287],[-86.58209,41.43339],[-86.64151,41.4338],[-86.69839,41.40422],[-86.70206,41.40058],[-86.73794,41.32927],[-86.73914,41.32246],[-86.77633,41.29335],[-86.78424,41.28516],[-86.8465,41.26731],[-86.87032,41.26452],[-86.92821,41.23801],[-86.93004,41.2371],[-86.93095,41.086]],[[-86.33109,38.18099],[-86.28777,38.15805],[-86.2718,38.13787],[-86.27866,38.09851],[-86.27872,38.0893],[-86.26689,38.05712],[-86.26127,38.05272],[-86.19093,38.01644],[-86.17898,38.01131],[-86.10023,38.01074],[-86.09466,38.00864],[-86.04537,37.95884],[-86.04352,37.95869],[-86.03632,37.96156],[-86.03517,37.96327],[-86.03106,37.99164],[-86.02831,37.99322],[-85.94916,38.00484],[-85.94706,38.00508],[-85.92644,38.02085],[-85.925,38.02259],[-85.90524,38.08899],[-85.90505,38.09007],[-85.90893,38.14231],[-85.90882,38.14497],[-85.90039,38.17904],[-85.89986,38.17988],[-85.89992,38.18561],[-85.95077,38.18574],[-85.9549,38.26055],[-85.97366,38.26063],[-85.97355,38.27558],[-85.99466,38.27522],[-85.99564,38.30242],[-86.0144,38.30249],[-86.01481,38.33059],[-86.033,38.33067],[-86.03244,38.41768],[-86.25445,38.4224],[-86.25917,38.41516],[-86.26447,38.412],[-86.25802,38.41017],[-86.25215,38.40699],[-86.24927,38.39066],[-86.24576,38.38794],[-86.25517,38.38433],[-86.26163,38.38117],[-86.2593,38.37754],[-86.25816,38.36666],[-86.24819,38.36301],[-86.2482,38.36029],[-86.25291,38.35577],[-86.25703,38.35442],[-86.26405,38.36123],[-86.2705,38.3617],[-86.27353,38.3243],[-86.27306,38.32159],[-86.28346,38.33154],[-86.28605,38.33195],[-86.28451,38.32105],[-86.28941,38.31641],[-86.28263,38.31106],[-86.27581,38.30841],[-86.27864,38.30298],[-86.27444,38.29991],[-86.27136,38.30714],[-86.26773,38.30867],[-86.25894,38.30638],[-86.26423,38.30413],[-86.26485,38.29461],[-86.25253,38.29504],[-86.25313,38.29142],[-86.26959,38.27831],[-86.27486,38.27832],[-86.27612,38.25294],[-86.27737,38.2271],[-86.27972,38.22348],[-86.28442,38.22077],[-86.29319,38.22487],[-86.29788,38.2217],[-86.29848,38.21944],[-86.28912,38.21398],[-86.29557,38.20946],[-86.29032,38.20175],[-86.30627,38.20273],[-86.30848,38.20087],[-86.31671,38.18955],[-86.31847,38.18819],[-86.3097,38.18183],[-86.31264,38.17822],[-86.33109,38.18099]]],"terms_text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.","description":"Orthophotography for 24 counties in central Indiana, collected during leaf-off conditions in 2016. One-foot resolution for Bartholomew, Boon, Brown, Carroll, Cass, Clinton, Elkhart, Hamilton, Hendricks, Howard, Johnson, Marion, Marshall, Pulaski, St. Joseph, Starke, and Tipton counties. Six-inch resolution for Fulton, Harrison, Jackson, Kosciusko, Monroe, Morgan, and Wabash counties.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"},{"id":"IndianaMap2017","name":"IndianaMap Orthoimagery 2017","type":"wms","template":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2017/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=FALSE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-86.68529,38.99402],[-86.67996,38.27838],[-86.67992,38.26342],[-86.66644,38.26344],[-86.57149,38.26445],[-86.57202,38.20824],[-86.46132,38.20826],[-86.46253,38.12986],[-86.46293,38.11943],[-86.43208,38.12614],[-86.43175,38.12612],[-86.40507,38.1058],[-86.40141,38.10504],[-86.38722,38.12463],[-86.37977,38.12927],[-86.336,38.1292],[-86.33514,38.12924],[-86.32345,38.13903],[-86.32091,38.1471],[-86.33079,38.15764],[-86.33553,38.15941],[-86.36675,38.1634],[-86.37038,38.16528],[-86.37546,38.18741],[-86.37402,38.19055],[-86.36106,38.19673],[-86.35711,38.19649],[-86.31732,38.17822],[-86.31264,38.17822],[-86.31591,38.18524],[-86.31847,38.18819],[-86.30919,38.19754],[-86.30848,38.20087],[-86.29384,38.2013],[-86.29032,38.20175],[-86.29557,38.20946],[-86.2903,38.21081],[-86.28912,38.21398],[-86.29848,38.21944],[-86.29788,38.2217],[-86.27972,38.22348],[-86.27737,38.2271],[-86.27551,38.25702],[-86.27486,38.27832],[-86.25313,38.29142],[-86.25253,38.29504],[-86.26015,38.29733],[-86.26485,38.29461],[-86.25895,38.30503],[-86.25894,38.30638],[-86.27136,38.30714],[-86.27444,38.29991],[-86.28263,38.31106],[-86.28941,38.31641],[-86.28451,38.32105],[-86.28307,38.32473],[-86.28754,38.32958],[-86.28605,38.33195],[-86.27594,38.32018],[-86.27306,38.32159],[-86.27345,38.35627],[-86.2705,38.3617],[-86.25291,38.35577],[-86.2482,38.36029],[-86.2593,38.37754],[-86.26163,38.38117],[-86.24635,38.38613],[-86.24576,38.38794],[-86.25334,38.402],[-86.25215,38.40699],[-86.26272,38.40973],[-86.26447,38.412],[-86.25917,38.41516],[-86.25445,38.4224],[-86.03244,38.41768],[-86.033,38.33067],[-86.01481,38.33059],[-86.0144,38.30249],[-85.99564,38.30242],[-85.99466,38.27522],[-85.97355,38.27558],[-85.97359,38.27054],[-85.97366,38.26063],[-85.9549,38.26055],[-85.95077,38.18574],[-85.89992,38.18561],[-85.89986,38.17988],[-85.84499,38.23024],[-85.84422,38.23109],[-85.82696,38.27839],[-85.82559,38.2794],[-85.78149,38.28825],[-85.78098,38.28829],[-85.74553,38.26698],[-85.74392,38.2671],[-85.67667,38.29986],[-85.67558,38.30067],[-85.65256,38.32841],[-85.65165,38.3301],[-85.63191,38.3978],[-85.63166,38.39877],[-85.60737,38.43805],[-85.60677,38.43869],[-85.58381,38.45058],[-85.58123,38.45136],[-85.50038,38.46755],[-85.49931,38.46799],[-85.46866,38.50867],[-85.46682,38.51025],[-85.42008,38.53466],[-85.41957,38.53503],[-85.41566,38.56235],[-85.41566,38.56312],[-85.43759,38.60284],[-85.43824,38.60468],[-85.43837,38.65779],[-85.43854,38.65896],[-85.45673,38.68734],[-85.4569,38.68851],[-85.45197,38.70988],[-85.45184,38.7102],[-85.43609,38.7285],[-85.43532,38.729],[-85.41644,38.73643],[-85.41489,38.73677],[-85.36507,38.73034],[-85.3636,38.73037],[-85.27859,38.74159],[-85.2767,38.74135],[-85.24937,38.73348],[-85.24859,38.73314],[-85.21096,38.69444],[-85.20967,38.69367],[-85.16501,38.6898],[-85.16321,38.69019],[-84.9939,38.77765],[-84.99229,38.77815],[-84.94286,38.77541],[-84.94121,38.77565],[-84.88761,38.79478],[-84.88724,38.7948],[-84.81562,38.78393],[-84.8149,38.78428],[-84.8131,38.79745],[-84.81339,38.79851],[-84.83,38.82966],[-84.82993,38.83037],[-84.79418,38.85753],[-84.79354,38.85784],[-84.78486,38.87357],[-84.78461,38.87498],[-84.8015,38.89171],[-84.80298,38.89227],[-84.86245,38.89789],[-84.8637,38.89809],[-84.87596,38.90778],[-84.87702,38.90901],[-84.87765,38.92059],[-84.87706,38.92147],[-84.83422,38.95885],[-84.83363,38.95943],[-84.82995,38.97142],[-84.83003,38.97305],[-84.89728,39.05471],[-84.89739,39.05548],[-84.82239,39.10457],[-84.81993,39.10544],[-84.80397,40.30267],[-84.80358,40.31025],[-84.80292,40.92236],[-84.80292,40.92257],[-85.3224,40.91703],[-85.33597,40.91703],[-85.33847,41.12909],[-85.3389,41.15113],[-85.33818,41.17286],[-85.31331,41.17316],[-85.30997,41.1732],[-85.30921,41.25112],[-85.30777,41.26413],[-84.84755,41.27],[-84.80356,41.27116],[-84.80613,41.74312],[-84.80588,41.76022],[-85.65074,41.7591],[-85.6598,41.7591],[-85.65224,41.17875],[-85.68764,41.17898],[-85.68359,41.00155],[-85.64402,41.00129],[-85.64014,40.76899],[-85.6385,40.65421],[-85.90024,40.65254],[-85.93961,40.65272],[-85.94663,40.99751],[-85.94662,40.99932],[-86.12927,40.99726],[-86.16763,40.99646],[-86.16805,40.64354],[-86.16541,40.56325],[-85.89975,40.56636],[-85.86405,40.56663],[-85.86211,40.37841],[-85.86144,40.21908],[-86.12848,40.21759],[-86.2435,40.21516],[-86.24065,39.94074],[-86.24067,39.92607],[-85.93779,39.92712],[-85.93759,39.92714],[-85.93807,39.87702],[-85.93807,39.86981],[-85.95364,39.86965],[-85.95401,39.86965],[-85.95269,39.36098],[-85.95215,39.3473],[-85.79977,39.35073],[-85.68494,39.35049],[-85.688,39.13067],[-85.79893,39.12907],[-85.79535,38.82447],[-85.79493,38.8078],[-85.80719,38.78942],[-85.80736,38.7892],[-85.80444,38.78003],[-85.80451,38.77981],[-85.81957,38.77608],[-85.81989,38.77593],[-85.84718,38.73514],[-85.84734,38.73492],[-85.88015,38.72487],[-85.88046,38.72479],[-85.88555,38.73468],[-85.88581,38.73485],[-85.89381,38.72974],[-85.89408,38.72998],[-85.89621,38.74987],[-85.8963,38.75027],[-85.90901,38.75661],[-85.90966,38.75713],[-85.9097,38.74805],[-85.91054,38.74747],[-85.91869,38.75411],[-85.91903,38.75375],[-85.91605,38.7457],[-85.91691,38.74554],[-85.9358,38.75504],[-85.93658,38.7555],[-85.9361,38.76235],[-85.93642,38.76271],[-85.94798,38.75356],[-85.94931,38.75345],[-85.96056,38.7641],[-85.96129,38.76424],[-85.97598,38.75232],[-85.97723,38.75239],[-85.985,38.75764],[-85.98563,38.75823],[-85.98233,38.76692],[-85.98256,38.76759],[-86.01028,38.75687],[-86.01133,38.75667],[-86.01902,38.76736],[-86.02092,38.76757],[-86.02585,38.75538],[-86.02649,38.75529],[-86.06023,38.7775],[-86.06126,38.77817],[-86.0734,38.77417],[-86.07469,38.77421],[-86.09118,38.7835],[-86.09219,38.78371],[-86.10176,38.76589],[-86.10252,38.76556],[-86.13481,38.76227],[-86.13545,38.76235],[-86.17165,38.77244],[-86.173,38.77274],[-86.18176,38.78289],[-86.1836,38.78391],[-86.19724,38.77408],[-86.19747,38.77366],[-86.21178,38.77945],[-86.21476,38.77934],[-86.21851,38.7705],[-86.22004,38.77071],[-86.22363,38.77925],[-86.22435,38.77922],[-86.23696,38.76775],[-86.24046,38.76564],[-86.27167,38.76451],[-86.27518,38.763],[-86.27875,38.986],[-86.27858,38.99352],[-86.68529,38.99402]],[[-87.9869,38.25738],[-87.98177,38.23376],[-87.9843,38.2304],[-87.79945,38.22857],[-87.79978,38.21407],[-87.79955,38.20092],[-87.68887,38.20204],[-87.68891,38.1685],[-87.46706,38.16543],[-87.46665,38.19389],[-87.46633,38.20354],[-87.35565,38.20482],[-87.31699,38.20508],[-87.31686,38.24588],[-87.31599,38.37733],[-87.33482,38.38173],[-87.34541,38.38347],[-87.40584,38.38032],[-87.40759,38.3794],[-87.40712,38.43606],[-87.44473,38.43623],[-87.44453,38.46706],[-87.46394,38.4669],[-87.46401,38.51722],[-87.4642,38.53217],[-87.47051,38.51988],[-87.47047,38.51626],[-87.47569,38.51123],[-87.49091,38.50567],[-87.49255,38.49704],[-87.49548,38.49566],[-87.50017,38.49517],[-87.51323,38.50367],[-87.52786,38.49857],[-87.5314,38.49899],[-87.52985,38.51442],[-87.53637,38.51844],[-87.54693,38.51654],[-87.5498,38.51153],[-87.54139,38.49936],[-87.54069,38.49166],[-87.55772,38.4897],[-87.57302,38.49093],[-87.57962,38.49948],[-87.58373,38.49945],[-87.58059,38.48588],[-87.57997,38.48362],[-87.59023,38.46222],[-87.59888,38.45082],[-87.63108,38.44282],[-87.63579,38.44323],[-87.6371,38.45228],[-87.64069,38.45587],[-87.65128,38.45714],[-87.656,38.458],[-87.6723,38.44833],[-87.67345,38.4465],[-87.66273,38.43799],[-87.66206,38.43256],[-87.7433,38.41401],[-87.74413,38.4141],[-87.77157,38.37799],[-87.77267,38.37656],[-87.80361,38.36406],[-87.80768,38.36175],[-87.82237,38.34582],[-87.82357,38.34448],[-87.83209,38.29841],[-87.83227,38.29745],[-87.84315,38.27932],[-87.84663,38.27702],[-87.86249,38.28335],[-87.86305,38.28425],[-87.8684,38.31254],[-87.87073,38.31296],[-87.90788,38.27006],[-87.90916,38.26955],[-87.91712,38.27358],[-87.91753,38.27531],[-87.9074,38.2931],[-87.90796,38.29582],[-87.93145,38.29737],[-87.93436,38.29517],[-87.9475,38.27861],[-87.94981,38.27675],[-87.94382,38.26401],[-87.94385,38.2622],[-87.95967,38.24218],[-87.96045,38.24177],[-87.97899,38.25866],[-87.97997,38.25958],[-87.9869,38.25738]]],"terms_text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.","description":"Orthophotography for 39 counties in eastern Indiana, collected during leaf-off conditions in 2017. One-foot resolution for Adams, Blackford, Clark, Crawford, Decatur, Delaware, Fayette, Floyd, Franklin, Grant, Hamilton, Hancock, Henry, Huntington, Jay, Jefferson, Jennings, Lagrange, Lawrence, Madison, Miami, Noble, Ohio, Orange, Randolph, Ripley, Rush, Scott, Switzerland, Union, and Washington counties. Six-inch resolution for Dearborn, Dekalb, Gibson, Shelby, Steuben, Wayne, Wells, and Whitley counties. Three-inch resolution for Hamilton County and Shelbyville.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"},{"id":"IndianaMap2018","name":"IndianaMap Orthoimagery 2018","type":"wms","template":"https://maps.indiana.edu/arcgis/services/Imagery/Orthos_2018/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=FALSE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-88.0997,37.90441],[-88.06863,37.85773],[-88.06288,37.85102],[-88.02672,37.8371],[-88.02543,37.83344],[-88.03865,37.82239],[-88.04431,37.82151],[-88.07796,37.83094],[-88.08182,37.83114],[-88.09143,37.81819],[-88.08912,37.815],[-88.06783,37.79988],[-88.06397,37.799],[-88.03556,37.81121],[-88.03118,37.8108],[-88.02509,37.80253],[-88.02502,37.7999],[-88.00471,37.80015],[-87.9971,37.79767],[-87.95948,37.77311],[-87.95259,37.77174],[-87.93323,37.79697],[-87.93255,37.79767],[-87.90681,37.80762],[-87.9046,37.81253],[-87.90777,37.83761],[-87.91028,37.84342],[-87.94102,37.87917],[-87.94084,37.88334],[-87.89616,37.9284],[-87.89614,37.9284],[-87.87326,37.92145],[-87.87254,37.921],[-87.8381,37.87977],[-87.83388,37.87732],[-87.78517,37.87216],[-87.76563,37.86662],[-87.73176,37.88574],[-87.72678,37.89148],[-87.6765,37.90216],[-87.67573,37.90193],[-87.66286,37.88558],[-87.66282,37.88145],[-87.6754,37.86595],[-87.68163,37.85592],[-87.68069,37.84062],[-87.67919,37.83632],[-87.66718,37.82764],[-87.66652,37.82746],[-87.62501,37.82908],[-87.6154,37.83197],[-87.58873,37.86098],[-87.58843,37.86879],[-87.59037,37.88013],[-87.59158,37.88719],[-87.61988,37.90665],[-87.62027,37.90692],[-87.62842,37.92145],[-87.62896,37.92671],[-87.61082,37.9446],[-87.60622,37.94964],[-87.60051,37.97291],[-87.60035,37.97314],[-87.58818,37.97603],[-87.58795,37.97617],[-87.57576,37.96872],[-87.5755,37.9684],[-87.57705,37.95222],[-87.57749,37.95173],[-87.56396,37.93533],[-87.56188,37.9331],[-87.5115,37.90643],[-87.51077,37.90615],[-87.44949,37.94181],[-87.44779,37.94243],[-87.42852,37.94481],[-87.41858,37.94476],[-87.38051,37.93567],[-87.38025,37.9356],[-87.25525,37.86733],[-87.22094,37.84913],[-87.16486,37.84121],[-87.16232,37.84016],[-87.13291,37.7933],[-87.13094,37.78801],[-87.11433,37.78253],[-87.11113,37.78251],[-87.09197,37.78699],[-87.08835,37.78889],[-87.06805,37.80576],[-87.06784,37.80606],[-87.04926,37.85974],[-87.04385,37.8708],[-87.04535,37.8929],[-87.0451,37.89377],[-87.03589,37.90429],[-87.03344,37.90659],[-86.97896,37.9302],[-86.96904,37.93286],[-86.91963,37.9366],[-86.91933,37.93666],[-86.86322,37.9825],[-86.85595,37.98729],[-86.82349,37.99894],[-86.82007,37.99939],[-86.8037,37.99345],[-86.79498,37.98898],[-86.76733,37.93617],[-86.76505,37.93251],[-86.73445,37.89641],[-86.73146,37.89434],[-86.71846,37.89312],[-86.71614,37.89407],[-86.68601,37.91308],[-86.68093,37.91501],[-86.64773,37.90905],[-86.64708,37.90862],[-86.64404,37.8982],[-86.64475,37.89481],[-86.6625,37.85695],[-86.66158,37.84942],[-86.6553,37.84251],[-86.65252,37.84164],[-86.63351,37.84415],[-86.62576,37.84727],[-86.60462,37.85827],[-86.59811,37.86738],[-86.59595,37.91445],[-86.58858,37.92116],[-86.54072,37.91687],[-86.53416,37.91701],[-86.50783,37.92883],[-86.50662,37.93072],[-86.52383,37.96217],[-86.52517,37.96823],[-86.52183,38.03833],[-86.5194,38.04124],[-86.4719,38.04622],[-86.45219,38.05049],[-86.43135,38.07334],[-86.43052,38.0783],[-86.45991,38.09656],[-86.46386,38.10118],[-86.46253,38.12986],[-86.46132,38.20826],[-86.57202,38.20824],[-86.57149,38.26445],[-86.66644,38.26344],[-86.67992,38.26342],[-86.68299,39.25374],[-86.68439,39.33715],[-86.66059,39.33355],[-86.65582,39.33129],[-86.65527,39.34942],[-86.65112,39.35623],[-86.63088,39.34809],[-86.63229,39.46957],[-86.68593,39.46995],[-86.68604,39.51438],[-86.68607,39.52616],[-86.65331,39.54752],[-86.64915,39.55523],[-86.65459,39.5865],[-86.6552,39.59647],[-86.64033,39.62006],[-86.64035,39.63049],[-86.66543,39.63046],[-86.68574,39.62997],[-86.6952,40.4751],[-86.69544,40.56209],[-86.7711,40.56207],[-86.7743,40.66412],[-86.75688,40.66457],[-86.75336,40.67271],[-86.7455,40.67817],[-86.75702,40.67951],[-86.75884,40.68177],[-86.7528,40.68632],[-86.74978,40.68859],[-86.75526,40.69493],[-86.75831,40.70082],[-86.7541,40.71308],[-86.74927,40.71899],[-86.75719,40.72441],[-86.75236,40.73304],[-86.75238,40.73713],[-86.69536,40.73677],[-86.58133,40.73508],[-86.58017,40.82402],[-86.57968,40.91095],[-86.81376,40.91303],[-86.92929,40.9136],[-86.93,41.22984],[-86.93004,41.2371],[-86.87763,41.25996],[-86.87032,41.26452],[-86.81414,41.27329],[-86.78424,41.28516],[-86.74584,41.31701],[-86.73914,41.32246],[-86.70206,41.40058],[-86.69839,41.40422],[-86.64314,41.43266],[-86.64151,41.4338],[-86.58209,41.43339],[-86.52467,41.43287],[-86.52485,41.50529],[-86.52484,41.51999],[-86.50521,41.51995],[-86.50383,41.52024],[-86.49845,41.528],[-86.4982,41.52832],[-86.49511,41.56343],[-86.48648,41.57047],[-86.4872,41.64648],[-86.48727,41.64952],[-86.51944,41.65012],[-86.52664,41.65022],[-86.52427,41.75785],[-86.52422,41.75966],[-86.82433,41.76024],[-86.82569,41.76025],[-86.91273,41.72327],[-86.91638,41.71645],[-87.13327,41.64289],[-87.17696,41.63272],[-87.26141,41.62887],[-87.28612,41.62704],[-87.40469,41.65019],[-87.41161,41.64876],[-87.42034,41.65341],[-87.39377,41.67733],[-87.42266,41.69573],[-87.4622,41.68529],[-87.50542,41.70611],[-87.51756,41.71643],[-87.52398,41.71348],[-87.52495,41.64461],[-87.52517,41.63248],[-87.53086,40.16985],[-87.53141,40.15046],[-87.4896,40.15077],[-87.49052,40.13081],[-87.40632,40.13009],[-87.41637,40.06971],[-87.41627,40.062],[-87.42097,40.0538],[-87.43171,40.04738],[-87.42439,40.03927],[-87.43152,40.03287],[-87.4356,40.02377],[-87.43012,39.97076],[-87.44019,39.96117],[-87.4209,39.95405],[-87.41967,39.95225],[-87.43444,39.93446],[-87.4332,39.93084],[-87.41218,39.92873],[-87.40677,39.92831],[-87.41325,39.91874],[-87.40958,39.91333],[-87.38431,39.90625],[-87.37827,39.90267],[-87.3728,39.89681],[-87.36787,39.88551],[-87.37917,39.87773],[-87.37914,39.87592],[-87.35564,39.86474],[-87.35381,39.86203],[-87.37149,39.83788],[-87.38166,39.83691],[-87.37382,39.78301],[-87.37377,39.77938],[-87.38338,39.72232],[-87.38432,39.7199],[-87.38166,39.69371],[-87.38183,39.69264],[-87.39542,39.6557],[-87.39557,39.6536],[-87.38127,39.61559],[-87.3821,39.60935],[-87.46069,39.60964],[-87.53206,39.60904],[-87.53114,39.41882],[-87.53138,39.34771],[-87.54333,39.35256],[-87.54374,39.35272],[-87.55371,39.34081],[-87.55413,39.34031],[-87.58799,39.33415],[-87.58881,39.33365],[-87.58942,39.33253],[-87.60013,39.31272],[-87.60001,39.29311],[-87.60978,39.28205],[-87.60535,39.26125],[-87.60554,39.26112],[-87.57916,39.23296],[-87.57456,39.2184],[-87.58573,39.20114],[-87.58861,39.19782],[-87.63518,39.16889],[-87.64043,39.16673],[-87.62796,39.15734],[-87.62772,39.15661],[-87.64313,39.15614],[-87.64599,39.1449],[-87.63073,39.10478],[-87.63038,39.1043],[-87.58251,39.06661],[-87.57259,39.05729],[-87.56982,39.01975],[-87.5697,39.01941],[-87.57839,38.98994],[-87.57832,38.98879],[-87.54369,38.97683],[-87.5295,38.97192],[-87.51409,38.95634],[-87.51219,38.95442],[-87.51847,38.92486],[-87.51883,38.92321],[-87.5294,38.9054],[-87.54409,38.89509],[-87.54737,38.87561],[-87.55338,38.86334],[-87.53059,38.8524],[-87.52943,38.85148],[-87.52191,38.83086],[-87.52129,38.82818],[-87.52648,38.81994],[-87.52614,38.81894],[-87.50008,38.79001],[-87.49925,38.78843],[-87.4976,38.7807],[-87.49825,38.7796],[-87.51401,38.77245],[-87.51449,38.77092],[-87.49978,38.76894],[-87.49805,38.76756],[-87.4977,38.74539],[-87.49708,38.74313],[-87.53062,38.68451],[-87.53275,38.68272],[-87.58724,38.67109],[-87.58973,38.67018],[-87.61753,38.64294],[-87.61936,38.64117],[-87.62656,38.60785],[-87.62711,38.60467],[-87.61356,38.59212],[-87.61383,38.59099],[-87.63633,38.59383],[-87.63694,38.5937],[-87.64997,38.56972],[-87.65233,38.5682],[-87.6507,38.55624],[-87.66073,38.54109],[-87.6538,38.51738],[-87.65417,38.51191],[-87.67837,38.49844],[-87.69319,38.48804],[-87.73536,38.4768],[-87.73952,38.47507],[-87.74345,38.46584],[-87.74317,38.45902],[-87.73551,38.45273],[-87.73013,38.44652],[-87.74071,38.43581],[-87.74104,38.43558],[-87.74397,38.41707],[-87.74413,38.4141],[-87.67257,38.42883],[-87.66206,38.43256],[-87.67159,38.44108],[-87.67345,38.4465],[-87.65833,38.45707],[-87.656,38.458],[-87.64537,38.45493],[-87.64069,38.45587],[-87.63818,38.44593],[-87.63579,38.44323],[-87.61116,38.44663],[-87.59888,38.45082],[-87.58917,38.46994],[-87.57997,38.48362],[-87.58717,38.49353],[-87.58373,38.49945],[-87.55772,38.4897],[-87.54069,38.49166],[-87.54682,38.50883],[-87.5498,38.51153],[-87.54049,38.51841],[-87.53637,38.51844],[-87.52985,38.51442],[-87.53322,38.50351],[-87.5314,38.49899],[-87.51852,38.50409],[-87.51323,38.50367],[-87.50017,38.49517],[-87.49548,38.49566],[-87.49255,38.49704],[-87.49091,38.50567],[-87.47569,38.51123],[-87.47047,38.51626],[-87.46538,38.53171],[-87.4642,38.53217],[-87.46412,38.48095],[-87.46394,38.4669],[-87.44453,38.46706],[-87.44423,38.44349],[-87.44473,38.43623],[-87.40712,38.43606],[-87.40759,38.3794],[-87.35772,38.38158],[-87.34541,38.38347],[-87.31834,38.37776],[-87.31599,38.37733],[-87.3167,38.23137],[-87.31699,38.20508],[-87.35565,38.20482],[-87.46633,38.20354],[-87.46706,38.16543],[-87.68891,38.1685],[-87.68887,38.20204],[-87.79955,38.20092],[-87.79945,38.22857],[-87.9843,38.2304],[-87.97637,38.19939],[-87.96938,38.19044],[-87.94213,38.17786],[-87.94012,38.17625],[-87.93557,38.16283],[-87.9352,38.16233],[-87.92312,38.17009],[-87.92184,38.17035],[-87.91494,38.16256],[-87.91499,38.16029],[-87.94197,38.13351],[-87.94518,38.13085],[-87.96801,38.13066],[-87.96912,38.12987],[-87.97701,38.11149],[-87.97929,38.11004],[-88.01454,38.10034],[-88.01575,38.09854],[-88.00958,38.08532],[-88.00784,38.08484],[-87.96303,38.10202],[-87.96098,38.10165],[-87.95486,38.08812],[-87.95458,38.08708],[-87.95876,38.07453],[-87.9613,38.07156],[-87.98943,38.05671],[-87.99203,38.05557],[-88.02368,38.05286],[-88.03012,38.05248],[-88.04168,38.04467],[-88.04258,38.04311],[-88.03739,38.03544],[-88.03444,38.03411],[-88.01109,38.03342],[-88.00921,38.03129],[-88.02389,38.01342],[-88.02512,38.01026],[-88.01063,37.97518],[-88.01099,37.97319],[-88.03123,37.96013],[-88.03206,37.95901],[-88.02998,37.93083],[-88.03258,37.92876],[-88.05756,37.93455],[-88.0598,37.93452],[-88.06862,37.92726],[-88.06884,37.92489],[-88.02204,37.91462],[-88.01733,37.91183],[-88.0125,37.89012],[-88.01421,37.88565],[-88.0282,37.89127],[-88.03129,37.89472],[-88.04966,37.89086],[-88.05696,37.89181],[-88.08425,37.90482],[-88.08957,37.90732],[-88.0997,37.90441]],[[-85.3389,41.15113],[-85.33593,40.9349],[-85.33597,40.91703],[-84.87996,40.92059],[-84.80292,40.92257],[-84.80353,41.25256],[-84.80356,41.27116],[-85.19291,41.26426],[-85.30777,41.26413],[-85.30938,41.24972],[-85.30997,41.1732],[-85.31331,41.17316],[-85.33818,41.17286],[-85.3389,41.15113]]],"terms_text":"Indiana Office of Information Technology, Indiana University Spatial Data Portal, UITS, Woolpert Inc.","description":"Orthophotography for 19 counties and one city in western Indiana, collected during leaf-off conditions in 2018. One-foot resolution for Benton, Clay, Fountain, Greene, Jasper, LaPorte, Montogomery, Newton, Owen, Parke, Sullivan, Tippecanoe, Vigo, Warren, and White counties. Six-inch resolution for Allen, Lake, Porter, and Putnam counties. Three-inch resolution for Huntingburg.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/in/IU.gif"},{"id":"IPR-orotofoto-last-tms","name":"IPR ortofoto LAST (tmsproxy)","type":"tms","template":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_last.php/{zoom}/{x}/{y}.jpg","zoomExtent":[1,20],"polygon":[[[14.81232,49.93089],[14.18755,49.87687],[14.12025,50.19882],[14.74502,50.25247],[14.81232,49.93089]]]},{"id":"IPR-orotofoto-vege-tms","name":"IPR ortofoto Low-Vegetation (tmsproxy)","type":"tms","template":"https://osm-{switch:a,b,c}.zby.cz/tiles_ipr_vege.php/{zoom}/{x}/{y}.jpg","zoomExtent":[2,20],"polygon":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]]},{"id":"GSGS3906","name":"Ireland British War Office 1:25k GSGS 3906","type":"tms","template":"https://mapwarper.net/layers/tile/101/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[-9.31139,51.43828],[-7.36131,51.99302],[-7.33934,52.13149],[-6.9658,52.06231],[-6.23796,52.1534],[-6.21049,52.52928],[-5.98253,52.80079],[-5.96056,53.67037],[-6.20775,53.67851],[-6.22423,53.95255],[-5.86442,54.12513],[-5.85893,54.20392],[-5.53483,54.23122],[-5.39476,54.44739],[-5.50188,54.70052],[-6.21873,55.38194],[-6.86418,55.2162],[-7.25145,55.46455],[-7.53435,55.30853],[-8.25395,55.26787],[-8.61101,54.97259],[-8.49016,54.89369],[-8.83897,54.68306],[-8.42699,54.52397],[-8.75108,54.31302],[-9.29765,54.38985],[-10.05296,54.37866],[-10.30015,54.05747],[-10.02275,53.79386],[-10.30565,53.55142],[-9.99803,53.24354],[-9.09166,53.19256],[-9.81676,53.1102],[-9.48167,52.96984],[-9.70415,52.68107],[-10.00627,52.63608],[-9.78929,52.52426],[-9.99803,52.32663],[-10.64348,52.1753],[-10.39629,51.9761],[-10.16832,51.64668],[-10.28642,51.57334],[-9.88542,51.57163],[-9.79204,51.44684],[-9.31139,51.43828]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Ireland/Background_Imagery#Trinity_College_Dublin","terms_text":"Glucksman Map Library, Trinity College Dublin","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ie/IrelandBritishWarOffice-GSGS3906.png"},{"id":"Israel_Hiking","name":"Israel Hiking","type":"tms","template":"https://israelhiking.osm.org.il/Tiles/{zoom}/{x}/{y}.png","zoomExtent":[7,16],"polygon":[[[34.64563,32.92073],[34.98374,33.13352],[35.15662,33.09994],[35.31781,33.11463],[35.36541,33.06285],[35.46229,33.09994],[35.51741,33.12652],[35.5266,33.21531],[35.53893,33.25442],[35.56446,33.2969],[35.61264,33.27918],[35.67429,33.30627],[35.70785,33.34269],[35.75363,33.35091],[35.81509,33.3392],[35.91531,32.9406],[35.80834,32.772],[35.77835,32.72446],[35.59491,32.62828],[35.5729,32.36541],[35.59461,32.21856],[35.55452,32.02901],[35.57225,31.75415],[35.48771,31.41951],[35.4209,31.25116],[35.47936,31.1783],[35.42771,30.95172],[35.3321,30.77107],[35.20709,30.53307],[35.17202,30.11204],[35.07514,29.83713],[35.02336,29.64569],[34.93992,29.39946],[34.89517,29.37711],[34.84785,29.59084],[34.69667,30.10714],[34.52423,30.40912],[34.48879,30.64515],[34.07929,31.52265],[34.64563,32.92073]]],"terms_url":"https://israelhiking.osm.org.il/","terms_text":"Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.","description":"Israel Hiking map","icon":"https://israelhiking.osm.org.il/content/favicons/favicon.ico"},{"id":"Israel_MTB","name":"Israel MTB","type":"tms","template":"https://israelhiking.osm.org.il/MTBTiles/{zoom}/{x}/{y}.png","zoomExtent":[7,16],"polygon":[[[34.64563,32.92073],[34.98374,33.13352],[35.15662,33.09994],[35.31781,33.11463],[35.36541,33.06285],[35.46229,33.09994],[35.51741,33.12652],[35.5266,33.21531],[35.53893,33.25442],[35.56446,33.2969],[35.61264,33.27918],[35.67429,33.30627],[35.70785,33.34269],[35.75363,33.35091],[35.81509,33.3392],[35.91531,32.9406],[35.80834,32.772],[35.77835,32.72446],[35.59491,32.62828],[35.5729,32.36541],[35.59461,32.21856],[35.55452,32.02901],[35.57225,31.75415],[35.48771,31.41951],[35.4209,31.25116],[35.47936,31.1783],[35.42771,30.95172],[35.3321,30.77107],[35.20709,30.53307],[35.17202,30.11204],[35.07514,29.83713],[35.02336,29.64569],[34.93992,29.39946],[34.89517,29.37711],[34.84785,29.59084],[34.69667,30.10714],[34.52423,30.40912],[34.48879,30.64515],[34.07929,31.52265],[34.64563,32.92073]]],"terms_url":"https://israelhiking.osm.org.il/","terms_text":"Tiles © IsraelHiking, CC BY-SA-NC 3.0. Data by OpenStreetMap under ODbL.","description":"Israel MTB map","icon":"https://israelhiking.osm.org.il/content/favicons/favicon.ico"},{"id":"ITACyL-Castile-and-Leon","name":"ITACyL - Castile and León","type":"wms","template":"http://orto.wms.itacyl.es/WMS?REQUEST=GetMap&SERVICE=WMS&VERSION=1.1.1&LAYERS=Ortofoto_CyL&SRS={proj}&FORMAT=image/jpeg&STYLES=Default&TRANSPARENT=TRUE&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[-1.9358,41.43834],[-1.89601,41.43869],[-1.89536,41.39687],[-1.9767,41.39616],[-1.97639,41.37623],[-2.06201,41.37548],[-2.06262,41.41471],[-2.10458,41.41434],[-2.10363,41.35367],[-2.14448,41.35331],[-2.1419,41.18683],[-2.06204,41.18753],[-2.06171,41.16624],[-2.02046,41.16661],[-2.01887,41.06334],[-2.10083,41.06262],[-2.10114,41.08296],[-2.22733,41.08185],[-2.22704,41.0635],[-2.26912,41.06313],[-2.2688,41.04257],[-2.35325,41.04182],[-2.35356,41.06148],[-2.39487,41.06112],[-2.39457,41.04206],[-2.43722,41.04168],[-2.43756,41.06315],[-2.47928,41.06278],[-2.47991,41.10369],[-2.52078,41.10333],[-2.5211,41.12429],[-2.60415,41.12357],[-2.60481,41.16628],[-2.6471,41.16591],[-2.64808,41.22931],[-2.72874,41.2286],[-2.72907,41.24974],[-2.89552,41.24828],[-2.89649,41.31063],[-2.9363,41.31028],[-2.93571,41.27231],[-3.14692,41.27046],[-3.14723,41.29045],[-3.22828,41.28974],[-3.22767,41.25008],[-3.39581,41.2486],[-3.39518,41.20808],[-3.43492,41.20773],[-3.43429,41.16696],[-3.47877,41.16657],[-3.47844,41.14556],[-3.60336,41.14446],[-3.6027,41.10169],[-3.64539,41.10131],[-3.64508,41.08159],[-3.68735,41.08122],[-3.68673,41.04104],[-3.72866,41.04067],[-3.72803,40.9998],[-3.76896,40.99944],[-3.76864,40.97886],[-3.85473,40.97811],[-3.8544,40.95653],[-3.89857,40.95615],[-3.89764,40.89575],[-3.93906,40.89539],[-3.93716,40.77204],[-4.06198,40.77093],[-4.06133,40.72926],[-4.10372,40.72888],[-4.10311,40.68918],[-4.14628,40.6888],[-4.14498,40.60421],[-4.19025,40.60381],[-4.18994,40.58362],[-4.22946,40.58327],[-4.22979,40.60487],[-4.27054,40.60451],[-4.26958,40.54211],[-4.31384,40.54171],[-4.31163,40.39758],[-4.39376,40.39685],[-4.39345,40.37677],[-4.43723,40.37638],[-4.43623,40.31123],[-4.52192,40.31046],[-4.52037,40.20897],[-4.56131,40.2086],[-4.56099,40.18763],[-4.68895,40.18649],[-4.68933,40.21101],[-4.73192,40.21063],[-4.73252,40.24966],[-4.76838,40.24934],[-4.76809,40.23035],[-4.81104,40.22996],[-4.81147,40.20726],[-4.8542,40.18414],[-4.85264,40.12563],[-4.93699,40.12488],[-4.93638,40.08529],[-5.35538,40.08155],[-5.35606,40.12562],[-5.44027,40.12487],[-5.44091,40.16673],[-5.60382,40.16527],[-5.60448,40.20881],[-5.68646,40.20808],[-5.68712,40.25131],[-6.02166,40.24834],[-6.02295,40.33257],[-6.10433,40.33184],[-6.1056,40.41451],[-6.18951,40.41376],[-6.19018,40.45745],[-6.26971,40.45675],[-6.26909,40.41653],[-6.35192,40.41579],[-6.35128,40.37422],[-6.43325,40.37349],[-6.43264,40.33361],[-6.52245,40.33281],[-6.52116,40.24849],[-6.59942,40.24779],[-6.59886,40.21128],[-6.85568,40.20899],[-6.85634,40.25257],[-6.93622,40.25186],[-6.93751,40.33657],[-6.85111,40.33734],[-6.86001,40.91672],[-6.93544,40.91605],[-6.93741,41.0435],[-6.85482,41.04423],[-6.85548,41.08706],[-6.77015,41.08781],[-6.77245,41.23623],[-6.68379,41.23701],[-6.60436,41.2377],[-6.60524,41.29474],[-6.5193,41.29549],[-6.51991,41.33479],[-6.43673,41.33552],[-6.43801,41.41814],[-6.35318,41.41888],[-6.35447,41.50141],[-6.26889,41.50216],[-6.2708,41.6245],[-6.35661,41.62375],[-6.35724,41.66401],[-6.43548,41.66333],[-6.4349,41.62651],[-6.52279,41.62575],[-6.52343,41.66635],[-6.6034,41.66565],[-6.60733,41.9166],[-7.02209,41.913],[-7.02406,42.03872],[-7.1054,42.03801],[-7.10613,42.08421],[-7.0208,42.08495],[-7.02276,42.2094],[-6.93699,42.21014],[-6.93763,42.25087],[-6.8548,42.25159],[-6.85545,42.29329],[-6.77342,42.294],[-6.77403,42.33244],[-6.85325,42.33176],[-6.85523,42.4569],[-7.10341,42.45477],[-7.10811,42.75115],[-7.02199,42.75189],[-7.02241,42.77825],[-6.93976,42.77896],[-6.94199,42.91962],[-6.77302,42.92106],[-6.77363,42.95958],[-6.52329,42.96172],[-6.52391,43.00095],[-6.43893,43.00167],[-6.44024,43.08361],[-5.93782,43.08789],[-5.93708,43.04189],[-5.85421,43.0426],[-5.85357,43.00258],[-5.77236,43.00327],[-5.77363,43.08308],[-5.6027,43.08453],[-5.60202,43.04222],[-5.52161,43.04291],[-5.52226,43.08409],[-5.4376,43.08481],[-5.43827,43.12651],[-5.10444,43.12935],[-5.10573,43.2099],[-5.02386,43.2106],[-5.02451,43.25117],[-4.90017,43.25222],[-4.89941,43.20501],[-4.81126,43.20576],[-4.80966,43.10538],[-4.76975,43.10571],[-4.76937,43.08168],[-4.72945,43.08202],[-4.72881,43.04219],[-4.56322,43.0436],[-4.56353,43.06296],[-4.39599,43.06438],[-4.39566,43.04336],[-4.3537,43.04371],[-4.35266,42.97836],[-4.23013,42.9794],[-4.22913,42.91625],[-4.18774,42.9166],[-4.18706,42.87407],[-4.10552,42.87476],[-4.10486,42.83348],[-3.97801,42.83457],[-3.97733,42.79214],[-3.9375,42.79248],[-3.93781,42.81183],[-3.85397,42.81254],[-3.85427,42.83193],[-3.89573,42.83158],[-3.89607,42.85343],[-3.93821,42.85307],[-3.93889,42.89577],[-3.9806,42.89542],[-3.98093,42.91627],[-4.0222,42.91591],[-4.0229,42.96014],[-3.97851,42.96052],[-3.97946,43.01999],[-3.93883,43.02034],[-3.93918,43.04239],[-3.89704,43.04275],[-3.89738,43.06414],[-3.85424,43.06451],[-3.8549,43.10583],[-3.77086,43.10654],[-3.77116,43.12515],[-3.72819,43.12551],[-3.72853,43.14656],[-3.68713,43.14691],[-3.68778,43.18786],[-3.60365,43.18858],[-3.60331,43.16747],[-3.52278,43.16815],[-3.52243,43.14619],[-3.39669,43.14726],[-3.39699,43.16601],[-3.35444,43.16637],[-3.35479,43.18837],[-3.31268,43.18873],[-3.31299,43.20828],[-3.22993,43.20899],[-3.22959,43.18768],[-3.10343,43.18875],[-3.10274,43.14562],[-3.14546,43.14526],[-3.14516,43.1271],[-3.10617,43.12743],[-3.10445,43.01915],[-3.02075,43.01987],[-3.0201,42.97903],[-2.9811,42.97936],[-2.97977,42.8958],[-3.10476,42.89473],[-3.10276,42.76928],[-3.02199,42.76997],[-3.02168,42.74983],[-2.98024,42.75019],[-2.97988,42.7275],[-2.89613,42.72822],[-2.89679,42.76967],[-2.8534,42.77004],[-2.85405,42.81087],[-2.68577,42.81231],[-2.68544,42.79159],[-2.64523,42.79194],[-2.64489,42.77024],[-2.52005,42.7713],[-2.51936,42.72827],[-2.5607,42.72791],[-2.56038,42.7076],[-2.51944,42.70795],[-2.5181,42.62357],[-2.60404,42.62283],[-2.60439,42.64497],[-2.77154,42.64353],[-2.77188,42.66544],[-2.81176,42.6651],[-2.8121,42.68624],[-2.85469,42.68588],[-2.85337,42.60302],[-2.89413,42.60267],[-2.89379,42.58159],[-3.0619,42.58015],[-3.06031,42.47952],[-3.02191,42.47985],[-3.0199,42.3525],[-3.06255,42.35213],[-3.06029,42.20906],[-3.1012,42.20871],[-3.10086,42.18682],[-3.06175,42.18716],[-3.0611,42.14559],[-3.02029,42.14594],[-3.01963,42.10375],[-2.89602,42.10482],[-2.89501,42.04071],[-2.81222,42.04143],[-2.81353,42.1246],[-2.76871,42.12499],[-2.76905,42.14674],[-2.72695,42.14711],[-2.7266,42.12485],[-2.68706,42.12519],[-2.68605,42.06109],[-2.72804,42.06073],[-2.72739,42.0193],[-2.60343,42.02037],[-2.60376,42.04135],[-2.561,42.04173],[-2.56198,42.10411],[-2.52266,42.10445],[-2.52299,42.12577],[-2.47933,42.12615],[-2.47963,42.145],[-2.35517,42.14608],[-2.3555,42.16747],[-2.31184,42.16785],[-2.3115,42.14605],[-2.2699,42.14641],[-2.26924,42.1048],[-2.2295,42.10515],[-2.22981,42.12514],[-2.14467,42.12587],[-2.14432,42.10386],[-2.10385,42.10421],[-2.10156,41.95811],[-1.97689,41.95919],[-1.97655,41.93765],[-1.93473,41.93801],[-1.93504,41.95776],[-1.89453,41.95811],[-1.89483,41.97715],[-1.854,41.97751],[-1.85304,41.91638],[-1.81381,41.91672],[-1.81151,41.76984],[-1.7706,41.77019],[-1.76866,41.64582],[-1.85335,41.64508],[-1.85305,41.62567],[-1.89471,41.6253],[-1.89403,41.58215],[-1.97716,41.58142],[-1.97683,41.56021],[-1.9377,41.56055],[-1.9358,41.43834]]],"terms_text":"ITACyL"},{"id":"gsi.go.jp_airphoto","name":"Japan GSI airphoto Imagery","type":"tms","template":"https://cyberjapandata.gsi.go.jp/xyz/airphoto/{zoom}/{x}/{y}.png","zoomExtent":[14,18],"polygon":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"terms_url":"https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html","terms_text":"GSI Japan","description":"Japan GSI airphoto Imagery. Not fully orthorectified, but a bit newer and/or differently covered than GSI ortho Imagery."},{"id":"finds.jp_KBN_2500","name":"Japan GSI KIBAN 2500","type":"tms","template":"https://aginfo.cgk.affrc.go.jp/ws/tmc/1.0.0/KBN2500FN-900913-L/{zoom}/{x}/{y}.png","zoomExtent":[15,20],"polygon":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"terms_url":"https://aginfo.cgk.affrc.go.jp/mapprv/tou.html.ja","terms_text":"GSI KIBAN 2500","description":"GSI Kiban 2500 via aginfo.cgk.affrc.go.jp. Good for tracing, but a bit older."},{"id":"gsi.go.jp_seamlessphoto","name":"Japan GSI seamlessphoto Imagery","type":"tms","template":"https://cyberjapandata.gsi.go.jp/xyz/seamlessphoto/{zoom}/{x}/{y}.jpg","zoomExtent":[14,18],"polygon":[[[140.88867,45.67548],[140.71289,45.41388],[141.04248,43.80282],[139.96582,43.35714],[138.99902,42.01665],[139.04297,41.26129],[137.5708,38.58253],[132.69287,36.86204],[130.84717,34.93999],[129.74854,34.994],[129.02344,34.56086],[128.36426,33.21112],[127.90283,31.87756],[128.4082,29.89781],[125.8374,26.78485],[123.33252,25.0657],[122.58545,24.42715],[123.53027,23.44309],[125.88135,24.10665],[129.96826,26.31311],[132.1875,30.20211],[134.42871,32.43561],[136.82373,33.28462],[137.85645,34.21634],[138.64746,33.24788],[138.58154,32.00808],[139.6582,28.67131],[141.65771,29.66896],[142.0752,32.06396],[141.21826,33.37641],[141.56982,35.44277],[141.43799,36.52729],[142.82227,39.16414],[143.04199,40.89691],[145.92041,42.40723],[146.18408,43.03678],[145.74463,43.54855],[145.32715,43.67582],[145.30518,43.91372],[145.61279,44.2452],[145.41504,44.62175],[144.38232,44.52784],[142.31689,45.53714],[141.3501,45.70618],[140.88867,45.67548]]],"terms_url":"https://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html","terms_text":"GSI Japan seamless photo","description":"Japan GSI seamlessphoto Imagery. The collection of latest imageries of GSI ortho, airphoto, post disaster and others."},{"id":"gsi.go.jp_std_map","name":"Japan GSI Standard Map","type":"tms","template":"https://cyberjapandata.gsi.go.jp/xyz/std/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[141.85547,44.64912],[140.22949,43.9691],[138.95508,41.80408],[139.48242,40.17887],[138.86719,38.30718],[136.31836,37.19533],[132.14355,35.13788],[128.93555,33.35806],[129.50684,32.4727],[129.77051,31.69078],[130.20996,30.90223],[131.2207,30.78904],[131.66016,32.32428],[132.71484,32.87959],[133.76953,33.17434],[136.75781,33.87042],[139.30664,35.06597],[140.88867,35.17381],[141.15234,36.5626],[142.11914,39.94344],[141.76758,42.68243],[141.85547,44.64912]]],"terms_url":"https://maps.gsi.go.jp/help/use.html","terms_text":"GSI Japan","description":"Japan GSI Standard Map. Widely covered."},{"id":"jaragua-do-sul-2020","name":"Jaraguá do Sul Ortomosaico 2020","type":"tms","template":"https://www.jaraguadosul.sc.gov.br/geo/ortomosaico2020/{zoom}/{x}/{y}.png","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[-49.25368,-26.26563],[-49.17549,-26.31065],[-49.16931,-26.35804],[-49.19403,-26.38449],[-49.19266,-26.42016],[-49.21051,-26.43676],[-49.21806,-26.47733],[-49.22562,-26.48471],[-49.24621,-26.48901],[-49.29634,-26.54185],[-49.30595,-26.58054],[-49.28106,-26.61953],[-49.23798,-26.61922],[-49.20433,-26.62966],[-49.17824,-26.61615],[-49.1645,-26.65237],[-49.13292,-26.64316],[-49.10408,-26.61063],[-49.10133,-26.58177],[-49.0876,-26.57993],[-49.08554,-26.55168],[-49.0567,-26.54615],[-49.05121,-26.51912],[-49.03404,-26.52219],[-49.01756,-26.51298],[-49.01138,-26.48287],[-49.02511,-26.45643],[-49.09515,-26.39863],[-49.10545,-26.39371],[-49.10477,-26.36972],[-49.13635,-26.33219],[-49.13841,-26.30265],[-49.16725,-26.26571],[-49.16725,-26.21336],[-49.19128,-26.21274],[-49.23454,-26.23061],[-49.23386,-26.25524],[-49.25368,-26.26563]]],"terms_url":"https://sistemas.jaraguadosul.sc.gov.br/index.php?class=GeoWelcomeView","terms_text":"Prefeitura de Jaraguá do Sul, SC"},{"id":"kalmar-orto-2014","name":"Kalmar North Orthophoto 2014","type":"wms","template":"https://karta.kalmar.se/ims/services/Ortofoto/Norra_Kalmar_2014/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.28473,56.70827],[16.38856,56.70798],[16.40843,56.7615],[16.46269,56.75672],[16.47753,56.76023],[16.48815,56.77023],[16.48754,56.79231],[16.48254,56.79547],[16.47667,56.8223],[16.4687,56.82614],[16.48584,56.86271],[16.48809,56.87369],[16.45694,56.87786],[16.46288,56.88769],[16.42696,56.88757],[16.39809,56.89604],[16.36791,56.8952],[16.36717,56.85985],[16.36431,56.84636],[16.36001,56.83657],[16.34423,56.82532],[16.32675,56.79284],[16.26114,56.74422],[16.28473,56.70827]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for the north coast of the municipality of Kalmar 2014","icon":"https://upload.wikimedia.org/wikipedia/commons/c/c8/Kalmar_vapen.svg"},{"id":"kalmar-orto-2016","name":"Kalmar South Orthophoto 2016","type":"wms","template":"https://karta.kalmar.se/ims/services/Ortofoto/Kalmar_2016/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.156,56.45834],[16.11389,56.46083],[16.09246,56.46633],[16.0724,56.4662],[16.07126,56.51153],[16.08516,56.56847],[16.14417,56.63933],[16.21168,56.68491],[16.28412,56.71655],[16.25135,56.74358],[16.25045,56.75062],[16.29558,56.7512],[16.33516,56.72511],[16.38922,56.71885],[16.41137,56.67602],[16.4053,56.66294],[16.33101,56.625],[16.28048,56.613],[16.21561,56.51967],[16.156,56.45834]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for the south coast of the municipality of Kalmar 2016","icon":"https://upload.wikimedia.org/wikipedia/commons/c/c8/Kalmar_vapen.svg"},{"id":"kalmar-orto-2018","name":"Kalmar Urban Orthophoto 2018","type":"wms","template":"https://karta.kalmar.se/ims/services/Ortofoto/Kalmar_2018/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.3416,56.81756],[16.32773,56.7973],[16.36692,56.78706],[16.37105,56.79153],[16.36978,56.80511],[16.35645,56.8133],[16.3416,56.81756]],[[16.39207,56.79339],[16.4608,56.78944],[16.48817,56.79067],[16.4833,56.76986],[16.46612,56.76711],[16.45409,56.76774],[16.43173,56.77309],[16.43178,56.77663],[16.40554,56.77214],[16.39325,56.77349],[16.39207,56.79339]],[[16.29836,56.79102],[16.28796,56.7883],[16.27727,56.78367],[16.27623,56.77952],[16.2862,56.7761],[16.3108,56.77696],[16.3118,56.78086],[16.30364,56.78883],[16.29836,56.79102]],[[16.20686,56.63637],[16.22098,56.62389],[16.2453,56.62467],[16.26751,56.62951],[16.28724,56.63831],[16.37871,56.65462],[16.38806,56.6897],[16.38664,56.72867],[16.31586,56.72879],[16.29956,56.7219],[16.29331,56.70021],[16.26799,56.66889],[16.23945,56.66991],[16.2266,56.6624],[16.21411,56.64972],[16.20686,56.63637]],[[16.15172,56.67843],[16.15712,56.69334],[16.15268,56.70297],[16.13274,56.71254],[16.10987,56.71964],[16.08638,56.7112],[16.07969,56.70056],[16.08149,56.69566],[16.09534,56.69599],[16.12877,56.67766],[16.15172,56.67843]],[[15.97369,56.62759],[16.00164,56.63215],[16.04126,56.62999],[16.05658,56.62489],[16.06201,56.61794],[16.09186,56.60378],[16.10527,56.5926],[16.09581,56.58161],[16.03481,56.60405],[16.0305,56.61252],[16.0088,56.60223],[15.98755,56.59742],[15.98449,56.57141],[15.94887,56.57264],[15.91878,56.55184],[15.90892,56.55393],[15.89921,56.56867],[15.9188,56.57287],[15.94612,56.57491],[15.96371,56.59004],[15.9496,56.59724],[15.94308,56.60903],[15.95726,56.61598],[15.97589,56.62005],[15.97369,56.62759]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for urban areas of the municipality of Kalmar 2018","icon":"https://upload.wikimedia.org/wikipedia/commons/c/c8/Kalmar_vapen.svg"},{"id":"kalmar-orto-2020","name":"Kalmar Urban Orthophoto 2020","type":"wms","template":"https://karta.kalmar.se/ims/services/Ortofoto/Kalmar_2020/ImageServer/WMSServer?LAYERS=Kalmar_2020:RGB_2020&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[16.38637,56.48818],[16.38637,56.7852],[16.07463,56.7852],[16.07463,56.48818],[16.38637,56.48818]]],"terms_url":"http://data-kalmar.opendata.arcgis.com/","terms_text":"© Kalmar municipality","best":true,"description":"Orthophotos for urban areas of the municipality of Kalmar 2020","icon":"https://upload.wikimedia.org/wikipedia/commons/c/c8/Kalmar_vapen.svg"},{"id":"Aargau-AGIS-2014","name":"Kanton Aargau 25cm (AGIS 2014)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2014/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[8.09602,47.57882],[8.10323,47.57879],[8.10323,47.58583],[8.10591,47.58732],[8.11019,47.58878],[8.11589,47.5893],[8.12168,47.58916],[8.12546,47.58873],[8.12959,47.58888],[8.13023,47.59122],[8.132,47.59358],[8.13506,47.59546],[8.13831,47.59698],[8.14161,47.59939],[8.14534,47.60076],[8.14961,47.60144],[8.15438,47.60127],[8.15751,47.60063],[8.16119,47.59914],[8.16255,47.59976],[8.16438,47.60148],[8.16653,47.60399],[8.17087,47.60673],[8.17608,47.60838],[8.17912,47.60868],[8.18153,47.6118],[8.18304,47.61489],[8.18498,47.6176],[8.18953,47.62151],[8.19212,47.62321],[8.22261,47.623],[8.22561,47.6212],[8.22849,47.61842],[8.22959,47.61621],[8.23008,47.61501],[8.23261,47.61686],[8.23657,47.61803],[8.24,47.61835],[8.24351,47.61783],[8.24749,47.61877],[8.25066,47.61988],[8.25708,47.6208],[8.26104,47.62069],[8.26491,47.61935],[8.26732,47.61769],[8.26902,47.61531],[8.27579,47.61702],[8.28106,47.61707],[8.28772,47.61626],[8.29421,47.61442],[8.29947,47.61221],[8.30311,47.60977],[8.30287,47.59447],[8.30438,47.59227],[8.30591,47.59109],[8.30791,47.59019],[8.31236,47.58917],[8.31655,47.58713],[8.32049,47.58436],[8.32598,47.57888],[8.32864,47.57716],[8.33219,47.57604],[8.33902,47.57577],[8.34702,47.57628],[8.35962,47.57552],[8.36475,47.57436],[8.37207,47.57377],[8.38002,47.57233],[8.38194,47.57496],[8.38387,47.57686],[8.38879,47.58027],[8.39232,47.58174],[8.39611,47.58247],[8.40013,47.58255],[8.40432,47.58158],[8.41158,47.57928],[8.418,47.57602],[8.42381,47.57452],[8.43039,47.57228],[8.43275,47.57035],[8.4336,47.56849],[8.43353,47.56669],[8.4319,47.56444],[8.4286,47.56217],[8.42575,47.56121],[8.4259,47.55854],[8.42498,47.55624],[8.42353,47.55469],[8.42296,47.5537],[8.4246,47.5517],[8.42492,47.54981],[8.42434,47.54836],[8.42539,47.54679],[8.425,47.54418],[8.4233,47.5422],[8.421,47.54106],[8.41832,47.54049],[8.41551,47.54062],[8.4139,47.53924],[8.41283,47.5372],[8.41194,47.53626],[8.41241,47.53415],[8.41185,47.53237],[8.41117,47.53158],[8.40143,47.53169],[8.40124,47.52443],[8.39936,47.5222],[8.39666,47.52082],[8.39385,47.51988],[8.39085,47.51973],[8.38877,47.52014],[8.38809,47.5146],[8.38551,47.51075],[8.38366,47.50944],[8.36776,47.50953],[8.36739,47.48709],[8.3751,47.48689],[8.37889,47.4853],[8.38196,47.48188],[8.38184,47.47521],[8.38328,47.47192],[8.38244,47.46879],[8.37943,47.46643],[8.37751,47.4659],[8.37787,47.46496],[8.38238,47.46423],[8.38671,47.46097],[8.39171,47.45743],[8.39315,47.45349],[8.39514,47.45031],[8.39418,47.44722],[8.39171,47.44535],[8.3896,47.44449],[8.38996,47.44339],[8.39111,47.4416],[8.39213,47.43924],[8.39339,47.4359],[8.39249,47.43411],[8.39369,47.43143],[8.39568,47.42854],[8.39959,47.42463],[8.39953,47.41954],[8.449,47.41897],[8.45369,47.41233],[8.45369,47.40451],[8.44858,47.39649],[8.40362,47.39685],[8.40483,47.39392],[8.4029,47.38903],[8.4035,47.38553],[8.40314,47.38304],[8.40483,47.37905],[8.40844,47.37575],[8.41379,47.37338],[8.4159,47.37016],[8.41584,47.36539],[8.4144,47.36327],[8.41494,47.35912],[8.41722,47.35573],[8.41632,47.35231],[8.41355,47.34913],[8.41367,47.34688],[8.41476,47.3448],[8.41885,47.34244],[8.42264,47.34052],[8.42469,47.33718],[8.42421,47.33163],[8.42914,47.33286],[8.4351,47.33192],[8.43763,47.33281],[8.44328,47.33506],[8.44527,47.33746],[8.45213,47.3402],[8.45761,47.33975],[8.46212,47.33649],[8.46278,47.33322],[8.46043,47.32829],[8.45797,47.32457],[8.45556,47.32005],[8.44918,47.31495],[8.44713,47.31217],[8.44021,47.30948],[8.43624,47.29817],[8.43311,47.29593],[8.42806,47.29397],[8.42318,47.29001],[8.41656,47.28789],[8.41024,47.28728],[8.4035,47.28409],[8.40188,47.2805],[8.40862,47.27593],[8.41066,47.2716],[8.40892,47.26613],[8.41235,47.2618],[8.41235,47.25873],[8.41109,47.25608],[8.41698,47.25142],[8.41885,47.2475],[8.41801,47.24305],[8.4144,47.23904],[8.41373,47.23565],[8.4106,47.23226],[8.40435,47.22797],[8.40296,47.2256],[8.40398,47.22127],[8.40856,47.21718],[8.40928,47.21326],[8.40844,47.20945],[8.41012,47.20258],[8.41319,47.19678],[8.41271,47.1924],[8.4088,47.18799],[8.40814,47.18475],[8.4091,47.1812],[8.41518,47.17915],[8.41915,47.17563],[8.42294,47.16553],[8.42294,47.15747],[8.42011,47.15325],[8.42246,47.14838],[8.42276,47.14392],[8.42053,47.13954],[8.41584,47.13524],[8.40898,47.13274],[8.40386,47.13201],[8.40116,47.13258],[8.39532,47.1327],[8.38437,47.1345],[8.37895,47.13385],[8.37245,47.13442],[8.36908,47.13659],[8.368,47.13876],[8.35656,47.14228],[8.35409,47.14564],[8.35331,47.14916],[8.3506,47.15161],[8.3503,47.15419],[8.34772,47.15669],[8.34561,47.15923],[8.34086,47.16164],[8.33935,47.16512],[8.3373,47.16896],[8.33315,47.17154],[8.33261,47.17351],[8.33062,47.17792],[8.33002,47.18717],[8.32924,47.18786],[8.32936,47.19494],[8.32292,47.19514],[8.32148,47.19854],[8.32196,47.20115],[8.31835,47.21043],[8.31413,47.21178],[8.31089,47.2153],[8.31107,47.21857],[8.31221,47.2198],[8.30884,47.22433],[8.30932,47.22646],[8.30715,47.23042],[8.30727,47.2321],[8.30595,47.23582],[8.30607,47.23949],[8.30378,47.24366],[8.30144,47.24677],[8.29554,47.24836],[8.29187,47.25293],[8.28814,47.25869],[8.28766,47.26143],[8.28627,47.26519],[8.28723,47.26805],[8.28838,47.26964],[8.2823,47.27478],[8.27718,47.27576],[8.27273,47.27531],[8.26749,47.27593],[8.26533,47.27719],[8.2616,47.27695],[8.25793,47.27781],[8.25576,47.27887],[8.25317,47.27678],[8.25034,47.27548],[8.2501,47.27348],[8.24956,47.27017],[8.24559,47.26715],[8.24095,47.26678],[8.23452,47.26727],[8.23145,47.26278],[8.2309,47.25931],[8.22663,47.24942],[8.222,47.24713],[8.21526,47.24431],[8.21363,47.24203],[8.21309,47.23602],[8.21123,47.23246],[8.21285,47.22548],[8.21117,47.22266],[8.20689,47.22053],[8.19762,47.22065],[8.19149,47.21861],[8.16976,47.21865],[8.16543,47.22315],[8.16085,47.22405],[8.15351,47.2294],[8.15171,47.2332],[8.14822,47.23647],[8.14798,47.241],[8.14635,47.24203],[8.13823,47.24166],[8.13558,47.23941],[8.12673,47.23606],[8.1218,47.23631],[8.11614,47.23872],[8.10675,47.23945],[8.10266,47.24113],[8.09983,47.24436],[8.09766,47.2493],[8.09797,47.25069],[8.09339,47.25567],[8.08852,47.2569],[8.08485,47.25583],[8.08323,47.25405],[8.07995,47.25246],[8.0769,47.25054],[8.06854,47.24284],[8.06325,47.24098],[8.05134,47.23865],[8.04857,47.23886],[8.03575,47.23747],[8.0322,47.23555],[8.02714,47.23534],[8.01139,47.23967],[8.00927,47.24116],[8.00791,47.24312],[8.00783,47.24821],[8.00857,47.25042],[8.0084,47.25769],[8.00712,47.25922],[8.00299,47.26162],[8.00052,47.26486],[7.99759,47.26789],[7.99627,47.27271],[7.99474,47.27369],[7.98993,47.27121],[7.97278,47.26907],[7.96857,47.27008],[7.96737,47.27098],[7.95861,47.27112],[7.9601,47.26748],[7.96274,47.26396],[7.96576,47.26171],[7.96699,47.25879],[7.96695,47.25001],[7.95963,47.24582],[7.95112,47.23918],[7.94469,47.236],[7.93733,47.23106],[7.93405,47.23051],[7.9298,47.23077],[7.9178,47.23305],[7.90784,47.23837],[7.89793,47.2377],[7.8695,47.23207],[7.85478,47.22719],[7.85137,47.22713],[7.83958,47.22947],[7.83584,47.22976],[7.83082,47.23259],[7.82707,47.23505],[7.82431,47.23831],[7.82129,47.24042],[7.82014,47.24264],[7.81822,47.24562],[7.81771,47.24917],[7.81822,47.25082],[7.81835,47.25371],[7.81988,47.25587],[7.82116,47.2568],[7.82112,47.25778],[7.8192,47.26058],[7.81912,47.26154],[7.81686,47.26486],[7.8175,47.26731],[7.81958,47.26982],[7.82439,47.27158],[7.82805,47.2721],[7.83592,47.27837],[7.83707,47.28342],[7.84005,47.2872],[7.84201,47.29067],[7.84588,47.29427],[7.84763,47.2982],[7.85137,47.30299],[7.8529,47.30741],[7.85571,47.31032],[7.86065,47.31254],[7.86422,47.31349],[7.87018,47.31672],[7.87631,47.31736],[7.88082,47.31716],[7.88337,47.31667],[7.88588,47.31941],[7.88886,47.32131],[7.88805,47.32443],[7.88907,47.3287],[7.8915,47.33262],[7.8978,47.34014],[7.9001,47.34156],[7.90005,47.3432],[7.90222,47.34557],[7.90635,47.34704],[7.90963,47.34735],[7.91359,47.34626],[7.91618,47.34456],[7.91699,47.34303],[7.92401,47.33899],[7.93839,47.33792],[7.94929,47.33784],[7.95431,47.33596],[7.95593,47.33317],[7.95691,47.32968],[7.95571,47.32535],[7.96993,47.32797],[7.97308,47.33017],[7.98333,47.33432],[7.98563,47.33692],[7.98954,47.33818],[7.99248,47.33827],[7.99784,47.34017],[7.99635,47.34257],[7.99601,47.34588],[7.99733,47.34859],[8.00116,47.35081],[8.00137,47.3569],[8.00261,47.3577],[8.00418,47.36044],[8.00976,47.36419],[8.01125,47.36598],[8.01746,47.36926],[8.01912,47.37157],[8.0198,47.37376],[8.02023,47.37598],[8.02172,47.37837],[8.02193,47.38093],[8.02282,47.38286],[8.02078,47.38857],[8.01606,47.38929],[8.01265,47.38897],[8.00772,47.39012],[8.00367,47.39205],[8.00163,47.39479],[8.00155,47.39998],[8.00023,47.40306],[7.99801,47.40453],[7.99261,47.40551],[7.98776,47.40637],[7.98418,47.40839],[7.98027,47.4081],[7.9732,47.41127],[7.96963,47.41383],[7.95695,47.41893],[7.95529,47.4218],[7.95593,47.42402],[7.95746,47.42621],[7.96274,47.42828],[7.97746,47.43254],[7.97567,47.43732],[7.97614,47.44138],[7.97431,47.44368],[7.95129,47.45111],[7.94861,47.4539],[7.94818,47.4566],[7.94678,47.45755],[7.94039,47.45669],[7.93588,47.45738],[7.93631,47.47625],[7.9318,47.47605],[7.92469,47.47717],[7.91571,47.47743],[7.90903,47.47947],[7.90316,47.47967],[7.90295,47.48965],[7.8969,47.4898],[7.8918,47.49405],[7.89086,47.49765],[7.8878,47.49931],[7.88631,47.5023],[7.87999,47.50397],[7.87403,47.50787],[7.86994,47.50944],[7.87006,47.51239],[7.86435,47.51245],[7.85851,47.51543],[7.8558,47.51854],[7.85625,47.52147],[7.8549,47.52474],[7.85183,47.5285],[7.84647,47.52714],[7.84148,47.52777],[7.8413,47.52406],[7.84015,47.51587],[7.83943,47.51259],[7.83688,47.51256],[7.83679,47.51049],[7.83352,47.50949],[7.83156,47.50765],[7.82981,47.50552],[7.82522,47.50354],[7.82049,47.5004],[7.81475,47.49491],[7.81181,47.49261],[7.80645,47.4914],[7.80403,47.49146],[7.80049,47.49014],[7.77977,47.49028],[7.77871,47.49304],[7.7796,47.496],[7.78386,47.5004],[7.78203,47.50368],[7.78088,47.5073],[7.78109,47.51018],[7.77977,47.51265],[7.77969,47.51529],[7.77045,47.51802],[7.75905,47.52003],[7.75266,47.52009],[7.74781,47.51957],[7.73368,47.52291],[7.72781,47.52719],[7.71985,47.52978],[7.71262,47.53095],[7.70764,47.5344],[7.70551,47.53917],[7.70696,47.54279],[7.71415,47.54627],[7.72245,47.54756],[7.749,47.54977],[7.75428,47.55339],[7.76654,47.55615],[7.77168,47.55761],[7.78007,47.55836],[7.78577,47.55982],[7.7902,47.5616],[7.79398,47.56634],[7.80492,47.57237],[7.80611,47.57989],[7.81173,47.58954],[7.81577,47.59218],[7.82211,47.59352],[7.83645,47.59163],[7.83952,47.59045],[7.84305,47.58778],[7.84875,47.58899],[7.85624,47.59189],[7.86488,47.59393],[7.87126,47.5943],[7.87726,47.59367],[7.88535,47.59424],[7.89343,47.59301],[7.90109,47.58976],[7.90833,47.58514],[7.91386,47.57923],[7.91867,47.57194],[7.91956,47.56772],[7.91875,47.56433],[7.9156,47.56008],[7.91577,47.55715],[7.91841,47.55405],[7.92126,47.55261],[7.92552,47.55227],[7.93471,47.55221],[7.9405,47.55078],[7.94326,47.54968],[7.94356,47.55052],[7.94458,47.55589],[7.94841,47.55979],[7.95394,47.56229],[7.96003,47.56333],[7.96577,47.56272],[7.97203,47.5612],[7.97833,47.56057],[7.98624,47.56094],[7.99718,47.56212],[8.0045,47.56137],[8.01114,47.55974],[8.01641,47.55701],[8.02046,47.55574],[8.0262,47.55741],[8.03799,47.55876],[8.04254,47.56028],[8.0485,47.56333],[8.05454,47.56798],[8.05931,47.56921],[8.0622,47.56895],[8.06693,47.57002],[8.07242,47.56973],[8.07739,47.56795],[8.08182,47.56436],[8.08522,47.56281],[8.08791,47.56298],[8.09259,47.56559],[8.09395,47.56809],[8.09484,47.57587],[8.09602,47.57882]]],"terms_text":"AGIS OF2014","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2016","name":"Kanton Aargau 25cm (AGIS 2016)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2016/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[8,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS OF2016","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2017","name":"Kanton Aargau 25cm (AGIS 2017)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[2,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS OF2017","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2019","name":"Kanton Aargau 25cm (AGIS 2019)","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2019/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[4,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS OF2019","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Aargau-AGIS-2014-Hillshade","name":"Kanton Aargau 50cm DTM/Hillshade","type":"tms","template":"https://mapproxy.osm.ch/tiles/AGIS2014HILLSHADE/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[2,19],"polygon":[[[7.70438,47.55794],[7.77076,47.55772],[7.77103,47.58025],[7.80408,47.58017],[7.80433,47.60248],[7.93713,47.60217],[7.93703,47.57962],[8.00374,47.57917],[8.00338,47.55687],[8.0364,47.55665],[8.03681,47.57928],[8.10313,47.57881],[8.10387,47.60112],[8.17011,47.60086],[8.17036,47.6235],[8.30311,47.62235],[8.30305,47.59988],[8.3362,47.59927],[8.33585,47.5771],[8.36913,47.57694],[8.36943,47.59931],[8.43564,47.59877],[8.43454,47.53133],[8.40144,47.53162],[8.40096,47.50926],[8.3678,47.50959],[8.3675,47.48698],[8.40042,47.48666],[8.39939,47.41929],[8.46558,47.4187],[8.46515,47.39647],[8.43206,47.39654],[8.43125,47.3516],[8.46434,47.35128],[8.46327,47.28387],[8.42997,47.28421],[8.42714,47.12676],[8.3293,47.12753],[8.32937,47.13007],[8.32833,47.13007],[8.3285,47.14529],[8.3294,47.19502],[8.2964,47.19526],[8.29714,47.24022],[8.2641,47.24046],[8.26446,47.26297],[8.23141,47.26316],[8.23075,47.21822],[8.09886,47.21912],[8.09874,47.24135],[8.066,47.24176],[8.06552,47.2192],[7.99993,47.21952],[8.00003,47.26433],[7.96735,47.26462],[7.96675,47.21961],[7.80153,47.22029],[7.80244,47.28791],[7.83518,47.28772],[7.83543,47.31017],[7.86837,47.31017],[7.86885,47.35542],[8.00097,47.3543],[8.00156,47.39928],[7.9353,47.39976],[7.93607,47.46716],[7.90278,47.46729],[7.90303,47.48981],[7.86987,47.48998],[7.86993,47.5125],[7.83689,47.51258],[7.83665,47.4901],[7.77027,47.49026],[7.77045,47.51274],[7.70452,47.51307],[7.70438,47.55794]]],"terms_text":"AGIS 2014 50cm DTM/Hillshade","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Basel-Landschaft-2015","name":"Kanton Basel-Landschaft 10cm (2015)","type":"tms","template":"https://mapproxy.osm.ch/tiles/KTBASELLANDSCHAFT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[17,21],"polygon":[[[7.37028,47.41368],[7.35758,47.41508],[7.35792,47.41827],[7.35354,47.41961],[7.34488,47.42402],[7.33973,47.42971],[7.33269,47.43024],[7.32685,47.43192],[7.32528,47.43489],[7.3305,47.44176],[7.33899,47.44109],[7.34496,47.43608],[7.35266,47.43436],[7.3812,47.43208],[7.37599,47.41431],[7.37815,47.414],[7.38204,47.41331],[7.38839,47.41398],[7.41371,47.41093],[7.42074,47.4111],[7.42748,47.41448],[7.43811,47.41274],[7.4484,47.41507],[7.45558,47.42792],[7.45062,47.43534],[7.43784,47.44632],[7.42542,47.44328],[7.4209,47.44594],[7.42242,47.45072],[7.4288,47.45388],[7.43003,47.45949],[7.44577,47.46197],[7.44717,47.45696],[7.45651,47.44926],[7.49236,47.45897],[7.53068,47.46119],[7.52745,47.47391],[7.53633,47.48383],[7.53623,47.49105],[7.5326,47.49097],[7.53179,47.4974],[7.52004,47.49678],[7.51223,47.49892],[7.50935,47.50888],[7.49908,47.51628],[7.49787,47.52125],[7.50228,47.51491],[7.51746,47.51728],[7.5222,47.51409],[7.53096,47.52905],[7.51935,47.53472],[7.51075,47.52899],[7.5023,47.5284],[7.49804,47.53615],[7.50545,47.54438],[7.51676,47.54541],[7.52732,47.55278],[7.55466,47.56437],[7.56458,47.55704],[7.56124,47.55172],[7.55875,47.55235],[7.55588,47.54434],[7.56479,47.54569],[7.58726,47.5419],[7.58269,47.53247],[7.58948,47.52792],[7.59025,47.51979],[7.59478,47.51929],[7.61378,47.53925],[7.6223,47.53977],[7.62285,47.55004],[7.61774,47.55437],[7.61762,47.55865],[7.63273,47.56149],[7.63997,47.55816],[7.649,47.5483],[7.66131,47.54483],[7.66586,47.53746],[7.67467,47.53375],[7.69494,47.5325],[7.71347,47.53978],[7.71596,47.53582],[7.72362,47.53675],[7.72716,47.53293],[7.73322,47.53275],[7.73797,47.52732],[7.74902,47.52498],[7.75786,47.52605],[7.78763,47.52012],[7.79014,47.51864],[7.78887,47.50683],[7.7928,47.50068],[7.78663,47.49312],[7.79889,47.49565],[7.79816,47.4994],[7.7994,47.49748],[7.80742,47.49714],[7.81471,47.5048],[7.83198,47.51474],[7.83321,47.53382],[7.84653,47.53266],[7.85233,47.53524],[7.86257,47.52692],[7.86396,47.51931],[7.87666,47.52269],[7.87567,47.51319],[7.89399,47.50606],[7.90477,47.49218],[7.90482,47.48491],[7.93329,47.48141],[7.94702,47.48489],[7.94003,47.46202],[7.94885,47.46378],[7.95761,47.45881],[7.95785,47.45128],[7.94678,47.44319],[7.95003,47.43172],[7.96183,47.42183],[7.95657,47.41968],[7.95504,47.41561],[7.94839,47.41627],[7.93493,47.41177],[7.93672,47.40806],[7.93266,47.40527],[7.90974,47.39852],[7.89022,47.40714],[7.88333,47.4061],[7.88344,47.4012],[7.8777,47.40126],[7.86914,47.39551],[7.87943,47.38799],[7.87881,47.38351],[7.86265,47.38198],[7.84012,47.37476],[7.83055,47.36512],[7.80217,47.3611],[7.79637,47.35347],[7.79356,47.33905],[7.78529,47.33788],[7.76896,47.33891],[7.76642,47.34273],[7.75152,47.34433],[7.73415,47.35776],[7.72791,47.36886],[7.70195,47.37245],[7.6442,47.36721],[7.64176,47.38047],[7.63558,47.38059],[7.63332,47.38291],[7.63331,47.38534],[7.63725,47.38607],[7.63272,47.41003],[7.66405,47.41002],[7.6798,47.41751],[7.68658,47.43366],[7.68297,47.43872],[7.68485,47.44784],[7.69227,47.45421],[7.69883,47.45586],[7.69993,47.46191],[7.70988,47.46938],[7.69976,47.48063],[7.66833,47.48635],[7.66612,47.49687],[7.65217,47.49581],[7.64865,47.49183],[7.65539,47.49021],[7.65051,47.48826],[7.65593,47.48739],[7.64442,47.48564],[7.64097,47.48273],[7.6073,47.4894],[7.60885,47.48353],[7.60563,47.47936],[7.60815,47.47521],[7.60449,47.47045],[7.61887,47.46745],[7.62607,47.46291],[7.62217,47.46195],[7.61646,47.44523],[7.6158,47.43275],[7.59207,47.43271],[7.58121,47.42878],[7.57842,47.43491],[7.5689,47.4369],[7.5683,47.42233],[7.58074,47.4147],[7.52524,47.41163],[7.53117,47.40353],[7.51862,47.38822],[7.5113,47.38974],[7.50226,47.38481],[7.49233,47.38523],[7.47841,47.39056],[7.47747,47.40128],[7.46448,47.40251],[7.46092,47.40068],[7.45002,47.40393],[7.44951,47.39976],[7.4434,47.40231],[7.44131,47.40018],[7.44357,47.3889],[7.43732,47.38089],[7.41169,47.38057],[7.41628,47.38479],[7.41449,47.3943],[7.39894,47.39684],[7.39592,47.40338],[7.38869,47.40302],[7.38405,47.41236],[7.37968,47.41281],[7.37584,47.41401],[7.37028,47.41368]]],"terms_url":"https://www.geo.bl.ch/fileadmin/user_upload/Geodaten/Nutzungsbedingungen_GBD_BL_V3p2.pdf","terms_text":"Geodaten des Kantons Basel-Landschaft 2015","best":true,"description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"KTBASELSTADT2015","name":"Kanton Basel-Stadt 2015","type":"tms","template":"https://mapproxy.osm.ch/tiles/KTBASELSTADT2015/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[8,21],"polygon":[[[7.492,47.4817],[7.492,47.6342],[7.784,47.6342],[7.784,47.4817],[7.492,47.4817]]],"terms_text":"Kanton Basel-Stadt OF 2015","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"KTBASELSTADT2017","name":"Kanton Basel-Stadt 2017","type":"tms","template":"https://mapproxy.osm.ch/tiles/KTBASELSTADT2017/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[7,21],"polygon":[[[7.67138,47.59522],[7.67996,47.60078],[7.68451,47.60182],[7.69438,47.60171],[7.69395,47.59667],[7.68708,47.59355],[7.67884,47.58712],[7.68571,47.58538],[7.68906,47.57612],[7.69412,47.5734],[7.6924,47.56691],[7.6847,47.5617],[7.66425,47.56164],[7.64872,47.55689],[7.63035,47.55869],[7.62357,47.55666],[7.62786,47.55145],[7.62738,47.53658],[7.61833,47.53662],[7.61335,47.53262],[7.59962,47.51911],[7.58503,47.51917],[7.58409,47.52636],[7.57713,47.53163],[7.58125,47.53986],[7.5719,47.54148],[7.55387,47.54148],[7.55379,47.55122],[7.55653,47.55828],[7.5537,47.56031],[7.55379,47.57473],[7.56434,47.58122],[7.57936,47.57988],[7.58331,47.59019],[7.58563,47.59233],[7.59207,47.59239],[7.59851,47.59071],[7.60915,47.58643],[7.60923,47.5811],[7.6191,47.58046],[7.63687,47.59314],[7.63782,47.59557],[7.64168,47.59887],[7.64528,47.60026],[7.66494,47.59618],[7.67138,47.59522]]],"terms_text":"Geodaten Kanton Basel-Stadt OF 2017","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"KTBASELSTADT2020","name":"Kanton Basel-Stadt 2020","type":"wms","template":"https://wms.geo.bs.ch/?LAYERS=OF_TrueOrthofoto2020Maerz&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2020-03-01T00:00:00.000Z","startDate":"2020-03-01T00:00:00.000Z","zoomExtent":[7,21],"polygon":[[[7.55859,47.57652],[7.55207,47.57595],[7.5495,47.57259],[7.55001,47.56146],[7.55379,47.55622],[7.54898,47.54061],[7.57382,47.53323],[7.57782,47.52612],[7.5825,47.52392],[7.58331,47.5172],[7.60168,47.5172],[7.60851,47.52397],[7.62588,47.52809],[7.62686,47.53416],[7.63636,47.54721],[7.63635,47.55534],[7.65129,47.55567],[7.66639,47.5603],[7.68648,47.56031],[7.69352,47.56471],[7.69592,47.57513],[7.69058,47.57653],[7.68768,47.58578],[7.68339,47.58792],[7.69936,47.59724],[7.69936,47.60291],[7.68391,47.60326],[7.67062,47.59678],[7.64357,47.60083],[7.63842,47.59921],[7.63205,47.59106],[7.61679,47.59018],[7.60894,47.59544],[7.6034,47.60569],[7.5852,47.60592],[7.58177,47.60453],[7.58081,47.59817],[7.57096,47.58561],[7.56031,47.58115],[7.55859,47.57652]]],"terms_text":"Geodaten Kanton Basel-Stadt","best":true},{"id":"Bern-dsm-hillshade-2015","name":"Kanton Bern, Digitales Oberflaechenmodell 50cm, Relief","type":"wms","template":"https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDOM50CM_LORELIEF_KMGDM1&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[1,22],"polygon":[[[6.82526,47.07901],[7.28497,46.74221],[7.06335,46.27329],[8.20129,46.43975],[8.44334,46.59001],[8.47595,46.76315],[8.41244,46.79841],[8.13984,46.7869],[7.96543,46.80687],[7.90089,46.8914],[7.97676,47.00414],[7.88784,47.05609],[7.90363,47.17665],[7.81952,47.29413],[7.55859,47.33231],[7.16583,47.31183],[6.82388,47.18131],[6.82526,47.07901]]],"terms_text":"Digitales Oberflächenmodell LIDAR 50cm © Amt für Wald des Kantons Bern"},{"id":"Bern-dtm-hillshade-2015","name":"Kanton Bern, Digitales Terrainmodell 50cm, Relief","type":"wms","template":"https://www.geoservice.apps.be.ch/geoservice2/services/a42geo/a42geo_hoehenwms_d_fk/MapServer/WMSServer?LAYERS=GEODB.LDTM50CM_LTRELIEF_KMGDM1&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[1,22],"polygon":[[[6.82526,47.07901],[7.28497,46.74221],[7.06335,46.27329],[8.20129,46.43975],[8.44334,46.59001],[8.47595,46.76315],[8.41244,46.79841],[8.13984,46.7869],[7.96543,46.80687],[7.90089,46.8914],[7.97676,47.00414],[7.88784,47.05609],[7.90363,47.17665],[7.81952,47.29413],[7.55859,47.33231],[7.16583,47.31183],[6.82388,47.18131],[6.82526,47.07901]]],"terms_text":"Digitales Terrainmodell LIDAR 50cm © Amt für Wald des Kantons Bern"},{"id":"Kanton-Schaffhausen-Luftbild-2013","name":"Kanton Schaffhausen, Luftbild 2013","type":"wms","template":"https://wms.geo.sh.ch/raster?LAYERS=Luftbild_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.6,47.56],[8.6,47.52],[8.52,47.52],[8.52,47.6],[8.44,47.6],[8.44,47.64],[8.36,47.64],[8.36,47.72],[8.4,47.72],[8.4,47.76],[8.44,47.76],[8.44,47.8],[8.52,47.8],[8.52,47.84],[8.68,47.84],[8.68,47.8],[8.76,47.8],[8.76,47.76],[8.88,47.76],[8.88,47.72],[8.92,47.72],[8.92,47.64],[8.76,47.64],[8.76,47.68],[8.68,47.68],[8.68,47.64],[8.64,47.64],[8.64,47.56],[8.6,47.56]]],"terms_text":"Kanton Schaffhausen, Luftbild 2013","best":true},{"id":"Kanton-Schaffhausen-DSM-2013","name":"Kanton Schaffhausen, Relief 2013","type":"wms","template":"https://wms.geo.sh.ch/raster?LAYERS=Relief_2013&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[8.6,47.56],[8.6,47.52],[8.52,47.52],[8.52,47.6],[8.44,47.6],[8.44,47.64],[8.36,47.64],[8.36,47.72],[8.4,47.72],[8.4,47.76],[8.44,47.76],[8.44,47.8],[8.52,47.8],[8.52,47.84],[8.68,47.84],[8.68,47.8],[8.76,47.8],[8.76,47.76],[8.88,47.76],[8.88,47.72],[8.92,47.72],[8.92,47.64],[8.76,47.64],[8.76,47.68],[8.68,47.68],[8.68,47.64],[8.64,47.64],[8.64,47.56],[8.6,47.56]]],"terms_text":"Kanton Schaffhausen, Relief 2013"},{"id":"Solothurn-sogis2014-dom-wms","name":"Kanton Solothurn, DOM Relief 2014 50cm","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dom_relief&FORMAT=image/jpeg&CRS={proj}&STYLES=&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.48,47.1],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.52,47.34],[7.52,47.36],[7.42,47.36],[7.42,47.4],[7.36,47.4],[7.36,47.44],[7.38,47.44],[7.38,47.46],[7.4,47.46],[7.4,47.5],[7.42,47.5],[7.42,47.52],[7.46,47.52],[7.46,47.5],[7.5,47.5],[7.5,47.52],[7.54,47.52],[7.54,47.5],[7.56,47.5],[7.56,47.48],[7.54,47.48],[7.54,47.44],[7.48,47.44],[7.48,47.42],[7.5,47.42],[7.5,47.4],[7.52,47.4],[7.52,47.42],[7.56,47.42],[7.56,47.46],[7.58,47.46],[7.58,47.44],[7.6,47.44],[7.6,47.5],[7.64,47.5],[7.64,47.52],[7.68,47.52],[7.68,47.5],[7.72,47.5],[7.72,47.44],[7.7,47.44],[7.7,47.4],[7.66,47.4],[7.66,47.38],[7.74,47.38],[7.74,47.36],[7.78,47.36],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1]]],"terms_text":"DOM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"},{"id":"Solothurn-sogis2018-dsm-wms","name":"Kanton Solothurn, DSM Relief 2018","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.bl.agi.lidar_2018.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.6909,47.56247],[7.69077,47.54008],[7.67786,47.54008],[7.67788,47.54458],[7.67138,47.5446],[7.67142,47.54897],[7.66481,47.54906],[7.66477,47.55349],[7.65816,47.55364],[7.65824,47.55801],[7.65146,47.5581],[7.65146,47.56258],[7.64503,47.56264],[7.64498,47.56707],[7.61121,47.56716],[7.61112,47.5627],[7.6046,47.56264],[7.60464,47.549],[7.61099,47.54886],[7.61117,47.54468],[7.60456,47.54468],[7.60447,47.54019],[7.59833,47.54017],[7.59846,47.54917],[7.57859,47.54915],[7.57855,47.55366],[7.57181,47.55369],[7.57185,47.56719],[7.56516,47.56719],[7.5652,47.57173],[7.54487,47.57173],[7.54478,47.56728],[7.53808,47.56725],[7.53812,47.56276],[7.52487,47.56274],[7.52491,47.55827],[7.5182,47.55825],[7.51812,47.55385],[7.49821,47.55381],[7.49817,47.54933],[7.49154,47.54935],[7.49158,47.54054],[7.48489,47.54054],[7.48487,47.53123],[7.49169,47.53123],[7.49171,47.52692],[7.48497,47.52692],[7.48495,47.51771],[7.4915,47.51769],[7.4915,47.50868],[7.49808,47.50865],[7.4981,47.49083],[7.49154,47.49085],[7.49154,47.48635],[7.4848,47.48635],[7.4848,47.48189],[7.47178,47.48192],[7.47173,47.48638],[7.46523,47.48641],[7.46523,47.49089],[7.45225,47.49096],[7.45216,47.49528],[7.4456,47.49546],[7.44551,47.49995],[7.42519,47.50003],[7.42511,47.49109],[7.41845,47.49098],[7.41843,47.47707],[7.43822,47.4771],[7.43834,47.47263],[7.44491,47.47263],[7.44495,47.46849],[7.42521,47.46849],[7.42521,47.46396],[7.4186,47.46399],[7.41848,47.45496],[7.41204,47.45491],[7.41187,47.44594],[7.40517,47.446],[7.40513,47.44144],[7.39873,47.44147],[7.39856,47.43697],[7.38586,47.43688],[7.38577,47.44135],[7.35256,47.44144],[7.35256,47.44588],[7.33943,47.44594],[7.33943,47.4505],[7.32582,47.45041],[7.32569,47.44585],[7.31921,47.44585],[7.31908,47.44144],[7.31243,47.44135],[7.31243,47.43212],[7.31904,47.43209],[7.31904,47.42318],[7.3323,47.42309],[7.3323,47.41859],[7.33887,47.41856],[7.33895,47.41415],[7.34556,47.41409],[7.34569,47.40959],[7.35882,47.40962],[7.35891,47.40518],[7.37856,47.40512],[7.37856,47.39617],[7.392,47.39611],[7.392,47.39167],[7.39856,47.39161],[7.39865,47.38713],[7.40517,47.38713],[7.40517,47.38298],[7.39865,47.3831],[7.39861,47.37819],[7.40513,47.37813],[7.40517,47.37371],[7.45143,47.37371],[7.45156,47.36906],[7.5177,47.36918],[7.5177,47.36022],[7.531,47.36016],[7.531,47.34673],[7.54422,47.34662],[7.54417,47.3422],[7.55078,47.34214],[7.55078,47.33775],[7.55761,47.33776],[7.55763,47.33327],[7.56423,47.33325],[7.56422,47.32874],[7.5774,47.32872],[7.57744,47.32421],[7.59086,47.32418],[7.59088,47.32871],[7.61739,47.32858],[7.61743,47.33312],[7.68961,47.33295],[7.68961,47.3285],[7.69627,47.32835],[7.69644,47.32393],[7.7165,47.3238],[7.71661,47.32835],[7.72322,47.32838],[7.72326,47.33289],[7.72978,47.33283],[7.72991,47.33734],[7.75596,47.33725],[7.756,47.33272],[7.80289,47.33258],[7.8031,47.35061],[7.80971,47.3507],[7.80971,47.35503],[7.82945,47.35492],[7.82958,47.3596],[7.84276,47.35945],[7.8428,47.36838],[7.85602,47.36835],[7.85619,47.37285],[7.87606,47.37282],[7.87606,47.37727],[7.88932,47.37727],[7.88954,47.39517],[7.9022,47.39523],[7.9022,47.39067],[7.91584,47.39061],[7.91597,47.39511],[7.93571,47.39502],[7.93584,47.39955],[7.94254,47.39964],[7.94262,47.40397],[7.94923,47.40406],[7.94919,47.4085],[7.96241,47.4085],[7.96245,47.41294],[7.96897,47.41294],[7.96906,47.42183],[7.98906,47.42174],[7.98931,47.44909],[7.9827,47.44915],[7.98275,47.45808],[7.97627,47.45811],[7.97618,47.46264],[7.96962,47.46273],[7.96949,47.46717],[7.9564,47.46737],[7.95644,47.48967],[7.94996,47.48973],[7.94987,47.49417],[7.94292,47.4942],[7.94292,47.48979],[7.91683,47.48993],[7.91674,47.49884],[7.91022,47.49895],[7.91026,47.50791],[7.90374,47.50797],[7.9037,47.5124],[7.89048,47.51237],[7.89044,47.51701],[7.88374,47.51707],[7.88378,47.5304],[7.87055,47.53047],[7.87052,47.53491],[7.86393,47.53496],[7.86391,47.53943],[7.85734,47.53948],[7.85737,47.54405],[7.84396,47.54406],[7.84379,47.53963],[7.82381,47.5396],[7.8237,47.51716],[7.81669,47.51726],[7.81658,47.51275],[7.80358,47.51277],[7.80349,47.50826],[7.79718,47.50829],[7.79729,47.52626],[7.78399,47.52632],[7.78403,47.53082],[7.76416,47.53089],[7.76427,47.55335],[7.751,47.55339],[7.75103,47.55786],[7.70448,47.55796],[7.70448,47.56244],[7.6909,47.56247]]],"terms_text":"Kanton Solothurn, DSM Relief 2018, WMS Solothurn (SOGIS)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"},{"id":"Solothurn-sogis2019-dsm-wms","name":"Kanton Solothurn, DSM Relief 2019","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dsm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[7.96884,47.4311],[7.96882,47.42646],[7.98205,47.42644],[7.98204,47.42202],[7.99533,47.42199],[7.99531,47.41748],[8.00832,47.41746],[8.0083,47.41292],[8.01506,47.41291],[8.01504,47.40836],[8.02168,47.40835],[8.02166,47.40377],[8.03466,47.40375],[8.03462,47.39481],[8.0411,47.3948],[8.041,47.36778],[8.03449,47.36779],[8.03445,47.35883],[8.02772,47.35884],[8.02771,47.35434],[8.021,47.35435],[8.02095,47.34092],[8.01415,47.34093],[8.01412,47.33199],[8.00755,47.332],[8.00754,47.32743],[7.99438,47.32746],[7.99436,47.32308],[7.98747,47.3231],[7.98745,47.31858],[7.98086,47.31859],[7.98084,47.31424],[7.95446,47.31428],[7.95444,47.30972],[7.94125,47.30975],[7.94126,47.31419],[7.9347,47.3142],[7.93475,47.32781],[7.90823,47.32786],[7.90818,47.31445],[7.90154,47.31446],[7.9015,47.30548],[7.87494,47.30553],[7.87493,47.30106],[7.86842,47.30107],[7.86839,47.29218],[7.8617,47.29219],[7.86166,47.28304],[7.85501,47.28305],[7.85496,47.26965],[7.84831,47.26966],[7.8483,47.26521],[7.84167,47.26522],[7.84165,47.26077],[7.82842,47.26079],[7.8284,47.25628],[7.79535,47.25634],[7.79533,47.2519],[7.78854,47.25191],[7.78852,47.24743],[7.78209,47.24744],[7.78211,47.25192],[7.72279,47.25202],[7.7228,47.2566],[7.71619,47.25661],[7.71623,47.26558],[7.70303,47.26561],[7.70306,47.27463],[7.69643,47.27465],[7.69645,47.27905],[7.68982,47.27906],[7.68984,47.28368],[7.67636,47.2837],[7.67634,47.27905],[7.65688,47.27908],[7.65686,47.2747],[7.60392,47.27479],[7.60387,47.26134],[7.61049,47.26133],[7.61044,47.24784],[7.61702,47.24782],[7.617,47.24319],[7.62354,47.24318],[7.62351,47.23435],[7.64994,47.23431],[7.64992,47.22978],[7.64992,47.22981],[7.65658,47.2298],[7.65652,47.2118],[7.66306,47.21178],[7.66304,47.20728],[7.66959,47.20727],[7.66958,47.20272],[7.67622,47.20271],[7.6762,47.19821],[7.68278,47.1982],[7.68275,47.1892],[7.68933,47.18919],[7.68927,47.17123],[7.70242,47.17121],[7.70241,47.16664],[7.70885,47.16663],[7.7088,47.15309],[7.70236,47.1531],[7.70234,47.14872],[7.69576,47.14873],[7.69574,47.14423],[7.68239,47.14425],[7.68241,47.14875],[7.66276,47.14879],[7.66274,47.14415],[7.59682,47.14426],[7.59681,47.13996],[7.5769,47.13999],[7.57693,47.14904],[7.57042,47.14905],[7.57045,47.15793],[7.55736,47.15795],[7.55734,47.15346],[7.53764,47.1535],[7.53759,47.13991],[7.53099,47.13993],[7.53097,47.1355],[7.52431,47.13551],[7.52426,47.12195],[7.51768,47.12197],[7.51766,47.11748],[7.50465,47.11751],[7.50463,47.11297],[7.49809,47.11298],[7.49807,47.10842],[7.48487,47.10844],[7.48486,47.10402],[7.47822,47.10403],[7.47818,47.09491],[7.4847,47.0949],[7.48465,47.08143],[7.47814,47.08144],[7.47811,47.07246],[7.46496,47.07248],[7.46494,47.06801],[7.43186,47.06807],[7.43187,47.07237],[7.42546,47.07238],[7.42553,47.09039],[7.4124,47.09041],[7.41239,47.08598],[7.37955,47.08603],[7.37956,47.09022],[7.37282,47.09023],[7.37286,47.09945],[7.36617,47.09946],[7.3662,47.10834],[7.35955,47.10835],[7.35961,47.12663],[7.36606,47.12662],[7.36608,47.13104],[7.39904,47.13098],[7.39902,47.12657],[7.41894,47.12654],[7.41896,47.1307],[7.41223,47.13072],[7.41228,47.14473],[7.41885,47.14472],[7.41887,47.14902],[7.43181,47.14899],[7.43184,47.15807],[7.43859,47.15805],[7.43861,47.16233],[7.46496,47.16228],[7.46494,47.15801],[7.47164,47.158],[7.47165,47.16227],[7.478,47.16226],[7.47801,47.16695],[7.47148,47.16696],[7.4715,47.17148],[7.46487,47.17149],[7.46489,47.17589],[7.45184,47.17591],[7.45183,47.17151],[7.43871,47.17153],[7.43869,47.16701],[7.42551,47.16703],[7.42547,47.15795],[7.41887,47.15796],[7.41885,47.15342],[7.37264,47.15349],[7.37274,47.18038],[7.3659,47.1804],[7.36592,47.18494],[7.34629,47.18498],[7.34632,47.19374],[7.33955,47.19375],[7.33958,47.20289],[7.33304,47.2029],[7.33312,47.22548],[7.35273,47.22544],[7.35275,47.22993],[7.36595,47.2299],[7.36597,47.23453],[7.37912,47.23451],[7.37913,47.23895],[7.39234,47.23892],[7.39236,47.24347],[7.4056,47.24345],[7.40565,47.25694],[7.41228,47.25693],[7.4123,47.2614],[7.42542,47.26138],[7.42543,47.26592],[7.43187,47.26591],[7.43189,47.27042],[7.4583,47.27038],[7.45832,47.27492],[7.46506,47.27491],[7.4651,47.28387],[7.47169,47.28385],[7.47171,47.28847],[7.47832,47.28846],[7.47834,47.29293],[7.49152,47.29291],[7.49154,47.29737],[7.51134,47.29734],[7.51135,47.30184],[7.53122,47.3018],[7.53125,47.31073],[7.53782,47.31072],[7.53787,47.32429],[7.55104,47.32427],[7.55106,47.32882],[7.56434,47.3288],[7.56437,47.33783],[7.57086,47.33782],[7.57087,47.3423],[7.57765,47.34229],[7.57764,47.33783],[7.59081,47.33781],[7.59083,47.34227],[7.59743,47.34226],[7.59741,47.33781],[7.60407,47.3378],[7.60409,47.34225],[7.69661,47.3421],[7.6966,47.33761],[7.70993,47.33759],[7.70995,47.34208],[7.72322,47.34206],[7.72324,47.34657],[7.73643,47.34655],[7.73645,47.35093],[7.77622,47.35087],[7.77621,47.34642],[7.78269,47.34641],[7.78272,47.35523],[7.78936,47.35522],[7.7894,47.36427],[7.79613,47.36426],[7.79615,47.36877],[7.82248,47.36873],[7.82249,47.37319],[7.82926,47.37318],[7.82929,47.38217],[7.84261,47.38215],[7.84262,47.38661],[7.86243,47.38658],[7.8625,47.40454],[7.86917,47.40453],[7.86919,47.40901],[7.87587,47.409],[7.87589,47.41351],[7.90231,47.41347],[7.90229,47.4089],[7.92225,47.40887],[7.92228,47.4177],[7.93556,47.41768],[7.93558,47.42211],[7.94882,47.42209],[7.94884,47.42664],[7.95552,47.42663],[7.95553,47.43112],[7.96884,47.4311]]],"terms_text":"Kanton Solothurn, DSM Relief 2019, WMS Solothurn (SOGIS)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"},{"id":"Solothurn-sogis2014-dtm-wms","name":"Kanton Solothurn, DTM Relief 2014 50cm","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2014.dtm_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.48,47.1],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.52,47.34],[7.52,47.36],[7.42,47.36],[7.42,47.4],[7.36,47.4],[7.36,47.44],[7.38,47.44],[7.38,47.46],[7.4,47.46],[7.4,47.5],[7.42,47.5],[7.42,47.52],[7.46,47.52],[7.46,47.5],[7.5,47.5],[7.5,47.52],[7.54,47.52],[7.54,47.5],[7.56,47.5],[7.56,47.48],[7.54,47.48],[7.54,47.44],[7.48,47.44],[7.48,47.42],[7.5,47.42],[7.5,47.4],[7.52,47.4],[7.52,47.42],[7.56,47.42],[7.56,47.46],[7.58,47.46],[7.58,47.44],[7.6,47.44],[7.6,47.5],[7.64,47.5],[7.64,47.52],[7.68,47.52],[7.68,47.5],[7.72,47.5],[7.72,47.44],[7.7,47.44],[7.7,47.4],[7.66,47.4],[7.66,47.38],[7.74,47.38],[7.74,47.36],[7.78,47.36],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1]]],"terms_text":"DTM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS)"},{"id":"Solothurn-sogis2018-dtm-wms","name":"Kanton Solothurn, DTM Relief 2018","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.bl.agi.lidar_2018.dtm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.6909,47.56247],[7.69077,47.54008],[7.67786,47.54008],[7.67788,47.54458],[7.67138,47.5446],[7.67142,47.54897],[7.66481,47.54906],[7.66477,47.55349],[7.65816,47.55364],[7.65824,47.55801],[7.65146,47.5581],[7.65146,47.56258],[7.64503,47.56264],[7.64498,47.56707],[7.61121,47.56716],[7.61112,47.5627],[7.6046,47.56264],[7.60464,47.549],[7.61099,47.54886],[7.61117,47.54468],[7.60456,47.54468],[7.60447,47.54019],[7.59833,47.54017],[7.59846,47.54917],[7.57859,47.54915],[7.57855,47.55366],[7.57181,47.55369],[7.57185,47.56719],[7.56516,47.56719],[7.5652,47.57173],[7.54487,47.57173],[7.54478,47.56728],[7.53808,47.56725],[7.53812,47.56276],[7.52487,47.56274],[7.52491,47.55827],[7.5182,47.55825],[7.51812,47.55385],[7.49821,47.55381],[7.49817,47.54933],[7.49154,47.54935],[7.49158,47.54054],[7.48489,47.54054],[7.48487,47.53123],[7.49169,47.53123],[7.49171,47.52692],[7.48497,47.52692],[7.48495,47.51771],[7.4915,47.51769],[7.4915,47.50868],[7.49808,47.50865],[7.4981,47.49083],[7.49154,47.49085],[7.49154,47.48635],[7.4848,47.48635],[7.4848,47.48189],[7.47178,47.48192],[7.47173,47.48638],[7.46523,47.48641],[7.46523,47.49089],[7.45225,47.49096],[7.45216,47.49528],[7.4456,47.49546],[7.44551,47.49995],[7.42519,47.50003],[7.42511,47.49109],[7.41845,47.49098],[7.41843,47.47707],[7.43822,47.4771],[7.43834,47.47263],[7.44491,47.47263],[7.44495,47.46849],[7.42521,47.46849],[7.42521,47.46396],[7.4186,47.46399],[7.41848,47.45496],[7.41204,47.45491],[7.41187,47.44594],[7.40517,47.446],[7.40513,47.44144],[7.39873,47.44147],[7.39856,47.43697],[7.38586,47.43688],[7.38577,47.44135],[7.35256,47.44144],[7.35256,47.44588],[7.33943,47.44594],[7.33943,47.4505],[7.32582,47.45041],[7.32569,47.44585],[7.31921,47.44585],[7.31908,47.44144],[7.31243,47.44135],[7.31243,47.43212],[7.31904,47.43209],[7.31904,47.42318],[7.3323,47.42309],[7.3323,47.41859],[7.33887,47.41856],[7.33895,47.41415],[7.34556,47.41409],[7.34569,47.40959],[7.35882,47.40962],[7.35891,47.40518],[7.37856,47.40512],[7.37856,47.39617],[7.392,47.39611],[7.392,47.39167],[7.39856,47.39161],[7.39865,47.38713],[7.40517,47.38713],[7.40517,47.38298],[7.39865,47.3831],[7.39861,47.37819],[7.40513,47.37813],[7.40517,47.37371],[7.45143,47.37371],[7.45156,47.36906],[7.5177,47.36918],[7.5177,47.36022],[7.531,47.36016],[7.531,47.34673],[7.54422,47.34662],[7.54417,47.3422],[7.55078,47.34214],[7.55078,47.33775],[7.55761,47.33776],[7.55763,47.33327],[7.56423,47.33325],[7.56422,47.32874],[7.5774,47.32872],[7.57744,47.32421],[7.59086,47.32418],[7.59088,47.32871],[7.61739,47.32858],[7.61743,47.33312],[7.68961,47.33295],[7.68961,47.3285],[7.69627,47.32835],[7.69644,47.32393],[7.7165,47.3238],[7.71661,47.32835],[7.72322,47.32838],[7.72326,47.33289],[7.72978,47.33283],[7.72991,47.33734],[7.75596,47.33725],[7.756,47.33272],[7.80289,47.33258],[7.8031,47.35061],[7.80971,47.3507],[7.80971,47.35503],[7.82945,47.35492],[7.82958,47.3596],[7.84276,47.35945],[7.8428,47.36838],[7.85602,47.36835],[7.85619,47.37285],[7.87606,47.37282],[7.87606,47.37727],[7.88932,47.37727],[7.88954,47.39517],[7.9022,47.39523],[7.9022,47.39067],[7.91584,47.39061],[7.91597,47.39511],[7.93571,47.39502],[7.93584,47.39955],[7.94254,47.39964],[7.94262,47.40397],[7.94923,47.40406],[7.94919,47.4085],[7.96241,47.4085],[7.96245,47.41294],[7.96897,47.41294],[7.96906,47.42183],[7.98906,47.42174],[7.98931,47.44909],[7.9827,47.44915],[7.98275,47.45808],[7.97627,47.45811],[7.97618,47.46264],[7.96962,47.46273],[7.96949,47.46717],[7.9564,47.46737],[7.95644,47.48967],[7.94996,47.48973],[7.94987,47.49417],[7.94292,47.4942],[7.94292,47.48979],[7.91683,47.48993],[7.91674,47.49884],[7.91022,47.49895],[7.91026,47.50791],[7.90374,47.50797],[7.9037,47.5124],[7.89048,47.51237],[7.89044,47.51701],[7.88374,47.51707],[7.88378,47.5304],[7.87055,47.53047],[7.87052,47.53491],[7.86393,47.53496],[7.86391,47.53943],[7.85734,47.53948],[7.85737,47.54405],[7.84396,47.54406],[7.84379,47.53963],[7.82381,47.5396],[7.8237,47.51716],[7.81669,47.51726],[7.81658,47.51275],[7.80358,47.51277],[7.80349,47.50826],[7.79718,47.50829],[7.79729,47.52626],[7.78399,47.52632],[7.78403,47.53082],[7.76416,47.53089],[7.76427,47.55335],[7.751,47.55339],[7.75103,47.55786],[7.70448,47.55796],[7.70448,47.56244],[7.6909,47.56247]]],"terms_text":"Kanton Solothurn, DTM Relief 2018, WMS Solothurn (SOGIS)"},{"id":"Solothurn-sogis2019-dtm-wms","name":"Kanton Solothurn, DTM Relief 2019","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.lidar_2019.dtm_relief&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[7.96884,47.4311],[7.96882,47.42646],[7.98205,47.42644],[7.98204,47.42202],[7.99533,47.42199],[7.99531,47.41748],[8.00832,47.41746],[8.0083,47.41292],[8.01506,47.41291],[8.01504,47.40836],[8.02168,47.40835],[8.02166,47.40377],[8.03466,47.40375],[8.03462,47.39481],[8.0411,47.3948],[8.041,47.36778],[8.03449,47.36779],[8.03445,47.35883],[8.02772,47.35884],[8.02771,47.35434],[8.021,47.35435],[8.02095,47.34092],[8.01415,47.34093],[8.01412,47.33199],[8.00755,47.332],[8.00754,47.32743],[7.99438,47.32746],[7.99436,47.32308],[7.98747,47.3231],[7.98745,47.31858],[7.98086,47.31859],[7.98084,47.31424],[7.95446,47.31428],[7.95444,47.30972],[7.94125,47.30975],[7.94126,47.31419],[7.9347,47.3142],[7.93475,47.32781],[7.90823,47.32786],[7.90818,47.31445],[7.90154,47.31446],[7.9015,47.30548],[7.87494,47.30553],[7.87493,47.30106],[7.86842,47.30107],[7.86839,47.29218],[7.8617,47.29219],[7.86166,47.28304],[7.85501,47.28305],[7.85496,47.26965],[7.84831,47.26966],[7.8483,47.26521],[7.84167,47.26522],[7.84165,47.26077],[7.82842,47.26079],[7.8284,47.25628],[7.79535,47.25634],[7.79533,47.2519],[7.78854,47.25191],[7.78852,47.24743],[7.78209,47.24744],[7.78211,47.25192],[7.72279,47.25202],[7.7228,47.2566],[7.71619,47.25661],[7.71623,47.26558],[7.70303,47.26561],[7.70306,47.27463],[7.69643,47.27465],[7.69645,47.27905],[7.68982,47.27906],[7.68984,47.28368],[7.67636,47.2837],[7.67634,47.27905],[7.65688,47.27908],[7.65686,47.2747],[7.60392,47.27479],[7.60387,47.26134],[7.61049,47.26133],[7.61044,47.24784],[7.61702,47.24782],[7.617,47.24319],[7.62354,47.24318],[7.62351,47.23435],[7.64994,47.23431],[7.64992,47.22978],[7.64992,47.22981],[7.65658,47.2298],[7.65652,47.2118],[7.66306,47.21178],[7.66304,47.20728],[7.66959,47.20727],[7.66958,47.20272],[7.67622,47.20271],[7.6762,47.19821],[7.68278,47.1982],[7.68275,47.1892],[7.68933,47.18919],[7.68927,47.17123],[7.70242,47.17121],[7.70241,47.16664],[7.70885,47.16663],[7.7088,47.15309],[7.70236,47.1531],[7.70234,47.14872],[7.69576,47.14873],[7.69574,47.14423],[7.68239,47.14425],[7.68241,47.14875],[7.66276,47.14879],[7.66274,47.14415],[7.59682,47.14426],[7.59681,47.13996],[7.5769,47.13999],[7.57693,47.14904],[7.57042,47.14905],[7.57045,47.15793],[7.55736,47.15795],[7.55734,47.15346],[7.53764,47.1535],[7.53759,47.13991],[7.53099,47.13993],[7.53097,47.1355],[7.52431,47.13551],[7.52426,47.12195],[7.51768,47.12197],[7.51766,47.11748],[7.50465,47.11751],[7.50463,47.11297],[7.49809,47.11298],[7.49807,47.10842],[7.48487,47.10844],[7.48486,47.10402],[7.47822,47.10403],[7.47818,47.09491],[7.4847,47.0949],[7.48465,47.08143],[7.47814,47.08144],[7.47811,47.07246],[7.46496,47.07248],[7.46494,47.06801],[7.43186,47.06807],[7.43187,47.07237],[7.42546,47.07238],[7.42553,47.09039],[7.4124,47.09041],[7.41239,47.08598],[7.37955,47.08603],[7.37956,47.09022],[7.37282,47.09023],[7.37286,47.09945],[7.36617,47.09946],[7.3662,47.10834],[7.35955,47.10835],[7.35961,47.12663],[7.36606,47.12662],[7.36608,47.13104],[7.39904,47.13098],[7.39902,47.12657],[7.41894,47.12654],[7.41896,47.1307],[7.41223,47.13072],[7.41228,47.14473],[7.41885,47.14472],[7.41887,47.14902],[7.43181,47.14899],[7.43184,47.15807],[7.43859,47.15805],[7.43861,47.16233],[7.46496,47.16228],[7.46494,47.15801],[7.47164,47.158],[7.47165,47.16227],[7.478,47.16226],[7.47801,47.16695],[7.47148,47.16696],[7.4715,47.17148],[7.46487,47.17149],[7.46489,47.17589],[7.45184,47.17591],[7.45183,47.17151],[7.43871,47.17153],[7.43869,47.16701],[7.42551,47.16703],[7.42547,47.15795],[7.41887,47.15796],[7.41885,47.15342],[7.37264,47.15349],[7.37274,47.18038],[7.3659,47.1804],[7.36592,47.18494],[7.34629,47.18498],[7.34632,47.19374],[7.33955,47.19375],[7.33958,47.20289],[7.33304,47.2029],[7.33312,47.22548],[7.35273,47.22544],[7.35275,47.22993],[7.36595,47.2299],[7.36597,47.23453],[7.37912,47.23451],[7.37913,47.23895],[7.39234,47.23892],[7.39236,47.24347],[7.4056,47.24345],[7.40565,47.25694],[7.41228,47.25693],[7.4123,47.2614],[7.42542,47.26138],[7.42543,47.26592],[7.43187,47.26591],[7.43189,47.27042],[7.4583,47.27038],[7.45832,47.27492],[7.46506,47.27491],[7.4651,47.28387],[7.47169,47.28385],[7.47171,47.28847],[7.47832,47.28846],[7.47834,47.29293],[7.49152,47.29291],[7.49154,47.29737],[7.51134,47.29734],[7.51135,47.30184],[7.53122,47.3018],[7.53125,47.31073],[7.53782,47.31072],[7.53787,47.32429],[7.55104,47.32427],[7.55106,47.32882],[7.56434,47.3288],[7.56437,47.33783],[7.57086,47.33782],[7.57087,47.3423],[7.57765,47.34229],[7.57764,47.33783],[7.59081,47.33781],[7.59083,47.34227],[7.59743,47.34226],[7.59741,47.33781],[7.60407,47.3378],[7.60409,47.34225],[7.69661,47.3421],[7.6966,47.33761],[7.70993,47.33759],[7.70995,47.34208],[7.72322,47.34206],[7.72324,47.34657],[7.73643,47.34655],[7.73645,47.35093],[7.77622,47.35087],[7.77621,47.34642],[7.78269,47.34641],[7.78272,47.35523],[7.78936,47.35522],[7.7894,47.36427],[7.79613,47.36426],[7.79615,47.36877],[7.82248,47.36873],[7.82249,47.37319],[7.82926,47.37318],[7.82929,47.38217],[7.84261,47.38215],[7.84262,47.38661],[7.86243,47.38658],[7.8625,47.40454],[7.86917,47.40453],[7.86919,47.40901],[7.87587,47.409],[7.87589,47.41351],[7.90231,47.41347],[7.90229,47.4089],[7.92225,47.40887],[7.92228,47.4177],[7.93556,47.41768],[7.93558,47.42211],[7.94882,47.42209],[7.94884,47.42664],[7.95552,47.42663],[7.95553,47.43112],[7.96884,47.4311]]],"terms_text":"Kanton Solothurn, DTM Relief 2019, WMS Solothurn (SOGIS)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/ch/KantonSolothurn-SOGIS-wms.png"},{"id":"Solothurn-sogis-ortho2014-wms","name":"Kanton Solothurn, Orthofoto 2014 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2014.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[7.44,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.46,47.26],[7.46,47.28],[7.48,47.28],[7.48,47.26],[7.5,47.26],[7.5,47.28],[7.56,47.28],[7.56,47.3],[7.6,47.3],[7.6,47.28],[7.62,47.28],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1],[7.48,47.06],[7.44,47.06]]],"terms_text":"Kanton Solothurn, Orthofoto 2014 RGB"},{"id":"Solothurn-sogis-ortho2015-wms","name":"Kanton Solothurn, Orthofoto 2015 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2015.rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.32],[7.72,47.32],[7.72,47.34],[7.78,47.34],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26]]],"terms_text":"Kanton Solothurn, Orthofoto 2015 RGB"},{"id":"Solothurn-sogis-ortho2016-wms","name":"Kanton Solothurn, Orthofoto 2016 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2016_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.48,47.08],[7.48,47.06],[7.42,47.06],[7.42,47.08],[7.36,47.08],[7.36,47.18],[7.34,47.18],[7.34,47.2],[7.32,47.2],[7.32,47.24],[7.4,47.24],[7.4,47.26],[7.42,47.26],[7.42,47.28],[7.46,47.28],[7.46,47.3],[7.52,47.3],[7.52,47.32],[7.54,47.32],[7.54,47.34],[7.56,47.34],[7.56,47.36],[7.62,47.36],[7.62,47.38],[7.74,47.38],[7.74,47.36],[7.8,47.36],[7.8,47.32],[7.76,47.32],[7.76,47.3],[7.72,47.3],[7.72,47.28],[7.66,47.28],[7.66,47.26],[7.62,47.26],[7.62,47.24],[7.66,47.24],[7.66,47.22],[7.68,47.22],[7.68,47.2],[7.7,47.2],[7.7,47.18],[7.72,47.18],[7.72,47.14],[7.54,47.14],[7.54,47.12],[7.52,47.12],[7.52,47.1],[7.48,47.1],[7.48,47.08]]],"terms_text":"Kanton Solothurn, Orthofoto 2016 RGB","best":true},{"id":"Solothurn-sogis-ortho2017-wms","name":"Kanton Solothurn, Orthofoto 2017 RGB","type":"wms","template":"https://geo.so.ch/api/wms?LAYERS=ch.so.agi.orthofoto_2017_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[7.84,47.26],[7.84,47.24],[7.72,47.24],[7.72,47.26],[7.68,47.26],[7.68,47.32],[7.72,47.32],[7.72,47.34],[7.78,47.34],[7.78,47.38],[7.84,47.38],[7.84,47.4],[7.86,47.4],[7.86,47.42],[7.94,47.42],[7.94,47.48],[7.98,47.48],[7.98,47.46],[8,47.46],[8,47.42],[8.04,47.42],[8.04,47.34],[8.02,47.34],[8.02,47.32],[7.98,47.32],[7.98,47.3],[7.94,47.3],[7.94,47.32],[7.92,47.32],[7.92,47.3],[7.88,47.3],[7.88,47.28],[7.86,47.28],[7.86,47.26],[7.84,47.26]]],"terms_text":"Kanton Solothurn, Orthofoto 2017 RGB","best":true},{"id":"kt_tg_dtm_hillshade","name":"Kanton Thurgau Relief DTM","type":"wms","template":"https://ows-raster.geo.tg.ch/geofy_access_proxy/reliefschattierung?LAYERS=DTMRelief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/reliefschattierung","terms_text":"Kanton Thurgau, DTM Relief 2014","description":"Digitale Repräsentation des Geländes"},{"id":"kt_tg_av","name":"Kanton Thurgau, Basisplan-AV","type":"wms","template":"https://ows.geo.tg.ch/geofy_access_proxy/basisplanf?LAYERS=Basisplan_farbig&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[4,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/basisplan-av","terms_text":"Kanton Thurgau, Basisplan-AV","description":"Basisplan-AV des Kantons Thurgau farbig & schwarzweiss mit Liegenschaften, Nomenklatur, Landes-, Kantons- und Gemeindegrenzen, Einzelobjekten, Bodenbedeckung, Strassennamen, Höhenkurven und Geländemodell"},{"id":"kt_tg_ortho_2017","name":"Kanton Thurgau, Orthofoto2017 RGB","type":"wms","template":"https://ows-raster.geo.tg.ch/geofy_access_proxy/orthofoto2017?LAYERS=Orthofoto2017_RGB&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[8,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/en/dataset/orthofoto-2017-dop17","terms_text":"Kanton Thurgau, Orthofoto2017 RGB","best":true,"description":"Digitales multispektrales Orthofotomosaik des Kantons Thurgau"},{"id":"kt_tg_radrouten","name":"Kanton Thurgau, Rad-Routen","type":"wms","template":"https://ows.geo.tg.ch/geofy_access_proxy/radwege?LAYERS=Radwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[10,22],"polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/rad-routen","terms_text":"Kanton Thurgau, Rad-Routen","description":"Langsamverkehr: Radweg-Netz (Routen) signalisiert durch Wegweiser"},{"id":"kt_tg_ww","name":"Kanton Thurgau, Wanderwege","type":"wms","template":"https://ows.geo.tg.ch/geofy_access_proxy/wanderwege?LAYERS=Wanderwege&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[8.63768,47.70041],[8.78328,47.6988],[8.78304,47.68533],[8.87027,47.68427],[8.86997,47.6709],[8.89901,47.67047],[8.89867,47.65698],[8.9277,47.65661],[8.92828,47.67015],[8.95726,47.66973],[8.95774,47.68327],[9.19061,47.67994],[9.19027,47.66645],[9.21922,47.66603],[9.21899,47.65256],[9.24784,47.6521],[9.24747,47.63864],[9.3057,47.63765],[9.30526,47.6242],[9.33417,47.62371],[9.33348,47.59674],[9.39151,47.59577],[9.39114,47.58235],[9.42007,47.58176],[9.4186,47.54139],[9.44754,47.54084],[9.44717,47.5273],[9.47605,47.52681],[9.47519,47.49986],[9.50414,47.49935],[9.5031,47.47242],[9.41596,47.47392],[9.41554,47.46045],[9.3576,47.46141],[9.35818,47.47498],[9.32896,47.47534],[9.32864,47.46188],[9.18361,47.4642],[9.18411,47.47769],[9.15492,47.4781],[9.15466,47.46463],[9.06736,47.46583],[9.06718,47.45234],[9.09609,47.45193],[9.09582,47.43853],[9.06663,47.43883],[9.06642,47.42537],[9.00829,47.4262],[9.00714,47.38573],[8.97811,47.38616],[8.9774,47.35913],[8.9194,47.35989],[8.92032,47.38697],[8.89136,47.38725],[8.89286,47.44117],[8.86398,47.44149],[8.86604,47.52251],[8.80784,47.52317],[8.80894,47.56373],[8.77985,47.56403],[8.78024,47.57751],[8.72209,47.57814],[8.72337,47.63213],[8.6652,47.63273],[8.6658,47.6598],[8.63674,47.66],[8.63768,47.70041]]],"terms_url":"https://opendata.swiss/dataset/wanderwege","terms_text":"Kanton Thurgau, Wanderwege","description":"Langsamverkehr: Verlauf der Wanderwege mit symbolischer Darstellung der Wegweiser, Unterführungen, Treppen und Brücken. Informationen über die Wegoberfläche und Rollstuhlgängigkeit."},{"id":"Zug-2019-wms","name":"Kanton Zug (Walchwil und Zug (Alpli)) 2019","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2019_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[6,22],"polygon":[[[8.49387,47.11529],[8.5121,47.13373],[8.55582,47.129],[8.58655,47.07954],[8.57399,47.07633],[8.51862,47.08507],[8.51862,47.08507],[8.51839,47.08532],[8.49387,47.11529]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Orthofoto für das Gebiet von Walchwil und Zug (Alpli). Die Befliegung für das genannte Orthofoto fand am 29. März 2019 statt."},{"id":"Zug-2011","name":"Kanton Zug 2011","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2011_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[8.38726,47.10908],[8.38983,47.25303],[8.42944,47.25265],[8.42894,47.22567],[8.60057,47.22407],[8.60037,47.21507],[8.61357,47.21495],[8.61338,47.20594],[8.62658,47.20582],[8.62618,47.18783],[8.63934,47.18769],[8.63914,47.1787],[8.66555,47.17844],[8.66534,47.16943],[8.7049,47.16899],[8.70427,47.14203],[8.69105,47.14215],[8.69046,47.11516],[8.67731,47.1153],[8.67706,47.10634],[8.66389,47.10647],[8.66371,47.0975],[8.65052,47.09761],[8.65031,47.08863],[8.59764,47.08915],[8.59746,47.08015],[8.49204,47.0812],[8.49245,47.09917],[8.43969,47.09967],[8.43996,47.10863],[8.38726,47.10908]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Ausdehnung: ganzer Kanton Aufloesung: 10cm per Pixel Bildflug: 1.4.2011"},{"id":"Zug-2018","name":"Kanton Zug Gemeinde Zug Süd 2018","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2018_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[6,22],"polygon":[[[8.50052,47.11291],[8.49638,47.11761],[8.49451,47.12364],[8.49538,47.12653],[8.50462,47.13724],[8.50322,47.13933],[8.50466,47.14722],[8.51099,47.15916],[8.56415,47.15299],[8.5652,47.14929],[8.54924,47.13843],[8.55098,47.12132],[8.50052,47.11291]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Orthofoto fuer den Suedteil der Gemeinde Zug. Geflogen per Drohne an mehreren Tagen Anfangs April 2018. 10cm Aufloesung per Pixel. Abdeckung: Suedteil der Gemeinde Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung."},{"id":"Zug-2016","name":"Kanton Zug Nord 2016","type":"wms","template":"https://services.geo.zg.ch/ows/Orthofotos?LAYERS=zg.orthofoto_2016_kt_zg&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[8.41093,47.16521],[8.40759,47.16918],[8.40754,47.23725],[8.419,47.23722],[8.42336,47.22958],[8.43891,47.22945],[8.48056,47.2125],[8.5294,47.22688],[8.57951,47.22275],[8.57946,47.17083],[8.57535,47.14926],[8.56428,47.14944],[8.53594,47.15205],[8.50658,47.15268],[8.50686,47.162],[8.44723,47.16256],[8.41093,47.16521]]],"terms_text":"GIS Kanton Zug","best":true,"description":"Orthofoto fuer den Nordteil des Kantons Zug. Geflogen am 20.04.2016. 10cm Aufloesung per Pixel. Abdeckung: Gemeinden Cham, Steinhausen und Baar, sowie Teile von Zug Befliegung vor Laubaustrieb, ohne Schneeabdeckung."},{"id":"OGDLidarZH-DOM","name":"Kanton Zurich, Oberflächenschummerung 2014 50cm","type":"wms","template":"https://wms.zh.ch/OGDLidarZH?LAYERS=dom2014_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung"},{"id":"OGDLidarZH-DOM-2017","name":"Kanton Zurich, Oberflächenschummerung 2017","type":"wms","template":"https://wms.zh.ch/OGDLidarZH?LAYERS=dom2017_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung"},{"id":"OGDOrthoZH2016","name":"Kanton Zurich, Orthofoto ZH Frühjahr 2015/16 RGB 10cm","type":"wms","template":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_w_2015&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2015/16 RGB"},{"id":"OGDOrthoZH2015","name":"Kanton Zurich, Orthofoto ZH Sommer 2014/15 RGB 10cm","type":"wms","template":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&STYLES=&REQUEST=GetMap&LAYERS=ortho_s_2014&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2014/15 RGB"},{"id":"OGDOrthoZH2018","name":"Kanton Zurich, Orthofoto ZH Sommer 2018 RGB 10cm","type":"wms","template":"https://wms.zh.ch/OGDOrthoZH?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&STYLES=&LAYERS=ortho_s_2018&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2018 RGB","best":true},{"id":"OGDLidarZH-DTM","name":"Kanton Zurich, Terrainschummerung 2014 50cm","type":"wms","template":"https://wms.zh.ch/OGDLidarZH?LAYERS=dtm2014_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung"},{"id":"OGDLidarZH-DTM-2017","name":"Kanton Zurich, Terrainschummerung 2017","type":"wms","template":"https://wms.zh.ch/OGDLidarZH?LAYERS=dtm2017_relief&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[9,22],"polygon":[[[8.71338,47.21388],[8.7137,47.22737],[8.8117,47.22626],[8.80337,47.23858],[8.80866,47.2431],[8.82448,47.24656],[8.82971,47.24539],[8.83652,47.24257],[8.84568,47.24253],[8.84837,47.24322],[8.85232,47.24034],[8.86206,47.23882],[8.86472,47.23966],[8.86863,47.23968],[8.87339,47.24125],[8.87882,47.24476],[8.88054,47.24791],[8.89878,47.24976],[8.90281,47.25094],[8.91025,47.25003],[8.92735,47.25406],[8.93644,47.25499],[8.94233,47.25849],[8.94423,47.26173],[8.94882,47.26536],[8.95094,47.2686],[8.95068,47.27108],[8.953,47.27285],[8.95411,47.27505],[8.95504,47.28251],[8.95171,47.28527],[8.94664,47.28647],[8.95258,47.28844],[8.95454,47.28982],[8.96141,47.30098],[8.97552,47.30245],[8.98006,47.30416],[8.99153,47.31893],[8.99069,47.32183],[8.98637,47.32542],[8.98548,47.32778],[8.98364,47.32931],[8.98592,47.33815],[8.98464,47.34061],[8.98079,47.34237],[8.98088,47.34835],[8.97785,47.35437],[8.9759,47.35606],[8.97002,47.35843],[8.96572,47.3589],[8.96238,47.36252],[8.95665,47.37432],[8.9521,47.37836],[8.94778,47.37971],[8.95023,47.38346],[8.95018,47.38596],[8.9488,47.38836],[8.9397,47.39403],[8.93637,47.39496],[8.93251,47.39871],[8.92801,47.40148],[8.92278,47.4038],[8.91388,47.40569],[8.91924,47.41213],[8.92049,47.41915],[8.91829,47.42323],[8.92094,47.42544],[8.92107,47.42828],[8.92571,47.42695],[8.93437,47.42796],[8.93877,47.43173],[8.93974,47.43411],[8.93889,47.43725],[8.93511,47.43973],[8.92349,47.43953],[8.91973,47.44081],[8.91322,47.44119],[8.91162,47.44347],[8.91527,47.44628],[8.91499,47.45004],[8.91196,47.45378],[8.90517,47.45791],[8.90183,47.46435],[8.89735,47.46898],[8.89581,47.47219],[8.89135,47.4738],[8.89143,47.47821],[8.90142,47.48133],[8.90428,47.48449],[8.90314,47.48928],[8.90001,47.49187],[8.89967,47.49885],[8.90357,47.50404],[8.90413,47.50745],[8.90322,47.51948],[8.90497,47.52447],[8.90365,47.52691],[8.89982,47.52965],[8.88423,47.53392],[8.87883,47.53277],[8.87061,47.53477],[8.8602,47.53488],[8.85674,47.53594],[8.84782,47.5358],[8.84614,47.54087],[8.8403,47.54654],[8.83728,47.55278],[8.84275,47.5537],[8.84648,47.5562],[8.85269,47.55645],[8.8562,47.55792],[8.85775,47.56141],[8.85728,47.56489],[8.85511,47.56721],[8.85079,47.56818],[8.84763,47.57023],[8.84538,47.57061],[8.8448,47.57309],[8.84211,47.57513],[8.83326,47.57769],[8.82962,47.57778],[8.82661,47.57662],[8.82137,47.57756],[8.81432,47.57598],[8.81234,47.5778],[8.81222,47.58473],[8.81067,47.58639],[8.80812,47.58738],[8.76818,47.59674],[8.7543,47.59729],[8.75529,47.60108],[8.75416,47.60273],[8.74883,47.60588],[8.74829,47.60874],[8.7507,47.60981],[8.75255,47.61292],[8.75575,47.61217],[8.76102,47.61335],[8.78169,47.60634],[8.78165,47.60345],[8.78467,47.59993],[8.80168,47.5966],[8.80512,47.59686],[8.80895,47.59938],[8.81074,47.60981],[8.81866,47.61372],[8.82001,47.61526],[8.82089,47.62058],[8.82015,47.62415],[8.82415,47.6256],[8.83079,47.63206],[8.83448,47.64099],[8.83182,47.64945],[8.82695,47.65206],[8.81168,47.65599],[8.81112,47.6621],[8.81192,47.66454],[8.81041,47.66752],[8.80881,47.66857],[8.80293,47.66978],[8.79299,47.66919],[8.78685,47.66978],[8.78453,47.66899],[8.78216,47.66659],[8.77921,47.65695],[8.77763,47.65563],[8.77398,47.65435],[8.76623,47.65438],[8.76108,47.65257],[8.75852,47.65033],[8.75464,47.64883],[8.7534,47.64733],[8.74839,47.64613],[8.74329,47.64749],[8.73882,47.64651],[8.72376,47.64753],[8.72063,47.64664],[8.71492,47.64885],[8.70826,47.64764],[8.70481,47.65039],[8.70053,47.65199],[8.69427,47.65307],[8.69242,47.65581],[8.68632,47.66094],[8.68485,47.66413],[8.68574,47.66799],[8.68326,47.67315],[8.68056,47.67561],[8.67521,47.6776],[8.67642,47.68177],[8.67561,47.68661],[8.67427,47.68799],[8.67227,47.68891],[8.66273,47.69029],[8.64644,47.69847],[8.63968,47.69877],[8.6355,47.69743],[8.62162,47.69554],[8.61818,47.69279],[8.61744,47.69087],[8.62007,47.68134],[8.61478,47.68308],[8.60917,47.68188],[8.60199,47.67451],[8.59954,47.66923],[8.60275,47.66132],[8.60979,47.6568],[8.6141,47.6564],[8.61574,47.65557],[8.62231,47.65104],[8.62227,47.65024],[8.62048,47.64758],[8.61939,47.65043],[8.61521,47.65452],[8.6093,47.65677],[8.60324,47.65654],[8.60069,47.65541],[8.59788,47.65276],[8.59645,47.64876],[8.59092,47.64623],[8.58937,47.6444],[8.58874,47.63936],[8.59116,47.62755],[8.59325,47.62233],[8.59838,47.61587],[8.59854,47.6145],[8.59114,47.60917],[8.58937,47.60682],[8.58796,47.60319],[8.58788,47.59909],[8.58203,47.59793],[8.57398,47.59329],[8.57146,47.58988],[8.57035,47.58633],[8.57203,47.57985],[8.56771,47.57799],[8.56506,47.57524],[8.56117,47.56407],[8.55707,47.55947],[8.55616,47.56336],[8.55206,47.56904],[8.55334,47.57146],[8.5526,47.57599],[8.55007,47.57806],[8.54666,47.57923],[8.5435,47.58228],[8.54319,47.5851],[8.54888,47.5879],[8.55175,47.58777],[8.55764,47.58963],[8.56114,47.59151],[8.56265,47.5946],[8.56668,47.59565],[8.56902,47.59748],[8.56953,47.60049],[8.57237,47.60386],[8.57308,47.60641],[8.57562,47.60676],[8.579,47.60845],[8.58076,47.61031],[8.58125,47.61203],[8.58025,47.61456],[8.57712,47.61636],[8.57525,47.61957],[8.57277,47.6211],[8.56785,47.62164],[8.56341,47.62697],[8.56105,47.62838],[8.54803,47.62998],[8.54558,47.63122],[8.54498,47.63297],[8.54288,47.63458],[8.53995,47.63565],[8.52769,47.63634],[8.52112,47.63887],[8.51478,47.6385],[8.50932,47.63559],[8.50829,47.62942],[8.50161,47.62597],[8.5007,47.62421],[8.50149,47.62154],[8.49253,47.61893],[8.48884,47.61953],[8.47669,47.61937],[8.47439,47.61838],[8.47154,47.61495],[8.47129,47.61307],[8.46785,47.61272],[8.46446,47.61109],[8.46173,47.60659],[8.45519,47.60676],[8.45061,47.60411],[8.4499,47.60164],[8.4507,47.59584],[8.45382,47.59343],[8.45428,47.5866],[8.4563,47.5848],[8.46014,47.58382],[8.46332,47.58044],[8.46881,47.5795],[8.46219,47.57653],[8.45419,47.57668],[8.43642,47.57154],[8.43161,47.57102],[8.42476,47.57231],[8.41477,47.56879],[8.41304,47.56745],[8.41034,47.56194],[8.41039,47.55972],[8.40789,47.55465],[8.40846,47.55018],[8.39964,47.54444],[8.39609,47.543],[8.39469,47.54094],[8.39495,47.53674],[8.39136,47.53568],[8.38835,47.53305],[8.38525,47.53316],[8.38113,47.53219],[8.3774,47.52969],[8.37518,47.52679],[8.37279,47.51651],[8.36579,47.51663],[8.35666,47.51348],[8.35439,47.51104],[8.35103,47.50314],[8.3524,47.49957],[8.35163,47.4973],[8.35274,47.49484],[8.3545,47.49355],[8.3557,47.48979],[8.35533,47.48525],[8.35698,47.47931],[8.35891,47.47743],[8.36187,47.47645],[8.36722,47.47654],[8.36702,47.47487],[8.36073,47.47222],[8.35903,47.46604],[8.35996,47.46381],[8.36326,47.46204],[8.3673,47.45653],[8.36975,47.45504],[8.37393,47.45472],[8.37754,47.45201],[8.37583,47.45068],[8.37441,47.44614],[8.37623,47.43818],[8.37168,47.43675],[8.36855,47.43406],[8.3681,47.43158],[8.36904,47.42863],[8.37222,47.42603],[8.38283,47.42346],[8.38371,47.42251],[8.38073,47.42207],[8.37555,47.4178],[8.37598,47.41378],[8.37441,47.40906],[8.36067,47.40664],[8.35789,47.40542],[8.35629,47.40377],[8.35661,47.39961],[8.36195,47.39516],[8.36577,47.39429],[8.37601,47.3947],[8.37743,47.39218],[8.38036,47.39048],[8.38761,47.39035],[8.38832,47.38012],[8.39034,47.37527],[8.39355,47.3719],[8.39387,47.36945],[8.39574,47.3671],[8.39902,47.36608],[8.39836,47.36408],[8.40012,47.36094],[8.40103,47.35433],[8.39728,47.34677],[8.39779,47.34475],[8.40186,47.3391],[8.40931,47.33409],[8.4061,47.32975],[8.40578,47.32667],[8.40689,47.32447],[8.41295,47.3205],[8.41611,47.31996],[8.42948,47.32227],[8.43556,47.32083],[8.43437,47.31954],[8.43155,47.31851],[8.42609,47.31375],[8.42276,47.30706],[8.42311,47.30368],[8.41745,47.3015],[8.41372,47.29824],[8.40012,47.29564],[8.39768,47.29392],[8.39518,47.29516],[8.39108,47.29552],[8.38602,47.29437],[8.38272,47.29225],[8.38198,47.29034],[8.38255,47.2881],[8.38508,47.28565],[8.38977,47.27507],[8.39563,47.271],[8.39407,47.26672],[8.39415,47.26361],[8.39756,47.25986],[8.39614,47.25481],[8.39742,47.25189],[8.40647,47.24452],[8.40826,47.24118],[8.40761,47.23957],[8.4096,47.23585],[8.41073,47.22799],[8.41248,47.22433],[8.41695,47.22014],[8.41959,47.21902],[8.42269,47.21886],[8.42977,47.22],[8.43936,47.21937],[8.45,47.21363],[8.4546,47.21334],[8.45625,47.21081],[8.4591,47.20934],[8.46447,47.20928],[8.46609,47.20862],[8.46868,47.20533],[8.47329,47.20398],[8.47693,47.20458],[8.48399,47.20392],[8.49489,47.20738],[8.504,47.20768],[8.51538,47.21152],[8.51753,47.21271],[8.51906,47.21495],[8.5306,47.21306],[8.53307,47.21325],[8.5415,47.21778],[8.54456,47.21707],[8.55407,47.21726],[8.55858,47.21517],[8.56984,47.2139],[8.57491,47.21255],[8.57749,47.20771],[8.58044,47.2064],[8.58408,47.20603],[8.59012,47.20714],[8.58965,47.2046],[8.59074,47.20195],[8.59358,47.1986],[8.59581,47.19753],[8.60168,47.19722],[8.60653,47.1992],[8.60725,47.19885],[8.61097,47.19387],[8.61128,47.19059],[8.61391,47.18838],[8.61522,47.18515],[8.61938,47.18045],[8.61976,47.17918],[8.61721,47.17359],[8.6196,47.1698],[8.62292,47.16821],[8.6339,47.16715],[8.63561,47.16578],[8.63965,47.16459],[8.64287,47.16443],[8.65216,47.16598],[8.65425,47.16552],[8.6549,47.15967],[8.65649,47.15783],[8.65882,47.15658],[8.66853,47.15492],[8.67847,47.15558],[8.68241,47.15759],[8.69361,47.15898],[8.69804,47.16134],[8.69886,47.16303],[8.6977,47.17033],[8.69599,47.17232],[8.68919,47.17566],[8.6872,47.17959],[8.6879,47.18229],[8.69186,47.18485],[8.69824,47.19205],[8.70323,47.19326],[8.70852,47.19602],[8.71423,47.19693],[8.71692,47.19893],[8.74212,47.2071],[8.74218,47.21355],[8.71338,47.21388]]],"terms_text":"Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung"},{"id":"kartverket-abas","name":"Kartverket Administrative Boundaries overlay","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.adm_enheter2?LAYERS=fylker_gjel,kommuner_gjel&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[1,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/kunnskap/Norges-grenser/","terms_text":"© Kartverket","description":"Official administrative boundaries at the national, county and municipality levels","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"kartverket-luftfartshindre","name":"Kartverket Aviation Obstructions overlay","type":"wms","template":"https://openwms.statkart.no/skwms1/wms.nrl?LAYERS=nrl3_wms&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[7,20],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kartverket.no/kart/Nasjonalt-register-over-luftfartshindre/","terms_text":"© Kartverket","description":"Vertical obstructions to aircrafts, above 15m in rural areas and 30m in urban areas (e.g. masts, towers, high buildings, power lines)","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"kartverket-matrikkel","name":"Kartverket Cadastral overlay","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.matrikkel?LAYERS=matrikkel_WMS&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[14,20],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://seeiendom.kartverket.no","terms_text":"© Kartverket","description":"Real estate boundaries from the official land register (`matrikkelen´). Monthly update.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"kartverket-hoydekurver","name":"Kartverket Contour Lines overlay","type":"wms","template":"https://openwms.statkart.no/skwms1/wms.topo4?LAYERS=hoydetall5linje,hoydetall5punkt,hoydepunkt,vannpunkt,hoydekurver_1m,hoydekurver_5m,N50Hoydekurver,N250Hoydekurver,N500Hoydekurver,N1000Hoydekurver,N2000Hoydekurver&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[9,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/Prosjekter/Nasjonal-detaljert-hoydemodell/","terms_text":"© Kartverket","description":"Contours for Norway","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"kartverket-dom-skygge","name":"Kartverket DOM Digital Surface Model","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.hoyde-dom_somlos_skyggerelieff?LAYERS=las_dom_skyggerelieff_somlos&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://hoydedata.no/","terms_text":"© Kartverket","description":"Shaded relief representation of the Norwegian digital surface model (DOM), i.e. earth surface including trees, buildings and other objects on top of it.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png"},{"id":"kartverket-dtm-skygge","name":"Kartverket DTM Digital Terrain Model","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.hoyde-dtm_somlos_skyggerelieff?LAYERS=las_dtm_skyggerelieff_somlos&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://hoydedata.no/","terms_text":"© Kartverket","description":"Shaded relief representation of the Norwegian digital terrain model (DTM), i.e. earth surface without trees, buildings and other objects.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png"},{"id":"kartverket-ok-1st","name":"Kartverket Economic Maps (historic)","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.n5raster2?LAYERS=n5raster_foerstegang_metadata,n5raster_foerstegang&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[11,20],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/kunnskap/historie/kartverkets-historiske-arkiv/","terms_text":"© Kartverket","description":"1st edition of historic Economic maps for Norway 1960-90s (`Økonomisk kartverk´). Available from zoom 16. Please correct local imagery offset.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png"},{"id":"kartverket-friluft","name":"Kartverket Hiking Trails","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.friluftsruter2?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Fotrute&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://kartverket.no/geodataarbeid/temadata/nasjonal-database-for-tur--og-friluftsruter/","terms_text":"© Kartverket","description":"Hiking trails from the Norwegian database `Tur- og Friluftsruter´, including DNT routes.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"kartverket-fjellskygge","name":"Kartverket Hillshade overlay","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=fjellskygge&zoom={zoom}&x={x}&y={y}","zoomExtent":[9,15],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kartkatalog.geonorge.no/metadata/kartverket/fjellskygge-cache/cca7c129-fe66-4c96-9091-40d92290dd81","terms_text":"© Kartverket","description":"Hillshade for Norway","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"kartverket-historic","name":"Kartverket Historic maps","type":"wms","template":"https://wms.geonorge.no/skwms1/wms.historiskekart?LAYERS=amt1&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,15],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.kartverket.no/kart/historiske-kart/","terms_text":"© Kartverket","description":"Historic maps - for the time being `Amtskartserien´ 1826-1917.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png"},{"id":"kartverket-topo4","name":"Kartverket N50 topo","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={zoom}&x={x}&y={y}","zoomExtent":[3,15],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://wiki.openstreetmap.org/wiki/No:Kartverket_import","terms_text":"© Kartverket","description":"Topographic map N50, equivalent to Norway 1:50.000 paper map series.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png"},{"id":"kartverket-sjokart","name":"Kartverket Nautical Charts","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=sjokartraster&zoom={zoom}&x={x}&y={y}","zoomExtent":[3,20],"polygon":[[[-15.01273,-60.16205],[33.3326,-60.17016],[33.32144,-73.0009],[-15.0239,-72.99613],[-15.01273,-60.16205]],[[-173.00076,-70.54952],[-125.00321,-70.54878],[-125.00167,-78.99977],[-172.99922,-79.0002],[-173.00076,-70.54952]],[[3.24857,56.08599],[2.60924,56.59428],[1.47215,58.45924],[1.77704,61.36251],[-0.49301,63.88665],[-13.73292,69.76376],[-12.43655,72.58741],[-5.11965,74.39626],[-3.60356,79.12998],[5.85587,82.34863],[34.98861,82.3401],[37.96874,78.62784],[37.99619,75.79673],[36.95796,73.68962],[32.07458,70.27336],[30.3511,69.56882],[21.46179,69.57098],[18.3032,68.36681],[14.47997,66.2558],[11.50266,63.28307],[11.50166,58.95444],[11.08246,58.96771],[10.03051,58.25173],[8.88244,57.69534],[3.24857,56.08599]]],"terms_url":"https://www.kartverket.no/Kart/Sjokart/","terms_text":"© Kartverket","description":"Norwegian nautical charts (includes Spitsbergen/Svalbard and Antarctica). Raster representation of paper charts. Updated biweekly.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png"},{"id":"kartverket-vegnett","name":"Kartverket Road Network","type":"wms","template":"https://openwms.statkart.no/skwms1/wms.vegnett?LAYERS=all&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[3,24],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://www.kartverket.no/data/kartdata/vegdata/","terms_text":"© Kartverket","description":"Norwegian road network from the National Road database (NVDB). Colours represent national, county, municipal, private and forest roads + footways/cycleways.","icon":"https://kartverket.no/dist/favicons/publicsite/favicon-32x32.png","overlay":true},{"id":"KYAPED","name":"KyFromAbove","type":"wms","template":"https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_Imagery_WGS84WM/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[3,20],"polygon":[[[-89.57151,36.55257],[-89.54296,36.50496],[-89.53912,36.4981],[-89.4885,36.49755],[-89.4852,36.49745],[-89.46589,36.52995],[-89.46545,36.53616],[-89.4808,36.56969],[-89.48089,36.56977],[-89.5205,36.57943],[-89.52234,36.58018],[-89.55251,36.57723],[-89.55264,36.57718],[-89.57151,36.55257]],[[-89.41729,36.49903],[-89.34795,36.50308],[-89.30028,36.50715],[-88.06598,36.49774],[-88.05332,36.49712],[-88.0453,36.50408],[-88.03948,36.51041],[-88.03413,36.53112],[-88.03249,36.54066],[-88.0412,36.58412],[-88.04513,36.60294],[-88.06821,36.65975],[-88.07053,36.67812],[-87.85045,36.6651],[-87.85354,36.63507],[-87.69783,36.637],[-87.69385,36.63707],[-87.68285,36.70333],[-87.67503,36.7501],[-87.67186,36.8785],[-87.66,36.96624],[-87.72956,36.9999],[-87.73366,37.00209],[-87.7106,37.02156],[-87.68078,37.14928],[-87.66878,37.14975],[-87.64964,37.14692],[-87.52378,37.10601],[-87.52029,37.10516],[-87.48508,37.12661],[-87.37442,37.13381],[-87.35981,37.1499],[-87.35998,37.1567],[-87.34036,37.15745],[-87.33626,37.1548],[-87.3151,37.18731],[-87.31174,37.19144],[-87.34575,37.21178],[-87.34988,37.2149],[-87.34719,37.2231],[-87.349,37.22625],[-87.37141,37.24404],[-87.36402,37.24914],[-87.38553,37.25335],[-87.38852,37.25738],[-87.38414,37.2901],[-87.38602,37.29551],[-87.37801,37.29926],[-87.37221,37.29889],[-87.3793,37.30468],[-87.38004,37.31102],[-87.37377,37.31474],[-87.37091,37.31614],[-87.35457,37.3105],[-87.34586,37.30973],[-87.33775,37.33252],[-87.33726,37.33615],[-87.31243,37.36282],[-87.30045,37.37026],[-87.30749,37.37378],[-87.3093,37.37693],[-87.30595,37.38197],[-87.29575,37.39164],[-87.33332,37.41148],[-87.3528,37.42569],[-87.3548,37.48279],[-87.36243,37.4863],[-87.35148,37.51231],[-87.34924,37.51552],[-87.35952,37.53213],[-87.36652,37.53339],[-87.36037,37.54255],[-87.35931,37.54665],[-87.37499,37.56998],[-87.37986,37.57898],[-87.39521,37.58871],[-87.46038,37.59267],[-87.4803,37.59914],[-87.49965,37.62694],[-87.49557,37.64786],[-87.73424,37.63828],[-87.94307,37.46638],[-87.94375,37.46563],[-87.93037,37.41046],[-87.93019,37.4092],[-87.91391,37.41123],[-87.91313,37.41104],[-87.91564,37.40477],[-87.91545,37.40448],[-87.90281,37.39822],[-87.90195,37.39824],[-87.86945,37.40519],[-87.86876,37.40518],[-87.86164,37.40894],[-87.86131,37.40954],[-87.86595,37.41683],[-87.86561,37.41728],[-87.84737,37.42062],[-87.84638,37.42046],[-87.84426,37.39512],[-87.84426,37.39482],[-87.85904,37.39277],[-87.85964,37.39241],[-87.86,37.38071],[-87.86003,37.3802],[-87.84335,37.37468],[-87.84282,37.37469],[-87.81953,37.38776],[-87.81861,37.38832],[-87.81061,37.37686],[-87.81042,37.37645],[-87.80095,37.3794],[-87.80122,37.37898],[-88.05239,37.23751],[-88.05269,37.22934],[-88.07805,37.22699],[-88.08885,37.22178],[-88.08231,37.21647],[-88.08042,37.21198],[-88.08376,37.20828],[-88.08891,37.20681],[-88.08443,37.1942],[-88.08301,37.18652],[-88.09489,37.17947],[-88.10183,37.17932],[-88.10889,37.16647],[-88.1099,37.16237],[-88.13168,37.15736],[-88.13252,37.14872],[-88.14131,37.15216],[-88.14428,37.15436],[-88.16293,37.14307],[-88.16557,37.13575],[-88.1919,37.12927],[-88.1966,37.13144],[-88.18787,37.16156],[-88.19039,37.1674],[-88.21927,37.18309],[-88.21986,37.18353],[-88.20455,37.20746],[-88.20065,37.21162],[-88.20258,37.23289],[-88.20032,37.23431],[-88.21851,37.27335],[-88.29375,37.33559],[-88.29557,37.33782],[-88.30556,37.37206],[-88.29948,37.37991],[-88.31327,37.39228],[-88.31811,37.39761],[-88.36547,37.40166],[-88.37121,37.40273],[-88.40624,37.42479],[-88.40881,37.42522],[-88.46586,37.40055],[-88.47022,37.39625],[-88.48672,37.34015],[-88.48695,37.3396],[-88.51406,37.29246],[-88.51486,37.29069],[-88.50409,37.26514],[-88.50382,37.26485],[-88.5123,37.26295],[-88.51187,37.26201],[-88.45005,37.2062],[-88.44982,37.20599],[-88.42533,37.15421],[-88.42462,37.15173],[-88.44912,37.08875],[-88.44919,37.08776],[-88.45919,37.07523],[-88.46019,37.07447],[-88.48622,37.06659],[-88.48605,37.0648],[-88.56528,37.07521],[-88.56587,37.0752],[-88.62221,37.11775],[-88.62589,37.11946],[-88.68777,37.13938],[-88.69398,37.14115],[-88.73125,37.14368],[-88.73211,37.14396],[-88.78695,37.17858],[-88.79737,37.18485],[-88.83505,37.19649],[-88.86953,37.20971],[-88.9273,37.22636],[-88.93175,37.22759],[-88.98326,37.22868],[-89.00097,37.2244],[-89.07622,37.17513],[-89.08653,37.1656],[-89.10403,37.13197],[-89.11119,37.11905],[-89.15129,37.09049],[-89.1545,37.08891],[-89.17858,37.055],[-89.17938,37.05301],[-89.18248,37.03748],[-89.18251,37.03728],[-89.1736,37.01141],[-89.17112,37.00807],[-89.13844,36.98509],[-89.13301,36.982],[-89.1183,36.98188],[-89.11503,36.98033],[-89.09901,36.96139],[-89.09884,36.95785],[-89.13194,36.85744],[-89.13797,36.84735],[-89.17718,36.83578],[-89.17815,36.83459],[-89.17923,36.81291],[-89.17875,36.80993],[-89.17107,36.79812],[-89.16846,36.79557],[-89.13321,36.78823],[-89.12892,36.78768],[-89.11685,36.77561],[-89.11607,36.77242],[-89.12243,36.75484],[-89.12613,36.75173],[-89.15699,36.75597],[-89.16689,36.75963],[-89.19155,36.74722],[-89.19781,36.73941],[-89.20073,36.72014],[-89.19948,36.71605],[-89.17484,36.69396],[-89.16952,36.68888],[-89.16872,36.67189],[-89.15908,36.66635],[-89.18775,36.64111],[-89.19254,36.636],[-89.20261,36.60158],[-89.21356,36.58012],[-89.23184,36.56812],[-89.23654,36.56682],[-89.26806,36.56891],[-89.27171,36.57139],[-89.31943,36.62739],[-89.32472,36.63108],[-89.36486,36.62532],[-89.36555,36.62506],[-89.37545,36.61572],[-89.37637,36.61387],[-89.41729,36.49903]],[[-86.27537,37.5933],[-86.27184,37.58879],[-86.26139,37.58885],[-86.25214,37.59435],[-86.24634,37.59438],[-86.23343,37.58086],[-86.23221,37.57543],[-86.22002,37.57596],[-86.21075,37.57737],[-86.18677,37.56028],[-86.18035,37.55624],[-86.16999,37.56582],[-86.16419,37.56721],[-86.15428,37.56228],[-86.14613,37.5596],[-86.11425,37.56611],[-86.1131,37.56657],[-86.05621,37.4916],[-86.05151,37.48301],[-86.06584,37.46073],[-86.06756,37.458],[-86.05997,37.45123],[-86.05647,37.44853],[-86.05415,37.44899],[-86.05071,37.45354],[-86.00023,37.44696],[-85.8912,37.44011],[-85.89011,37.45144],[-85.89426,37.47002],[-85.88848,37.47366],[-85.87493,37.54533],[-85.83905,37.56901],[-85.82107,37.57404],[-85.80725,37.60173],[-85.7974,37.60855],[-85.80326,37.62032],[-85.80211,37.62305],[-85.73423,37.65674],[-85.68093,37.73207],[-85.65181,37.71806],[-85.6454,37.71308],[-85.63781,37.69632],[-85.63432,37.69406],[-85.60059,37.69908],[-85.59244,37.69364],[-85.6011,37.64604],[-85.60051,37.6397],[-85.58714,37.64469],[-85.58366,37.64424],[-85.57725,37.63926],[-85.57319,37.6379],[-85.57376,37.62838],[-85.56853,37.62295],[-85.57027,37.61751],[-85.57375,37.61705],[-85.57899,37.62611],[-85.58422,37.62566],[-85.5906,37.61613],[-85.59524,37.61341],[-85.61326,37.61612],[-85.615,37.61475],[-85.59464,37.59891],[-85.59464,37.59755],[-85.60219,37.59346],[-85.60683,37.59074],[-85.60564,37.57532],[-85.60505,37.56581],[-85.62302,37.55174],[-85.6265,37.54493],[-85.62417,37.5404],[-85.61778,37.54086],[-85.60735,37.54813],[-85.60212,37.54723],[-85.59341,37.54406],[-85.59514,37.53545],[-85.57134,37.5273],[-85.56495,37.52277],[-85.55393,37.53184],[-85.54697,37.53049],[-85.55105,37.5536],[-85.54408,37.56222],[-85.5348,37.56313],[-85.52667,37.56267],[-85.52144,37.55361],[-85.45053,37.68596],[-85.40147,37.73066],[-85.3873,37.7404],[-85.38629,37.74075],[-85.37373,37.73951],[-85.3733,37.73981],[-85.37495,37.76461],[-85.37454,37.7652],[-85.35546,37.75756],[-85.35345,37.75735],[-85.34591,37.76225],[-85.34548,37.76249],[-85.35624,37.78367],[-85.35601,37.78403],[-85.34029,37.78005],[-85.33859,37.77992],[-85.33649,37.78663],[-85.33574,37.78739],[-85.31214,37.79132],[-85.30818,37.79364],[-85.31532,37.80739],[-85.31527,37.80793],[-85.29908,37.83149],[-85.29844,37.83233],[-85.27861,37.83666],[-85.2776,37.83756],[-85.28027,37.85154],[-85.27953,37.85236],[-85.26827,37.84471],[-85.26784,37.84444],[-85.24567,37.84685],[-85.245,37.84689],[-85.25585,37.86503],[-85.25535,37.86583],[-85.24147,37.86229],[-85.24042,37.86243],[-85.23106,37.87044],[-85.23037,37.87061],[-85.22767,37.85492],[-85.22677,37.85501],[-85.21773,37.87142],[-85.21668,37.87141],[-85.21842,37.85492],[-85.21843,37.85427],[-85.20506,37.84608],[-85.20421,37.84624],[-85.20148,37.85319],[-85.19627,37.85603],[-85.20615,37.8633],[-85.19853,37.8728],[-85.1956,37.87642],[-85.19963,37.89003],[-85.199,37.90091],[-85.18916,37.88457],[-85.18683,37.88411],[-85.1868,37.8909],[-85.18446,37.89226],[-85.15766,37.88584],[-85.153,37.88583],[-85.15412,37.89535],[-85.15295,37.89762],[-85.14714,37.8908],[-85.13839,37.89168],[-85.13192,37.9039],[-85.12544,37.91566],[-85.10622,37.90926],[-85.10747,37.8934],[-85.09758,37.88974],[-85.09409,37.88792],[-85.03458,37.89224],[-85.0305,37.89177],[-85.03114,37.88316],[-85.03115,37.8818],[-85.01031,37.85951],[-85.00043,37.85448],[-85.0029,37.8341],[-85.00872,37.83503],[-85.01175,37.81736],[-85.00594,37.81643],[-85.02984,37.63114],[-85.03909,37.54505],[-85.01293,37.55084],[-85.00192,37.54807],[-85.00201,37.53312],[-84.89814,37.5322],[-84.74786,37.5853],[-84.75244,37.59213],[-84.73671,37.59656],[-84.73155,37.58973],[-84.71175,37.59505],[-84.71516,37.60232],[-84.69416,37.61035],[-84.68832,37.61258],[-84.69583,37.61716],[-84.69405,37.62032],[-84.65805,37.61826],[-84.65215,37.62548],[-84.65854,37.63503],[-84.65902,37.63541],[-84.66623,37.6334],[-84.66685,37.6341],[-84.65457,37.64052],[-84.65352,37.64113],[-84.65356,37.65231],[-84.6564,37.65442],[-84.67906,37.64593],[-84.68045,37.64496],[-84.67354,37.64198],[-84.67213,37.64074],[-84.6785,37.63672],[-84.68,37.6367],[-84.69459,37.64103],[-84.69491,37.64152],[-84.67925,37.65622],[-84.68039,37.65755],[-84.6929,37.66415],[-84.69376,37.66487],[-84.70234,37.65981],[-84.70524,37.66074],[-84.69935,37.66795],[-84.68009,37.67417],[-84.6823,37.68506],[-84.68343,37.68734],[-84.69628,37.68244],[-84.70036,37.68156],[-84.69848,37.69469],[-84.69845,37.69741],[-84.74265,37.69769],[-84.74322,37.69905],[-84.73286,37.70867],[-84.73258,37.70976],[-84.74578,37.71478],[-84.7442,37.71674],[-84.72678,37.71391],[-84.72444,37.71435],[-84.73072,37.72617],[-84.72836,37.72888],[-84.69934,37.72235],[-84.68998,37.72682],[-84.70564,37.73191],[-84.70737,37.73373],[-84.68813,37.73632],[-84.68865,37.74177],[-84.702,37.74548],[-84.70489,37.74777],[-84.69429,37.75903],[-84.69424,37.76356],[-84.71395,37.76793],[-84.71571,37.7696],[-84.70292,37.78664],[-84.70274,37.78751],[-84.71637,37.79979],[-84.71682,37.80026],[-84.71579,37.81518],[-84.71595,37.81553],[-84.67952,37.82987],[-84.6771,37.82838],[-84.67982,37.80132],[-84.6795,37.79834],[-84.66789,37.7834],[-84.66555,37.78298],[-84.64982,37.78901],[-84.64933,37.7907],[-84.65966,37.80897],[-84.65862,37.80952],[-84.61235,37.8017],[-84.61001,37.80071],[-84.60836,37.79271],[-84.60999,37.79165],[-84.64066,37.79291],[-84.64222,37.79201],[-84.64335,37.77918],[-84.64322,37.77846],[-84.60658,37.76066],[-84.60501,37.75974],[-84.61569,37.74642],[-84.61496,37.74584],[-84.60632,37.74281],[-84.60541,37.743],[-84.58968,37.75414],[-84.58728,37.75347],[-84.58816,37.73812],[-84.58776,37.73642],[-84.57019,37.72872],[-84.56928,37.72906],[-84.55705,37.74743],[-84.55591,37.74842],[-84.54004,37.75425],[-84.53923,37.75481],[-84.53656,37.76915],[-84.53602,37.76971],[-84.49641,37.78505],[-84.49565,37.78547],[-84.48348,37.80138],[-84.48291,37.80188],[-84.46464,37.79892],[-84.46412,37.79961],[-84.48413,37.83585],[-84.48467,37.83747],[-84.47809,37.85212],[-84.4773,37.85273],[-84.44594,37.84074],[-84.44411,37.84131],[-84.418,37.87157],[-84.41645,37.87212],[-84.39202,37.84668],[-84.39067,37.84596],[-84.37047,37.85387],[-84.36854,37.85455],[-84.38304,37.89289],[-84.38386,37.89473],[-84.37973,37.90109],[-84.37739,37.90174],[-84.34117,37.88224],[-84.34059,37.88272],[-84.33787,37.89163],[-84.33765,37.89193],[-84.34891,37.89836],[-84.34897,37.8986],[-84.33875,37.90712],[-84.33871,37.90733],[-84.34803,37.91488],[-84.34799,37.91512],[-84.33024,37.92249],[-84.32995,37.92392],[-84.33986,37.93097],[-84.33998,37.93131],[-84.33065,37.9368],[-84.3308,37.93723],[-84.33842,37.93906],[-84.33837,37.93921],[-84.31147,37.95185],[-84.31075,37.95217],[-84.32328,37.95589],[-84.32331,37.95603],[-84.31175,37.96302],[-84.31172,37.96332],[-84.32414,37.96579],[-84.32443,37.96645],[-84.31964,38.0023],[-84.28271,38.01912],[-84.29281,38.03333],[-84.29299,38.03361],[-84.28481,38.04006],[-84.28465,38.04043],[-84.28618,38.06663],[-84.28637,38.06701],[-84.08024,38.11516],[-84.02625,38.1526],[-83.99068,38.17484],[-83.9827,38.19287],[-83.98383,38.19515],[-83.97018,38.20314],[-83.96947,38.20948],[-83.98741,38.22013],[-83.98917,38.22015],[-83.9901,38.20293],[-83.99477,38.2039],[-84.00684,38.21538],[-84.0085,38.21993],[-84.04297,38.22488],[-84.06271,38.23463],[-84.06207,38.23689],[-84.05382,38.23906],[-84.05772,38.24953],[-84.05699,38.25722],[-84.06817,38.25509],[-84.07985,38.25704],[-84.07445,38.26378],[-84.07323,38.26603],[-84.07782,38.27107],[-84.08012,38.27336],[-84.08951,38.27301],[-84.09547,38.2681],[-84.09681,38.25905],[-84.10326,38.25912],[-84.10137,38.2659],[-84.10421,38.27046],[-84.11649,38.27242],[-84.11995,38.27517],[-84.10516,38.28271],[-84.1045,38.28633],[-84.11736,38.28829],[-84.12696,38.30789],[-84.13289,38.30478],[-84.16658,38.35501],[-84.19386,38.37162],[-84.10268,38.45943],[-84.10671,38.46884],[-84.10712,38.46916],[-84.13066,38.4746],[-84.13124,38.47465],[-84.131,38.48267],[-84.13163,38.48297],[-84.14244,38.47603],[-84.14319,38.47602],[-84.15141,38.48962],[-84.1521,38.48993],[-84.17199,38.4865],[-84.17319,38.48736],[-84.16006,38.50108],[-84.16124,38.50177],[-84.18289,38.49678],[-84.18345,38.49735],[-84.1794,38.52331],[-84.17804,38.53327],[-84.1643,38.54491],[-84.16177,38.55394],[-84.16816,38.559],[-84.20714,38.55125],[-84.20886,38.54992],[-84.21707,38.55729],[-84.21763,38.55813],[-84.20383,38.56432],[-84.20297,38.56516],[-84.20541,38.58206],[-84.20473,38.58794],[-84.19575,38.58834],[-84.1953,38.5883],[-84.20091,38.60377],[-84.2075,38.59749],[-84.23415,38.80739],[-84.23604,38.82232],[-84.23054,38.82744],[-84.23294,38.88603],[-84.23289,38.8871],[-84.2864,38.95228],[-84.28874,38.95567],[-84.30005,38.9935],[-84.30716,39.0073],[-84.33985,39.03437],[-84.34089,39.03501],[-84.42565,39.0527],[-84.42652,39.05322],[-84.43401,39.09569],[-84.43495,39.09977],[-84.45282,39.11925],[-84.45619,39.12054],[-84.4792,39.11807],[-84.48059,39.11742],[-84.50434,39.09592],[-84.50612,39.09511],[-84.54971,39.09972],[-84.55096,39.09949],[-84.57256,39.08215],[-84.57306,39.08191],[-84.61685,39.07323],[-84.61845,39.07327],[-84.65842,39.09552],[-84.65993,39.09614],[-84.68487,39.1003],[-84.68593,39.10077],[-84.71788,39.13641],[-84.71826,39.13682],[-84.75139,39.14753],[-84.75244,39.14726],[-84.7842,39.1179],[-84.7874,39.11544],[-84.83142,39.10085],[-84.83248,39.10036],[-84.89694,39.05747],[-84.89729,39.05747],[-84.83027,38.97417],[-84.83003,38.97305],[-84.83299,38.96042],[-84.83363,38.95943],[-84.8762,38.92254],[-84.87706,38.92147],[-84.87723,38.90954],[-84.87702,38.90901],[-84.8679,38.89921],[-84.86643,38.89871],[-84.8145,38.89546],[-84.81331,38.89523],[-84.78542,38.88075],[-84.78518,38.88001],[-84.78981,38.86206],[-84.79094,38.86057],[-84.82962,38.83112],[-84.82993,38.83037],[-84.81417,38.80034],[-84.81339,38.79851],[-84.81432,38.7847],[-84.8149,38.78428],[-84.88679,38.79463],[-84.88724,38.7948],[-84.93976,38.77602],[-84.94121,38.77565],[-84.99111,38.77842],[-84.99229,38.77815],[-85.10094,38.72662],[-85.10172,38.72651],[-85.13605,38.70062],[-85.1368,38.7001],[-85.17189,38.68836],[-85.17298,38.68807],[-85.21237,38.69501],[-85.21482,38.69625],[-85.2464,38.73147],[-85.24692,38.73194],[-85.2767,38.74135],[-85.27859,38.74159],[-85.36176,38.73051],[-85.3636,38.73037],[-85.41339,38.73683],[-85.41489,38.73677],[-85.43532,38.729],[-85.43609,38.7285],[-85.45169,38.71037],[-85.45184,38.7102],[-85.45673,38.68734],[-85.45665,38.68603],[-85.43897,38.65963],[-85.43854,38.65896],[-85.43832,38.60596],[-85.43824,38.60468],[-85.41528,38.55926],[-85.41489,38.55775],[-85.41777,38.53822],[-85.41777,38.53775],[-85.43188,38.52455],[-85.43291,38.52398],[-85.37901,38.51903],[-85.37859,38.51895],[-85.36594,38.50787],[-85.3657,38.5077],[-85.31944,38.49761],[-85.31592,38.49624],[-85.31416,38.49262],[-85.34598,38.45957],[-85.33133,38.44233],[-85.32496,38.4038],[-85.29568,38.37384],[-85.28281,38.35796],[-85.32459,38.30998],[-85.35159,38.30322],[-85.39057,38.30779],[-85.39323,38.30779],[-85.39558,38.30508],[-85.40906,38.30373],[-85.40791,38.29466],[-85.41025,38.29376],[-85.41318,38.29467],[-85.41669,38.30237],[-85.42255,38.30192],[-85.42666,38.30374],[-85.42491,38.29422],[-85.42725,38.29286],[-85.44718,38.30194],[-85.44894,38.3042],[-85.46127,38.28563],[-85.46713,38.28535],[-85.40596,38.26389],[-85.4051,38.26359],[-85.42905,38.11817],[-85.43035,38.10703],[-85.46195,38.09662],[-85.46954,38.09617],[-85.51222,38.01096],[-85.51689,38.01096],[-85.49995,37.99872],[-85.48886,37.99056],[-85.49995,37.98467],[-85.53381,37.96518],[-85.52563,37.95294],[-85.52972,37.94705],[-85.57987,37.91258],[-85.58395,37.91076],[-85.58042,37.88312],[-85.58683,37.87631],[-85.60548,37.87041],[-85.61364,37.86995],[-85.6107,37.85907],[-85.61828,37.85136],[-85.69802,37.81137],[-85.73414,37.81086],[-85.73833,37.81225],[-85.73833,37.84287],[-85.75207,37.84314],[-85.75241,37.87946],[-85.7737,37.87919],[-85.77541,37.97709],[-85.82382,37.9779],[-85.82399,37.99129],[-85.91154,37.99197],[-85.91171,38.00671],[-85.99891,37.99963],[-86.0305,37.99062],[-86.0317,37.96897],[-86.03703,37.95787],[-86.04904,37.95814],[-86.06569,37.97465],[-86.0832,38.00266],[-86.08252,37.80823],[-86.15172,37.79892],[-86.27537,37.5933]]],"terms_url":"https://kyfromabove.ky.gov/","terms_text":"KyFromAbove","description":"6-inch or 1-foot aerial imagery captured from 2012 to 2014 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI)."},{"id":"KYAPED_2019_6in","name":"KyFromAbove 2019 6in","type":"wms","template":"https://kyraster.ky.gov/arcgis/services/ImageServices/Ky_KYAPED_2019_6IN_WGS84WM/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[-85.60121,36.87174],[-85.59544,36.86312],[-85.57471,36.8382],[-85.5816,36.82323],[-85.59596,36.81869],[-85.58844,36.77788],[-85.55282,36.77383],[-85.54248,36.77429],[-85.51834,36.73394],[-85.51891,36.73212],[-85.47298,36.73393],[-85.46954,36.73167],[-85.49653,36.69086],[-85.43633,36.61853],[-85.20834,36.62566],[-85.19537,36.6255],[-84.83859,36.60505],[-84.83005,36.60447],[-83.78902,36.58388],[-83.69071,36.58258],[-83.67461,36.60308],[-83.67311,36.60468],[-83.64951,36.61668],[-83.64831,36.62268],[-83.58451,36.64138],[-83.57731,36.64178],[-83.53149,36.6652],[-83.52961,36.66618],[-83.43171,36.66649],[-83.42371,36.66739],[-83.313,36.70909],[-83.3114,36.71029],[-83.19682,36.73862],[-83.1946,36.73949],[-83.13684,36.74303],[-83.13639,36.74309],[-83.13099,36.74979],[-83.12783,36.75083],[-83.12934,36.77714],[-83.13169,36.78149],[-83.10803,36.80218],[-83.10309,36.80669],[-83.10209,36.82819],[-83.10179,36.82909],[-83.07969,36.84059],[-83.07519,36.84089],[-83.07559,36.85059],[-83.07259,36.85459],[-83.04219,36.85439],[-83.02689,36.85549],[-83.01259,36.84729],[-83.00922,36.8473],[-83.00328,36.85224],[-82.99838,36.85663],[-82.91031,36.87405],[-82.90777,36.87471],[-82.87949,36.88909],[-82.87857,36.88958],[-82.87256,36.90338],[-82.87747,36.90796],[-82.85864,36.92779],[-82.85796,36.92953],[-82.8561,36.95247],[-82.85587,36.95385],[-82.86736,36.96318],[-82.87023,36.9655],[-82.86845,36.97648],[-82.86754,36.97752],[-82.83853,36.98729],[-82.83601,36.98884],[-82.83029,37.00352],[-82.82868,37.00574],[-82.78243,37.00824],[-82.78214,37.00824],[-82.76641,37.02311],[-82.75917,37.02733],[-82.75071,37.02411],[-82.74798,37.02521],[-82.74368,37.0414],[-82.74245,37.04298],[-82.72471,37.04276],[-82.72247,37.0451],[-82.72631,37.06687],[-82.72702,37.07302],[-82.71835,37.07571],[-82.71674,37.07722],[-82.7262,37.11588],[-82.7221,37.12017],[-82.63401,37.1542],[-82.63349,37.15426],[-82.59323,37.18206],[-82.59245,37.18285],[-82.5079,37.22273],[-82.49886,37.22704],[-82.35534,37.26522],[-82.34874,37.26794],[-82.34193,37.27398],[-82.34392,37.28071],[-82.32772,37.28285],[-82.32464,37.28295],[-81.9646,37.54275],[-81.96454,37.54325],[-81.97275,37.54688],[-81.97508,37.54657],[-81.99379,37.53806],[-81.99449,37.53795],[-81.99772,37.54339],[-81.9984,37.54335],[-82.00955,37.53309],[-82.01186,37.53314],[-82.04175,37.54822],[-82.04278,37.54809],[-82.04591,37.52811],[-82.04677,37.52816],[-82.04911,37.53482],[-82.04989,37.53531],[-82.06271,37.53592],[-82.06374,37.53618],[-82.07325,37.55502],[-82.07503,37.55582],[-82.09892,37.5533],[-82.10289,37.55305],[-82.10819,37.55991],[-82.11658,37.55959],[-82.13308,37.55291],[-82.1333,37.553],[-82.13349,37.56071],[-82.13395,37.56224],[-82.14456,37.56694],[-82.14465,37.56831],[-82.1296,37.57197],[-82.1273,37.57268],[-82.12648,37.58294],[-82.12732,37.58667],[-82.13034,37.59174],[-82.13198,37.59354],[-82.14843,37.59091],[-82.15672,37.59279],[-82.15672,37.60906],[-82.15674,37.6092],[-82.16814,37.60849],[-82.16906,37.60987],[-82.16458,37.6189],[-82.16419,37.62019],[-82.18083,37.62138],[-82.18143,37.62184],[-82.17264,37.6323],[-82.17245,37.63259],[-82.17463,37.64742],[-82.17526,37.64797],[-82.18799,37.64758],[-82.19144,37.64438],[-82.18669,37.62758],[-82.1873,37.62694],[-82.20969,37.6251],[-82.21349,37.62541],[-82.22611,37.65309],[-82.23939,37.66146],[-82.256,37.65679],[-82.25711,37.65675],[-82.28193,37.67534],[-82.2823,37.67583],[-82.28798,37.66844],[-82.28817,37.66823],[-82.29439,37.67796],[-82.29474,37.67828],[-82.30231,37.67555],[-82.30395,37.67576],[-82.29705,37.70084],[-82.29663,37.7024],[-82.30568,37.70671],[-82.30724,37.70767],[-82.3183,37.73305],[-82.31888,37.73376],[-82.33335,37.7412],[-82.33358,37.74328],[-82.31078,37.76269],[-82.31164,37.76429],[-82.32946,37.76239],[-82.33116,37.76313],[-82.323,37.77391],[-82.3237,37.77503],[-82.33722,37.77517],[-82.3376,37.77537],[-82.33838,37.78043],[-82.3397,37.78551],[-82.37487,37.80216],[-82.37739,37.80301],[-82.38526,37.81741],[-82.38659,37.81821],[-82.4015,37.81003],[-82.40165,37.81009],[-82.3996,37.82939],[-82.39968,37.82993],[-82.41737,37.84566],[-82.42048,37.84681],[-82.4148,37.85588],[-82.41465,37.85626],[-82.42351,37.86031],[-82.42426,37.86171],[-82.40844,37.86606],[-82.40746,37.86747],[-82.41632,37.86963],[-82.41768,37.87066],[-82.4192,37.88208],[-82.41978,37.88382],[-82.46149,37.91309],[-82.46288,37.91483],[-82.47252,37.89924],[-82.47457,37.90029],[-82.47497,37.91115],[-82.47553,37.91204],[-82.48802,37.91734],[-82.48819,37.91807],[-82.48019,37.92583],[-82.48047,37.92626],[-82.49827,37.92818],[-82.49936,37.92937],[-82.50201,37.93477],[-82.50127,37.93562],[-82.48916,37.93796],[-82.48905,37.93872],[-82.4973,37.94551],[-82.49668,37.9464],[-82.4751,37.95491],[-82.4718,37.95912],[-82.48441,37.9699],[-82.48384,37.97157],[-82.46407,37.98029],[-82.46426,37.98341],[-82.48329,37.98426],[-82.48387,37.9845],[-82.48757,37.99809],[-82.48773,37.99833],[-82.51597,37.99993],[-82.51735,38.0012],[-82.551,38.07045],[-82.55126,38.0708],[-82.58364,38.09032],[-82.58404,38.09066],[-82.5857,38.107],[-82.58778,38.10888],[-82.61945,38.12074],[-82.62035,38.12148],[-82.62138,38.13231],[-82.62212,38.13341],[-82.63647,38.13786],[-82.63731,38.13905],[-82.63895,38.15674],[-82.64474,38.16549],[-82.61323,38.1704],[-82.61134,38.17155],[-82.59885,38.20171],[-82.59844,38.21739],[-82.61252,38.23455],[-82.61226,38.23609],[-82.60713,38.24598],[-82.60533,38.2473],[-82.58643,38.24561],[-82.58606,38.24562],[-82.57812,38.25515],[-82.57466,38.26387],[-82.58282,38.29548],[-82.58306,38.29683],[-82.57188,38.31578],[-82.57269,38.3188],[-82.59652,38.34285],[-82.59798,38.34491],[-82.59574,38.41819],[-82.59342,38.42186],[-82.60406,38.45963],[-82.60409,38.45984],[-82.61278,38.47359],[-82.6138,38.47453],[-82.65438,38.49483],[-82.65705,38.49682],[-82.69957,38.54406],[-82.70005,38.54434],[-82.72485,38.5576],[-82.73096,38.55926],[-82.78915,38.55989],[-82.78978,38.55995],[-82.84072,38.58725],[-82.84195,38.58827],[-82.85392,38.61213],[-82.85429,38.61345],[-82.85881,38.6574],[-82.85936,38.65949],[-82.87693,38.68756],[-82.8772,38.68851],[-82.87018,38.73294],[-82.87013,38.73362],[-82.88572,38.75499],[-82.88609,38.7552],[-82.92519,38.74965],[-82.93347,38.74701],[-82.97128,38.72724],[-82.97157,38.72715],[-83.02798,38.72709],[-83.02983,38.72618],[-83.06051,38.69095],[-83.06213,38.68967],[-83.11053,38.67306],[-83.11247,38.67158],[-83.13402,38.63308],[-83.13495,38.63172],[-83.15165,38.6197],[-83.15332,38.6189],[-83.20318,38.6167],[-83.20471,38.61686],[-83.2449,38.62868],[-83.2465,38.62846],[-83.29282,38.59661],[-83.2946,38.59648],[-83.31529,38.60671],[-83.31692,38.60832],[-83.3272,38.63725],[-83.32773,38.63781],[-83.35707,38.65436],[-83.3582,38.65497],[-83.46575,38.67484],[-83.46796,38.67517],[-83.51888,38.70261],[-83.52062,38.70296],[-83.62488,38.67913],[-83.62707,38.67797],[-83.64426,38.63771],[-83.64507,38.63625],[-83.65677,38.6279],[-83.66005,38.62718],[-83.76049,38.65177],[-83.76354,38.65225],[-83.77283,38.65914],[-83.77371,38.6608],[-83.78446,38.69641],[-83.78661,38.69881],[-83.83487,38.71625],[-83.83641,38.71734],[-83.84621,38.74229],[-83.84873,38.74718],[-83.86406,38.75895],[-83.86653,38.7602],[-83.92529,38.77103],[-83.92636,38.77128],[-83.96134,38.78731],[-83.96219,38.78744],[-84.07001,38.77033],[-84.07075,38.77026],[-84.20063,38.80157],[-84.20559,38.80259],[-84.22895,38.82409],[-84.23019,38.82636],[-84.23185,38.87281],[-84.23208,38.8747],[-84.40671,38.80609],[-84.40781,38.80587],[-84.41876,38.80576],[-84.53176,38.78992],[-84.59728,38.79086],[-84.62429,38.80375],[-84.62962,38.80288],[-84.64568,38.79257],[-84.65574,38.79082],[-84.66003,38.77725],[-84.78056,38.76487],[-84.78572,38.72003],[-84.79289,38.72463],[-84.79397,38.72462],[-84.81239,38.71229],[-84.8134,38.71168],[-84.81128,38.70268],[-84.81181,38.70234],[-84.8319,38.71176],[-84.83359,38.71197],[-84.84386,38.69761],[-84.84456,38.69675],[-84.86581,38.70048],[-84.86882,38.6997],[-84.87241,38.68955],[-84.873,38.68906],[-84.88826,38.68696],[-84.88859,38.68663],[-84.88971,38.67664],[-84.89022,38.67633],[-84.90335,38.67861],[-84.90436,38.67833],[-84.91084,38.66879],[-84.91238,38.66864],[-84.92561,38.67334],[-84.92653,38.6728],[-84.93664,38.65111],[-84.93693,38.65071],[-84.96629,38.64951],[-84.96778,38.64925],[-84.97436,38.6368],[-84.97537,38.63592],[-84.98941,38.63129],[-84.99073,38.63078],[-85.01388,38.63223],[-85.015,38.63235],[-85.01229,38.62395],[-85.01238,38.62314],[-85.02384,38.6152],[-85.02494,38.61358],[-85.05726,38.61167],[-85.05904,38.61144],[-85.06828,38.60429],[-85.06855,38.60374],[-85.06624,38.59489],[-85.0664,38.59419],[-85.07359,38.59683],[-85.07448,38.59677],[-85.07605,38.58019],[-85.07588,38.57821],[-85.06841,38.56868],[-85.06543,38.56577],[-85.04279,38.57355],[-85.0409,38.57415],[-85.00371,38.55512],[-85.00205,38.55341],[-85.00987,38.54945],[-85.01199,38.54807],[-85.02979,38.50957],[-85.02938,38.50779],[-85.02305,38.50388],[-85.01919,38.50382],[-85.00387,38.51559],[-85.00155,38.5165],[-84.98068,38.51741],[-84.97816,38.51575],[-84.99218,38.49471],[-84.99226,38.49214],[-84.95469,38.47086],[-84.95383,38.46938],[-84.95149,38.46166],[-84.95136,38.45798],[-84.96355,38.43844],[-84.96376,38.43794],[-84.95917,38.43173],[-84.95749,38.43005],[-84.94321,38.42641],[-84.93882,38.42749],[-84.9372,38.45283],[-84.93543,38.45602],[-84.92632,38.46346],[-84.9226,38.46457],[-84.91306,38.46034],[-84.91196,38.45929],[-84.90898,38.45123],[-84.90943,38.44975],[-84.92806,38.43691],[-84.92748,38.4333],[-84.88133,38.4197],[-84.88054,38.41902],[-84.89759,38.38316],[-84.89891,38.37996],[-84.86692,38.36405],[-84.86684,38.36218],[-84.88198,38.3566],[-84.88437,38.35162],[-84.89256,38.35529],[-84.90649,38.37485],[-84.94563,38.35781],[-84.99716,38.33537],[-84.9567,38.33247],[-84.99875,38.27509],[-85.00762,38.17587],[-85.00938,38.17497],[-85.00479,38.16136],[-85.00598,38.15819],[-85.02373,38.1288],[-85.02257,38.12789],[-85.03489,38.12114],[-85.03958,38.11979],[-85.05148,38.08766],[-85.05388,38.07769],[-85.07271,38.05691],[-85.07745,38.04605],[-85.11203,38.02576],[-85.12021,38.02579],[-85.12321,38.01039],[-85.1291,37.99998],[-85.13903,38.00001],[-85.14077,38.00274],[-85.15076,37.98917],[-85.15193,37.98827],[-85.16301,37.99147],[-85.16122,38.00008],[-85.1618,38.00144],[-85.16882,37.99874],[-85.17001,37.99421],[-85.14945,37.89715],[-85.14714,37.8908],[-85.13839,37.89168],[-85.13192,37.9039],[-85.12544,37.91566],[-85.10622,37.90926],[-85.10747,37.8934],[-85.09758,37.88974],[-85.09409,37.88792],[-85.03458,37.89224],[-85.0305,37.89177],[-85.03114,37.88316],[-85.03115,37.8818],[-85.01031,37.85951],[-85.00043,37.85448],[-85.0029,37.8341],[-85.00872,37.83503],[-85.01175,37.81736],[-85.00594,37.81643],[-85.02984,37.63114],[-85.03909,37.54505],[-85.0425,37.46074],[-85.04454,37.41225],[-85.0648,37.4164],[-85.07234,37.41462],[-85.0799,37.40875],[-85.08343,37.39924],[-85.09561,37.39883],[-85.10605,37.3975],[-85.12001,37.38485],[-85.12812,37.38578],[-85.13111,37.3663],[-85.13229,37.36041],[-85.15681,37.31832],[-85.16495,37.31064],[-85.1107,37.28146],[-85.05648,37.2568],[-85.05337,37.19694],[-85.04304,37.18602],[-85.08958,37.12544],[-85.1656,37.03364],[-85.20264,37.00018],[-85.20553,36.99702],[-85.21078,36.98116],[-85.23229,36.92544],[-85.25013,36.92639],[-85.4516,36.93842],[-85.47465,36.89399],[-85.49997,36.87359],[-85.50745,36.8677],[-85.53678,36.8627],[-85.56035,36.85136],[-85.57532,36.8645],[-85.57993,36.86858],[-85.60121,36.87174]]],"terms_url":"https://kyfromabove.ky.gov/","terms_text":"KyFromAbove","description":"6-inch aerial imagery captured in 2019 through the Kentucky Aerial Photography and Elevation Data Program (KyFromAbove) and published by the Kentucky Division of Geographic Information (DGI)."},{"id":"kystverket-navigasjon","name":"Kystverket Navigational Aid overlay","type":"wms","template":"https://nfs.kystverket.no/arcgis/services/nfs/NFSSistOperativ/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=13,12,10,8,6,5,4,3&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[12,19],"polygon":[[[3.24857,56.08599],[2.60924,56.59428],[1.47215,58.45924],[1.77704,61.36251],[-0.49301,63.88665],[-13.73292,69.76376],[-12.43655,72.58741],[-5.11965,74.39626],[-3.60356,79.12998],[5.85587,82.34863],[34.98861,82.3401],[37.96874,78.62784],[37.99619,75.79673],[36.95796,73.68962],[32.07458,70.27336],[30.3511,69.56882],[21.46179,69.57098],[18.3032,68.36681],[14.47997,66.2558],[11.50266,63.28307],[11.50166,58.95444],[11.08246,58.96771],[10.03051,58.25173],[8.88244,57.69534],[3.24857,56.08599]]],"terms_url":"https://kystverket.no/Maritim-infrastruktur/Fyr-og-merker-/","terms_text":"© Kystverket","description":"Beacons, buoys, lights and fairways maintained by the Norwegian Coastal Administration","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg/143px-Coat_of_arms_of_the_Norwegian_Coastal_Administration.svg.png","overlay":true},{"id":"osmse-ekonomiska","name":"Lantmäteriet Economic Map 1950–1980","type":"tms","template":"https://mapproxy.openstreetmap.se/tms/1.0.0/ek_EPSG3857/{zoom}/{x}/{-y}.jpeg","zoomExtent":[3,17],"polygon":[[[12.71117,55.2666],[14.38109,55.29163],[19.65453,57.24934],[19.85228,59.75087],[17.77587,61.13794],[18.06151,62.27815],[20.97289,63.5779],[24.35668,65.60842],[23.96117,66.79191],[20.61034,66.45189],[17.13866,63.96632],[11.99706,61.03702],[12.29369,60.31607],[10.70067,58.81375],[12.71117,55.2666]]],"terms_url":"https://www.lantmateriet.se","terms_text":"© Lantmäteriet","description":"Scan of \"Economic maps\" ca. 1950–1980","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lantmateriet-orto1960","name":"Lantmäteriet Historic Orthophoto 1960","type":"wms","template":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?LAYERS=OI.Histortho_60&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,19],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.lantmateriet.se/","terms_text":"© Lantmäteriet, CC0","description":"Mosaic of Swedish orthophotos from the period 1955–1965. Older and younger pictures may occur.","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lantmateriet-orto1975","name":"Lantmäteriet Historic Orthophoto 1975","type":"wms","template":"https://api.lantmateriet.se/historiska-ortofoton/wms/v1/token/9b342b7d9f12d4ddb92277be9869d860/?LAYERS=OI.Histortho_75&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,19],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[17.85131,60.87407],[14.74558,60.53889],[11.60239,59.56416],[10.51799,58.66559],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.lantmateriet.se/","terms_text":"© Lantmäteriet, CC0","description":"Mosaic of Swedish orthophotos from the period 1970–1980. Is under construction.","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lantmateriet-topowebb","name":"Lantmäteriet Topographic Map","type":"tms","template":"https://api.lantmateriet.se/open/topowebb-ccby/v1/wmts/token/9b342b7d9f12d4ddb92277be9869d860/1.0.0/topowebb/default/3857/{zoom}/{y}/{x}.png","zoomExtent":[3,15],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.lantmateriet.se/","terms_text":"© Lantmäteriet, CC0","description":"Topographic map of Sweden 1:50 000","icon":"https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/sources/europe/se/lantmateriet_icon.png"},{"id":"lu.geoportail.opendata.ortholatest","name":"Latest available ortho geoportail.lu","type":"tms","template":"https://{switch:wmts1,wmts2}.geoportail.lu/opendata/wmts/ortho_latest/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2019-08-22T00:00:00.000Z","startDate":"2019-07-04T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","best":true,"icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"CityOfLaunceston_2011","name":"Launceston OrthoPhoto 2011","type":"tms","template":"https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Dec2011_10cm/MapServer/tile/{zoom}/{y}/{x}","endDate":"2011-12-01T00:00:00.000Z","startDate":"2011-12-01T00:00:00.000Z","zoomExtent":[10,20],"polygon":[[[147.10456,-41.3946],[147.10541,-41.47525],[147.17433,-41.47514],[147.17428,-41.45584],[147.17533,-41.45584],[147.17501,-41.39451],[147.10456,-41.3946]]],"terms_text":"© City of Launceston","icon":"https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png"},{"id":"CityOfLaunceston_2013","name":"Launceston OrthoPhoto 2013","type":"tms","template":"https://mapping.launceston.tas.gov.au/arcgis/rest/services/Public/OrthoPhoto_Feb2013_10cm/MapServer/tile/{zoom}/{y}/{x}","endDate":"2013-02-15T00:00:00.000Z","startDate":"2013-02-15T00:00:00.000Z","zoomExtent":[12,20],"polygon":[[[147.06561,-41.5081],[147.06547,-41.36487],[147.23734,-41.36464],[147.23786,-41.50787],[147.06561,-41.5081]]],"terms_text":"© City of Launceston","icon":"https://www.launceston.tas.gov.au/files/assets/public/templateimages/favicons/favicon-196x196.png"},{"id":"Lausanne-2016","name":"Lausanne - Orthophoto 2016","type":"tms","template":"https://osmdata.asitvd.ch/tiles/lausanne2016/{zoom}/{x}/{y}.png","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[12,20],"polygon":[[[6.66668,46.49441],[6.61637,46.49406],[6.61636,46.49836],[6.60135,46.49825],[6.60131,46.50227],[6.55923,46.50194],[6.55773,46.59687],[6.72895,46.59805],[6.7304,46.49004],[6.67702,46.48978],[6.67703,46.49011],[6.67345,46.49006],[6.67347,46.49041],[6.66672,46.49036],[6.66668,46.49441]]],"terms_url":"http://carto.lausanne.ch/lausanne-gc/","terms_text":"Ville de Lausanne - Orthophoto 2016"},{"id":"lidingo-orto","name":"Lidingö Orthophoto","type":"wms","template":"https://karta.lidingo.se/wms?LAYERS=theme-ortofoto2012&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&servicename=wms_ortofoto_2012","projection":"EPSG:4326","zoomExtent":[5,21],"polygon":[[[18.08826,59.38201],[18.10006,59.39399],[18.13877,59.40347],[18.16255,59.38983],[18.30348,59.37265],[18.29515,59.36662],[18.25962,59.35918],[18.17521,59.32391],[18.11405,59.35761],[18.10367,59.3744],[18.08826,59.38201]]],"terms_url":"https://www.lidingo.se/oppnadata/oppnadata.4.3f8c1a7415bf516a427a636.html","terms_text":"© Lidingö municipality, CC0","best":true,"description":"Orthophotos from the municipality of Lidingö 2012, CC0 license","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Lidingö_kommunvapen_-_Riksarkivet_Sverige.png/207px-Lidingö_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"linkoping-orto","name":"Linköping Orthophoto","type":"wms","template":"http://kartan.linkoping.se/wms?servicename=wms_ortofoto&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Kommun_2010_25cm&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[13,20],"polygon":[[[15.36884,58.6305],[15.41279,58.65623],[15.46635,58.6339],[15.54291,58.64408],[15.54119,58.60672],[15.58376,58.6414],[15.7592,58.55267],[15.76675,58.52006],[15.91438,58.51755],[16.08089,58.37148],[15.82718,58.30588],[15.84915,58.21449],[15.65861,58.15513],[15.56763,58.19134],[15.55939,58.14661],[15.50171,58.07679],[15.37777,58.05881],[15.28713,58.1031],[15.27203,58.13483],[15.35889,58.16455],[15.32387,58.38012],[15.24971,58.40027],[15.3582,58.47288],[15.36884,58.6305]]],"terms_url":"https://www.linkoping.se/open/","terms_text":"© Linköping municipality","best":true,"description":"Orthophotos from the municipality of Linköping 2010, open data","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/2/29/Linköping_vapen.svg/198px-Linköping_vapen.svg.png"},{"id":"LINZ_NZ_Aerial_Imagery","name":"LINZ NZ Aerial Imagery","type":"tms","template":"https://basemaps.linz.govt.nz/v1/tiles/aerial/EPSG:3857/{zoom}/{x}/{y}.jpg?api=d01egend5f8dv4zcbfj6z2t7rs3","zoomExtent":[0,21],"polygon":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"terms_url":"https://www.linz.govt.nz/data/licensing-and-using-data/attributing-elevation-or-aerial-imagery-data","terms_text":"Sourced from LINZ CC-BY 4.0","best":true,"icon":"https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico"},{"id":"LINZ_NZ_Topo50_Gridless_Maps","name":"LINZ NZ Topo50 Gridless Maps","type":"tms","template":"https://map.cazzaserver.com/linz_topo/{zoom}/{x}/{y}.png","zoomExtent":[6,21],"polygon":[[[167.25037,-47.21957],[167.24487,-47.28016],[167.50305,-47.37975],[168.25012,-47.1561],[168.74451,-46.7963],[169.32678,-46.75492],[169.78271,-46.60417],[170.42542,-46.11133],[170.80444,-45.95115],[170.95276,-45.44086],[171.30981,-44.91036],[171.40869,-44.39062],[172.56226,-43.92955],[172.90283,-43.9691],[173.16101,-43.90977],[173.25989,-43.69568],[172.97424,-43.5366],[172.76001,-43.37711],[173.15002,-43.17714],[173.70483,-42.63396],[174.36401,-41.7836],[174.32007,-41.40978],[174.84741,-41.52914],[175.07263,-41.70573],[175.50659,-41.67291],[176.2262,-41.10833],[176.83044,-40.42604],[177.17102,-39.67337],[177.03918,-39.39375],[177.44568,-39.18118],[177.60498,-39.33005],[177.97852,-39.36828],[178.33557,-38.65978],[178.70911,-37.74466],[178.62671,-37.54458],[178.3136,-37.43125],[177.62146,-37.37889],[177.03918,-37.39635],[176.56128,-37.37016],[176.33606,-37.05956],[176.00647,-36.29742],[175.67688,-36.05354],[174.67163,-35.1783],[173.19397,-34.28445],[172.67761,-34.23451],[172.38647,-34.40238],[172.47986,-34.71904],[172.98523,-35.32185],[173.56201,-36.14231],[174.30908,-37.07709],[174.55627,-38.05242],[174.47937,-38.65549],[174.32556,-38.86537],[173.79822,-38.95941],[173.60596,-39.23225],[173.69934,-39.56335],[174.58923,-39.95607],[174.98474,-40.21664],[174.98474,-40.49292],[174.72107,-40.80549],[174.14978,-40.65147],[173.28186,-40.4344],[172.58972,-40.35073],[172.08435,-40.53468],[171.76575,-40.82628],[171.57349,-41.39742],[171.28235,-41.65239],[170.87585,-42.53284],[170.354,-42.87194],[168.27759,-43.92955],[167.6239,-44.47691],[166.55273,-45.38688],[166.27258,-45.91677],[166.48132,-46.22545],[167.67883,-46.47192],[167.25037,-47.21957]]],"terms_url":"https://data.linz.govt.nz/layer/2343-nz-mainland-topo50-gridless-maps","terms_text":"CC BY 4.0 Land Information New Zealand","icon":"https://koordinates.a.ssl.fastly.net/media/settings/branding/favicon-lds.ico"},{"id":"ORT10LT","name":"Lithuania - NŽT ORT10LT","type":"tms","template":"https://ort10lt.openmap.lt/g16/{zoom}/{x}/{y}.jpeg","endDate":"2016-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[4,18],"polygon":[[[26.21384,55.85075],[26.38583,55.70453],[26.63036,55.68067],[26.62053,55.56892],[26.52422,55.50992],[26.55415,55.38883],[26.43993,55.34794],[26.79197,55.3212],[26.82913,55.27635],[26.74346,55.25399],[26.67648,55.15883],[26.46112,55.12856],[26.35774,55.15054],[26.22963,55.10732],[26.27138,55.07759],[26.20851,54.99741],[26.06191,54.94161],[25.85782,54.9276],[25.74298,54.81506],[25.76261,54.5769],[25.53194,54.34182],[25.67716,54.32381],[25.78573,54.23362],[25.78588,54.15506],[25.55508,54.14619],[25.51095,54.17503],[25.58967,54.22858],[25.51362,54.30785],[25.26893,54.27447],[25.0706,54.13363],[24.95737,54.17206],[24.81338,54.14486],[24.77902,54.09991],[24.87128,54.0349],[24.81957,53.99772],[24.68459,53.96211],[24.69787,54.01714],[24.62591,54.0105],[24.43426,53.90144],[24.35206,53.89679],[24.20161,53.97001],[23.96833,53.9267],[23.91302,53.96968],[23.77812,53.89892],[23.70977,53.93945],[23.53704,53.94307],[23.48224,53.98938],[23.52734,54.04735],[23.48586,54.15323],[23.38679,54.22484],[23.04212,54.31597],[23.01021,54.3828],[22.85469,54.4104],[22.792,54.36332],[22.70234,54.4529],[22.68386,54.58597],[22.74897,54.63198],[22.74297,54.72682],[22.88668,54.8135],[22.8204,54.91198],[22.6424,54.97134],[22.58924,55.07024],[22.0806,55.02448],[22.03241,55.0841],[21.91307,55.08168],[21.64919,55.18081],[21.50151,55.18682],[21.38437,55.2937],[21.27098,55.24501],[21.09836,55.25639],[20.94217,55.28245],[21.08635,55.56183],[21.03995,55.83636],[21.06403,56.06995],[21.20478,56.08117],[21.2308,56.16233],[21.5021,56.2955],[21.72359,56.31382],[21.83566,56.37162],[21.96954,56.37665],[22.0153,56.42428],[22.43727,56.4064],[22.68,56.35159],[22.91917,56.37902],[22.94668,56.41465],[23.09325,56.30464],[23.17034,56.36677],[23.30645,56.38305],[23.55717,56.33382],[23.7648,56.37332],[23.76669,56.32381],[24.019,56.32976],[24.12146,56.2489],[24.28574,56.30064],[24.45415,56.25816],[24.57947,56.28824],[24.62841,56.37533],[24.90238,56.48053],[25.12774,56.20591],[25.57714,56.18241],[25.67312,56.14937],[26.21384,55.85075]]],"terms_url":"https://www.geoportal.lt","terms_text":"NŽT ORT10LT","best":true},{"id":"mapbox_locator_overlay","name":"Locator Overlay","type":"tms","template":"https://api.mapbox.com/styles/v1/openstreetmap/ckasmteyi1tda1ipfis6wqhuq/tiles/256/{zoom}/{x}/{y}{@2x}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJja2w5YWtqbDAwcGFkMnZtdngzbWtlbDE3In0.U3DODCbBGFfFXkilttz1YA","zoomExtent":[0,16],"overzoom":false,"terms_url":"https://www.mapbox.com/about/maps","terms_text":"Terms & Feedback","default":true,"description":"Shows major features to help orient you.","overlay":true},{"id":"Lodz-buildings","name":"Łódź: Buildings","type":"wms","template":"https://gis.mapa.lodz.pl/awiskts/services/WMS_publikowane/LODZ/MapServer/WMSServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Budynki,Ulice,Adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","polygon":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"terms_text":"Urząd Miasta Łodzi","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"},{"id":"Lodz-2015","name":"Łódź: Orthophotomap 2015 (aerial image)","type":"wms","template":"https://gis.mapa.lodz.pl/awiskts/services/Ortofotomapa/Ortofotomapa/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"terms_text":"Urząd Miasta Łodzi","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"},{"id":"Lodz-2017","name":"Łódź: Orthophotomap 2017 (aerial image)","type":"wms","template":"https://mapa.lodz.pl/3/services/OGC/Ortofotomapa/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[19.55046,51.68509],[19.53843,51.68518],[19.53858,51.68067],[19.50381,51.68085],[19.50351,51.68564],[19.48084,51.68589],[19.48063,51.6815],[19.43517,51.68168],[19.43517,51.67754],[19.41155,51.67791],[19.41214,51.68703],[19.37723,51.68739],[19.37723,51.69172],[19.34216,51.692],[19.34291,51.70544],[19.33132,51.70572],[19.33176,51.71474],[19.31988,51.71493],[19.32077,51.74612],[19.33206,51.74612],[19.33251,51.75513],[19.32107,51.75532],[19.32225,51.79108],[19.31052,51.79126],[19.31141,51.81387],[19.323,51.81359],[19.32389,51.82709],[19.33488,51.82718],[19.33473,51.84481],[19.39342,51.84444],[19.39342,51.84022],[19.42789,51.83985],[19.42834,51.85738],[19.4634,51.85701],[19.4634,51.86133],[19.47499,51.86133],[19.47529,51.86601],[19.52194,51.86509],[19.52238,51.85619],[19.568,51.85582],[19.56785,51.85105],[19.57944,51.85105],[19.57825,51.82397],[19.63649,51.82342],[19.63411,51.76488],[19.65759,51.7647],[19.65714,51.74676],[19.64496,51.74695],[19.64421,51.7152],[19.63337,51.7152],[19.63322,51.70167],[19.62059,51.70167],[19.62044,51.68868],[19.55032,51.68942],[19.55046,51.68509]]],"terms_text":"Urząd Miasta Łodzi","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/dOrthophotomap2017(aerialimage).png"},{"id":"Loire_Atlantique-Orthophotos-2016","name":"Loire-Atlantique - Orthophotos 2016 - 10 cm","type":"wms","template":"https://wms-vuduciel2.makina-corpus.net/geoserver/wms?LAYERS=cg44:ortho44-2016&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-1.48638,46.87691],[-1.54437,46.84873],[-1.73468,46.87246],[-1.89276,46.94234],[-1.95475,46.98084],[-2.07067,47.08521],[-2.2678,47.12656],[-2.22627,47.17124],[-2.19217,47.16914],[-2.19341,47.25546],[-2.29694,47.22769],[-2.41658,47.25336],[-2.54862,47.28575],[-2.63913,47.41678],[-2.50573,47.50812],[-2.31063,47.53021],[-2.24836,47.52384],[-2.23223,47.51499],[-2.12109,47.54674],[-2.11783,47.60126],[-2.1001,47.61123],[-2.09981,47.62005],[-2.11141,47.62873],[-2.10055,47.65141],[-2.08121,47.66578],[-1.98016,47.70751],[-1.83077,47.72419],[-1.67455,47.72544],[-1.63735,47.77463],[-1.49601,47.81752],[-1.49911,47.84166],[-1.38133,47.84415],[-1.346,47.81086],[-1.23007,47.78587],[-1.21643,47.75838],[-1.22635,47.73628],[-1.21086,47.7317],[-1.18668,47.73462],[-1.15196,47.69332],[-1.13151,47.63654],[-1.09121,47.6332],[-0.99265,47.6027],[-0.98459,47.58598],[-1.0317,47.55001],[-1.13585,47.55628],[-1.13275,47.5161],[-1.0317,47.51778],[-0.94863,47.50103],[-0.93686,47.47715],[-0.93376,47.43859],[-0.9009,47.39874],[-0.92694,47.37482],[-0.97157,47.35845],[-1.28339,47.32736],[-1.23379,47.26093],[-1.20032,47.26935],[-1.16498,47.24957],[-1.14143,47.1763],[-1.1563,47.15818],[-1.20652,47.12402],[-1.20838,47.10968],[-1.15568,47.10504],[-1.14081,47.08056],[-1.09431,47.0717],[-1.09989,47.03199],[-1.14453,47.01636],[-1.21582,47.02904],[-1.26727,47.06325],[-1.28524,47.02185],[-1.34972,47.02397],[-1.33918,46.969],[-1.3491,46.94446],[-1.45014,46.91186],[-1.47504,46.9176],[-1.48775,46.93063],[-1.49235,46.98433],[-1.48644,46.99943],[-1.49213,47.02722],[-1.52764,47.00541],[-1.52961,46.97252],[-1.50507,46.94439],[-1.50222,46.92973],[-1.51142,46.91371],[-1.48622,46.89724],[-1.48638,46.87691]]],"terms_url":"http://data2.loire-atlantique.fr/licences/","terms_text":"© Loire-Atlantique ouverture des données publiques"},{"id":"Lombardia-Italy-CTR","name":"Lombardia - Italy (C.T.R. 10000 - 1980-94)","type":"wms","template":"https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?LAYERS=C.T.R. 10000 - 1980-94&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","polygon":[[[8.4816,45.28938],[8.63085,45.01372],[8.78009,44.98189],[8.86775,45.02712],[9.07148,44.80063],[9.14966,44.79055],[9.19467,44.67106],[9.31549,44.65758],[9.36997,44.698],[9.37945,44.82752],[9.33207,44.91483],[9.41025,45.03716],[9.78692,45.04386],[9.78692,45.00032],[9.93853,45.002],[9.93379,45.08903],[10.00013,45.09071],[10.00013,44.99697],[10.20149,45.002],[10.20149,44.95004],[10.40523,44.9534],[10.40523,44.90476],[10.49288,44.90308],[10.49288,44.8628],[10.6516,44.85776],[10.64686,44.90308],[11.35282,44.89469],[11.35519,44.93663],[11.45706,44.93328],[11.44758,44.97351],[11.3623,45.00032],[11.35282,45.09238],[11.25806,45.09572],[11.25806,45.13752],[11.16094,45.14253],[11.16094,45.18262],[11.05196,45.19097],[11.05196,45.23436],[10.9572,45.23269],[10.9572,45.28605],[10.8577,45.28438],[10.85534,45.32271],[10.74636,45.32937],[10.75347,45.47408],[10.64686,45.48073],[10.60301,45.51074],[10.57636,45.47379],[10.53549,45.50036],[10.59116,45.53148],[10.61666,45.61304],[10.87429,45.84001],[10.82217,45.85982],[10.67529,45.85817],[10.57342,45.8103],[10.58624,46.00773],[10.5016,46.01596],[10.59325,46.11529],[10.60896,46.35583],[10.65634,46.38688],[10.64686,46.46037],[10.4147,46.57285],[10.32705,46.56797],[10.25124,46.65422],[10.07357,46.62494],[10.02382,46.53212],[10.02855,46.43588],[10.07357,46.39832],[10.12095,46.39669],[10.0783,46.32802],[10.14464,46.26582],[10.10436,46.24781],[9.97407,46.40812],[9.71111,46.3689],[9.68742,46.32312],[9.61872,46.30675],[9.55712,46.32475],[9.50264,46.39015],[9.47895,46.5256],[9.25626,46.51582],[9.22546,46.44078],[9.27284,46.34438],[9.17098,46.19044],[9.04305,46.12808],[9.062,46.09195],[8.97435,46.04593],[8.98856,46.00152],[8.93882,45.97354],[9.04068,45.8961],[9.01936,45.84827],[8.84879,46.0081],[8.89854,46.07059],[8.8251,46.11823],[8.70902,46.11659],[8.67823,46.07552],[8.7185,46.01468],[8.55504,45.90434],[8.59768,45.83836],[8.53372,45.79378],[8.6877,45.49235],[8.78009,45.41591],[8.68533,45.37931],[8.71139,45.34103],[8.69481,45.32104],[8.62848,45.37765],[8.5124,45.35768],[8.4816,45.28938]]],"terms_url":"https://www.dati.gov.it/content/italian-open-data-license-v20","terms_text":"Regione Lombardia - Infrastruttura per l'informazione territoriale"},{"id":"Lombardia-Italy-CTR-DBT","name":"Lombardia - Italy (CTR DBT)","type":"wms","template":"https://www.cartografia.servizirl.it/arcgis/services/wms/ctr_wms/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Sfondo%20C.T.R.%2010000&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[8.4816,45.28938],[8.63085,45.01372],[8.78009,44.98189],[8.86775,45.02712],[9.07148,44.80063],[9.14966,44.79055],[9.19467,44.67106],[9.31549,44.65758],[9.36997,44.698],[9.37945,44.82752],[9.33207,44.91483],[9.41025,45.03716],[9.78692,45.04386],[9.78692,45.00032],[9.93853,45.002],[9.93379,45.08903],[10.00013,45.09071],[10.00013,44.99697],[10.20149,45.002],[10.20149,44.95004],[10.40523,44.9534],[10.40523,44.90476],[10.49288,44.90308],[10.49288,44.8628],[10.6516,44.85776],[10.64686,44.90308],[11.35282,44.89469],[11.35519,44.93663],[11.45706,44.93328],[11.44758,44.97351],[11.3623,45.00032],[11.35282,45.09238],[11.25806,45.09572],[11.25806,45.13752],[11.16094,45.14253],[11.16094,45.18262],[11.05196,45.19097],[11.05196,45.23436],[10.9572,45.23269],[10.9572,45.28605],[10.8577,45.28438],[10.85534,45.32271],[10.74636,45.32937],[10.75347,45.47408],[10.64686,45.48073],[10.60301,45.51074],[10.57636,45.47379],[10.53549,45.50036],[10.59116,45.53148],[10.61666,45.61304],[10.87429,45.84001],[10.82217,45.85982],[10.67529,45.85817],[10.57342,45.8103],[10.58624,46.00773],[10.5016,46.01596],[10.59325,46.11529],[10.60896,46.35583],[10.65634,46.38688],[10.64686,46.46037],[10.4147,46.57285],[10.32705,46.56797],[10.25124,46.65422],[10.07357,46.62494],[10.02382,46.53212],[10.02855,46.43588],[10.07357,46.39832],[10.12095,46.39669],[10.0783,46.32802],[10.14464,46.26582],[10.10436,46.24781],[9.97407,46.40812],[9.71111,46.3689],[9.68742,46.32312],[9.61872,46.30675],[9.55712,46.32475],[9.50264,46.39015],[9.47895,46.5256],[9.25626,46.51582],[9.22546,46.44078],[9.27284,46.34438],[9.17098,46.19044],[9.04305,46.12808],[9.062,46.09195],[8.97435,46.04593],[8.98856,46.00152],[8.93882,45.97354],[9.04068,45.8961],[9.01936,45.84827],[8.84879,46.0081],[8.89854,46.07059],[8.8251,46.11823],[8.70902,46.11659],[8.67823,46.07552],[8.7185,46.01468],[8.55504,45.90434],[8.59768,45.83836],[8.53372,45.79378],[8.6877,45.49235],[8.78009,45.41591],[8.68533,45.37931],[8.71139,45.34103],[8.69481,45.32104],[8.62848,45.37765],[8.5124,45.35768],[8.4816,45.28938]]],"terms_url":"https://www.dati.gov.it/content/italian-open-data-license-v20","terms_text":"CTR DBT 10000 Regione Lombardia"},{"id":"londrina2011","name":"Londrina Ortofoto 2011","type":"tms","template":"https://siglon.londrina.pr.gov.br/arcgis/rest/services/Imagens/Ortofotos_2011_Paranacidade/MapServer/WMTS/tile/1.0.0/Imagens_Ortofotos_2011_Paranacidade/default/GoogleMapsCompatible/{zoom}/{y}/{x}","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[-51.10903,-23.39275],[-51.11015,-23.39112],[-51.11198,-23.3896],[-51.11358,-23.38977],[-51.121,-23.38593],[-51.12225,-23.38511],[-51.12483,-23.3835],[-51.12538,-23.38187],[-51.12482,-23.3777],[-51.12446,-23.37505],[-51.12437,-23.3723],[-51.12244,-23.37033],[-51.12302,-23.36643],[-51.12856,-23.36548],[-51.12832,-23.35884],[-51.12477,-23.35476],[-51.12703,-23.35091],[-51.12412,-23.3468],[-51.12025,-23.34781],[-51.11765,-23.33969],[-51.11265,-23.34129],[-51.1094,-23.33489],[-51.10756,-23.33409],[-51.10486,-23.33398],[-51.10253,-23.33419],[-51.09987,-23.33102],[-51.09801,-23.32936],[-51.09999,-23.32831],[-51.10323,-23.32532],[-51.10473,-23.32319],[-51.10466,-23.32129],[-51.10515,-23.31844],[-51.10636,-23.31575],[-51.10661,-23.31467],[-51.1105,-23.31167],[-51.11158,-23.30842],[-51.0995,-23.30947],[-51.0974,-23.30863],[-51.09512,-23.30745],[-51.09202,-23.30494],[-51.09036,-23.30371],[-51.09205,-23.29875],[-51.09269,-23.2975],[-51.09408,-23.29295],[-51.10074,-23.29332],[-51.10102,-23.28871],[-51.10068,-23.28837],[-51.10085,-23.28778],[-51.09938,-23.28664],[-51.09632,-23.27791],[-51.10285,-23.27302],[-51.10836,-23.27034],[-51.1131,-23.2684],[-51.1316,-23.26534],[-51.13188,-23.26201],[-51.13173,-23.25506],[-51.1329,-23.25468],[-51.13296,-23.25075],[-51.13474,-23.25127],[-51.13534,-23.25133],[-51.13517,-23.24359],[-51.13535,-23.24118],[-51.13752,-23.24219],[-51.13885,-23.2435],[-51.14109,-23.24521],[-51.14717,-23.24318],[-51.14761,-23.23828],[-51.14908,-23.23588],[-51.14977,-23.23681],[-51.15139,-23.23854],[-51.15289,-23.23884],[-51.15384,-23.23895],[-51.1582,-23.23814],[-51.16045,-23.23816],[-51.16035,-23.24658],[-51.15912,-23.24783],[-51.16131,-23.24777],[-51.16659,-23.24594],[-51.17193,-23.24582],[-51.17205,-23.24956],[-51.17424,-23.2484],[-51.17514,-23.24932],[-51.17686,-23.24816],[-51.17947,-23.25169],[-51.18135,-23.25381],[-51.18274,-23.25363],[-51.18379,-23.25326],[-51.18496,-23.2533],[-51.18627,-23.25215],[-51.18665,-23.24748],[-51.19118,-23.24914],[-51.19142,-23.25286],[-51.19369,-23.25278],[-51.19384,-23.26074],[-51.20097,-23.26055],[-51.20127,-23.2426],[-51.20994,-23.24278],[-51.2109,-23.26988],[-51.21969,-23.27222],[-51.22597,-23.27453],[-51.22934,-23.2786],[-51.23452,-23.2816],[-51.23498,-23.28325],[-51.23507,-23.28544],[-51.23371,-23.2859],[-51.23216,-23.28802],[-51.2287,-23.29229],[-51.2274,-23.2946],[-51.22679,-23.29548],[-51.2256,-23.29657],[-51.22393,-23.29721],[-51.22048,-23.30073],[-51.21864,-23.3013],[-51.21668,-23.30212],[-51.21424,-23.30441],[-51.21097,-23.30697],[-51.22328,-23.3183],[-51.22439,-23.31459],[-51.22521,-23.31289],[-51.22512,-23.31258],[-51.22521,-23.31251],[-51.22553,-23.31253],[-51.22595,-23.31239],[-51.22617,-23.31183],[-51.22936,-23.31489],[-51.22802,-23.31661],[-51.22789,-23.31902],[-51.22767,-23.32023],[-51.22723,-23.32151],[-51.22739,-23.32223],[-51.22725,-23.32285],[-51.23033,-23.32558],[-51.23046,-23.32671],[-51.22954,-23.32789],[-51.22916,-23.3305],[-51.22929,-23.33178],[-51.22681,-23.33447],[-51.22602,-23.33657],[-51.22473,-23.33839],[-51.2221,-23.34023],[-51.22257,-23.34196],[-51.22381,-23.34339],[-51.22384,-23.34531],[-51.22441,-23.347],[-51.22454,-23.34829],[-51.22404,-23.34968],[-51.22351,-23.35011],[-51.22382,-23.35077],[-51.22305,-23.35174],[-51.2226,-23.35296],[-51.22587,-23.35481],[-51.2265,-23.36706],[-51.22354,-23.36915],[-51.22367,-23.37968],[-51.22038,-23.38163],[-51.21647,-23.3817],[-51.21416,-23.37995],[-51.20928,-23.37395],[-51.20738,-23.36814],[-51.20629,-23.36723],[-51.20472,-23.36627],[-51.19823,-23.36668],[-51.19297,-23.36651],[-51.18986,-23.36544],[-51.18806,-23.36464],[-51.18718,-23.36453],[-51.1858,-23.36374],[-51.18304,-23.36359],[-51.18071,-23.36376],[-51.17907,-23.36158],[-51.17764,-23.35836],[-51.16684,-23.35626],[-51.16614,-23.35854],[-51.16476,-23.36039],[-51.16077,-23.35922],[-51.15983,-23.3666],[-51.16204,-23.36861],[-51.16276,-23.37416],[-51.15845,-23.3758],[-51.15505,-23.37631],[-51.15396,-23.37903],[-51.15299,-23.38105],[-51.15119,-23.38208],[-51.14917,-23.38251],[-51.14722,-23.38216],[-51.14518,-23.38259],[-51.1441,-23.38376],[-51.14512,-23.38808],[-51.1418,-23.3894],[-51.14031,-23.3888],[-51.14068,-23.39161],[-51.14127,-23.39354],[-51.14094,-23.39443],[-51.14046,-23.39536],[-51.13939,-23.3951],[-51.13739,-23.39315],[-51.13609,-23.3898],[-51.13429,-23.38976],[-51.13216,-23.39007],[-51.13172,-23.39286],[-51.12259,-23.38864],[-51.12228,-23.39166],[-51.11883,-23.39317],[-51.11568,-23.39335],[-51.10903,-23.39275]],[[-51.13829,-23.41601],[-51.13331,-23.41867],[-51.13209,-23.41644],[-51.13002,-23.41829],[-51.12869,-23.41901],[-51.12824,-23.42103],[-51.12696,-23.42186],[-51.12533,-23.42269],[-51.12445,-23.42097],[-51.12151,-23.42411],[-51.12063,-23.42327],[-51.11971,-23.42312],[-51.11977,-23.42157],[-51.1188,-23.42155],[-51.11643,-23.42084],[-51.11943,-23.41917],[-51.11787,-23.41678],[-51.11655,-23.41731],[-51.1157,-23.4157],[-51.11512,-23.41309],[-51.11908,-23.41111],[-51.1196,-23.4117],[-51.12052,-23.41489],[-51.12148,-23.41714],[-51.12309,-23.41863],[-51.12755,-23.41654],[-51.12803,-23.4174],[-51.1312,-23.41557],[-51.1308,-23.41477],[-51.13279,-23.41264],[-51.13522,-23.41106],[-51.13586,-23.41096],[-51.13682,-23.41119],[-51.13721,-23.41158],[-51.1373,-23.41324],[-51.13743,-23.41471],[-51.13829,-23.41601]],[[-51.18929,-23.61469],[-51.18869,-23.61385],[-51.18818,-23.61339],[-51.18731,-23.61302],[-51.18629,-23.61314],[-51.18402,-23.61396],[-51.18349,-23.61397],[-51.18183,-23.61284],[-51.1814,-23.61344],[-51.18063,-23.61314],[-51.18001,-23.61409],[-51.17866,-23.61329],[-51.18065,-23.6106],[-51.17972,-23.61018],[-51.18062,-23.60849],[-51.18212,-23.6085],[-51.18261,-23.60775],[-51.1832,-23.60804],[-51.18415,-23.60628],[-51.18511,-23.60666],[-51.18649,-23.6047],[-51.18902,-23.6061],[-51.18821,-23.60742],[-51.18919,-23.60802],[-51.1889,-23.60953],[-51.18962,-23.60993],[-51.19119,-23.61119],[-51.19015,-23.61245],[-51.19054,-23.61276],[-51.19029,-23.61378],[-51.18929,-23.61469]],[[-51.08006,-23.52984],[-51.07962,-23.52205],[-51.08468,-23.52194],[-51.08582,-23.52404],[-51.08589,-23.52704],[-51.08579,-23.52777],[-51.0853,-23.52806],[-51.08514,-23.52857],[-51.08512,-23.52982],[-51.08471,-23.53024],[-51.08343,-23.53024],[-51.0833,-23.52978],[-51.08006,-23.52984]]],"terms_url":"http://siglon.londrina.pr.gov.br","terms_text":"Prefeitura do Londrinas, PR"},{"id":"Arenda_OAM","name":"Lupang Arenda, Taytay Drone Imagery","type":"tms","template":"https://tiles.openaerialmap.org/5d25d7bf161a790005c03e6e/0/5d25d7bf161a790005c03e6f/{zoom}/{x}/{y}.png","zoomExtent":[14,22],"polygon":[[[121.11444,14.5407],[121.11236,14.54131],[121.10965,14.54186],[121.10884,14.54093],[121.10824,14.53808],[121.10841,14.53675],[121.1079,14.53542],[121.10779,14.53295],[121.10792,14.5312],[121.1089,14.53069],[121.11431,14.53035],[121.1153,14.53085],[121.11541,14.53166],[121.11528,14.53388],[121.1145,14.53395],[121.1138,14.53366],[121.1135,14.5343],[121.11435,14.53631],[121.11457,14.53796],[121.11472,14.53901],[121.11459,14.53985],[121.11444,14.5407]]],"best":true},{"id":"orthophoto_lyon_2012","name":"Lyon Orthophoto 2012-03 10cm","type":"wms","template":"https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2012_vue_ensemble_20cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-03-01T00:00:00.000Z","startDate":"2012-03-01T00:00:00.000Z","polygon":[[[4.69049,45.54652],[4.83131,45.54652],[4.83131,45.57131],[4.88344,45.57131],[4.88344,45.59745],[5.16622,45.59745],[5.16622,45.74533],[5.10793,45.74533],[5.10793,45.88145],[4.90698,45.88145],[4.90698,45.92107],[4.84377,45.92107],[4.84377,45.94011],[4.71543,45.94011],[4.71543,45.87018],[4.67458,45.87018],[4.67458,45.7178],[4.69567,45.7178],[4.69049,45.54652]]],"terms_url":"https://data.grandlyon.com/jeux-de-donnees/orthophotographie-2012-metropole-lyon/info","terms_text":"Grand Lyon Smart Data DSIT","description":"Orthophotographie 2012 du Grand Lyon"},{"id":"orthophoto_lyon","name":"Lyon Orthophoto 2015 (8cm)","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/lyon/{zoom}/{x}/{y}","endDate":"2015-05-01T00:00:00.000Z","startDate":"2015-05-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[4.66489,45.54688],[4.88253,45.54348],[4.88435,45.59745],[5.16623,45.59242],[5.17217,45.74532],[5.10793,45.74653],[5.11305,45.88145],[4.90698,45.88508],[4.90822,45.92106],[4.84377,45.92212],[4.84497,45.9581],[4.67729,45.96069],[4.66489,45.54688]]],"terms_url":"https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2015-metropole-lyon-format-ecw/info","terms_text":"Métropole de Lyon DINSI"},{"id":"orthophoto_lyon_2018","name":"Lyon Orthophoto 2018 (8cm)","type":"wms","template":"https://download.data.grandlyon.com/wms/grandlyon?LAYERS=Ortho2018_Dalle_unique_8cm_CC46&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-04-20T00:00:00.000Z","startDate":"2018-04-17T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[4.67728,45.9607],[4.66438,45.54676],[4.88308,45.54291],[4.8848,45.59698],[5.16666,45.59194],[5.17284,45.74596],[5.10796,45.74692],[5.11311,45.8814],[4.90677,45.88499],[4.90849,45.9213],[4.84394,45.92202],[4.84531,45.95831],[4.67728,45.9607]]],"terms_url":"https://data.beta.grandlyon.com/fr/jeux-de-donnees/orthophotographie-2018-metropole-lyon-format-ecw/info","terms_text":"Métropole de Lyon","best":true,"description":"Orthophotographie 2018 de la Métropole de Lyon"},{"id":"MainRoadsWA_Road_Hierarchy","name":"Main Roads WA Road Hierarchy","type":"wms","template":"https://services.slip.wa.gov.au/public/services/SLIP_Public_Services/Transport/MapServer/WMSServer?LAYERS=8&TRANSPARENT=TRUE&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&FORMAT=image%2Fpng&SRS={proj}&BBOX={bbox}&WIDTH={width}&HEIGHT={height}","projection":"EPSG:3857","zoomExtent":[0,21],"polygon":[[[129.00009,-31.68764],[128.99872,-14.58225],[127.08984,-12.29707],[124.76074,-12.98315],[121.24512,-15.70766],[119.0918,-17.60214],[115.53223,-18.85431],[112.41211,-20.46819],[111.24756,-22.83695],[111.00586,-25.62172],[111.64307,-29.66896],[111.68701,-32.3614],[112.14844,-34.47034],[113.35693,-36.10238],[116.98242,-36.70366],[119.44336,-36.94989],[122.27783,-36.61553],[125.99121,-35.40696],[127.59521,-34.57895],[128.86963,-33.59632],[129.00009,-31.68764]]],"terms_url":"https://catalogue.data.wa.gov.au/dataset/clss-road-hierarchy","terms_text":"Main Roads Western Australia","overlay":true},{"id":"mainzlatestaerialimagery","name":"Mainz latest aerial imagery","type":"wms","template":"https://geodaten.mainz.de/map/service?LAYERS=Orthophoto&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[8.12577,49.9882],[8.12851,49.9722],[8.12714,49.95242],[8.16802,49.9492],[8.17177,49.92458],[8.18318,49.92246],[8.18482,49.89189],[8.19168,49.88438],[8.23837,49.88438],[8.24357,49.88821],[8.26121,49.89058],[8.26867,49.88835],[8.32283,49.88835],[8.3267,49.89722],[8.35167,49.89763],[8.35367,49.90596],[8.35991,49.90868],[8.35991,49.97892],[8.35183,49.98183],[8.35167,49.99527],[8.33946,49.9985],[8.33793,50.00454],[8.32546,50.00754],[8.3242,50.01603],[8.31222,50.01618],[8.30909,50.02398],[8.29593,50.02521],[8.29467,50.04077],[8.29124,50.0421],[8.26929,50.04217],[8.26507,50.04696],[8.15392,50.04696],[8.15222,50.03339],[8.14087,50.03105],[8.13797,50.02457],[8.12783,50.02266],[8.12577,49.9882]]],"terms_url":"https://www.mainz.de/vv/oe/100140100000035141.php#tab-infos","terms_text":"Vermessung und Geoinformation Mainz","icon":"https://www.mainz.de/configuration.inc.php.media/27432/Logo-72px.png"},{"id":"Mapbox","name":"Mapbox Satellite","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/v4/mapbox.satellite/{zoom}/{x}/{y}@2x.jpg?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJja2w5YWt5bnYwNjZmMnFwZjhtbHk1MnA1In0.eq2aumBK6JuRoIuBMm6Gew","tileSize":512,"zoomExtent":[0,22],"terms_url":"https://www.mapbox.com/about/maps","terms_text":"Terms & Feedback","default":true,"description":"Satellite and aerial imagery.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/MapBoxSatellite.png"},{"id":"Maps4BW-LGL_BW","name":"Maps4BW (LGL-BW, www.lgl-bw.de)","type":"wms","template":"https://owsproxy.lgl-bw.de/owsproxy/ows/WMS_Maps4BW?LAYERS=webatlasde&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[9.06954,49.57679],[9.10577,49.57952],[9.16079,49.58263],[9.24212,49.58402],[9.27192,49.63515],[9.30454,49.65561],[9.36753,49.65893],[9.38253,49.64341],[9.41191,49.66033],[9.39602,49.67143],[9.41828,49.69706],[9.40378,49.71957],[9.37769,49.70357],[9.35828,49.70334],[9.29438,49.73958],[9.31467,49.76859],[9.42435,49.79099],[9.50417,49.78962],[9.51808,49.78214],[9.65623,49.79286],[9.65317,49.73944],[9.63435,49.70076],[9.67054,49.69515],[9.67721,49.71846],[9.71079,49.72918],[9.8014,49.73429],[9.83728,49.70237],[9.87656,49.61362],[9.83362,49.55607],[9.84954,49.54793],[9.87463,49.5836],[9.91419,49.58955],[9.93066,49.56097],[9.92482,49.48951],[10.01787,49.48673],[10.03352,49.52978],[10.06372,49.55129],[10.09052,49.54218],[10.12792,49.51192],[10.11027,49.49272],[10.16753,49.38589],[10.12627,49.3809],[10.14385,49.32772],[10.16061,49.27043],[10.13569,49.26189],[10.14311,49.20387],[10.25161,49.15031],[10.26279,49.12959],[10.26869,49.05202],[10.36527,49.02557],[10.45894,48.93581],[10.46208,48.83947],[10.42886,48.74973],[10.46648,48.73627],[10.49761,48.68581],[10.45007,48.66277],[10.3553,48.65068],[10.32297,48.68241],[10.26028,48.67842],[10.32542,48.60763],[10.31448,48.52323],[10.17973,48.45977],[10.12892,48.45301],[10.10938,48.47445],[10.06355,48.45381],[10.03918,48.45125],[10.04492,48.43158],[10.0152,48.40323],[9.98709,48.38565],[9.97328,48.37944],[9.97549,48.36558],[9.99071,48.3734],[10.00265,48.3632],[9.99992,48.35572],[10.06698,48.28172],[10.08111,48.2253],[10.11306,48.12632],[10.13966,48.11307],[10.14695,48.07455],[10.13763,48.01938],[10.11725,47.9755],[10.11359,47.93422],[10.10709,47.86711],[10.14174,47.80956],[10.0732,47.78686],[10.11825,47.76126],[10.14213,47.70165],[10.13262,47.67678],[10.07445,47.63472],[10.06303,47.66923],[10.00359,47.67526],[9.95808,47.64376],[9.84481,47.67533],[9.83488,47.66042],[9.74926,47.60206],[9.70817,47.60007],[9.65788,47.60599],[9.64742,47.58931],[9.61389,47.57809],[9.56602,47.53274],[9.51199,47.53246],[9.25717,47.65752],[9.18684,47.65697],[9.17591,47.65379],[9.17028,47.65474],[9.15555,47.666],[9.1494,47.66713],[9.13947,47.66367],[9.02005,47.68616],[8.94127,47.65569],[8.89825,47.64821],[8.88263,47.65327],[8.87474,47.6545],[8.87235,47.66971],[8.84949,47.68089],[8.84993,47.70233],[8.81816,47.71242],[8.80108,47.72811],[8.77231,47.71606],[8.81295,47.6959],[8.79373,47.67216],[8.7533,47.68997],[8.72575,47.6917],[8.71002,47.68829],[8.68937,47.69318],[8.67046,47.68235],[8.65783,47.68883],[8.66161,47.71454],[8.70596,47.71584],[8.70932,47.73275],[8.73033,47.75527],[8.72003,47.76273],[8.68871,47.75314],[8.67898,47.78306],[8.64981,47.79435],[8.65592,47.76948],[8.63132,47.75749],[8.61918,47.76216],[8.61351,47.78451],[8.61686,47.79705],[8.568,47.79977],[8.57611,47.79015],[8.57847,47.78102],[8.56315,47.77654],[8.48889,47.76458],[8.45742,47.74126],[8.4623,47.72909],[8.44929,47.71663],[8.41471,47.69991],[8.4273,47.68562],[8.41061,47.6743],[8.46839,47.6568],[8.52474,47.64677],[8.5269,47.66373],[8.56441,47.67261],[8.57853,47.66373],[8.60454,47.6751],[8.63333,47.65212],[8.62386,47.63922],[8.60395,47.63193],[8.61281,47.61327],[8.57951,47.59306],[8.5602,47.59867],[8.56765,47.61442],[8.53394,47.62984],[8.51208,47.61641],[8.46581,47.60137],[8.46631,47.58666],[8.48985,47.59139],[8.5,47.58062],[8.43414,47.5629],[8.39882,47.57559],[8.38525,47.56408],[8.32701,47.56893],[8.29483,47.59077],[8.2948,47.60497],[8.26293,47.60823],[8.22435,47.60446],[8.18644,47.60508],[8.16904,47.59394],[8.13615,47.58246],[8.10503,47.56795],[8.09873,47.55933],[8.08261,47.55624],[8.07095,47.56299],[8.0274,47.54931],[7.94632,47.54209],[7.90966,47.54825],[7.90676,47.5603],[7.88681,47.58765],[7.83987,47.58122],[7.79648,47.55517],[7.69208,47.53137],[7.66583,47.53403],[7.63159,47.56044],[7.63879,47.56619],[7.68607,47.57205],[7.65278,47.59418],[7.62247,47.57767],[7.60473,47.57822],[7.58771,47.59015],[7.52156,47.65161],[7.50399,47.70235],[7.52096,47.77685],[7.55712,47.84839],[7.54946,47.8792],[7.57461,47.93028],[7.61318,47.96804],[7.6119,47.9871],[7.56124,48.03836],[7.57491,48.1258],[7.59534,48.15977],[7.63305,48.19717],[7.66275,48.22473],[7.68466,48.30305],[7.76346,48.49158],[7.80046,48.5126],[7.79958,48.5878],[7.83409,48.64439],[7.91211,48.68899],[7.96723,48.75716],[8.02069,48.78879],[8.04302,48.7956],[8.08647,48.81306],[8.13644,48.89782],[8.19706,48.96021],[8.28161,48.9949],[8.29967,49.02597],[8.31243,49.05996],[8.38654,49.23497],[8.46083,49.28407],[8.48783,49.29326],[8.47577,49.3079],[8.44839,49.31693],[8.45152,49.33135],[8.46288,49.3869],[8.49407,49.40186],[8.49762,49.41583],[8.50721,49.43414],[8.49834,49.44187],[8.47977,49.44391],[8.46414,49.44151],[8.44696,49.44516],[8.43947,49.45214],[8.44407,49.46085],[8.45992,49.46498],[8.46312,49.47135],[8.4554,49.48107],[8.44184,49.49297],[8.41194,49.55852],[8.42193,49.5843],[8.44117,49.59081],[8.45482,49.59157],[8.47738,49.5874],[8.56161,49.52237],[8.61486,49.54175],[8.59165,49.59179],[8.58706,49.61156],[8.65189,49.6209],[8.69494,49.62762],[8.70105,49.59869],[8.68726,49.57096],[8.72597,49.53085],[8.78493,49.51775],[8.81467,49.53187],[8.88863,49.51091],[8.90168,49.50363],[8.90315,49.486],[8.87995,49.46561],[8.83117,49.42147],[8.80845,49.40981],[8.82075,49.39647],[8.83009,49.41316],[8.85107,49.39663],[8.90247,49.44632],[8.93863,49.48179],[8.95154,49.50562],[8.98498,49.51153],[9.03553,49.50079],[9.05731,49.532],[9.10023,49.52728],[9.11009,49.51213],[9.12424,49.51722],[9.11286,49.53337],[9.08284,49.54211],[9.06694,49.56433],[9.06954,49.57679]]],"terms_url":"https://www.lgl-bw.de/","terms_text":"Datengrundlage: LGL, www.lgl-bw.de"},{"id":"MassGIS-2019-Orthos","name":"MassGIS 2019 Orthos","type":"tms","template":"https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/USGS_Orthos_2019/MapServer/tile/{zoom}/{y}/{x}","endDate":"2019-04-25T00:00:00.000Z","startDate":"2019-03-24T00:00:00.000Z","zoomExtent":[7,20],"polygon":[[[-72.13569,42.03025],[-72.53156,42.03458],[-72.57278,42.03022],[-72.58216,42.02474],[-72.60717,42.02515],[-72.60797,42.03108],[-72.64019,42.03205],[-72.69933,42.03696],[-72.75714,42.03635],[-72.75868,42.02439],[-72.76572,42.02276],[-72.76673,42.00327],[-72.81705,41.99769],[-72.81378,42.03674],[-73.03678,42.03929],[-73.43281,42.05059],[-73.49688,42.04968],[-73.50814,42.08626],[-73.26496,42.74594],[-72.6872,42.73348],[-71.97286,42.71307],[-71.69663,42.70572],[-71.29464,42.69704],[-71.27894,42.71136],[-71.26787,42.72603],[-71.25526,42.73659],[-71.24598,42.74231],[-71.23732,42.74491],[-71.22391,42.74643],[-71.18181,42.73732],[-71.18617,42.79088],[-71.16667,42.80891],[-71.13277,42.82145],[-71.06442,42.80626],[-71.05395,42.83337],[-71.04483,42.84869],[-71.03128,42.85924],[-70.96702,42.86887],[-70.94967,42.87588],[-70.92973,42.88504],[-70.91465,42.88661],[-70.90348,42.88671],[-70.88566,42.88288],[-70.84776,42.86088],[-70.82963,42.86875],[-70.81567,42.87204],[-70.45842,42.67694],[-70.8759,42.35302],[-69.88713,42.0519],[-69.89537,41.21643],[-70.81959,41.23192],[-71.09996,41.43386],[-71.12047,41.49717],[-71.13131,41.59231],[-71.14059,41.6051],[-71.14047,41.62389],[-71.13569,41.6284],[-71.13291,41.6601],[-71.17605,41.6681],[-71.17588,41.67154],[-71.1954,41.67514],[-71.26139,41.7523],[-71.32885,41.7811],[-71.33407,41.79455],[-71.34156,41.79817],[-71.33914,41.80842],[-71.3472,41.8231],[-71.3449,41.828],[-71.3352,41.8355],[-71.3422,41.8448],[-71.33392,41.86229],[-71.34086,41.87872],[-71.33865,41.89865],[-71.38174,41.8932],[-71.38127,42.01885],[-71.49744,42.01725],[-71.52888,42.01499],[-71.79925,42.00807],[-71.80067,42.02351],[-72.0635,42.02735],[-72.13569,42.03025]]],"terms_url":"https://docs.digital.mass.gov/dataset/massgis-data-usgs-color-ortho-imagery-2019","terms_text":"MassGIS 2019 Orthos, 2019-04","best":true},{"id":"MassGIS-L3-Parcels","name":"MassGIS L3 Parcels","type":"tms","template":"https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/MassGIS_Level3_Parcels/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[15,20],"polygon":[[[-72.13569,42.03025],[-72.53156,42.03458],[-72.57278,42.03022],[-72.58216,42.02474],[-72.60717,42.02515],[-72.60797,42.03108],[-72.64019,42.03205],[-72.69933,42.03696],[-72.75714,42.03635],[-72.75868,42.02439],[-72.76572,42.02276],[-72.76673,42.00327],[-72.81705,41.99769],[-72.81378,42.03674],[-73.03678,42.03929],[-73.43281,42.05059],[-73.49688,42.04968],[-73.50814,42.08626],[-73.26496,42.74594],[-72.6872,42.73348],[-71.97286,42.71307],[-71.69663,42.70572],[-71.29464,42.69704],[-71.27894,42.71136],[-71.26787,42.72603],[-71.25526,42.73659],[-71.24598,42.74231],[-71.23732,42.74491],[-71.22391,42.74643],[-71.18181,42.73732],[-71.18617,42.79088],[-71.16667,42.80891],[-71.13277,42.82145],[-71.06442,42.80626],[-71.05395,42.83337],[-71.04483,42.84869],[-71.03128,42.85924],[-70.96702,42.86887],[-70.94967,42.87588],[-70.92973,42.88504],[-70.91465,42.88661],[-70.90348,42.88671],[-70.88566,42.88288],[-70.84776,42.86088],[-70.82963,42.86875],[-70.81567,42.87204],[-70.45842,42.67694],[-70.8759,42.35302],[-69.88713,42.0519],[-69.89537,41.21643],[-70.81959,41.23192],[-71.09996,41.43386],[-71.12047,41.49717],[-71.13131,41.59231],[-71.14059,41.6051],[-71.14047,41.62389],[-71.13569,41.6284],[-71.13291,41.6601],[-71.17605,41.6681],[-71.17588,41.67154],[-71.1954,41.67514],[-71.26139,41.7523],[-71.32885,41.7811],[-71.33407,41.79455],[-71.34156,41.79817],[-71.33914,41.80842],[-71.3472,41.8231],[-71.3449,41.828],[-71.3352,41.8355],[-71.3422,41.8448],[-71.33392,41.86229],[-71.34086,41.87872],[-71.33865,41.89865],[-71.38174,41.8932],[-71.38127,42.01885],[-71.49744,42.01725],[-71.52888,42.01499],[-71.79925,42.00807],[-71.80067,42.02351],[-72.0635,42.02735],[-72.13569,42.03025]]],"terms_url":"https://docs.digital.mass.gov/dataset/massgis-data-standardized-assessors-parcels","terms_text":"MassGIS L3 Parcels","overlay":true},{"id":"MassGIS-LIDAR-Shaded-Relief","name":"MassGIS LIDAR Shaded Relief","type":"tms","template":"https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/Shaded_Relief_LiDAR/MapServer/tile/{zoom}/{y}/{x}","endDate":"2015-12-31T00:00:00.000Z","startDate":"2010-12-02T00:00:00.000Z","zoomExtent":[6,19],"polygon":[[[-72.13569,42.03025],[-72.53156,42.03458],[-72.57278,42.03022],[-72.58216,42.02474],[-72.60717,42.02515],[-72.60797,42.03108],[-72.64019,42.03205],[-72.69933,42.03696],[-72.75714,42.03635],[-72.75868,42.02439],[-72.76572,42.02276],[-72.76673,42.00327],[-72.81705,41.99769],[-72.81378,42.03674],[-73.03678,42.03929],[-73.43281,42.05059],[-73.49688,42.04968],[-73.50814,42.08626],[-73.26496,42.74594],[-72.6872,42.73348],[-71.97286,42.71307],[-71.69663,42.70572],[-71.29464,42.69704],[-71.27894,42.71136],[-71.26787,42.72603],[-71.25526,42.73659],[-71.24598,42.74231],[-71.23732,42.74491],[-71.22391,42.74643],[-71.18181,42.73732],[-71.18617,42.79088],[-71.16667,42.80891],[-71.13277,42.82145],[-71.06442,42.80626],[-71.05395,42.83337],[-71.04483,42.84869],[-71.03128,42.85924],[-70.96702,42.86887],[-70.94967,42.87588],[-70.92973,42.88504],[-70.91465,42.88661],[-70.90348,42.88671],[-70.88566,42.88288],[-70.84776,42.86088],[-70.82963,42.86875],[-70.81567,42.87204],[-70.45842,42.67694],[-70.8759,42.35302],[-69.88713,42.0519],[-69.89537,41.21643],[-70.81959,41.23192],[-71.09996,41.43386],[-71.12047,41.49717],[-71.13131,41.59231],[-71.14059,41.6051],[-71.14047,41.62389],[-71.13569,41.6284],[-71.13291,41.6601],[-71.17605,41.6681],[-71.17588,41.67154],[-71.1954,41.67514],[-71.26139,41.7523],[-71.32885,41.7811],[-71.33407,41.79455],[-71.34156,41.79817],[-71.33914,41.80842],[-71.3472,41.8231],[-71.3449,41.828],[-71.3352,41.8355],[-71.3422,41.8448],[-71.33392,41.86229],[-71.34086,41.87872],[-71.33865,41.89865],[-71.38174,41.8932],[-71.38127,42.01885],[-71.49744,42.01725],[-71.52888,42.01499],[-71.79925,42.00807],[-71.80067,42.02351],[-72.0635,42.02735],[-72.13569,42.03025]]],"terms_url":"https://docs.digital.mass.gov/dataset/massgis-data-lidar-terrain-data","terms_text":"MassGIS LIDAR"},{"id":"Maxar_19-20_Australian_Bushfires_PreEvent","name":"Maxar 2019-2020 Australian Bushfires Pre-event","type":"tms","template":"https://cogeoxyz.b-cdn.net/6b6f479fbacd9a42e9e38bc5c0c6889f009beae13b07742ec4a1648f/{zoom}/{x}/{y}.jpg","endDate":"2019-10-18T00:00:00.000Z","startDate":"2018-01-20T00:00:00.000Z","zoomExtent":[10,19],"polygon":[[[149.88647,-32.97641],[149.88785,-34.04583],[150.08835,-34.02421],[150.09264,-34.66569],[150.06758,-34.66604],[150.06775,-34.67733],[149.91669,-34.67952],[149.91806,-34.80365],[150.09247,-34.80478],[150.09796,-34.976],[149.44977,-34.9625],[149.44565,-35.46514],[149.20807,-35.48527],[149.2012,-35.96689],[148.98834,-35.98467],[148.99246,-37.02229],[149.96338,-37.02996],[150.53192,-36.02911],[150.78735,-35.29719],[151.37237,-33.75403],[151.35864,-31.96847],[150.35614,-31.9475],[150.35339,-32.45415],[150.04028,-32.4472],[150.04852,-32.96258],[149.88647,-32.97641]]],"terms_url":"https://www.digitalglobe.com/ecosystem/open-data/australia-wildfires","terms_text":"©2020 DigitalGlobe"},{"id":"Maxar-Premium","name":"Maxar Premium Imagery (Beta)","type":"tms","template":"7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f041cc9f8df06b0345600376663e7dc1cdbc7df16876d8b5d006ed5782e6af4bfe2ff5a292","terms_url":"https://wiki.openstreetmap.org/wiki/DigitalGlobe","terms_text":"Terms & Feedback","default":true,"description":"Maxar Premium is a mosaic composed of Maxar basemap with select regions filled with +Vivid or custom area of interest imagery, 50cm resolution or better, and refreshed more frequently with ongoing updates.","encrypted":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png"},{"id":"Maxar-Standard","name":"Maxar Standard Imagery (Beta)","type":"tms","template":"7586487389962e3f6e31ab2ed8ca321f2f3fe2cf87f1dedce8fc918b4692efd86fcd816ab8a35303effb1be9abe39b1cce3fe6db2c740044364ae68560822c88373d2c784325baf4e1fa007c6dbedab4cea3fa0dd86ee0ae4feeef032d33dcac28e4b16c90d55a42087c6b66526423ea1b4cc7e63c613940eb1c60f48270060bf41c5fcb6a628985ebe6801e9e71f010c8c9d7fb6b534560012461377dc1cdb672f16827dfe0d005bf5685b7ac4ea97cf5f795","terms_url":"https://wiki.openstreetmap.org/wiki/DigitalGlobe","terms_text":"Terms & Feedback","default":true,"description":"Maxar Standard is a curated set of imagery covering 86% of the earth’s landmass, with 30-60cm resolution where available, backfilled by Landsat. Average age is 2.31 years, with some areas updated 2x per year.","encrypted":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/world/Maxar.png"},{"id":"geodata.md.gov-MD_SixInchImagery","name":"MD Latest 6 Inch Aerial Imagery","type":"wms","template":"https://geodata.md.gov/imap/services/Imagery/MD_SixInchImagery/MapServer/WmsServer?LAYERS=MD_SixInchImagery&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[-76.23413,37.92037],[-76.59805,38.15832],[-76.94,38.27053],[-77.03819,38.41379],[-77.23526,38.33627],[-77.31216,38.41056],[-77.26273,38.56642],[-77.043,38.71338],[-77.04987,38.7937],[-76.92627,38.8925],[-77.04094,38.9845],[-77.12162,38.92523],[-77.15012,38.95514],[-77.25243,38.97543],[-77.25929,39.02425],[-77.34581,39.05492],[-77.46185,39.07038],[-77.53738,39.13965],[-77.47421,39.22481],[-77.57275,39.30428],[-77.72347,39.32899],[-77.77702,39.46323],[-77.86148,39.51622],[-77.84088,39.60886],[-77.95624,39.59299],[-78.16635,39.69556],[-78.27003,39.62156],[-78.3387,39.64007],[-78.46641,39.52364],[-78.6628,39.54006],[-78.79875,39.60622],[-78.9814,39.4468],[-79.06723,39.47649],[-79.48505,39.19954],[-79.48557,39.72158],[-75.78836,39.72181],[-75.69099,38.46058],[-75.04924,38.45816],[-75.04984,38.40222],[-75.08151,38.32321],[-75.09773,38.30907],[-75.187,38.09755],[-75.23798,38.0224],[-75.61821,37.98967],[-75.86369,37.90953],[-76.23413,37.92037]]],"terms_url":"http://imap.maryland.gov/Pages/imagery-products.aspx","terms_text":"DoIT, MD iMap, MDP","description":"Six Inch resolution aerial imagery for the State of Maryland"},{"id":"geodata.md.gov-MD_ThreeInchImagery","name":"MD Three Inch Aerial Imagery","type":"wms","template":"https://geodata.md.gov/imap/services/Imagery/MD_ThreeInchImagery/MapServer/WmsServer?LAYERS=MD_ThreeInchImagery&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[8,20],"polygon":[[[-76.46299,38.9808],[-76.46326,38.94779],[-76.49499,38.9369],[-76.51617,38.93697],[-76.54763,38.9591],[-76.54745,38.98667],[-76.51559,39.00306],[-76.4839,39.00292],[-76.46299,38.9808]],[[-76.09548,38.84133],[-76.0428,38.8409],[-76.04289,38.8298],[-76.03229,38.8297],[-76.03277,38.79667],[-76.02545,38.79664],[-76.02541,38.77462],[-76.03308,38.77472],[-76.03366,38.73073],[-76.05462,38.73094],[-76.0548,38.72005],[-76.10753,38.72043],[-76.10714,38.75338],[-76.11754,38.75346],[-76.11701,38.79731],[-76.09601,38.79715],[-76.09548,38.84133]],[[-77.23397,39.16838],[-77.25516,39.14647],[-77.25496,39.11343],[-77.18093,39.05337],[-77.14907,39.0477],[-77.12798,39.04779],[-77.10683,39.05325],[-77.10688,39.0917],[-77.11775,39.10827],[-77.16011,39.12485],[-77.15975,39.15214],[-77.17048,39.16302],[-77.21284,39.17272],[-77.23397,39.16838]]],"terms_url":"http://imap.maryland.gov/Pages/imagery-products.aspx","terms_text":"DoIT, MD iMap, MDP","description":"Three Inch Resolution Imagery for the cities of Rockville, Gaithersburg and Annapolis"},{"id":"geodata.md.gov-MD_ColorBasemap","name":"MD Transportation Basemap","type":"wms","template":"https://geodata.md.gov/imap/services/Transportation/MD_ColorBasemap/MapServer/WmsServer?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=MD_ColorBasemap&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[-76.23413,37.92037],[-76.59805,38.15832],[-76.94,38.27053],[-77.03819,38.41379],[-77.23526,38.33627],[-77.31216,38.41056],[-77.26273,38.56642],[-77.043,38.71338],[-77.04987,38.7937],[-76.92627,38.8925],[-77.04094,38.9845],[-77.12162,38.92523],[-77.15012,38.95514],[-77.25243,38.97543],[-77.25929,39.02425],[-77.34581,39.05492],[-77.46185,39.07038],[-77.53738,39.13965],[-77.47421,39.22481],[-77.57275,39.30428],[-77.72347,39.32899],[-77.77702,39.46323],[-77.86148,39.51622],[-77.84088,39.60886],[-77.95624,39.59299],[-78.16635,39.69556],[-78.27003,39.62156],[-78.3387,39.64007],[-78.46641,39.52364],[-78.6628,39.54006],[-78.79875,39.60622],[-78.9814,39.4468],[-79.06723,39.47649],[-79.48505,39.19954],[-79.48557,39.72158],[-75.78836,39.72181],[-75.69099,38.46058],[-75.04924,38.45816],[-75.04984,38.40222],[-75.08151,38.32321],[-75.09773,38.30907],[-75.187,38.09755],[-75.23798,38.0224],[-75.61821,37.98967],[-75.86369,37.90953],[-76.23413,37.92037]]],"terms_url":"http://imap.maryland.gov/Pages/imagery-products.aspx","terms_text":"DoIT, MD iMap, MDP","description":"Maryland State Highway Administration road features and additional Maryland focused landmarks"},{"id":"MCGIS-County-NAIP-Imagery-2015","name":"Mesa County GIS NAIP 2015","type":"wms","template":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/MesaCounty_2015/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[3,20],"polygon":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"terms_url":"https://gis.mesacounty.us/","terms_text":"Mesa County GIS","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"},{"id":"MCGIS-County-NAIP-Imagery-2017","name":"Mesa County GIS NAIP 2017","type":"wms","template":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/NAIP_2017/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-10-24T00:00:00.000Z","startDate":"2017-08-26T00:00:00.000Z","zoomExtent":[8,13],"polygon":[[[-109.06765,39.37875],[-107.37012,39.37962],[-107.36995,39.18422],[-107.49574,39.18416],[-107.49568,39.12133],[-107.62081,39.12126],[-107.62076,39.05974],[-107.68231,39.05971],[-107.68226,38.99652],[-107.81774,38.99645],[-107.81779,39.05859],[-107.86948,39.05856],[-107.86943,38.99769],[-108.05698,38.99759],[-108.05688,38.87126],[-108.18204,38.8712],[-108.18198,38.8081],[-108.37142,38.808],[-108.3711,38.43452],[-109.06685,38.43416],[-109.06765,39.37875]]],"terms_url":"https://gis.mesacounty.us/","terms_text":"Mesa County GIS","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"},{"id":"MCGIS-County-Valleywide-Imagery-2018","name":"Mesa County GIS Valleywide 2018","type":"wms","template":"https://mcgis.mesacounty.us/image/services/Mosaic_Datasets/City_Color_2018/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[-108.93915,39.23931],[-108.86841,39.23846],[-108.86843,39.23734],[-108.81245,39.23666],[-108.81274,39.22256],[-108.79405,39.22234],[-108.79432,39.20857],[-108.70096,39.20745],[-108.70123,39.1939],[-108.60764,39.19277],[-108.60791,39.17906],[-108.58915,39.17884],[-108.58943,39.1649],[-108.53332,39.16422],[-108.53361,39.14993],[-108.51461,39.14971],[-108.51489,39.13611],[-108.44076,39.13522],[-108.44104,39.12109],[-108.42192,39.12086],[-108.42201,39.1163],[-108.3984,39.11602],[-108.39798,39.13708],[-108.32446,39.13619],[-108.32416,39.15107],[-108.30718,39.15087],[-108.3066,39.18],[-108.28866,39.17979],[-108.28807,39.20939],[-108.26868,39.20916],[-108.26957,39.16484],[-108.2864,39.16505],[-108.28699,39.13571],[-108.30312,39.13591],[-108.3038,39.10194],[-108.32335,39.10218],[-108.32328,39.10574],[-108.32914,39.10581],[-108.32943,39.09121],[-108.34736,39.09142],[-108.34764,39.07715],[-108.36637,39.07738],[-108.36666,39.06268],[-108.38569,39.06291],[-108.38599,39.04799],[-108.42216,39.04843],[-108.42245,39.03377],[-108.44051,39.03399],[-108.44137,38.99101],[-108.42193,38.99077],[-108.42252,38.96127],[-108.44162,38.9615],[-108.44133,38.97595],[-108.46034,38.97618],[-108.46006,38.99024],[-108.47877,38.99047],[-108.47848,39.00485],[-108.51515,39.0053],[-108.51519,39.00287],[-108.51825,39.00291],[-108.51821,39.00517],[-108.53414,39.00536],[-108.53397,39.0139],[-108.54342,39.01401],[-108.54336,39.01733],[-108.5455,39.01735],[-108.54548,39.01855],[-108.65864,39.01991],[-108.65778,39.06287],[-108.67867,39.06313],[-108.67837,39.07793],[-108.69699,39.07816],[-108.69671,39.09203],[-108.71557,39.09225],[-108.71529,39.10619],[-108.7388,39.10648],[-108.73853,39.12033],[-108.75744,39.12056],[-108.75686,39.14927],[-108.79422,39.14972],[-108.79393,39.16386],[-108.83224,39.16432],[-108.83196,39.17845],[-108.85061,39.17868],[-108.85033,39.19302],[-108.86938,39.19325],[-108.86906,39.20925],[-108.90237,39.20965],[-108.90208,39.22384],[-108.93946,39.22429],[-108.93915,39.23931]]],"terms_url":"https://gis.mesacounty.us/","terms_text":"Mesa County GIS","icon":"https://gis.mesacounty.us/globalassets/images/county-logos/mesa-county-logo.png"},{"id":"Metropole_Ruhr_RVR-DOP10","name":"Metropole Ruhr: Luftbilder (10 cm)","type":"wms","template":"https://geodaten.metropoleruhr.de/dop/dop?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=DOP&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[6.51691,51.81714],[6.52258,51.81469],[6.52281,51.81041],[6.52834,51.81053],[6.53991,51.80134],[6.5511,51.799],[6.56818,51.78992],[6.57476,51.79606],[6.58457,51.79369],[6.59102,51.8024],[6.60911,51.80019],[6.61081,51.79423],[6.63264,51.79981],[6.65946,51.7892],[6.66837,51.77738],[6.7138,51.78084],[6.70876,51.77131],[6.72131,51.76899],[6.7475,51.77035],[6.74862,51.77551],[6.75824,51.77656],[6.7698,51.76649],[6.77219,51.74596],[6.78862,51.74884],[6.79861,51.74217],[6.81927,51.74341],[6.81956,51.73741],[6.82683,51.72983],[6.8403,51.73694],[6.84995,51.73712],[6.85551,51.73636],[6.8586,51.72956],[6.9103,51.74592],[6.90861,51.75275],[6.91511,51.76144],[6.9157,51.7786],[6.93527,51.7738],[6.95606,51.77245],[6.97559,51.79936],[6.98794,51.80129],[6.99485,51.80141],[6.99497,51.79884],[7.02118,51.80014],[7.0244,51.7899],[7.03141,51.78745],[7.0316,51.78317],[7.03847,51.78414],[7.05392,51.77839],[7.06079,51.77936],[7.0609,51.77679],[7.07333,51.777],[7.07867,51.78137],[7.11433,51.78795],[7.13435,51.80542],[7.1616,51.81528],[7.16419,51.8196],[7.19177,51.82174],[7.2141,51.81694],[7.22121,51.81191],[7.23658,51.80785],[7.23668,51.80528],[7.24916,51.80461],[7.2535,51.79953],[7.26179,51.79966],[7.26485,51.79198],[7.26245,51.78252],[7.27229,51.77838],[7.26002,51.77391],[7.26012,51.77134],[7.2688,51.76118],[7.27577,51.75957],[7.27889,51.75019],[7.31079,51.74636],[7.3151,51.74214],[7.31519,51.73957],[7.31102,51.74036],[7.3125,51.73781],[7.32081,51.73707],[7.31169,51.72237],[7.29963,51.71277],[7.2985,51.70589],[7.31069,51.71207],[7.30825,51.70346],[7.32762,51.70202],[7.33057,51.69692],[7.34427,51.69969],[7.34599,51.69028],[7.33919,51.68761],[7.35589,51.68356],[7.35877,51.68017],[7.3781,51.67959],[7.39086,51.66947],[7.40617,51.6654],[7.41031,51.66545],[7.4101,51.67145],[7.43089,51.6683],[7.43892,51.67527],[7.44854,51.67625],[7.44933,51.69341],[7.44094,51.69673],[7.43792,51.7044],[7.42406,51.70593],[7.42245,51.71277],[7.43451,51.72321],[7.44825,51.72511],[7.46718,51.7365],[7.47273,51.73572],[7.4771,51.72892],[7.4826,51.72985],[7.47877,51.72037],[7.48435,51.71872],[7.48449,51.71444],[7.49119,51.72053],[7.49947,51.72063],[7.50214,51.72324],[7.51738,51.72172],[7.51788,51.70629],[7.53035,51.70473],[7.52922,51.69701],[7.53349,51.69277],[7.54458,51.6912],[7.5378,51.68768],[7.54477,51.6852],[7.5528,51.69301],[7.56651,51.69575],[7.56642,51.69832],[7.58706,51.70029],[7.59379,51.70551],[7.6048,51.7065],[7.60743,51.71082],[7.6143,51.71176],[7.61419,51.71518],[7.62663,51.71447],[7.62814,51.7102],[7.64321,51.71381],[7.6531,51.70621],[7.65428,51.71308],[7.668,51.71581],[7.66915,51.72353],[7.68832,51.72889],[7.69283,51.71608],[7.7012,51.71275],[7.71352,51.71631],[7.71481,51.71976],[7.71899,51.71809],[7.71749,51.72236],[7.72163,51.7224],[7.72555,51.73016],[7.73659,51.73028],[7.73638,51.73799],[7.75154,51.73901],[7.7699,51.72378],[7.77119,51.72722],[7.78908,51.72912],[7.79037,51.73256],[7.80282,51.73183],[7.80137,51.73439],[7.80825,51.73531],[7.81228,51.73964],[7.82058,51.73887],[7.82457,51.74491],[7.83287,51.74413],[7.83314,51.73385],[7.83739,51.72961],[7.85815,51.72724],[7.85822,51.72467],[7.86374,51.72472],[7.87187,51.7308],[7.87745,51.72828],[7.88038,51.72145],[7.88875,51.7181],[7.88912,51.70267],[7.90148,51.70536],[7.90568,51.70283],[7.91249,51.70632],[7.92768,51.7056],[7.92912,51.70305],[7.94014,51.704],[7.93746,51.70055],[7.94296,51.70146],[7.96108,51.69305],[7.97631,51.69061],[7.97779,51.68633],[7.9875,51.68385],[7.98761,51.67871],[7.99732,51.67622],[7.9974,51.67279],[7.98365,51.67096],[7.96286,51.67592],[7.95466,51.67242],[7.95366,51.65612],[7.94689,51.65092],[7.94984,51.64237],[7.94443,51.63804],[7.93477,51.6388],[7.93224,51.62935],[7.92406,51.62585],[7.92414,51.62242],[7.91195,51.61374],[7.91632,51.60349],[7.91378,51.59489],[7.87529,51.59282],[7.86837,51.59446],[7.85742,51.59179],[7.85889,51.58837],[7.82749,51.57863],[7.84327,51.55307],[7.83262,51.53925],[7.83277,51.53325],[7.84115,51.52819],[7.8345,51.51955],[7.83755,51.50758],[7.83212,51.50496],[7.83912,51.49988],[7.83923,51.4956],[7.84474,51.49479],[7.8506,51.48028],[7.83418,51.4784],[7.82198,51.47228],[7.80819,51.47471],[7.79876,51.46776],[7.78906,51.47109],[7.76169,51.46823],[7.74785,51.47237],[7.7425,51.46717],[7.73567,51.46623],[7.72864,51.47216],[7.69838,51.4744],[7.67525,51.46728],[7.65606,51.46621],[7.65347,51.46103],[7.63843,51.45914],[7.63589,51.45226],[7.62083,51.45122],[7.61407,51.44772],[7.61977,51.44092],[7.62525,51.44099],[7.62127,51.43666],[7.62825,51.43245],[7.62561,51.42899],[7.63125,51.42391],[7.61633,51.41859],[7.62183,51.4178],[7.62196,51.41352],[7.63313,51.40679],[7.61322,51.38512],[7.60485,51.39017],[7.60609,51.39447],[7.59647,51.39521],[7.58704,51.38995],[7.59,51.38313],[7.58465,51.37878],[7.58644,51.36509],[7.59234,51.35144],[7.59934,51.34638],[7.59257,51.34373],[7.59407,51.33946],[7.58186,51.33588],[7.58334,51.33247],[7.57655,51.33067],[7.57816,51.32298],[7.58373,51.31962],[7.57837,51.31612],[7.58134,51.30844],[7.58547,51.30763],[7.58305,51.29732],[7.56826,51.28942],[7.56582,51.27996],[7.55089,51.27635],[7.54977,51.26862],[7.52923,51.27008],[7.52797,51.26663],[7.51302,51.26387],[7.51049,51.25784],[7.50371,51.25604],[7.50385,51.25175],[7.49563,51.2525],[7.49438,51.24906],[7.49708,51.24995],[7.50271,51.24488],[7.50143,51.24229],[7.48262,51.23262],[7.469,51.23158],[7.46505,51.22724],[7.45129,51.23049],[7.44191,51.22522],[7.44478,51.22098],[7.43534,51.21742],[7.43816,51.21489],[7.43413,51.21312],[7.42995,51.21563],[7.42962,51.22506],[7.42408,51.22756],[7.41182,51.22653],[7.41342,51.2197],[7.39824,51.22463],[7.39521,51.23317],[7.40319,51.23928],[7.3934,51.246],[7.38793,51.24593],[7.38672,51.24162],[7.37853,51.24151],[7.37289,51.24657],[7.35526,51.2429],[7.35405,51.23859],[7.34849,51.24109],[7.339,51.23924],[7.33872,51.24695],[7.32904,51.25024],[7.3238,51.24417],[7.31284,51.24487],[7.31027,51.24054],[7.30481,51.24046],[7.29643,51.24549],[7.29764,51.24979],[7.28262,51.24957],[7.27541,51.25975],[7.2715,51.25455],[7.26734,51.25621],[7.26578,51.26133],[7.27623,51.27434],[7.26764,51.2845],[7.25531,51.28518],[7.26537,51.30847],[7.26521,51.31276],[7.25974,51.31268],[7.26511,51.31533],[7.26365,51.31788],[7.23393,51.308],[7.22973,51.31051],[7.2271,51.3079],[7.22296,51.3087],[7.22309,51.30527],[7.20682,51.30159],[7.20026,51.29463],[7.18792,51.2953],[7.18232,51.29864],[7.16869,51.29757],[7.18065,51.30633],[7.16674,51.31211],[7.16924,51.31815],[7.16503,51.32066],[7.1662,51.32582],[7.15645,51.32996],[7.15351,51.33505],[7.14807,51.33411],[7.14927,51.33842],[7.14513,51.33921],[7.15292,51.34962],[7.14882,51.34956],[7.14731,51.35296],[7.15665,51.35911],[7.15911,51.36601],[7.15189,51.37532],[7.14634,51.37695],[7.13957,51.37513],[7.13802,51.37939],[7.13262,51.37759],[7.127,51.38093],[7.12163,51.37827],[7.12153,51.38084],[7.11742,51.38078],[7.11626,51.37561],[7.11215,51.37555],[7.11205,51.37812],[7.1039,51.37627],[7.09853,51.37361],[7.10004,51.37021],[7.0919,51.36836],[7.08765,51.37172],[7.08088,51.3699],[7.07796,51.37414],[7.0552,51.36176],[7.04973,51.36167],[7.04404,51.36671],[7.03604,51.36144],[7.01944,51.36544],[7.01,51.36185],[7.00745,51.35752],[6.98689,51.35803],[6.98301,51.35282],[6.97743,51.35529],[6.97621,51.35184],[6.96545,51.34737],[6.95033,51.34882],[6.94748,51.35134],[6.9257,51.34839],[6.92422,51.35093],[6.92825,51.35272],[6.92137,51.35346],[6.92391,51.35779],[6.90565,51.36775],[6.90022,51.3668],[6.8904,51.37176],[6.87848,51.36297],[6.86745,51.36449],[6.85115,51.36162],[6.84552,51.36495],[6.84991,51.35903],[6.83385,51.35101],[6.82295,51.34995],[6.81731,51.35328],[6.81615,51.34897],[6.80939,51.34713],[6.80649,51.3505],[6.7941,51.35198],[6.79314,51.34339],[6.77673,51.34308],[6.7475,51.35281],[6.73831,51.34492],[6.72749,51.34214],[6.71287,51.33328],[6.69193,51.34144],[6.66428,51.3469],[6.65435,51.35356],[6.65789,51.36477],[6.67409,51.36938],[6.67794,51.3746],[6.67511,51.37626],[6.6684,51.37356],[6.67309,51.38908],[6.66081,51.38798],[6.65693,51.38362],[6.64602,51.38254],[6.64443,51.3868],[6.63626,51.38577],[6.63586,51.39348],[6.611,51.39726],[6.59479,51.39265],[6.57148,51.39302],[6.56618,51.38948],[6.55797,51.38931],[6.55496,51.39439],[6.54679,51.39337],[6.54505,51.40019],[6.53816,51.4009],[6.52939,51.41101],[6.52596,51.42379],[6.5149,51.42527],[6.51453,51.43213],[6.51987,51.43481],[6.52092,51.44084],[6.51119,51.4432],[6.50821,51.44743],[6.50273,51.44731],[6.50198,51.46101],[6.50709,51.46798],[6.49868,51.47123],[6.49698,51.4772],[6.49012,51.47705],[6.48714,51.48127],[6.4818,51.47859],[6.47608,51.48275],[6.47404,51.49471],[6.46699,51.49799],[6.46245,51.50561],[6.45407,51.508],[6.45497,51.51659],[6.44796,51.51901],[6.45326,51.52255],[6.44876,51.52931],[6.45562,51.52946],[6.47816,51.51966],[6.47499,51.52731],[6.48673,51.53871],[6.46262,51.55191],[6.49612,51.56806],[6.46176,51.56732],[6.42276,51.5759],[6.41912,51.56725],[6.40847,51.56101],[6.38918,51.56144],[6.37657,51.56545],[6.36951,51.56872],[6.36916,51.57471],[6.37726,51.57747],[6.37284,51.58251],[6.37372,51.59111],[6.35235,51.60349],[6.33482,51.59709],[6.32362,51.60026],[6.32067,51.60363],[6.33275,51.60905],[6.33392,51.6125],[6.30035,51.62117],[6.30143,51.62633],[6.29113,51.63725],[6.29225,51.64156],[6.29903,51.64343],[6.32563,51.63632],[6.32819,51.63981],[6.35403,51.64554],[6.35313,51.66095],[6.36553,51.66123],[6.36262,51.66374],[6.37069,51.66735],[6.38091,51.6813],[6.38062,51.68643],[6.37195,51.6931],[6.35808,51.6945],[6.35482,51.703],[6.3682,51.71016],[6.37642,51.7112],[6.38041,51.71387],[6.37731,51.7198],[6.38829,51.7209],[6.38789,51.72775],[6.40932,51.73937],[6.41055,51.74197],[6.40346,51.74524],[6.40597,51.74959],[6.40178,51.75035],[6.40287,51.75552],[6.41405,51.75319],[6.42134,51.7465],[6.42188,51.73708],[6.40877,51.72478],[6.40921,51.71708],[6.4164,51.71209],[6.44839,51.70765],[6.46246,51.70281],[6.47677,51.71855],[6.48908,51.72053],[6.48418,51.73414],[6.48942,51.7394],[6.48908,51.74539],[6.48171,51.75381],[6.53363,51.76434],[6.52478,51.77444],[6.50784,51.78094],[6.4898,51.80714],[6.48961,51.81056],[6.51162,51.81274],[6.51691,51.81714]]],"terms_url":"https://www.metropoleruhr.de/regionalverband-ruhr.html","terms_text":"Datengrundlage: Regionalverband Ruhr"},{"id":"miljodirektoratet-vern","name":"Miljødirektoratet Protected Areas overlay","type":"wms","template":"https://kart.miljodirektoratet.no/arcgis/services/vern/MapServer/WmsServer?LAYERS=naturvern_klasser_omrade&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[0,22],"polygon":[[[-10.95725,71.60964],[-6.16765,71.62095],[-6.13756,70.30991],[-10.92717,70.29784],[-10.95725,71.60964]],[[16.81947,74.9482],[21.25771,74.94213],[21.23712,73.8918],[16.79889,73.89828],[16.81947,74.9482]],[[4.04288,79.93593],[20.65421,81.54417],[36.6503,80.40108],[26.76265,75.8129],[13.88667,75.79135],[4.04288,79.93593]],[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kart.naturbase.no","terms_text":"© Miljødirektoratet","description":"Norwegian national parks, nature reserves and other protected areas and objects from Naturbase, including Svalbard/Spitsbergen","icon":"https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png","overlay":true},{"id":"miljodirektoratet-friluftsomrader","name":"Miljødirektoratet Public Recreation Areas overlay","type":"wms","template":"https://kart.miljodirektoratet.no/arcgis/services/friluftsliv_statlig_sikra/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=friluftsliv_statlig_sikra&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://kartkatalog.miljodirektoratet.no/Dataset/Details/30","terms_text":"© Miljødirektoratet","description":"Public recreation areas with State ownership (\"friluftsområder\").","icon":"https://www.miljodirektoratet.no/globalassets/profilbank/profilbank-bilder/m_logo_hoved_pos_rgb_thumb2.png","overlay":true},{"id":"Minnesota-Composite-Image-Service","name":"Minnesota Composite Image Service","type":"wms","template":"https://imageserver.gisdata.mn.gov/cgi-bin/mncomp?LAYERS=mncomp&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","zoomExtent":[3,20],"polygon":[[[-97.17831,48.87603],[-97.1904,48.81522],[-97.15809,48.81035],[-97.18153,48.79821],[-97.08987,48.68402],[-97.17544,48.56222],[-97.13912,48.55541],[-97.16595,48.54825],[-97.12678,48.5202],[-97.16268,48.47779],[-97.12817,48.47437],[-97.15064,48.44082],[-97.12483,48.4419],[-97.14588,48.43116],[-97.12259,48.41793],[-97.15398,48.41814],[-97.13118,48.40729],[-97.16339,48.39287],[-97.13335,48.38221],[-97.15627,48.36559],[-97.11224,48.29648],[-97.14504,48.26877],[-97.1207,48.22476],[-97.12452,48.22318],[-97.1372,48.22696],[-97.14967,48.22316],[-97.1522,48.21964],[-97.13907,48.22196],[-97.12289,48.2165],[-97.11785,48.20974],[-97.13931,48.21676],[-97.12929,48.20839],[-97.14752,48.17058],[-97.12098,48.15956],[-97.14652,48.14223],[-97.07227,48.04808],[-97.02317,47.87399],[-96.97416,47.82335],[-96.99169,47.80842],[-96.93499,47.76706],[-96.93113,47.7154],[-96.85096,47.5983],[-96.87184,47.41882],[-96.8376,47.38899],[-96.85847,47.36769],[-96.829,47.32762],[-96.84488,47.19282],[-96.82192,47.18425],[-96.84147,47.15185],[-96.81257,47.03859],[-96.83956,47.00674],[-96.79177,46.92847],[-96.75327,46.92457],[-96.80255,46.81153],[-96.77546,46.76676],[-96.79821,46.62933],[-96.74722,46.58235],[-96.72201,46.43999],[-96.59961,46.33014],[-96.59269,46.17522],[-96.55452,46.08399],[-96.58118,45.82302],[-96.6626,45.73869],[-96.83866,45.64752],[-96.85776,45.60597],[-96.69255,45.41735],[-96.5218,45.37565],[-96.45314,45.30079],[-96.45306,43.50038],[-93.84857,43.49963],[-91.21772,43.50064],[-91.23187,43.58183],[-91.26899,43.61659],[-91.24414,43.77468],[-91.43253,43.99684],[-91.59208,44.03138],[-91.72156,44.13035],[-91.87517,44.20058],[-91.91863,44.32268],[-91.96682,44.36399],[-92.23086,44.4445],[-92.33612,44.55401],[-92.54807,44.5678],[-92.56944,44.60355],[-92.62148,44.61505],[-92.63211,44.64904],[-92.80786,44.75085],[-92.75065,44.93731],[-92.76207,45.02433],[-92.80313,45.06157],[-92.74092,45.11296],[-92.76188,45.28702],[-92.65043,45.39852],[-92.64651,45.44035],[-92.7456,45.55302],[-92.88376,45.57549],[-92.8692,45.71758],[-92.78463,45.7642],[-92.70771,45.89491],[-92.55194,45.95166],[-92.52519,45.98387],[-92.46936,45.97382],[-92.42856,46.02425],[-92.35177,46.01569],[-92.33292,46.06271],[-92.29404,46.07439],[-92.2913,46.66815],[-92.2071,46.65195],[-92.1761,46.68635],[-92.2047,46.70405],[-92.1463,46.71595],[-92.1166,46.74865],[-92.01631,46.70598],[-92.08868,46.79367],[-91.7799,46.94341],[-91.57352,47.09003],[-91.46563,47.13124],[-91.04681,47.45632],[-90.7776,47.60573],[-90.43711,47.73164],[-89.97463,47.83056],[-89.75663,47.9041],[-89.68041,47.96408],[-89.63918,47.95373],[-89.62363,47.99464],[-89.57027,47.98571],[-89.49176,48.00536],[-89.5698,47.99899],[-89.61071,48.01786],[-89.65088,48.00354],[-89.77537,48.02279],[-89.89721,47.98751],[-89.99383,48.02802],[-90.02334,48.08468],[-90.13579,48.11215],[-90.3743,48.09092],[-90.4674,48.10875],[-90.55671,48.09594],[-90.57969,48.12381],[-90.75159,48.091],[-90.79823,48.1369],[-90.77794,48.16385],[-90.83641,48.17704],[-90.8393,48.23957],[-90.88576,48.24596],[-91.08248,48.18116],[-91.26678,48.07884],[-91.42958,48.04866],[-91.48819,48.06839],[-91.56752,48.0438],[-91.55912,48.1086],[-91.63993,48.09712],[-91.68212,48.12251],[-91.71176,48.11466],[-91.71537,48.19951],[-91.86437,48.20696],[-91.89311,48.23799],[-91.95836,48.23314],[-91.95411,48.25227],[-92.00653,48.26542],[-92.00012,48.3211],[-92.05523,48.35937],[-92.26256,48.35492],[-92.30618,48.31625],[-92.26959,48.24819],[-92.36992,48.22029],[-92.46978,48.3521],[-92.45644,48.41409],[-92.50748,48.44799],[-92.65623,48.43648],[-92.71269,48.46299],[-92.69868,48.49485],[-92.62702,48.50328],[-92.63489,48.54256],[-92.72842,48.53938],[-92.95002,48.60835],[-92.9548,48.63154],[-93.17839,48.62301],[-93.25466,48.64282],[-93.46548,48.59164],[-93.46739,48.54646],[-93.79338,48.51632],[-93.84436,48.63022],[-94.22422,48.64947],[-94.29121,48.70782],[-94.41584,48.71098],[-94.45239,48.69241],[-94.64538,48.74403],[-94.69441,48.78945],[-94.68347,48.88413],[-94.81627,49.32141],[-94.9574,49.37021],[-95.05831,49.35326],[-95.1534,49.38449],[-95.1532,48.99888],[-97.22956,49.00046],[-97.23421,48.94739],[-97.17831,48.87603]]],"terms_url":"https://www.mngeo.state.mn.us/chouse/wms/composite_image.html","terms_text":"MnGeo","icon":"https://gisdata.mn.gov/agencyLogos/mnLogo.jpg"},{"id":"mml-tausta","name":"MML Background Map","type":"tms","template":"https://tiles.kartat.kapsi.fi/taustakartta/{zoom}/{x}/{y}.jpg","zoomExtent":[2,19],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://www.maanmittauslaitos.fi/en","terms_text":"© Maanmittauslaitos","description":"Background map from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png"},{"id":"mml-orto","name":"MML Orthophoto","type":"tms","template":"https://tiles.kartat.kapsi.fi/ortokuva/{zoom}/{x}/{y}.jpg","zoomExtent":[2,19],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://www.maanmittauslaitos.fi/en","terms_text":"© Maanmittauslaitos","best":true,"description":"Ortophotos from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png"},{"id":"mml-topo","name":"MML Topographic Map","type":"tms","template":"https://tiles.kartat.kapsi.fi/peruskartta/{zoom}/{x}/{y}.jpg","zoomExtent":[2,19],"polygon":[[[27.96569,70.0988],[27.57431,70.07728],[27.10876,69.93548],[26.70913,69.97549],[26.45507,69.94207],[25.87142,69.6671],[25.94833,69.61024],[25.83023,69.55323],[25.66955,69.20794],[25.73822,69.01797],[25.60089,68.90309],[25.45806,68.91199],[25.11749,68.80699],[25.07354,68.64355],[24.88128,68.62003],[23.97491,68.84568],[23.74969,68.8308],[23.63433,68.71645],[23.18939,68.68053],[22.52197,68.7553],[21.63894,69.28191],[21.26953,69.31783],[20.94131,69.21622],[21.08963,69.09307],[21.05941,69.04352],[20.72296,69.12491],[20.54443,69.0558],[20.84655,68.97416],[20.81634,68.91742],[21.38754,68.68461],[22.04734,68.47066],[22.80212,68.35464],[23.12072,68.13169],[23.5437,67.9633],[23.44757,67.8393],[23.48602,67.59352],[23.36517,67.46545],[23.71124,67.41592],[23.72772,67.32186],[23.54644,67.26885],[23.53128,67.16724],[23.89251,66.86863],[23.84582,66.57775],[23.61843,66.44562],[23.67171,66.20303],[23.87191,66.14551],[24.09988,65.87247],[24.1658,65.66959],[24.11636,65.39143],[21.37939,63.68037],[20.17639,63.29787],[19.08325,60.16064],[20.22033,59.44786],[22.29125,59.44507],[25.82336,59.933],[27.52075,60.23435],[27.83386,60.53229],[29.29641,61.26165],[31.20803,62.44759],[31.62826,62.90585],[31.2635,63.22106],[29.99605,63.75387],[30.28656,63.81704],[30.58319,64.0782],[30.5104,64.26428],[30.09979,64.39218],[30.02563,64.58736],[30.16845,64.63329],[30.09429,64.79518],[29.78393,64.79811],[29.65347,64.89733],[29.65759,65.05939],[29.91027,65.09527],[29.93225,65.20895],[29.72076,65.27853],[29.91577,65.63788],[30.1863,65.66223],[29.9913,66.09771],[29.07119,66.91983],[30.11077,67.63431],[29.3486,68.08099],[28.67568,68.20166],[28.46547,68.54039],[28.72375,68.72642],[28.82675,68.87341],[28.44985,68.90792],[28.95996,69.05089],[28.83324,69.10563],[28.87207,69.22132],[29.36096,69.46526],[29.15634,69.69667],[28.38455,69.83488],[28.35845,69.88312],[28.17169,69.92511],[28.00415,70.01495],[27.96569,70.0988]]],"terms_url":"https://www.maanmittauslaitos.fi/en","terms_text":"© Maanmittauslaitos","description":"Topographic map from the National Land Survey of Finland","icon":"https://www.maanmittauslaitos.fi/apple-touch-icon.png"},{"id":"mtbmap-no","name":"MTBmap.no","type":"tms","template":"https://mtbmap.no/tiles/osm/mtbmap/{zoom}/{x}/{y}.jpg","tileSize":512,"zoomExtent":[3,14],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.mtbmap.no/","terms_text":"© MTBmap.no","description":"Norwegian mountain biking map from OSM (max zoom 14-16, varies per region)","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/no/MTBmapno.png"},{"id":"Mulhouse_2018","name":"Mulhouse - 2018","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/mulhouse_2018/{zoom}/{x}/{y}","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[7.53731,47.78041],[7.57439,47.84128],[7.57301,47.85602],[7.55035,47.86201],[7.53525,47.84588],[7.5016,47.85141],[7.45972,47.84174],[7.4556,47.83252],[7.4453,47.83114],[7.43088,47.84128],[7.41549,47.83831],[7.39174,47.84727],[7.38007,47.83851],[7.33475,47.83989],[7.34024,47.89563],[7.31758,47.91082],[7.28737,47.89977],[7.28462,47.88412],[7.24686,47.88228],[7.23724,47.87629],[7.23312,47.86431],[7.2139,47.86524],[7.183,47.85786],[7.17613,47.84819],[7.21115,47.82284],[7.18986,47.81085],[7.19948,47.78179],[7.16789,47.77025],[7.183,47.73517],[7.17682,47.72362],[7.19467,47.69451],[7.21802,47.68527],[7.24548,47.68527],[7.25166,47.69497],[7.2448,47.70376],[7.2551,47.71392],[7.27844,47.713],[7.27982,47.70237],[7.26814,47.69405],[7.26883,47.68434],[7.28531,47.67094],[7.30247,47.66308],[7.32376,47.65984],[7.33337,47.66724],[7.3732,47.65383],[7.39242,47.65475],[7.40822,47.6603],[7.39723,47.67648],[7.42744,47.68666],[7.47551,47.69821],[7.5222,47.69636],[7.55104,47.71531],[7.56134,47.73517],[7.53731,47.78041]]],"terms_url":"https://data.mulhouse-alsace.fr/explore/dataset/m2a_orthophotographie-2018/information/","terms_text":"Mulhouse Alsace Agglomération 2018"},{"id":"MunichLatestAerialImagery","name":"Munich latest aerial imagery 60cm","type":"wms","template":"https://ogc.muenchen.de/wms/opendata_luftbild?LAYERS=bgl0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[11,22],"polygon":[[[11.48878,48.053],[11.55589,48.05323],[11.55583,48.06224],[11.56915,48.06229],[11.56908,48.07128],[11.64986,48.07155],[11.64993,48.06256],[11.70326,48.06274],[11.70313,48.08074],[11.71673,48.08079],[11.71667,48.08968],[11.7299,48.08972],[11.72963,48.12566],[11.74313,48.1257],[11.74292,48.15276],[11.72943,48.15271],[11.72936,48.16152],[11.71612,48.16147],[11.71592,48.18859],[11.7027,48.18855],[11.70263,48.19752],[11.67558,48.19743],[11.67537,48.22446],[11.66176,48.22441],[11.66169,48.23355],[11.64863,48.2335],[11.64857,48.24246],[11.54064,48.2421],[11.54058,48.25093],[11.52735,48.25088],[11.52728,48.26001],[11.47335,48.25983],[11.47356,48.23291],[11.46014,48.23287],[11.46021,48.22373],[11.43336,48.22364],[11.43343,48.21439],[11.3798,48.21421],[11.37987,48.20518],[11.36607,48.20514],[11.36621,48.18741],[11.35259,48.18737],[11.35266,48.17817],[11.33946,48.17813],[11.33973,48.14216],[11.36684,48.14225],[11.36697,48.12443],[11.38083,48.12448],[11.3809,48.11558],[11.44769,48.1158],[11.44804,48.07087],[11.46186,48.07091],[11.46193,48.06193],[11.48872,48.06202],[11.48878,48.053]]],"terms_url":"https://www.muenchen.de/rathaus/Stadtverwaltung/Kommunalreferat/geodatenservice.html","terms_text":"Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de","icon":"https://www.muenchen.de/media/css/images/favicon_114x114.png"},{"id":"openlabs-geoportal-public-transport","name":"Municipality of Tirana - Public Transport (Open Labs GeoPortal) (overlay)","type":"tms","template":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/public-transport@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[19.73762,41.30154],[19.88628,41.27213],[19.86877,41.38582],[19.68338,41.3732],[19.73762,41.30154]]],"terms_url":"https://geoportal.openlabs.cc/","terms_text":"Data provided by the Muncipality of Tirana hosted by Open Labs","description":"Bus stops & lines provided by the Muncipality of Tirana hosted by Open Labs","overlay":true},{"id":"openlabs-geoportal-tirana","name":"Municipality of Tirana (Open Labs GeoPortal)","type":"tms","template":"https://geoportal.openlabs.cc/mapcache/tms/1.0.0/tirana@GoogleMapsCompatibleExtended/{zoom}/{x}/{-y}.png","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[19.70226,41.1404],[19.77573,41.11868],[19.86431,41.12126],[20.24986,41.3495],[20.03082,41.41184],[19.92577,41.5204],[19.88869,41.50755],[19.88937,41.42265],[19.81659,41.46177],[19.7335,41.43037],[19.74174,41.37887],[19.65797,41.37475],[19.57214,41.24322],[19.61815,41.22567],[19.67171,41.22722],[19.70226,41.1404]]],"terms_url":"https://geoportal.openlabs.cc","terms_text":"Data provided by the Muncipality of Tirana hosted by Open Labs","description":"Streets & Builings provided by the Muncipality of Tirana hosted by Open Labs"},{"id":"GrandNancy_Orthophotographie","name":"Nancy - Orthophoto","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/nancy/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[6.0672,48.70184],[6.06377,48.65106],[6.15097,48.59977],[6.22101,48.59886],[6.24435,48.61566],[6.29723,48.61975],[6.30478,48.73536],[6.15028,48.7503],[6.0672,48.70184]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie","terms_text":"GrandNancy Orthophotographie 2016","best":true},{"id":"GrandNancy_Orthophotographie_2016","name":"Nancy - Orthophoto - 2016","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/nancy_2016/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[6.0672,48.70184],[6.06377,48.65106],[6.15097,48.59977],[6.22101,48.59886],[6.24435,48.61566],[6.29723,48.61975],[6.30478,48.73536],[6.15028,48.7503],[6.0672,48.70184]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Nancy/Orthophotographie","terms_text":"GrandNancy Orthophotographie 2016"},{"id":"USDA-NAIP","name":"National Agriculture Imagery Program","type":"wms","template":"https://gis.apfo.usda.gov/arcgis/services/NAIP/USDA_CONUS_PRIME/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[12,20],"polygon":[[[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-122.94196,48.43484],[-122.94196,48.37208],[-122.88062,48.37208],[-122.88062,48.30948],[-122.81676,48.30948],[-122.81676,48.19046],[-123.00411,48.19046],[-123.00411,48.12759],[-123.05842,48.12759],[-123.05842,48.19051],[-123.25411,48.19051],[-123.25411,48.1275],[-123.37066,48.1275],[-123.37066,48.19084],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-124.75551,48.1915],[-124.81853,48.1915],[-124.81853,48.12284],[-124.7553,48.12284],[-124.7553,47.55353],[-124.38121,47.55353],[-124.38121,47.12187],[-124.19289,47.12187],[-124.19289,43.75694],[-124.44434,43.75694],[-124.44434,43.14256],[-124.63989,43.14256],[-124.63989,42.61945],[-124.44385,42.61945],[-124.44385,39.80807],[-123.88157,39.80807],[-123.88157,39.11028],[-123.75805,39.11028],[-123.75805,38.49688],[-123.27028,38.49688],[-123.27028,37.93319],[-122.81481,37.93319],[-122.81481,37.80196],[-122.56643,37.80196],[-122.56643,36.93196],[-121.8784,36.93196],[-121.8784,36.68976],[-122.00347,36.68976],[-122.00347,36.43411],[-121.94142,36.43411],[-121.94142,35.92976],[-121.5041,35.92976],[-121.5041,35.81003],[-121.37903,35.81003],[-121.37903,35.42392],[-120.94265,35.42392],[-120.94265,35.18497],[-120.8172,35.18497],[-120.8172,35.12199],[-120.69184,35.12199],[-120.69184,34.49668],[-120.50459,34.49668],[-120.50459,34.43397],[-120.00788,34.43397],[-120.00788,34.36826],[-119.52835,34.36826],[-119.52835,34.05764],[-119.0061,34.05764],[-119.0061,33.99753],[-118.50463,33.99753],[-118.50463,33.86946],[-118.44132,33.86946],[-118.44132,33.68653],[-118.06691,33.68653],[-118.06691,33.30638],[-117.503,33.30638],[-117.503,33.05003],[-117.31882,33.05003],[-117.31882,32.62059],[-117.1917,32.62059],[-117.1917,32.49746],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-114.88081,32.62649],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.43399],[-111.4419,31.43399],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-97.11389,27.68092],[-97.0571,27.68092],[-97.0571,27.81082],[-95.58108,27.81082],[-95.58108,28.74688],[-94.27104,28.74688],[-94.27104,29.55941],[-92.50299,29.55941],[-92.50299,29.49748],[-91.87762,29.49748],[-91.87762,29.3727],[-91.37842,29.3727],[-91.37842,29.24683],[-91.3154,29.24683],[-91.3154,29.18443],[-91.12947,29.18443],[-91.12947,29.12326],[-91.00526,29.12326],[-91.00526,28.99684],[-89.45002,28.99684],[-89.45002,28.86774],[-88.81043,28.86774],[-88.81043,30.18419],[-85.87915,30.18419],[-85.87915,29.5455],[-84.83681,29.5455],[-84.83681,29.62252],[-84.74828,29.62252],[-84.74828,29.68362],[-84.68589,29.68362],[-84.68589,29.74684],[-83.6297,29.74684],[-83.6297,29.43244],[-83.31749,29.43244],[-83.31749,29.05794],[-82.87966,29.05794],[-82.87966,27.74535],[-82.81828,27.74535],[-82.81828,26.92909],[-82.37968,26.92909],[-82.37968,26.36942],[-81.87771,26.36942],[-81.87771,25.80597],[-81.50369,25.80597],[-81.50369,25.74748],[-81.44055,25.74748],[-81.44055,25.68515],[-81.31559,25.68515],[-81.31559,25.5601],[-81.25385,25.5601],[-81.25385,25.43424],[-81.1902,25.43424],[-81.1902,25.12343],[-81.12881,25.12343],[-81.12881,25.06194],[-81.06492,25.06194],[-81.06492,24.81578],[-81.62895,24.81578],[-81.62895,24.75384],[-81.69072,24.75384],[-81.69072,24.68994],[-81.81732,24.68994],[-81.81732,24.62792],[-82.191,24.62792],[-82.191,24.49629],[-81.62166,24.49629],[-81.62166,24.55948],[-81.37201,24.55948],[-81.37201,24.62207],[-81.05933,24.62207],[-81.05933,24.68483],[-80.93471,24.68483],[-80.93471,24.74748],[-80.74711,24.74748],[-80.74711,24.81006],[-80.36299,24.81006],[-80.36299,25.11759],[-80.12234,25.11759],[-80.12234,25.74724],[-80.05885,25.74724],[-80.05885,26.37083],[-79.99584,26.37083],[-79.99584,26.9398],[-80.05873,26.9398],[-80.05873,27.12775],[-80.12263,27.12775],[-80.12263,27.25343],[-80.1847,27.25343],[-80.1847,27.37812],[-80.24617,27.37812],[-80.24617,27.56587],[-80.30948,27.56587],[-80.30948,27.75303],[-80.37215,27.75303],[-80.37215,27.87745],[-80.43515,27.87745],[-80.43515,28.00334],[-80.49661,28.00334],[-80.49661,28.12773],[-80.55872,28.12773],[-80.55872,28.37235],[-80.49663,28.37235],[-80.49663,29.51603],[-81.12136,29.51603],[-81.12136,31.6847],[-80.60187,31.6847],[-80.60187,32.24753],[-79.4921,32.24753],[-79.4921,32.99703],[-79.11165,32.99703],[-79.11165,33.37295],[-78.61536,33.37295],[-78.61536,33.80976],[-77.9317,33.80976],[-77.9317,33.87182],[-77.86923,33.87182],[-77.86923,34.05525],[-77.68264,34.05525],[-77.68264,34.29746],[-77.24535,34.29746],[-77.24535,34.55986],[-76.49733,34.55986],[-76.49733,34.6228],[-76.43376,34.6228],[-76.43376,34.68493],[-76.37321,34.68493],[-76.37321,34.74677],[-76.30594,34.74677],[-76.30594,34.80855],[-76.2468,34.80855],[-76.2468,34.87284],[-76.18259,34.87284],[-76.18259,34.93353],[-76.12081,34.93353],[-76.12081,34.99524],[-75.9979,34.99524],[-75.9979,35.05782],[-75.87034,35.05782],[-75.87034,35.12191],[-75.74622,35.12191],[-75.74622,35.18189],[-75.49297,35.18189],[-75.49297,35.3083],[-75.43257,35.3083],[-75.43257,35.75425],[-75.49699,35.75425],[-75.49699,37.81056],[-75.3083,37.81056],[-75.3083,37.87201],[-75.2456,37.87201],[-75.2456,37.99548],[-75.18288,37.99548],[-75.18288,38.05851],[-75.11848,38.05851],[-75.11848,38.24691],[-75.05921,38.24691],[-75.05921,38.37043],[-74.99481,38.37043],[-74.99481,38.87184],[-74.48783,38.87184],[-74.48783,39.30894],[-74.17663,39.30894],[-74.17663,39.62247],[-74.0567,39.62247],[-74.0567,39.93318],[-73.9959,39.93318],[-73.9959,40.18549],[-73.93416,40.18549],[-73.93416,40.49595],[-73.8723,40.49595],[-73.8723,40.55271],[-71.80745,40.55271],[-71.80745,41.3088],[-70.88251,41.3088],[-70.88251,41.18498],[-70.74619,41.18498],[-70.74619,41.30919],[-70.43376,41.30919],[-70.43376,41.49639],[-69.93343,41.49639],[-69.93343,41.62308],[-69.86986,41.62308],[-69.86986,41.87769],[-69.93579,41.87769],[-69.93579,42.00323],[-69.99758,42.00323],[-69.99758,42.06502],[-70.06061,42.06502],[-70.06061,42.12943],[-70.55729,42.12943],[-70.55729,43.24871],[-70.49741,43.24871],[-70.49741,43.30922],[-70.37042,43.30922],[-70.37042,43.37196],[-70.30857,43.37196],[-70.30857,43.49699],[-70.18392,43.49699],[-70.18392,43.62235],[-70.05758,43.62235],[-70.05758,43.68502],[-69.74552,43.68502],[-69.74552,43.74766],[-69.24728,43.74766],[-69.24728,43.8107],[-69.05607,43.8107],[-69.05607,43.87172],[-68.99505,43.87172],[-68.99505,43.9982],[-68.49637,43.9982],[-68.49637,44.05974],[-68.3081,44.05974],[-68.3081,44.12214],[-68.18518,44.12214],[-68.18518,44.30814],[-67.9956,44.30814],[-67.9956,44.37275],[-67.8103,44.37275],[-67.8103,44.43518],[-67.49653,44.43518],[-67.49653,44.49688],[-67.37102,44.49688],[-67.37102,44.56006],[-67.18488,44.56006],[-67.18488,44.62133],[-67.12212,44.62133],[-67.12212,44.68679],[-67.05936,44.68679],[-67.05936,44.74737],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.69099],[-75.62902,44.69099],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.44276,44.06537],[-76.44276,43.99638],[-76.31703,43.99638],[-76.31703,43.94146],[-76.50766,43.94146],[-76.50766,43.87233],[-76.383,43.87233],[-76.383,43.80919],[-76.25341,43.80919],[-76.25341,43.56652],[-76.50648,43.56652],[-76.50648,43.50339],[-76.63312,43.50339],[-76.63312,43.44323],[-76.69511,43.44323],[-76.69511,43.37869],[-76.81778,43.37869],[-76.81778,43.31807],[-77.682,43.31807],[-77.682,43.37894],[-78.05659,43.37894],[-78.05659,43.43969],[-78.43897,43.43969],[-78.43897,43.37944],[-78.88034,43.37944],[-78.88034,43.31497],[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.12999],[-79.12989,43.12999],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-79.06944,42.75422],[-79.06944,42.69416],[-79.13344,42.69416],[-79.13344,42.6297],[-79.19475,42.6297],[-79.19475,42.56635],[-79.37868,42.56635],[-79.37868,42.50334],[-79.4443,42.50334],[-79.4443,42.44106],[-79.56799,42.44106],[-79.56799,42.37753],[-79.69062,42.37753],[-79.69062,42.31711],[-79.81646,42.31711],[-79.81646,42.25345],[-80.00524,42.25345],[-80.00524,42.19092],[-80.19168,42.19092],[-80.19168,42.12726],[-80.3168,42.12726],[-80.3168,42.06699],[-80.50632,42.06699],[-80.50632,42.00343],[-80.69305,42.00343],[-80.69305,41.94151],[-80.94404,41.94151],[-80.94404,41.87812],[-81.19427,41.87812],[-81.19427,41.81665],[-81.31901,41.81665],[-81.31901,41.75455],[-81.44184,41.75455],[-81.44184,41.69096],[-81.50535,41.69096],[-81.50535,41.63016],[-82.74701,41.63016],[-82.74701,41.75369],[-82.88391,41.75369],[-82.88391,41.56561],[-82.99572,41.56561],[-82.99572,41.62704],[-83.12578,41.62704],[-83.12578,41.68784],[-83.24747,41.68784],[-83.24747,41.75369],[-83.37373,41.75369],[-83.37373,41.80928],[-83.3106,41.80928],[-83.3106,41.87161],[-83.24747,41.87161],[-83.24747,41.93614],[-83.18434,41.93614],[-83.18434,41.99609],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.80722,42.37177],[-82.80722,42.55855],[-82.75537,42.55855],[-82.75537,42.49549],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.43289,43.06481],[-82.43289,43.19176],[-82.49475,43.19176],[-82.49475,43.50346],[-82.55713,43.50346],[-82.55713,43.81609],[-82.61979,43.81609],[-82.61979,43.94221],[-82.68395,43.94221],[-82.68395,44.00226],[-82.74653,44.00226],[-82.74653,44.06705],[-82.87087,44.06705],[-82.87087,44.12919],[-83.00852,44.12919],[-83.00852,44.06648],[-83.13361,44.06648],[-83.13361,44.00539],[-83.24145,44.00539],[-83.24145,44.9962],[-83.18061,44.9962],[-83.18061,45.0673],[-83.24552,45.0673],[-83.24552,45.12874],[-83.30659,45.12874],[-83.30659,45.25515],[-83.37061,45.25515],[-83.37061,45.31659],[-83.43256,45.31659],[-83.43256,45.37921],[-83.61784,45.37921],[-83.61784,45.44197],[-83.80843,45.44197],[-83.80843,45.50362],[-84.05507,45.50362],[-84.05507,45.56479],[-84.12352,45.56479],[-84.12352,45.62878],[-84.18075,45.62878],[-84.18075,45.69147],[-84.31116,45.69147],[-84.31116,45.93371],[-83.821,45.93371],[-83.821,45.87251],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.49627,46.00169],[-83.49627,46.06682],[-83.56,46.06682],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.99657,46.50453],[-84.99657,46.68429],[-84.92982,46.68429],[-84.92982,46.81808],[-85.31659,46.81808],[-85.31659,46.75358],[-87.55626,46.75358],[-87.55626,47.44074],[-87.68254,47.44074],[-87.68254,47.50356],[-88.25607,47.50356],[-88.25607,47.44337],[-88.44174,47.44337],[-88.44174,47.37899],[-88.50683,47.37899],[-88.50683,47.31539],[-88.63128,47.31539],[-88.63128,47.25398],[-88.75696,47.25398],[-88.75696,47.19347],[-88.88383,47.19347],[-88.88383,47.12847],[-88.94342,47.12847],[-88.94342,47.06621],[-89.07087,47.06621],[-89.07087,47.00268],[-89.25656,47.00268],[-89.25656,46.94108],[-90.36777,46.94108],[-90.36777,47.68448],[-90.307,47.68448],[-90.307,47.74602],[-89.99486,47.74602],[-89.99486,47.80827],[-89.80486,47.80827],[-89.80486,47.87006],[-89.67977,47.87006],[-89.67977,47.93396],[-89.49338,47.93396],[-89.49338,47.9958],[-89.42847,47.9958],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62869],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-122.81748,49.06561],[-122.81748,49.00291],[-122.87952,49.00291],[-122.87952,48.9347],[-122.81746,48.9347],[-122.81746,48.8102],[-122.75389,48.8102],[-122.75389,48.75338],[-122.87129,48.75338],[-122.87129,48.81539],[-123.00554,48.81539],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529]],[[-122.93417,37.75215],[-122.93475,37.6842],[-123.0679,37.6849],[-123.06737,37.74753],[-123.12926,37.74785],[-123.12869,37.81569],[-123.05907,37.81532],[-123.05959,37.75281],[-122.93417,37.75215]],[[-71.62995,41.25409],[-71.49665,41.25414],[-71.49656,41.12297],[-71.62986,41.12291],[-71.62995,41.25409]],[[-70.31843,41.37752],[-70.31834,41.24482],[-70.19066,41.24487],[-70.19062,41.1886],[-69.9336,41.1887],[-69.93373,41.37919],[-69.99507,41.37917],[-69.99511,41.44316],[-70.07078,41.44313],[-70.0707,41.31449],[-70.24617,41.31443],[-70.24621,41.37755],[-70.31843,41.37752]],[[-68.94034,43.94041],[-68.68569,43.9405],[-68.68565,43.87218],[-68.74654,43.87216],[-68.7465,43.81025],[-68.80908,43.81023],[-68.80903,43.74673],[-68.87731,43.7467],[-68.87735,43.81178],[-68.94025,43.81176],[-68.94034,43.94041]],[[-123.12915,49.06451],[-122.99542,49.06451],[-122.99542,48.93432],[-123.12915,48.93432],[-123.12915,49.06451]],[[-82.94071,24.75359],[-82.87194,24.75359],[-82.87194,24.69057],[-82.74462,24.69057],[-82.74462,24.62146],[-82.8088,24.62146],[-82.8088,24.55949],[-82.94071,24.55949],[-82.94071,24.75359]]],"description":"The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USDA.png"},{"id":"NC-US","name":"NC Latest Orthoimagery","type":"wms","template":"https://services.nconemap.gov/secure/services/Imagery/Orthoimagery_Latest/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[-81.6792,36.5974],[-80.25359,36.54793],[-75.8409,36.5671],[-75.4323,35.6441],[-75.50475,35.18806],[-75.70525,35.17684],[-76.14745,34.94077],[-76.53472,34.55487],[-76.69676,34.66789],[-77.27904,34.53224],[-77.68828,34.26482],[-77.9435,33.8269],[-78.21288,33.89402],[-78.5301,33.8304],[-79.6693,34.7916],[-80.8122,34.8085],[-80.84685,34.96329],[-80.95122,35.05552],[-81.06383,35.01729],[-81.07482,35.13417],[-82.3632,35.1805],[-82.9989,34.9919],[-84.3333,34.9767],[-84.27184,35.28229],[-84.09056,35.27332],[-83.91478,35.53301],[-83.55498,35.5911],[-83.2556,35.73392],[-82.98644,35.81414],[-82.92327,35.96767],[-82.67882,36.0854],[-82.60192,36.08984],[-82.536,35.96989],[-82.35472,36.14752],[-82.04436,36.14309],[-81.90428,36.33803],[-81.74224,36.37342],[-81.6792,36.5974]]],"description":"Most recent true color imagery for the state of North Carolina. The imagery has a pixel resolution of 6 inches and is comprised of imagery flown in 2010, 2012, 2013, and 2014"},{"id":"img.nj.gov-Infrared2015","name":"NJ 2015 Aerial Imagery (Infrared)","type":"wms","template":"https://img.nj.gov/imagerywms/Infrared2015?LAYERS=Infrared2015&STYLES=&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-05-03T00:00:00.000Z","startDate":"2015-03-29T00:00:00.000Z","zoomExtent":[3,20],"polygon":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"terms_url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D","terms_text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","description":"Digital orthophotography of New Jersey, Near Infrared, 1 foot resolution"},{"id":"img.nj.gov-Natural2015","name":"NJ 2015 Aerial Imagery (Natural Color)","type":"wms","template":"https://img.nj.gov/imagerywms/Natural2015?LAYERS=Natural2015&STYLES=&FORMAT=image/png&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-05-03T00:00:00.000Z","startDate":"2015-03-29T00:00:00.000Z","zoomExtent":[3,20],"polygon":[[[-74.86599,40.08543],[-74.93534,40.07256],[-75.05653,40.00868],[-75.14236,39.95791],[-75.14456,39.88322],[-75.18515,39.88042],[-75.24499,39.85486],[-75.33339,39.8495],[-75.41531,39.80156],[-75.45131,39.78304],[-75.57744,39.62346],[-75.54245,39.56827],[-75.57847,39.48183],[-74.91678,38.84647],[-74.31702,39.38739],[-74.06708,39.75155],[-73.92141,40.49222],[-74.2382,40.49378],[-74.23859,40.54916],[-74.20211,40.54924],[-74.20228,40.57648],[-74.18406,40.57609],[-74.18436,40.63146],[-74.07587,40.63078],[-74.07532,40.64457],[-74.02124,40.65811],[-74.02081,40.69919],[-74.00265,40.69929],[-74.00247,40.74037],[-73.98434,40.74026],[-73.98402,40.78145],[-73.96591,40.78158],[-73.96597,40.80868],[-73.94777,40.80861],[-73.94769,40.82232],[-73.92966,40.82225],[-73.92906,40.86355],[-73.91104,40.86329],[-73.91061,40.91838],[-73.8923,40.91831],[-73.89215,40.95961],[-73.87413,40.95942],[-73.87386,40.99251],[-74.70601,41.36513],[-74.75716,41.34769],[-74.79801,41.32268],[-74.84024,41.27864],[-74.90547,41.17038],[-74.98152,41.1126],[-75.03902,41.03819],[-75.13515,40.99441],[-75.13773,40.97309],[-75.05705,40.86757],[-75.06846,40.85037],[-75.09687,40.85096],[-75.10099,40.83927],[-75.09018,40.82238],[-75.1367,40.77729],[-75.1724,40.78067],[-75.19833,40.75389],[-75.20506,40.69131],[-75.20373,40.61832],[-75.19764,40.57367],[-75.16777,40.55907],[-75.10237,40.56702],[-75.06906,40.5365],[-75.07421,40.45505],[-75.06134,40.4165],[-75.02684,40.40252],[-74.9671,40.3952],[-74.94461,40.33817],[-74.86839,40.29157],[-74.84402,40.24796],[-74.77552,40.21428],[-74.76334,40.19172],[-74.72918,40.16392],[-74.72609,40.14949],[-74.78805,40.12468],[-74.8229,40.13033],[-74.86599,40.08543]]],"terms_url":"https://njgin.state.nj.us/NJ_NJGINExplorer/ShowMetadata.jsp?docId=188471FF-2803-4145-A5AD-605DE86D3B4D","terms_text":"NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)","description":"Digital orthophotography of New Jersey, Natural Color, 1 foot resolution"},{"id":"NLSC-EMAP5","name":"NLSC General Map with Contour line","type":"tms","template":"https://wmts.nlsc.gov.tw/wmts/EMAP5_OPENDATA/default/EPSG:3857/{zoom}/{y}/{x}","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","description":"The emap from Taiwan National Land Surveying and Mapping Center","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"IBGE_Salvador_Streets","name":"Nomes de Ruas IBGE Salvador-BA","type":"tms","template":"https://api.mapbox.com/styles/v1/wille/cj8lp78dn62wl2rquim47qo0g/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoid2lsbGUiLCJhIjoicFNVWk5VWSJ9.hluCd0YGvYHNlFi_utWe2g","zoomExtent":[0,20],"polygon":[[[-38.48974,-12.81113],[-38.54485,-13.01392],[-38.47755,-13.03466],[-38.33473,-12.94685],[-38.30006,-12.90669],[-38.33954,-12.90435],[-38.35482,-12.83021],[-38.38091,-12.82184],[-38.40717,-12.86754],[-38.46537,-12.81599],[-38.48974,-12.81113]]],"description":"Streets geometry and names of Salvador, Bahia. Source: Faces de Logradouro - IBGE.","overlay":true},{"id":"kelkkareitit","name":"Nordic snowmobile overlay","type":"tms","template":"https://tiles.kelkkareitit.fi/kelkkareitit/{zoom}/{x}/{y}.png","zoomExtent":[3,18],"polygon":[[[27.53173,60.21799],[31.35496,62.51233],[31.63513,62.90773],[30.09154,64.91889],[30.21239,65.87473],[29.13573,66.90422],[30.19041,67.67609],[28.70726,68.42748],[29.02587,68.9505],[31.04735,69.53452],[31.78344,70.44784],[28.32274,71.32192],[23.76342,71.29023],[17.1826,69.99806],[12.10691,68.01581],[9.97556,64.85828],[4.13084,61.95963],[4.57029,59.00664],[6.21826,57.95859],[8.14086,57.8506],[10.41502,58.75682],[12.63702,56.0383],[12.7716,55.25095],[14.2932,55.19769],[18.58886,56.84297],[20.69823,59.3444],[27.53173,60.21799]]],"terms_url":"https://kelkkareitit.fi/","terms_text":"© Kelkkareitit.fi","description":"Kelkkareitit.fi snowmobile trails from OSM (Nordic coverage)","icon":"https://kelkkareitit.fi/img/favicon.png","overlay":true},{"id":"geovekst-nib","name":"Norway Orthophoto","type":"tms","template":"https://waapi.webatlas.no/maptiles/tiles/webatlas-orto-newup/wa_grid/{zoom}/{x}/{y}.jpeg?api_key=b8e36d51-119a-423b-b156-d744d54123d5","zoomExtent":[0,21],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://www.norgeibilder.no","terms_text":"© Geovekst","best":true,"description":"Norwegian orthophotos (max zoom 21), courtesy of Geovekst and Norkart.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"},{"id":"geovekst-nib2","name":"Norway Orthophoto (more recent, less zoom)","type":"tms","template":"https://opencache{switch:,2,3}.statkart.no/gatekeeper/gk/gk.open_nib_web_mercator_wmts_v2?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Nibcache_web_mercator_v2&STYLE=default&FORMAT=image/jpgpng&tileMatrixSet=default028mm&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,19],"polygon":[[[11.53568,58.86659],[11.66192,58.89784],[11.7935,59.09471],[11.84243,59.239],[11.82877,59.34509],[11.71279,59.60387],[11.86205,59.63771],[11.95608,59.69196],[11.93389,59.86895],[12.17881,59.8786],[12.46948,60.03124],[12.55438,60.18972],[12.51237,60.31659],[12.61793,60.40065],[12.61883,60.51512],[12.25387,61.01106],[12.69195,61.04632],[12.90756,61.34802],[12.57493,61.57623],[12.42465,61.57175],[12.15233,61.72694],[12.31212,62.26512],[12.07078,62.61109],[12.14907,62.7455],[12.08883,62.89668],[12.23464,62.99952],[11.99225,63.26684],[12.23327,63.47505],[12.17971,63.57117],[12.69313,63.96344],[13.21378,64.0839],[13.99183,64.00514],[14.17035,64.18236],[14.13253,64.47516],[13.67658,64.58356],[14.02455,64.88119],[14.33572,65.11098],[14.51699,65.30365],[14.54177,65.67762],[14.63674,65.81299],[14.53903,66.12496],[15.03881,66.14245],[15.50033,66.27956],[15.39368,66.4795],[15.63473,66.59685],[16.04695,66.90283],[16.39832,67.03827],[16.41439,67.21036],[16.10744,67.43617],[16.16455,67.5087],[16.42318,67.52589],[16.5866,67.64528],[16.7471,67.90466],[17.34741,68.09995],[17.90583,67.95885],[18.16489,68.19424],[18.13721,68.52675],[18.40761,68.57059],[18.62222,68.49607],[18.98574,68.50591],[19.92752,68.34558],[20.24505,68.49201],[19.99237,68.55586],[20.21137,68.65685],[20.34848,68.79976],[20.31623,68.93227],[20.10322,69.0359],[20.55694,69.04926],[20.7206,69.10837],[21.06178,69.02541],[21.12098,69.10587],[21.01135,69.21086],[21.2824,69.30076],[21.62645,69.26589],[22.33512,68.81965],[22.37485,68.70596],[22.5377,68.73329],[22.80161,68.67674],[23.04635,68.67833],[23.16467,68.61903],[23.68789,68.70049],[23.79776,68.81592],[23.96804,68.82287],[24.17541,68.7314],[24.76043,68.63655],[24.8544,68.55285],[24.90827,68.54387],[24.93347,68.6025],[25.12435,68.62003],[25.1667,68.79008],[25.43334,68.87886],[25.62945,68.88103],[25.79589,69.01157],[25.73272,69.19428],[26.02249,69.66758],[26.56631,69.94207],[27.10601,69.89539],[27.63679,70.05317],[27.93548,70.07401],[27.96569,70.00415],[28.40312,69.80824],[29.1014,69.69095],[29.328,69.47585],[28.82859,69.2316],[28.7931,69.0943],[29.04485,68.99986],[29.25292,69.10601],[29.32641,69.22982],[29.29229,69.27632],[29.39117,69.31298],[29.57038,69.31201],[29.85191,69.41631],[29.96795,69.39916],[30.13069,69.4667],[30.2008,69.5658],[30.13137,69.6609],[30.15678,69.66496],[30.51589,69.53787],[30.82077,69.52371],[30.95329,69.55563],[30.96221,69.67832],[30.83578,69.79192],[31.65161,70.17579],[31.78344,70.4662],[30.49255,70.86989],[28.43261,71.30079],[25.66406,71.40266],[23.81835,71.29374],[18.30322,70.40734],[14.24926,69.07641],[11.18408,67.47913],[11.74438,66.90852],[9.95361,64.88393],[4.72961,62.3649],[4.12948,61.69247],[4.08142,61.02637],[4.4577,59.19421],[5.31188,58.4276],[6.47094,57.84475],[7.56408,57.72468],[8.4375,57.91776],[10.59792,58.75006],[10.64905,58.88203],[11.09035,58.97673],[11.16173,59.06743],[11.34175,59.10293],[11.44922,58.99078],[11.45194,58.88136],[11.53568,58.86659]]],"terms_url":"https://www.norgeibilder.no","terms_text":"© Geovekst","best":true,"description":"Most recent Norwegian orthophotos (max zoom 19), courtesy of Geovekst and Kartverket.","icon":"https://register.geonorge.no/data/organizations/_L_norgeibilder96x96.png"},{"id":"npd-offshore","name":"NPD Offshore Installations overlay","type":"wms","template":"https://gis.npd.no/ogc/factmaps/2_0?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=fclFixed,pplAll,fldByStatus&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,20],"polygon":[[[8.51989,57.6454],[3.25195,56.08737],[2.61185,56.59434],[1.96321,57.90482],[1.48178,58.42936],[1.98303,60.31063],[1.78802,61.35659],[-0.49061,63.88725],[1.36226,67.01603],[14.99771,74.50082],[36.99371,74.50155],[36.99989,73.68633],[32.06909,70.27429],[23.97215,70.47356],[16.25974,68.58447],[12.12888,64.81157],[5.38328,61.92862],[5.7678,58.85355],[8.51989,57.6454]]],"terms_url":"https://www.npd.no/no/Kart/Faktakart/","terms_text":"© Oljedirektoratet","description":"Production platforms and oil/natural gas fields on the Norwegian continental shelf","icon":"https://register.geonorge.no/data/organizations/870917732_od_liten.png","overlay":true},{"id":"nrw_dtm_wms","name":"NRW DTM Hillshade","type":"wms","template":"https://www.wms.nrw.de/geobasis/wms_nw_dgm-schummerung?LAYERS=nw_dgm-schummerung_pan&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[6.48,50.32],[6.48,50.24],[6.4,50.24],[6.4,50.32],[6.32,50.32],[6.32,50.48],[6.16,50.48],[6.16,50.64],[6,50.64],[6,50.72],[5.92,50.72],[5.92,50.88],[6,50.88],[6,50.96],[5.84,50.96],[5.84,51.12],[6,51.12],[6,51.28],[6.08,51.28],[6.08,51.36],[6.16,51.36],[6.16,51.52],[6.08,51.52],[6.08,51.6],[6,51.6],[6,51.68],[5.92,51.68],[5.92,51.92],[6.64,51.92],[6.64,52.08],[6.72,52.08],[6.72,52.16],[6.8,52.16],[6.8,52.24],[7.04,52.24],[7.04,52.32],[7.36,52.32],[7.36,52.4],[7.52,52.4],[7.52,52.48],[7.76,52.48],[7.76,52.4],[8,52.4],[8,52.24],[8.08,52.24],[8.08,52.16],[8.4,52.16],[8.4,52.32],[8.24,52.32],[8.24,52.48],[8.4,52.48],[8.4,52.56],[8.72,52.56],[8.72,52.48],[8.96,52.48],[8.96,52.56],[9.2,52.56],[9.2,52.32],[9.12,52.32],[9.12,52.16],[9.2,52.16],[9.2,52.08],[9.28,52.08],[9.28,52],[9.36,52],[9.36,51.92],[9.52,51.92],[9.52,51.76],[9.44,51.76],[9.44,51.68],[9.52,51.68],[9.52,51.6],[9.44,51.6],[9.44,51.52],[9.36,51.52],[9.36,51.44],[9.2,51.44],[9.2,51.36],[9.04,51.36],[9.04,51.44],[8.96,51.44],[8.96,51.36],[8.72,51.36],[8.72,51.28],[8.8,51.28],[8.8,51.04],[8.56,51.04],[8.56,50.96],[8.48,50.96],[8.48,50.88],[8.4,50.88],[8.4,50.8],[8.24,50.8],[8.24,50.64],[8,50.64],[8,50.72],[7.92,50.72],[7.92,50.8],[7.76,50.8],[7.76,50.72],[7.52,50.72],[7.52,50.64],[7.36,50.64],[7.36,50.56],[7.04,50.56],[7.04,50.48],[6.96,50.48],[6.96,50.4],[6.88,50.4],[6.88,50.32],[6.48,50.32]]],"description":"Darstellung der DGM Schummerung in Graustufen. Die imaginäre Lichtquelle befindet sich im Nordwesten. Eine Erhebung erscheint am Nordwesthang hell und am Südosthang dunkel. Ebenen sind mit mittlerer Helligkeit gefärbt."},{"id":"nrw_ortho_wms","name":"NRW Orthophoto","type":"wms","template":"https://www.wms.nrw.de/geobasis/wms_nw_dop?LAYERS=nw_dop_rgb&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[6.48,50.32],[6.48,50.24],[6.4,50.24],[6.4,50.32],[6.32,50.32],[6.32,50.48],[6.16,50.48],[6.16,50.64],[6,50.64],[6,50.72],[5.92,50.72],[5.92,50.88],[6,50.88],[6,50.96],[5.84,50.96],[5.84,51.12],[6,51.12],[6,51.28],[6.08,51.28],[6.08,51.36],[6.16,51.36],[6.16,51.52],[6.08,51.52],[6.08,51.6],[6,51.6],[6,51.68],[5.92,51.68],[5.92,51.92],[6.64,51.92],[6.64,52.08],[6.72,52.08],[6.72,52.16],[6.8,52.16],[6.8,52.24],[7.04,52.24],[7.04,52.32],[7.36,52.32],[7.36,52.4],[7.52,52.4],[7.52,52.48],[7.76,52.48],[7.76,52.4],[8,52.4],[8,52.24],[8.08,52.24],[8.08,52.16],[8.4,52.16],[8.4,52.32],[8.24,52.32],[8.24,52.48],[8.4,52.48],[8.4,52.56],[8.72,52.56],[8.72,52.48],[8.96,52.48],[8.96,52.56],[9.2,52.56],[9.2,52.32],[9.12,52.32],[9.12,52.16],[9.2,52.16],[9.2,52.08],[9.28,52.08],[9.28,52],[9.36,52],[9.36,51.92],[9.52,51.92],[9.52,51.76],[9.44,51.76],[9.44,51.68],[9.52,51.68],[9.52,51.6],[9.44,51.6],[9.44,51.52],[9.36,51.52],[9.36,51.44],[9.2,51.44],[9.2,51.36],[9.04,51.36],[9.04,51.44],[8.96,51.44],[8.96,51.36],[8.72,51.36],[8.72,51.28],[8.8,51.28],[8.8,51.04],[8.56,51.04],[8.56,50.96],[8.48,50.96],[8.48,50.88],[8.4,50.88],[8.4,50.8],[8.24,50.8],[8.24,50.64],[8,50.64],[8,50.72],[7.92,50.72],[7.92,50.8],[7.76,50.8],[7.76,50.72],[7.52,50.72],[7.52,50.64],[7.36,50.64],[7.36,50.56],[7.04,50.56],[7.04,50.48],[6.96,50.48],[6.96,50.4],[6.88,50.4],[6.88,50.32],[6.48,50.32]]],"best":true,"description":"RGB-/Colorbild - Normale farbliche Darstellung."},{"id":"nve-snoskred","name":"NVE Avalanche Danger Areas overlay","type":"wms","template":"https://gis3.nve.no/map/services/SkredSnoAktR/MapServer/WmsServer?LAYERS=Snoskred-Aktsomhetsomrader&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[5,13],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/flaum-og-skred/kartlegging/aktsemdkart/aktsomhetskart-for-snoskred/","terms_text":"© NVE","description":"Potential snowslide areas, computed from theoretical height model. Valid for drops higher than 20-50 meters. Dark red=trigger area.","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"nve-nettanlegg","name":"NVE Electricity Network overlay","type":"wms","template":"https://gis3.nve.no/map/services/Nettanlegg2/MapServer/WmsServer?LAYERS=Sentralnett,Regionalnett,Distribusjonsnett,Sjokabler,Master og stolper,Transformatorstasjoner&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/karttjenester/","terms_text":"© NVE","description":"Power lines (high voltage network) including transformers, submarine cables and pylons. Local distribution network is not included.","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"nve-vannkraft","name":"NVE Hydropower Plants overlay","type":"wms","template":"https://gis3.nve.no/map/services/Vannkraft1/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vannkraftverk,Vannvei,Dam&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/karttjenester/","terms_text":"© NVE","description":"Hydropower plants including waterways (tunnel, canal, pipeline) and dams","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"nve-vindkraft","name":"NVE Wind Power Plants overlay","type":"wms","template":"https://gis3.nve.no/map/services/Vindkraft2/MapServer/WmsServer?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vindkraft_konsesjon_gitt_ikke_utbygd,Vindkraft_under_bygging,Vindkraft_utbygd,Vindkraftomrade,Vindturbin&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.nve.no/karttjenester/","terms_text":"© NVE","description":"Wind power turbines, farms and concession areas (blue: planned, light green: construction, dark green: built).","icon":"https://kommunikasjon.ntb.no/data/images/00525/e8799776-4b69-4ec4-906d-46285ccb3dbe-w_300_h_100.png","overlay":true},{"id":"orthos.dhses.ny.gov_latest","name":"NYS Orthos Online","type":"wms","template":"https://orthos.dhses.ny.gov/arcgis/services/Latest/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0,1,2,3,4&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,19],"polygon":[[[-74.91231,45.03606],[-73.47788,45.02996],[-73.33846,45.03098],[-73.31978,45.00558],[-73.32265,44.98525],[-73.34852,44.9283],[-73.36721,44.8397],[-73.34277,44.81727],[-73.34565,44.77647],[-73.37296,44.73463],[-73.37008,44.67946],[-73.39739,44.64471],[-73.39308,44.60276],[-73.39739,44.54543],[-73.34996,44.51264],[-73.34565,44.49521],[-73.37871,44.4706],[-73.30828,44.43572],[-73.30397,44.41827],[-73.33271,44.33917],[-73.30828,44.27128],[-73.30828,44.25172],[-73.38014,44.14868],[-73.40458,44.04133],[-73.3399,43.79596],[-73.28097,43.64222],[-73.2091,43.54957],[-73.21342,43.51206],[-73.24647,42.67557],[-73.45919,42.14284],[-73.47069,42.03938],[-73.48794,41.73764],[-73.49944,41.64319],[-73.47788,41.62708],[-73.43189,41.57979],[-73.42614,41.56366],[-73.42685,41.45926],[-73.43979,41.40322],[-73.44985,41.38328],[-73.43835,41.37033],[-73.42757,41.35901],[-73.41751,41.3439],[-73.41895,41.27642],[-73.43045,41.24455],[-73.46566,41.19752],[-73.52962,41.14505],[-73.55477,41.13368],[-73.61586,41.13531],[-73.62664,41.10878],[-73.62736,41.05407],[-73.63958,40.99118],[-73.61873,40.98195],[-73.59933,40.96568],[-73.59933,40.93474],[-73.63455,40.91682],[-73.68054,40.89183],[-73.69851,40.87988],[-73.68629,40.87064],[-73.66257,40.87934],[-73.63814,40.90541],[-73.59789,40.91193],[-73.57562,40.9179],[-73.52675,40.92388],[-73.50159,40.94288],[-73.4901,40.95374],[-73.41751,40.96079],[-73.38374,40.96133],[-73.33702,40.95591],[-73.30828,40.93637],[-73.27091,40.92659],[-73.2091,40.91953],[-73.18682,40.92714],[-73.16814,40.93148],[-73.16598,40.95971],[-73.16886,40.97002],[-73.12933,40.98195],[-73.10777,40.98195],[-73.06681,40.9749],[-72.8584,40.97436],[-72.71826,40.98195],[-72.65574,41.00528],[-72.64424,41.00473],[-72.62628,40.99226],[-72.54148,41.03889],[-72.4768,41.06328],[-72.45811,41.08928],[-72.41859,41.09308],[-72.36612,41.13856],[-72.36037,41.1418],[-72.32229,41.15479],[-72.29067,41.16399],[-72.21449,41.18238],[-72.20083,41.19157],[-72.04848,41.25914],[-72.02548,41.2937],[-71.93924,41.30774],[-71.92343,41.30666],[-71.90259,41.2991],[-71.90187,41.28939],[-71.99458,41.24509],[-72.10453,41.19806],[-72.18287,41.16723],[-72.18934,41.16237],[-72.25186,41.12232],[-72.30432,41.10445],[-72.31582,41.09524],[-72.27917,41.08441],[-72.2727,41.08062],[-72.26839,41.04973],[-72.21736,41.04811],[-72.19652,41.04215],[-72.18646,41.05298],[-72.17137,41.0584],[-72.14981,41.05895],[-72.15628,41.09633],[-72.15268,41.1077],[-72.14909,41.14667],[-72.134,41.14505],[-72.07076,41.10553],[-72.07435,41.05678],[-72.08657,41.03185],[-72.10957,41.0069],[-72.08729,41.01287],[-72.06213,41.02534],[-72.04561,41.03239],[-72.01902,41.03293],[-72.00895,41.04215],[-72.00177,41.05136],[-71.96368,41.07737],[-71.922,41.08874],[-71.88966,41.08766],[-71.85588,41.08062],[-71.84582,41.07466],[-71.85588,41.05298],[-71.89038,41.03727],[-71.91625,41.03022],[-71.99099,41.00365],[-72.07938,40.97273],[-72.31941,40.88205],[-72.4423,40.8402],[-72.62771,40.7869],[-72.76569,40.75043],[-72.88499,40.71286],[-72.95973,40.68671],[-73.03735,40.66],[-73.08118,40.64855],[-73.22994,40.61637],[-73.32193,40.6131],[-73.35211,40.61855],[-73.55477,40.56944],[-73.75959,40.57708],[-73.88248,40.54815],[-73.9335,40.53449],[-73.945,40.53395],[-73.94572,40.56289],[-74.08227,40.56234],[-74.08011,40.54924],[-74.12251,40.52084],[-74.15772,40.51373],[-74.18719,40.50117],[-74.22887,40.48696],[-74.26121,40.48532],[-74.2763,40.4957],[-74.27918,40.54378],[-74.26983,40.56671],[-74.25834,40.57217],[-74.22528,40.57217],[-74.226,40.58309],[-74.25115,40.59564],[-74.25259,40.62237],[-74.24324,40.64091],[-74.2339,40.64909],[-74.20228,40.654],[-74.12538,40.65673],[-74.11532,40.69107],[-74.09951,40.68998],[-74.07795,40.71068],[-74.06286,40.7183],[-74.05208,40.7439],[-74.02549,40.79288],[-73.98094,40.86901],[-73.96225,40.92551],[-73.94931,40.96459],[-73.94644,40.99877],[-73.98165,41.01612],[-74.04561,41.04323],[-74.18072,41.09524],[-74.30792,41.14938],[-74.44087,41.21537],[-74.52783,41.25914],[-74.61335,41.30234],[-74.65791,41.31098],[-74.70246,41.33581],[-74.76714,41.38975],[-74.79661,41.41023],[-74.85338,41.42263],[-74.90728,41.43179],[-74.99783,41.47111],[-75.04167,41.52708],[-75.08479,41.59323],[-75.08407,41.61848],[-75.07329,41.66467],[-75.08766,41.70278],[-75.08766,41.71351],[-75.12144,41.76177],[-75.11928,41.79232],[-75.13078,41.81696],[-75.18755,41.83838],[-75.25295,41.84962],[-75.28745,41.85497],[-75.29823,41.88227],[-75.30613,41.9304],[-75.34063,41.94003],[-75.3665,41.9566],[-75.37225,41.97744],[-75.58066,41.97957],[-75.58137,41.92399],[-75.78906,41.92666],[-75.78691,41.98278],[-79.77687,41.98118],[-79.7819,42.20994],[-79.77184,42.28017],[-79.72153,42.29824],[-79.57349,42.36731],[-79.42976,42.46599],[-79.3737,42.49991],[-79.25728,42.54546],[-79.18973,42.5624],[-79.16529,42.56981],[-79.12074,42.62483],[-79.0963,42.64598],[-79.06899,42.6967],[-79.03162,42.71043],[-78.98851,42.72311],[-78.88358,42.77693],[-78.88646,42.8149],[-78.93964,42.88655],[-78.93964,42.93603],[-79.04887,42.96969],[-79.04743,43.05167],[-79.09343,43.05272],[-79.09199,43.09262],[-79.08624,43.26556],[-79.06468,43.27602],[-78.84909,43.33041],[-78.72979,43.35237],[-78.63924,43.37013],[-78.54869,43.37953],[-78.47826,43.38789],[-77.95508,43.38476],[-77.73158,43.34714],[-77.71146,43.34034],[-77.66259,43.31159],[-77.61516,43.28387],[-77.55336,43.253],[-77.5282,43.25509],[-77.45634,43.27864],[-77.42256,43.28492],[-77.16385,43.29433],[-77.0503,43.29381],[-76.94178,43.29329],[-76.91447,43.30793],[-76.85051,43.3163],[-76.80236,43.32832],[-76.75996,43.35184],[-76.64785,43.42809],[-76.54509,43.48026],[-76.51993,43.49486],[-76.44304,43.52717],[-76.4222,43.53811],[-76.28206,43.53863],[-76.23822,43.55686],[-76.24038,43.74147],[-76.30649,43.82915],[-76.31152,43.8675],[-76.34602,43.8618],[-76.40064,43.86128],[-76.47178,43.88408],[-76.46675,43.90893],[-76.4186,43.93119],[-76.37189,43.93223],[-76.36974,43.90272],[-76.33308,43.92964],[-76.27847,43.92964],[-76.27847,43.90427],[-76.26697,43.89599],[-76.23607,43.91204],[-76.19295,43.93326],[-76.19007,43.95086],[-76.21523,43.96017],[-76.25044,43.94982],[-76.31224,43.94775],[-76.30578,43.9762],[-76.33093,44.00464],[-76.39561,44.0248],[-76.39848,44.06251],[-76.37548,44.06457],[-76.3762,44.0909],[-76.47107,44.09297],[-76.46604,44.10948],[-76.44232,44.1296],[-76.39848,44.13218],[-76.39776,44.20435],[-76.3762,44.21671],[-76.23966,44.21929],[-76.23966,44.22804],[-76.21738,44.22856],[-76.21523,44.3479],[-76.11893,44.37103],[-76.04634,44.39157],[-75.93423,44.43418],[-75.83721,44.50341],[-75.76822,44.55823],[-75.69923,44.60379],[-75.63168,44.64829],[-75.56772,44.70501],[-75.50448,44.74586],[-75.45274,44.78157],[-75.31763,44.8723],[-75.15378,44.93745],[-75.09054,44.97305],[-74.97411,45.02793],[-74.91985,45.03682],[-74.91231,45.03606]]],"terms_url":"https://gis.ny.gov/gateway/orthoprogram/index.cfm","terms_text":"New York State Statewide Digital Orthoimagery Program","description":"New York State High Resolution Digital Orthoimagery, 1 foot resolution","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/ny/NYS_Orthos_Online.png"},{"id":"openrailwaymap-maxspeeds","name":"OpenRailwayMap Maxspeeds","type":"tms","template":"https://{switch:a,b,c}.tiles.openrailwaymap.org/maxspeed/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"terms_url":"https://www.openrailwaymap.org/","terms_text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","description":"Overlay imagery showing railway speed limits based on OpenStreetMap data","icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","overlay":true},{"id":"openrailwaymap-signalling","name":"OpenRailwayMap Signalling","type":"tms","template":"https://{switch:a,b,c}.tiles.openrailwaymap.org/signals/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"terms_url":"https://www.openrailwaymap.org/","terms_text":"Rendering: OpenRailwayMap, © Map data OpenStreetMap contributors","description":"Overlay imagery showing railway signals based on OpenStreetMap data","icon":"https://www.openrailwaymap.org/img/openrailwaymap-64.png","overlay":true},{"id":"osmbe-nl","name":"OpenStreetMap (Belgian Style - Dutch)","type":"tms","template":"https://tile.openstreetmap.be/osmbe-nl/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"terms_url":"https://openstreetmap.org/","terms_text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"},{"id":"osmbe-fr","name":"OpenStreetMap (Belgian Style - French)","type":"tms","template":"https://tile.openstreetmap.be/osmbe-fr/{zoom}/{x}/{y}.png","zoomExtent":[0,18],"polygon":[[[5.47007,49.49196],[5.44409,49.51409],[5.46213,49.53677],[5.43766,49.54766],[5.42566,49.59145],[5.40775,49.60448],[5.35207,49.62396],[5.34232,49.61192],[5.30544,49.60645],[5.3026,49.63608],[5.32535,49.6575],[5.27025,49.68827],[5.24458,49.67985],[5.16215,49.6918],[5.16164,49.71172],[5.12622,49.70442],[5.09058,49.75946],[5.06262,49.75724],[5.01261,49.77534],[4.9921,49.79533],[4.95485,49.79586],[4.94404,49.78583],[4.90589,49.78055],[4.84827,49.78972],[4.86599,49.81918],[4.84266,49.86913],[4.85659,49.86973],[4.87961,49.91078],[4.84433,49.94482],[4.78844,49.95381],[4.78535,49.97018],[4.79004,49.98569],[4.81194,49.99563],[4.81579,50.02853],[4.83599,50.04069],[4.82339,50.04664],[4.81641,50.06702],[4.83456,50.06856],[4.83709,50.09442],[4.84472,50.10023],[4.85447,50.1029],[4.866,50.09623],[4.86587,50.12038],[4.8776,50.13223],[4.89443,50.13779],[4.88043,50.1403],[4.87725,50.15205],[4.8529,50.15168],[4.83169,50.1526],[4.82334,50.15923],[4.78067,50.14092],[4.76486,50.13634],[4.75217,50.11158],[4.71293,50.09598],[4.70278,50.09336],[4.68851,50.06595],[4.70309,50.05587],[4.68731,50.01802],[4.69495,49.99662],[4.69461,49.99504],[4.63074,49.98584],[4.58965,49.98336],[4.55981,49.96757],[4.54315,49.9679],[4.52365,49.94973],[4.51156,49.94579],[4.47953,49.94584],[4.44588,49.93656],[4.40593,49.94785],[4.39149,49.94697],[4.38072,49.95088],[4.34921,49.95202],[4.3137,49.96541],[4.19616,49.9536],[4.19304,49.95746],[4.19582,49.96629],[4.13704,49.97691],[4.15996,49.99544],[4.13683,50.00786],[4.13272,50.01973],[4.16174,50.05032],[4.17458,50.04772],[4.22857,50.06873],[4.19529,50.10571],[4.19766,50.12037],[4.19566,50.13394],[4.15448,50.12716],[4.13656,50.12909],[4.12568,50.13511],[4.13677,50.15213],[4.14989,50.1647],[4.14686,50.17314],[4.15567,50.19785],[4.14799,50.21344],[4.15979,50.21579],[4.19179,50.24106],[4.21836,50.25492],[4.20676,50.27068],[4.17487,50.27492],[4.16567,50.28779],[4.155,50.27742],[4.16937,50.26848],[4.16851,50.25626],[4.13426,50.25572],[4.13228,50.26754],[4.12086,50.27276],[4.12139,50.29732],[4.10928,50.30112],[4.0977,50.31201],[4.08017,50.30809],[4.07339,50.31754],[4.03817,50.33987],[4.02738,50.35491],[3.98611,50.34137],[3.96482,50.34012],[3.96355,50.34742],[3.90223,50.3257],[3.88419,50.32554],[3.88429,50.33511],[3.85645,50.34099],[3.84244,50.35243],[3.81321,50.34251],[3.80551,50.35098],[3.74124,50.34624],[3.73556,50.32532],[3.73175,50.30705],[3.70911,50.3021],[3.68231,50.31988],[3.66397,50.34724],[3.65542,50.37075],[3.66788,50.38597],[3.67276,50.40227],[3.66777,50.42262],[3.66743,50.43635],[3.65685,50.4464],[3.66129,50.45399],[3.64419,50.4618],[3.6099,50.4935],[3.58162,50.48917],[3.56897,50.4982],[3.49868,50.48577],[3.49448,50.49918],[3.51582,50.52075],[3.4742,50.53204],[3.44739,50.50415],[3.43663,50.5083],[3.42736,50.50327],[3.37405,50.48993],[3.35949,50.50325],[3.32767,50.50732],[3.31872,50.51788],[3.30319,50.51966],[3.28718,50.52552],[3.27549,50.53872],[3.27524,50.59381],[3.25497,50.62115],[3.24349,50.64031],[3.23893,50.65864],[3.24019,50.67023],[3.26029,50.67692],[3.25131,50.69091],[3.25881,50.69312],[3.24518,50.71225],[3.23779,50.71086],[3.22148,50.70958],[3.20498,50.71072],[3.18953,50.72603],[3.19445,50.7316],[3.14457,50.78871],[3.12547,50.78553],[3.11348,50.79278],[3.10455,50.78042],[3.08585,50.77064],[3.05758,50.77987],[3.04064,50.77484],[3.03691,50.77003],[3.02927,50.76813],[3.01945,50.77263],[2.99536,50.76043],[2.96822,50.74763],[2.9557,50.75181],[2.93962,50.74441],[2.94602,50.73167],[2.9349,50.72822],[2.92939,50.70786],[2.92206,50.70224],[2.91184,50.70267],[2.91281,50.69463],[2.90742,50.69209],[2.90017,50.69202],[2.88533,50.70547],[2.87992,50.70199],[2.86855,50.70242],[2.84646,50.72043],[2.81843,50.71386],[2.78869,50.72508],[2.77811,50.74686],[2.76469,50.75397],[2.75409,50.76251],[2.75922,50.77052],[2.73745,50.77967],[2.7236,50.79079],[2.71636,50.8123],[2.6788,50.81207],[2.67057,50.81562],[2.63543,50.80987],[2.61055,50.84419],[2.59427,50.84743],[2.60628,50.86565],[2.60151,50.90993],[2.58525,50.91825],[2.62479,50.94743],[2.62148,50.95406],[2.60263,50.98638],[2.56946,51.00113],[2.55892,51.06596],[2.34072,51.31453],[3.01078,51.59839],[3.32658,51.43728],[3.37581,51.3584],[3.38739,51.33392],[3.36094,51.31523],[3.3789,51.30251],[3.36832,51.29778],[3.38177,51.28732],[3.38342,51.27485],[3.38922,51.27329],[3.41852,51.25984],[3.43471,51.24621],[3.45031,51.24219],[3.527,51.24651],[3.51433,51.28799],[3.54179,51.29123],[3.56145,51.29637],[3.57559,51.29428],[3.58905,51.30652],[3.63839,51.29078],[3.6582,51.29056],[3.69139,51.28043],[3.71763,51.27428],[3.77605,51.26777],[3.79652,51.25635],[3.79031,51.24163],[3.78934,51.22711],[3.79294,51.21546],[3.85827,51.21334],[3.88901,51.22423],[3.89467,51.21743],[3.88782,51.20283],[3.91256,51.20837],[3.91482,51.21509],[3.9281,51.22508],[3.93751,51.2174],[3.95603,51.22117],[4.01551,51.24825],[4.0551,51.24402],[4.1651,51.2938],[4.23804,51.35274],[4.21772,51.36206],[4.21546,51.37487],[4.33535,51.37775],[4.34197,51.36012],[4.38556,51.35574],[4.39906,51.35785],[4.42462,51.3668],[4.42309,51.37577],[4.38147,51.41805],[4.39426,51.44251],[4.37771,51.44595],[4.38055,51.45075],[4.4768,51.47912],[4.53739,51.48358],[4.54967,51.47364],[4.53097,51.44965],[4.53758,51.42456],[4.57427,51.43404],[4.6431,51.42478],[4.64951,51.42741],[4.66744,51.42777],[4.66465,51.44625],[4.69115,51.45283],[4.70175,51.46691],[4.72792,51.48435],[4.74476,51.48977],[4.74945,51.49905],[4.75827,51.50302],[4.7766,51.50625],[4.81666,51.49552],[4.82318,51.48441],[4.84355,51.48177],[4.83884,51.46588],[4.84529,51.45817],[4.82521,51.44674],[4.83103,51.42488],[4.88072,51.4166],[4.91431,51.45952],[4.95767,51.4548],[4.94134,51.42928],[4.93775,51.40655],[4.96007,51.42194],[4.99955,51.44324],[5.00816,51.47134],[5.01937,51.48074],[5.03235,51.48827],[5.04093,51.4876],[5.04722,51.47217],[5.08032,51.47226],[5.10643,51.43135],[5.0727,51.39365],[5.11662,51.36118],[5.13225,51.3472],[5.13581,51.31594],[5.15592,51.31278],[5.20039,51.32325],[5.24326,51.3057],[5.22742,51.26844],[5.238,51.26255],[5.26216,51.26778],[5.335,51.26474],[5.34493,51.27681],[5.41551,51.2639],[5.44065,51.28246],[5.48215,51.30064],[5.51628,51.29599],[5.55816,51.26613],[5.56283,51.22287],[5.65253,51.19899],[5.65947,51.19052],[5.71011,51.18671],[5.74598,51.19455],[5.76873,51.18843],[5.78118,51.18082],[5.78447,51.15925],[5.82594,51.16827],[5.85709,51.14477],[5.83976,51.12993],[5.81435,51.11524],[5.83555,51.10842],[5.8338,51.09577],[5.82291,51.09124],[5.8119,51.0943],[5.79816,51.09023],[5.80612,51.07955],[5.80458,51.05888],[5.77731,51.05804],[5.76027,51.03223],[5.77383,51.02859],[5.77829,51.02399],[5.76759,51.00526],[5.76846,50.9985],[5.76419,50.99502],[5.74816,50.98087],[5.72174,50.96128],[5.73469,50.95683],[5.7426,50.96113],[5.74604,50.96209],[5.75617,50.95898],[5.76011,50.95227],[5.73223,50.9221],[5.72625,50.9059],[5.70051,50.90955],[5.69711,50.8958],[5.68051,50.88068],[5.64516,50.86533],[5.64337,50.84974],[5.64049,50.84701],[5.64576,50.83961],[5.64567,50.83789],[5.65094,50.83431],[5.65568,50.82591],[5.70296,50.80821],[5.69338,50.79687],[5.70259,50.78396],[5.69204,50.75629],[5.7218,50.76538],[5.73762,50.75842],[5.73912,50.76522],[5.76476,50.7837],[5.77748,50.78344],[5.78519,50.7684],[5.7927,50.77138],[5.80759,50.75681],[5.84525,50.76609],[5.84901,50.75975],[5.88667,50.77108],[5.89689,50.75501],[5.95896,50.76308],[6.02001,50.75521],[6.04208,50.74557],[6.03953,50.7295],[6.11623,50.72364],[6.1491,50.68465],[6.16312,50.67169],[6.17755,50.65576],[6.18715,50.6505],[6.18348,50.6457],[6.18205,50.63583],[6.26822,50.62829],[6.27251,50.62033],[6.24102,50.58657],[6.22795,50.58535],[6.18304,50.55597],[6.1833,50.54646],[6.19789,50.53715],[6.22586,50.49832],[6.26954,50.50961],[6.35349,50.49244],[6.34706,50.46422],[6.37423,50.45989],[6.3825,50.43975],[6.37408,50.40637],[6.35129,50.38206],[6.40305,50.34866],[6.41162,50.32769],[6.40783,50.31893],[6.38558,50.31658],[6.36388,50.30021],[6.32792,50.3186],[6.31289,50.31636],[6.29335,50.2909],[6.29547,50.27422],[6.28111,50.26236],[6.23624,50.25692],[6.21151,50.24816],[6.1981,50.23275],[6.18166,50.23125],[6.1789,50.22147],[6.19337,50.20761],[6.19683,50.17988],[6.15231,50.16841],[6.15923,50.14002],[6.13978,50.12527],[6.10856,50.1326],[6.11273,50.16093],[6.10156,50.16551],[6.08452,50.16697],[6.0821,50.15275],[6.06344,50.14834],[6.03055,50.15829],[6.02136,50.17685],[5.96932,50.16795],[5.96515,50.12813],[5.90347,50.11172],[5.89064,50.07554],[5.86237,50.06368],[5.8749,50.04624],[5.86392,50.02594],[5.82586,50.00934],[5.82665,50.00135],[5.8448,49.99123],[5.83952,49.9756],[5.80883,49.95773],[5.78215,49.957],[5.76822,49.91307],[5.74481,49.89975],[5.78087,49.88794],[5.78897,49.87213],[5.77636,49.86265],[5.75667,49.8703],[5.76191,49.85693],[5.75803,49.84287],[5.74291,49.83555],[5.75151,49.81985],[5.75473,49.79514],[5.7909,49.79765],[5.8179,49.75977],[5.83544,49.74713],[5.82702,49.72616],[5.86996,49.72777],[5.88817,49.70952],[5.86372,49.68213],[5.91262,49.66488],[5.90382,49.65192],[5.90876,49.63876],[5.89899,49.63401],[5.89117,49.63469],[5.87663,49.60771],[5.84953,49.59399],[5.87403,49.58991],[5.8736,49.57435],[5.84053,49.55222],[5.82582,49.54931],[5.81858,49.5461],[5.79504,49.55029],[5.77149,49.55832],[5.76226,49.554],[5.76126,49.53952],[5.74792,49.53452],[5.73009,49.53954],[5.6987,49.53744],[5.66008,49.55039],[5.64371,49.54565],[5.6228,49.5283],[5.62589,49.51698],[5.61175,49.50102],[5.59116,49.51734],[5.55638,49.52373],[5.54257,49.5105],[5.47007,49.49196]]],"terms_url":"https://openstreetmap.org/","terms_text":"© OpenStreetMap contributors, CC-BY-SA; Tiles courtesy of GEO-6","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"},{"id":"MAPNIK","name":"OpenStreetMap (Standard)","type":"tms","template":"https://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png","zoomExtent":[0,19],"terms_url":"https://www.openstreetmap.org","terms_text":"© OpenStreetMap contributors, CC-BY-SA 2.0","default":true,"description":"The default OpenStreetMap layer.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png"},{"id":"osm-gps","name":"OpenStreetMap GPS traces","type":"tms","template":"https://{switch:a,b,c}.gps-tile.openstreetmap.org/lines/{zoom}/{x}/{y}.png","zoomExtent":[0,20],"terms_url":"https://www.openstreetmap.org/copyright","terms_text":"© OpenStreetMap contributors","terms_html":"GPS Direction: © OpenStreetMap contributors.","description":"Public GPS traces uploaded to OpenStreetMap.","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenStreetMap-GPS.png","overlay":true},{"id":"osm-hu-ortho","name":"openstreetmap.hu orthophotos","type":"tms","template":"http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/openstreetmap.hu.orthophotos/mercator/{zoom}/{x}/{y}.png","zoomExtent":[0,21],"polygon":[[[18.8577,47.44553],[18.86169,47.44883],[18.86491,47.44704],[18.8609,47.44373],[18.8577,47.44553]],[[18.80614,47.59304],[18.81376,47.5974],[18.82295,47.59011],[18.81533,47.58574],[18.80614,47.59304]],[[17.66691,46.92167],[17.66369,46.93033],[17.67207,46.93178],[17.67529,46.92312],[17.66691,46.92167]],[[17.6725,46.93546],[17.67529,46.92708],[17.68409,46.92845],[17.68129,46.93683],[17.6725,46.93546]],[[17.82155,46.96075],[17.82507,46.9547],[17.83347,46.95701],[17.82995,46.96304],[17.82155,46.96075]],[[18.62796,47.19818],[18.63943,47.20324],[18.64953,47.1926],[18.63806,47.18753],[18.62796,47.19818]],[[17.51223,46.8789],[17.51406,46.88166],[17.5214,46.87939],[17.51957,46.87662],[17.51223,46.8789]],[[17.67724,46.91844],[17.68718,46.92344],[17.70594,46.90603],[17.69249,46.89926],[17.68144,46.90951],[17.68275,46.90595],[17.68198,46.90582],[17.68667,46.89926],[17.67947,46.89686],[17.67405,46.90445],[17.67131,46.90398],[17.66666,46.91662],[17.67724,46.91844]],[[18.80776,47.55615],[18.81638,47.55969],[18.81351,47.56305],[18.80473,47.55949],[18.80776,47.55615]],[[18.98706,47.46989],[18.97962,47.47042],[18.98056,47.47648],[18.988,47.47595],[18.98706,47.46989]],[[18.98356,47.41149],[19.00839,47.42511],[19.01568,47.41932],[18.9907,47.40518],[18.98356,47.41149]],[[19.02652,47.87563],[19.03163,47.87613],[19.03305,47.86957],[19.02793,47.86907],[19.02652,47.87563]],[[18.00803,46.86674],[18.01095,46.86028],[18.01323,46.86064],[18.01626,46.8536],[18.01682,46.85371],[18.01852,46.84948],[18.02021,46.84631],[18.02961,46.84829],[18.02742,46.85392],[18.03388,46.85534],[18.03056,46.86395],[18.03367,46.86456],[18.03058,46.87154],[18.00803,46.86674]],[[17.99509,46.87632],[17.98585,46.87595],[17.98535,46.88397],[17.98599,46.88412],[17.98531,46.88537],[17.95829,46.87876],[17.96077,46.87351],[17.92868,46.86631],[17.92467,46.87372],[17.93136,46.87535],[17.92995,46.87822],[17.9553,46.88415],[17.9946,46.89341],[17.99786,46.88671],[17.98771,46.88443],[17.98774,46.88411],[17.99415,46.88442],[17.99509,46.87632]],[[18.86533,47.42808],[18.87291,47.42455],[18.87701,47.42871],[18.86799,47.43238],[18.86774,47.43208],[18.86517,47.43317],[18.86477,47.4327],[18.86441,47.43285],[18.86288,47.43108],[18.86328,47.43092],[18.86288,47.43046],[18.86516,47.42947],[18.86448,47.42875],[18.86553,47.42829],[18.86533,47.42808]],[[19.16232,47.59776],[19.16893,47.59033],[19.17815,47.59512],[19.17291,47.60068],[19.16232,47.59776]],[[18.13162,47.02619],[18.14103,47.02111],[18.13923,47.01957],[18.15704,47.01044],[18.16271,47.00242],[18.16463,46.99571],[18.16639,46.9959],[18.16702,46.99363],[18.17101,46.99454],[18.1722,46.99571],[18.16977,47.00416],[18.17656,47.00709],[18.1761,47.00771],[18.17639,47.00781],[18.17057,47.01414],[18.1748,47.01815],[18.17782,47.01428],[18.18518,47.01746],[18.17933,47.0239],[18.17589,47.02268],[18.17277,47.02434],[18.17219,47.02377],[18.17159,47.02407],[18.16938,47.0221],[18.16216,47.02596],[18.16485,47.02832],[18.16245,47.02947],[18.16323,47.03025],[18.1521,47.03554],[18.15156,47.03498],[18.1503,47.03563],[18.14513,47.03112],[18.14337,47.0322],[18.1454,47.03419],[18.14441,47.03467],[18.14522,47.03539],[18.14168,47.03697],[18.13111,47.02745],[18.13226,47.0269],[18.13162,47.02619]],[[17.79852,46.81745],[17.79178,46.81585],[17.79601,46.80664],[17.7948,46.80598],[17.79693,46.80056],[17.80109,46.79993],[17.80736,46.80225],[17.79852,46.81745]],[[17.7788,46.81461],[17.78446,46.80714],[17.79083,46.80925],[17.7853,46.81683],[17.7788,46.81461]]],"terms_text":"openstreetmap.hu"},{"id":"lu.openstreetmap.lidar.hillshade.2019.classy","name":"openstreetmap.lu \"mapper’s delight\" hillshade lidar 2019 with unclassified points","type":"tms","template":"https://lidar-hillshade-2019.openstreetmap.lu/layer/mappers_delight_lidar_hillshade_2019_withunclassified/{zoom}/{x}/{y}.png","startDate":"2019-02-15T00:00:00.000Z","zoomExtent":[5,22],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/fr/datasets/lidar-2019-releve-3d-du-territoire-luxembourgeois","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"OpenTopoMap","name":"OpenTopoMap","type":"tms","template":"https://{switch:a,b,c}.tile.opentopomap.org/{zoom}/{x}/{y}.png","zoomExtent":[3,17],"terms_url":"https://tile.opentopomap.org/about#verwendung","terms_text":"Kartendaten: © OpenStreetMap-Mitwirkende, SRTM | Kartendarstellung: © OpenTopoMap (CC-BY-SA)","icon":"https://osmlab.github.io/editor-layer-index/sources/world/OpenTopoMap.png"},{"id":"lu.geoportail.opendata.ortho2017","name":"Ortho 2017 geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2017/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2017-06-22T00:00:00.000Z","startDate":"2017-06-14T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"lu.geoportail.opendata.ortho2018","name":"Ortho 2018 geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/ortho_2018/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.jpeg","endDate":"2018-08-05T00:00:00.000Z","startDate":"2018-07-02T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/bd-l-ortho-webservices-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"fr.orthohr","name":"Ortho HR","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/orthohr/{zoom}/{x}/{y}","endDate":"2017-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[-61.12838,16.27262],[-61.12802,16.3177],[-61.08117,16.31735],[-61.08081,16.3624],[-60.98729,16.36171],[-60.98801,16.27147],[-61.08182,16.27216],[-61.0829,16.13668],[-61.17641,16.13736],[-61.17605,16.18258],[-61.12924,16.18223],[-61.12888,16.22748],[-61.31591,16.22885],[-61.31627,16.18378],[-61.5033,16.18515],[-61.50366,16.13997],[-61.55028,16.14031],[-61.5528,15.82392],[-61.69278,15.82495],[-61.69207,15.91522],[-61.73887,15.91557],[-61.73851,15.96069],[-61.78543,15.96104],[-61.784,16.14172],[-61.8312,16.14207],[-61.82904,16.41332],[-61.54844,16.41127],[-61.54771,16.5018],[-61.50091,16.50145],[-61.50055,16.54664],[-61.40687,16.54595],[-61.40723,16.50076],[-61.36043,16.50041],[-61.36151,16.36483],[-61.26796,16.36414],[-61.26832,16.31891],[-61.22158,16.31857],[-61.22194,16.2733],[-61.12838,16.27262]],[[-63.09449,18.04349],[-63.18897,18.04342],[-63.18902,18.08862],[-63.09451,18.08869],[-63.09453,18.13388],[-62.95273,18.1339],[-62.95275,18.0887],[-63,18.08871],[-63,18.04352],[-63.04724,18.04351],[-63.04723,17.99832],[-63.09446,17.9983],[-63.09449,18.04349]],[[-61.36452,16.0034],[-61.31781,16.00304],[-61.31743,16.04822],[-61.22398,16.04747],[-61.22438,16.00229],[-61.17767,16.00189],[-61.17889,15.86636],[-61.22557,15.86674],[-61.22597,15.82156],[-61.31931,15.82231],[-61.31893,15.86749],[-61.36562,15.86785],[-61.36452,16.0034]],[[-60.77401,14.41694],[-60.82036,14.41737],[-60.8208,14.3722],[-60.91349,14.37303],[-60.91307,14.41821],[-61.09849,14.41978],[-61.09811,14.46496],[-61.14448,14.46533],[-61.14335,14.60089],[-61.18975,14.60125],[-61.18901,14.69162],[-61.23543,14.69198],[-61.2336,14.9179],[-61.0942,14.91679],[-61.0946,14.8716],[-61.00169,14.87081],[-61.0021,14.82563],[-60.86278,14.82438],[-60.86367,14.73403],[-60.81725,14.7336],[-60.81859,14.59808],[-60.7722,14.59764],[-60.77401,14.41694]],[[-2.36901,46.68959],[-2.43428,46.68652],[-2.44329,46.77634],[-2.31253,46.78247],[-2.30812,46.73755],[-2.24278,46.74056],[-2.23411,46.65071],[-2.36456,46.64468],[-2.36901,46.68959]],[[1.83294,49.23903],[1.7643,49.23834],[1.76537,49.1934],[1.69679,49.19268],[1.69905,49.10278],[1.6306,49.10202],[1.63178,49.05707],[1.56339,49.05627],[1.56711,48.92141],[1.49889,48.92058],[1.50148,48.83066],[1.43339,48.82979],[1.43608,48.73987],[1.09622,48.73493],[1.09786,48.68997],[0.89415,48.68655],[0.89596,48.64159],[0.89596,48.64159],[0.89777,48.59663],[0.96555,48.59781],[0.96729,48.55285],[1.03502,48.55399],[1.03671,48.50902],[0.96904,48.50789],[0.97078,48.46292],[1.03839,48.46406],[1.04007,48.41909],[0.97251,48.41795],[0.97598,48.32802],[0.84111,48.32563],[0.84662,48.19072],[0.91389,48.19193],[0.91566,48.14695],[0.98287,48.14812],[0.98458,48.10314],[0.91744,48.10198],[0.9192,48.057],[0.85211,48.05579],[0.85939,47.87587],[0.79253,47.87464],[0.79626,47.78467],[0.72952,47.7834],[0.73144,47.73841],[0.66476,47.7371],[0.66869,47.64713],[0.53556,47.6444],[0.53764,47.59942],[0.40463,47.59653],[0.40681,47.55155],[0.27393,47.54852],[0.27851,47.45856],[0.21219,47.45699],[0.2192,47.32204],[0.15305,47.32044],[0.15781,47.23047],[0.09177,47.22883],[0.09663,47.13887],[0.03071,47.13719],[0.03566,47.04722],[-0.22755,47.04017],[-0.23025,47.08515],[-0.36194,47.08139],[-0.35914,47.03641],[-0.4907,47.03251],[-0.48779,46.98754],[-0.81634,46.97713],[-0.81316,46.93216],[-0.74752,46.93432],[-0.74129,46.84438],[-0.67575,46.8465],[-0.66966,46.75655],[-0.60422,46.75863],[-0.58341,46.4438],[-0.51835,46.44583],[-0.50967,46.31089],[-0.70437,46.30472],[-0.70133,46.25975],[-0.76616,46.25762],[-0.76926,46.30259],[-0.9639,46.29598],[-0.96717,46.34095],[-1.03209,46.33867],[-1.02877,46.2937],[-1.09364,46.29137],[-1.09028,46.24643],[-1.34947,46.23681],[-1.35662,46.32672],[-1.48639,46.32168],[-1.49009,46.36663],[-1.61994,46.36144],[-1.62375,46.40638],[-1.75369,46.40104],[-1.7576,46.44598],[-1.82262,46.44325],[-1.8266,46.48819],[-1.89165,46.48542],[-1.90379,46.62023],[-1.969,46.61741],[-1.97311,46.66235],[-2.03837,46.65949],[-2.04673,46.74935],[-2.11209,46.74646],[-2.11633,46.79138],[-2.18173,46.78845],[-2.19466,46.92321],[-2.32578,46.91722],[-2.33465,47.00705],[-2.4003,47.00399],[-2.4048,47.0489],[-2.20765,47.05797],[-2.20331,47.01305],[-2.07195,47.01891],[-2.07618,47.06383],[-2.14192,47.06092],[-2.14621,47.10584],[-2.27778,47.0999],[-2.2866,47.18973],[-2.35248,47.1867],[-2.35695,47.23161],[-2.55472,47.22229],[-2.57336,47.40189],[-2.63948,47.3987],[-2.64422,47.44359],[-2.71039,47.44036],[-2.71519,47.48525],[-2.78141,47.48197],[-2.77655,47.43709],[-2.84271,47.43378],[-2.84762,47.47866],[-2.91382,47.47531],[-2.91879,47.5202],[-3.05128,47.51338],[-3.04113,47.42363],[-2.90886,47.43043],[-2.9039,47.38555],[-2.83781,47.38889],[-2.83292,47.344],[-2.76687,47.34731],[-2.76204,47.30241],[-2.89402,47.29578],[-2.89896,47.34066],[-3.03101,47.33387],[-3.02092,47.24411],[-3.15272,47.23717],[-3.15787,47.28205],[-3.28974,47.27496],[-3.30557,47.40956],[-3.17337,47.41667],[-3.19415,47.59615],[-3.26048,47.5926],[-3.26575,47.63747],[-3.33213,47.63388],[-3.33746,47.67874],[-3.40388,47.67511],[-3.39311,47.5854],[-3.5257,47.57804],[-3.54223,47.71258],[-3.60866,47.70885],[-3.61423,47.7537],[-3.88015,47.73834],[-3.86856,47.64867],[-4.06756,47.63677],[-4.08546,47.77124],[-4.21842,47.7631],[-4.21233,47.71828],[-4.34513,47.71],[-4.35133,47.75481],[-4.41777,47.7506],[-4.44289,47.92981],[-4.50954,47.92555],[-4.5159,47.97035],[-4.64928,47.96172],[-4.65577,48.0065],[-4.98931,47.98425],[-5.00287,48.07378],[-4.66877,48.09607],[-4.68836,48.2304],[-4.75537,48.22601],[-4.76198,48.27078],[-4.96311,48.25736],[-4.9767,48.34688],[-5.11096,48.33773],[-5.11788,48.38248],[-5.18505,48.37784],[-5.20606,48.51206],[-5.00401,48.52589],[-4.99717,48.48114],[-4.86253,48.49016],[-4.876,48.57967],[-4.80855,48.58413],[-4.81525,48.62888],[-4.61265,48.64204],[-4.61919,48.68681],[-4.07798,48.72024],[-4.09017,48.80982],[-3.95453,48.81781],[-3.94855,48.77301],[-3.88077,48.77694],[-3.87485,48.73214],[-3.80712,48.73604],[-3.81298,48.78084],[-3.74519,48.78469],[-3.73938,48.73989],[-3.67164,48.7437],[-3.69467,48.92293],[-3.35462,48.94148],[-3.34913,48.89666],[-3.14516,48.90733],[-3.15047,48.95215],[-3.01433,48.95907],[-3.00914,48.91424],[-2.94111,48.91764],[-2.93087,48.82796],[-2.86295,48.83132],[-2.84783,48.69678],[-2.71232,48.70336],[-2.69762,48.56878],[-2.63002,48.57201],[-2.6397,48.66173],[-2.50424,48.66807],[-2.50898,48.71293],[-2.44118,48.71605],[-2.43651,48.67118],[-2.36876,48.67426],[-2.37338,48.71913],[-2.23775,48.72517],[-2.23325,48.68029],[-2.16547,48.68323],[-2.0977,48.68617],[-2.10209,48.73105],[-1.7628,48.74509],[-1.75462,48.65531],[-1.61935,48.66059],[-1.6343,48.83954],[-1.90748,48.82964],[-1.915,48.91943],[-1.6433,48.92927],[-1.65089,49.01966],[-1.71962,49.01718],[-1.72716,49.10696],[-1.65937,49.1094],[-1.66693,49.19917],[-1.73619,49.19668],[-1.74754,49.33108],[-1.8169,49.32859],[-1.82067,49.37319],[-1.89102,49.37067],[-1.91383,49.63955],[-1.98516,49.637],[-1.99664,49.77173],[-1.85873,49.77664],[-1.85495,49.73226],[-1.78534,49.73474],[-1.78156,49.69037],[-1.50482,49.70024],[-1.50867,49.74551],[-1.30108,49.75289],[-1.29726,49.70808],[-1.22823,49.71054],[-1.22059,49.62076],[-1.15174,49.62321],[-1.14792,49.57835],[-1.21707,49.57588],[-1.21326,49.53101],[-1.14468,49.53347],[-1.13326,49.39881],[-1.11189,49.39951],[-1.06517,49.40119],[-1.06516,49.40104],[-0.78964,49.41007],[-0.78634,49.36518],[-0.37382,49.3774],[-0.37088,49.3325],[-0.02727,49.3416],[-0.02991,49.38651],[0.03889,49.38822],[0.03631,49.43312],[0.10517,49.43479],[0.10472,49.44279],[0.04806,49.51808],[0.13183,49.64362],[0.10574,49.66674],[0.1799,49.7227],[0.29388,49.74844],[0.60562,49.87074],[0.78433,49.88829],[0.94299,49.93134],[1.05791,49.93204],[1.37975,50.08711],[1.4637,50.09093],[1.46413,50.04399],[1.53704,50.04513],[1.54015,50.00082],[1.60476,50.00192],[1.60995,49.95619],[1.74631,49.95573],[1.7488,49.82441],[1.82047,49.82537],[1.82314,49.64284],[1.75617,49.64287],[1.75619,49.55354],[1.82455,49.55238],[1.82844,49.41916],[1.75999,49.4181],[1.76107,49.37317],[1.82989,49.37385],[1.83294,49.23903]],[[8.91208,42.64618],[8.91664,42.691],[9.03816,42.6842],[9.04748,42.77385],[9.29081,42.75982],[9.32008,43.02874],[9.38118,43.02512],[9.38613,43.06995],[9.44726,43.0663],[9.44226,43.02148],[9.50334,43.01779],[9.48825,42.88335],[9.54918,42.87965],[9.53402,42.74523],[9.47323,42.74893],[9.46326,42.65932],[9.52396,42.65563],[9.51893,42.61083],[9.57958,42.6071],[9.54933,42.33837],[9.60969,42.33463],[9.57443,42.0212],[9.51439,42.02492],[9.50943,41.98015],[9.44942,41.98383],[9.39584,41.49148],[9.33632,41.49509],[9.31723,41.31611],[9.13917,41.32672],[9.1438,41.37147],[9.02497,41.37838],[9.02952,41.42314],[8.97005,41.42655],[8.97456,41.47131],[8.79597,41.48134],[8.80035,41.52612],[8.74077,41.52939],[8.75818,41.70853],[8.63863,41.715],[8.65149,41.84939],[8.53164,41.85574],[8.54429,41.99017],[8.60435,41.987],[8.60862,42.03181],[8.66872,42.0286],[8.67305,42.07341],[8.55275,42.07979],[8.55699,42.12461],[8.49678,42.12775],[8.50941,42.26222],[8.56975,42.25907],[8.57402,42.30389],[8.51363,42.30705],[8.52209,42.39671],[8.58257,42.39355],[8.59545,42.52805],[8.65606,42.52485],[8.66477,42.61451],[8.78616,42.608],[8.79062,42.65283],[8.91208,42.64618]],[[7.58608,49.06679],[7.58674,49.06677],[7.58678,49.06727],[7.72342,49.06246],[7.72699,49.10563],[7.72736,49.10562],[7.72747,49.10684],[8.00039,49.09701],[8.0003,49.09579],[8.00082,49.09577],[7.997,49.05088],[8.13248,49.04589],[8.13243,49.04517],[8.133,49.04514],[8.12913,49.00025],[8.26373,48.99521],[8.26367,48.99442],[8.26492,48.99437],[8.25711,48.90501],[8.25587,48.90505],[8.25583,48.90464],[8.18773,48.9072],[8.18004,48.81822],[8.17887,48.81826],[8.17883,48.81787],[8.11084,48.82042],[8.10706,48.77627],[8.10651,48.77629],[8.10648,48.77593],[8.03854,48.77845],[8.03099,48.68937],[8.02995,48.6894],[8.02992,48.68906],[7.96209,48.69156],[7.95838,48.64732],[7.95789,48.64734],[7.95786,48.64701],[7.89009,48.64949],[7.88268,48.56031],[7.88176,48.56034],[7.88173,48.56004],[7.81407,48.5625],[7.79202,48.2936],[7.78948,48.29368],[7.78945,48.2934],[7.72213,48.29584],[7.71128,48.1616],[7.71012,48.16164],[7.7101,48.16139],[7.64295,48.1638],[7.60013,47.62483],[7.66214,47.62261],[7.66212,47.62237],[7.66248,47.62236],[7.66052,47.5999],[7.65893,47.57766],[7.65858,47.57767],[7.65856,47.57743],[7.59214,47.57983],[7.58511,47.4904],[7.58446,47.49042],[7.58444,47.4902],[7.51812,47.49258],[7.51466,47.44805],[7.51436,47.44806],[7.51435,47.44786],[7.44808,47.45021],[7.44468,47.40616],[7.44443,47.40617],[7.44437,47.40547],[7.11353,47.41696],[7.11358,47.41765],[7.11332,47.41766],[7.11678,47.46259],[7.0505,47.46494],[7.0471,47.41999],[6.98086,47.42227],[6.97752,47.37732],[7.10987,47.37271],[7.10299,47.28281],[6.97086,47.28741],[6.96422,47.1975],[6.89826,47.19974],[6.89175,47.10982],[6.76003,47.11418],[6.75376,47.02425],[6.68801,47.02637],[6.68493,46.9814],[6.61923,46.98349],[6.61621,46.93852],[6.48489,46.94256],[6.47045,46.71768],[6.40505,46.71964],[6.40223,46.67467],[6.33688,46.67659],[6.33412,46.6316],[6.26882,46.63349],[6.26612,46.5885],[6.20087,46.59035],[6.19558,46.50038],[6.13044,46.50218],[6.12528,46.4122],[6.06023,46.41397],[6.0552,46.32399],[5.99026,46.32571],[5.9878,46.28072],[5.92291,46.2824],[5.9205,46.23741],[5.66111,46.24378],[5.6633,46.28877],[5.59839,46.29027],[5.59625,46.24527],[5.40166,46.24955],[5.40363,46.29455],[5.33871,46.2959],[5.34256,46.38591],[5.27753,46.38723],[5.28129,46.47724],[5.34643,46.47592],[5.3581,46.74593],[5.29264,46.74725],[5.29836,46.88225],[5.23272,46.88354],[5.23458,46.92854],[4.8404,46.93551],[4.83887,46.89051],[4.57625,46.8944],[4.57756,46.93941],[4.51185,46.94029],[4.51311,46.9853],[4.44734,46.98614],[4.44854,47.03115],[4.31688,47.03273],[4.31798,47.07774],[4.12031,47.07982],[4.11381,46.76473],[3.98278,46.76593],[3.98197,46.72091],[3.85105,46.72195],[3.85035,46.67694],[3.71953,46.67783],[3.71894,46.63281],[3.78429,46.63238],[3.78299,46.54234],[3.97872,46.54084],[3.97792,46.49582],[4.0431,46.49524],[4.03882,46.27015],[3.9739,46.2707],[3.9731,46.2257],[4.36227,46.2217],[4.36339,46.26672],[4.4283,46.26593],[4.42712,46.22091],[4.49198,46.22008],[4.48953,46.13004],[4.36003,46.13167],[4.35448,45.90658],[4.41897,45.90579],[4.41205,45.63569],[4.54038,45.634],[4.53913,45.58899],[4.73146,45.58619],[4.72866,45.49616],[4.79266,45.49516],[4.78687,45.31512],[4.65927,45.31708],[4.65659,45.22706],[4.5292,45.22887],[4.52673,45.13885],[4.46313,45.1397],[4.46196,45.09469],[4.39841,45.0955],[4.39616,45.00548],[4.33271,45.00626],[4.33057,44.91623],[4.20387,44.91768],[4.20194,44.82765],[4.07544,44.82895],[4.07458,44.78394],[3.94817,44.78509],[3.94514,44.60505],[4.00815,44.60449],[4.00574,44.46947],[4.06859,44.46888],[4.06774,44.42387],[4.13054,44.42325],[4.12964,44.37824],[4.19239,44.37758],[4.19144,44.33258],[4.31684,44.33115],[4.31788,44.37615],[4.38063,44.37538],[4.56885,44.37286],[4.5676,44.32786],[4.63029,44.32695],[4.63158,44.37195],[4.88251,44.36794],[4.8855,44.45793],[5.07397,44.45455],[5.07232,44.40955],[5.13509,44.40836],[5.13339,44.36336],[5.07068,44.36456],[5.06903,44.31957],[5.19437,44.31714],[5.19263,44.27215],[5.31785,44.26958],[5.31601,44.22459],[5.44112,44.22188],[5.43919,44.1769],[5.50169,44.17549],[5.50367,44.22047],[5.62877,44.21755],[5.63085,44.26253],[5.56826,44.26401],[5.5703,44.30899],[5.445,44.31185],[5.44694,44.35684],[5.38424,44.35821],[5.38803,44.44819],[5.45083,44.44681],[5.45474,44.53679],[5.58054,44.53392],[5.58672,44.66889],[5.77584,44.6643],[5.78251,44.79926],[5.90887,44.79602],[5.9112,44.841],[5.97443,44.83933],[5.97682,44.88431],[6.22989,44.87724],[6.23248,44.92222],[6.29579,44.92036],[6.29844,44.96533],[6.17171,44.96902],[6.18193,45.14895],[6.37262,45.14335],[6.36991,45.09837],[6.43341,45.09643],[6.43618,45.14141],[6.69035,45.13329],[6.68442,45.04334],[6.81127,45.03907],[6.8021,44.90417],[6.99189,44.89751],[6.9887,44.85255],[7.0519,44.85026],[7.04542,44.76035],[7.10851,44.75802],[7.10195,44.66812],[6.97596,44.67272],[6.96645,44.53785],[6.9036,44.54009],[6.90049,44.49514],[6.9633,44.4929],[6.95385,44.35804],[7.01651,44.35577],[7.01014,44.26587],[7.13523,44.26123],[7.13195,44.21629],[7.25692,44.21151],[7.25355,44.16657],[7.50324,44.15659],[7.5068,44.20152],[7.69415,44.19366],[7.69044,44.14874],[7.75283,44.14605],[7.74158,44.01129],[7.67933,44.01397],[7.67196,43.92413],[7.60981,43.92677],[7.60618,43.88185],[7.54407,43.88446],[7.5298,43.70478],[7.40596,43.70987],[7.4025,43.66495],[7.27874,43.66989],[7.27538,43.62497],[7.15169,43.62977],[7.14844,43.58484],[7.21024,43.58246],[7.20694,43.53754],[7.14519,43.53992],[7.14195,43.49499],[7.01852,43.49964],[7.01538,43.45471],[6.95371,43.45695],[6.94754,43.36713],[6.76279,43.37372],[6.74816,43.14909],[6.6868,43.1512],[6.68394,43.10628],[6.43866,43.11439],[6.43599,43.06946],[6.55854,43.06548],[6.55303,42.97563],[6.43066,42.97961],[6.42801,42.93469],[6.36687,42.93662],[6.36948,42.98155],[6.30829,42.98345],[6.30572,42.93852],[6.12227,42.94401],[6.12469,42.98894],[6.06348,42.9907],[6.06586,43.03564],[5.88208,43.04072],[5.87984,42.99578],[5.7574,42.99899],[5.75954,43.04393],[5.69826,43.04548],[5.70036,43.09043],[5.63903,43.09195],[5.64109,43.13686],[5.51833,43.13983],[5.52029,43.18478],[5.45886,43.1862],[5.45695,43.14125],[5.33417,43.14397],[5.33599,43.18893],[5.21311,43.19152],[5.21483,43.23648],[5.27632,43.2352],[5.2781,43.28016],[4.97038,43.28621],[4.97192,43.33117],[4.91032,43.33228],[4.90883,43.28731],[4.78573,43.28941],[4.78712,43.33438],[4.54069,43.33817],[4.5431,43.42812],[4.1111,43.43341],[4.11197,43.47839],[4.0502,43.479],[4.05102,43.52399],[3.9892,43.52457],[3.98843,43.47959],[3.86489,43.48064],[3.86421,43.43566],[3.80249,43.43613],[3.80186,43.39115],[3.74018,43.39159],[3.7396,43.34662],[3.61634,43.34739],[3.61586,43.30241],[3.55428,43.30274],[3.55384,43.25777],[3.36923,43.25856],[3.36895,43.21358],[3.30746,43.21377],[3.30722,43.1688],[3.24577,43.16896],[3.24558,43.12398],[3.18419,43.12411],[3.18404,43.07913],[3.1227,43.07922],[3.12251,42.98928],[3.06125,42.98934],[3.06121,42.94437],[3.12241,42.94432],[3.12222,42.85439],[3.06111,42.85444],[3.06083,42.58471],[3.12166,42.58466],[3.12156,42.53971],[3.18234,42.53962],[3.18192,42.40479],[3,42.40494],[3,42.44989],[2.87862,42.44982],[2.87872,42.40487],[2.69679,42.40451],[2.69726,42.31463],[2.45507,42.31367],[2.45466,42.3586],[2.33347,42.35792],[2.33296,42.40285],[2.15105,42.40156],[2.15171,42.35662],[2.09112,42.35612],[2.09181,42.31119],[1.97074,42.31008],[1.96995,42.35502],[1.90936,42.35442],[1.90769,42.44429],[1.72566,42.44227],[1.72468,42.48721],[1.66397,42.48647],[1.66294,42.53141],[1.7237,42.53215],[1.72272,42.57709],[1.6011,42.57557],[1.60002,42.62051],[1.53916,42.6197],[1.54029,42.57476],[1.41868,42.57302],[1.41746,42.61797],[1.35661,42.61705],[1.35534,42.66199],[1.29445,42.66104],[1.29313,42.70598],[1.23219,42.70499],[1.23355,42.66005],[1.11178,42.65797],[1.10886,42.74785],[0.86495,42.74327],[0.8633,42.78821],[0.80228,42.78698],[0.80058,42.83192],[0.67846,42.82934],[0.68205,42.73947],[0.74301,42.74077],[0.74476,42.69583],[0.68384,42.69453],[0.68562,42.6496],[0.62476,42.64826],[0.62292,42.69319],[0.56201,42.69182],[0.56389,42.64689],[0.25961,42.63952],[0.25749,42.68445],[-0.10782,42.67446],[-0.11022,42.71938],[-0.17114,42.71759],[-0.17359,42.76251],[-0.23455,42.76069],[-0.23705,42.80561],[-0.35906,42.80186],[-0.36687,42.93662],[-0.30572,42.93852],[-0.31343,43.0733],[-0.25214,43.07517],[-0.25466,43.12011],[-0.19332,43.12194],[-0.19581,43.16688],[-0.13441,43.16868],[-0.1393,43.25856],[-0.20079,43.25675],[-0.20328,43.3017],[-0.14175,43.3035],[-0.14665,43.39339],[-0.08502,43.39516],[-0.09226,43.53001],[-0.15404,43.52823],[-0.15651,43.57318],[-0.28016,43.56952],[-0.28273,43.61447],[-0.34459,43.61258],[-0.34722,43.65753],[-0.28531,43.65942],[-0.29047,43.74932],[-0.22845,43.75118],[-0.23608,43.88605],[-0.29824,43.88419],[-0.30084,43.92915],[-0.23863,43.93101],[-0.24119,43.97597],[-0.05439,43.98135],[-0.0568,44.02632],[0.00552,44.02804],[0.00788,43.98307],[0.07016,43.98476],[0.06785,44.02973],[0.44189,44.03911],[0.43986,44.08409],[0.68948,44.08964],[0.68765,44.13462],[0.75012,44.13592],[0.74833,44.18091],[0.81085,44.18218],[0.80911,44.22716],[0.87168,44.22839],[0.86999,44.27338],[0.80737,44.27215],[0.80563,44.31714],[0.8683,44.31837],[0.86491,44.40836],[0.99045,44.41072],[0.98725,44.50071],[0.92438,44.49954],[0.92107,44.58954],[1.04701,44.59183],[1.04545,44.63683],[1.10848,44.63793],[1.10696,44.68293],[1.17004,44.68399],[1.16858,44.72899],[1.23171,44.73002],[1.22888,44.82003],[1.35535,44.82197],[1.34873,45.04702],[1.72972,45.05201],[1.73074,45.007],[1.79419,45.0077],[1.79516,44.96269],[1.85857,44.96336],[1.85765,45.00837],[2.04802,45.01016],[2.04649,45.1002],[2.17361,45.10121],[2.17094,45.28129],[2.23471,45.28174],[2.23409,45.32676],[2.29792,45.32718],[2.29678,45.41722],[2.36071,45.4176],[2.36019,45.46262],[2.48815,45.46328],[2.48773,45.5083],[2.4237,45.50799],[2.42135,45.73311],[2.35706,45.73276],[2.35549,45.86783],[2.41994,45.86818],[2.41946,45.9132],[2.48396,45.91351],[2.48354,45.95854],[2.5481,45.95881],[2.54736,46.04886],[2.4827,46.04858],[2.481,46.22868],[2.41612,46.22836],[2.41564,46.27338],[2.35072,46.27303],[2.35018,46.31806],[2.28521,46.31767],[2.28462,46.36269],[2.21959,46.36226],[2.21765,46.49732],[2.28284,46.49775],[2.28225,46.54277],[2.54324,46.54411],[2.54211,46.67917],[2.60752,46.67942],[2.6072,46.72444],[2.67266,46.72464],[2.67239,46.76966],[2.86896,46.77005],[2.86885,46.81507],[3,46.81511],[3,47.17528],[2.93398,47.17526],[2.93387,47.26529],[2.86775,47.26523],[2.86764,47.31025],[2.80146,47.31015],[2.80129,47.35516],[2.86753,47.35526],[2.86719,47.49025],[2.73439,47.49006],[2.73461,47.44505],[2.60191,47.44467],[2.60124,47.53469],[2.46833,47.53416],[2.46788,47.57916],[2.20184,47.57765],[2.20049,47.66765],[2.00063,47.66612],[2.00147,47.62111],[1.73524,47.61853],[1.73417,47.66353],[1.66756,47.66279],[1.66644,47.70779],[1.53311,47.70619],[1.53063,47.79618],[1.46386,47.79533],[1.46256,47.84032],[1.52939,47.84118],[1.52814,47.88617],[1.46126,47.88531],[1.45602,48.06526],[1.59025,48.06694],[1.58905,48.11193],[1.85776,48.11484],[1.85582,48.20481],[1.92311,48.20544],[1.92127,48.29541],[1.98869,48.29601],[1.98782,48.34099],[2.19024,48.34254],[2.18955,48.38753],[2.25708,48.38797],[2.25772,48.34299],[2.46015,48.34408],[2.46061,48.2991],[2.52803,48.29939],[2.52924,48.16442],[2.73099,48.16506],[2.73076,48.21004],[2.86538,48.21027],[2.8655,48.16528],[2.93275,48.16534],[2.93269,48.21033],[3,48.21035],[3,48.16536],[3.06725,48.16534],[3.06714,48.07536],[3.13428,48.0753],[3.13382,47.89532],[3.06691,47.89537],[3.06674,47.76037],[2.93326,47.76037],[2.93337,47.67037],[3,47.67039],[3,47.58032],[3.06652,47.58036],[3.06657,47.62536],[3.13314,47.62531],[3.13303,47.5803],[3.19955,47.58021],[3.19938,47.5352],[3.46521,47.53444],[3.46561,47.57945],[3.53212,47.57916],[3.53167,47.53416],[3.59813,47.53384],[3.59762,47.48883],[3.73042,47.48807],[3.72981,47.44307],[3.92883,47.44165],[3.92805,47.39664],[3.99433,47.39609],[3.9935,47.35109],[4.05973,47.3505],[4.06329,47.53052],[4.12974,47.5299],[4.13165,47.6199],[4.1982,47.61924],[4.20124,47.75423],[4.26797,47.75353],[4.26904,47.79852],[4.20226,47.79923],[4.20532,47.93421],[4.13836,47.93488],[4.1374,47.88988],[3.8698,47.89217],[3.87054,47.93717],[3.80358,47.93764],[3.80563,48.07262],[3.7385,48.07306],[3.73912,48.11805],[3.60474,48.11882],[3.60526,48.16381],[3.53801,48.16414],[3.53939,48.2991],[3.47197,48.29939],[3.47237,48.34437],[3.40489,48.34462],[3.40524,48.3896],[3.3377,48.38982],[3.33886,48.56974],[3.40663,48.56952],[3.40768,48.70445],[3.33973,48.70466],[3.34061,48.83956],[3.40873,48.83935],[3.40909,48.88432],[3.47726,48.88406],[3.47768,48.92903],[3.54591,48.92874],[3.54639,48.9737],[3.61468,48.97337],[3.61521,49.01833],[3.54686,49.01866],[3.54876,49.19847],[3.61735,49.19814],[3.6195,49.37793],[3.82599,49.37669],[3.82671,49.42163],[4.03337,49.42004],[4.03699,49.59977],[3.96786,49.60034],[3.96871,49.64527],[4.10708,49.64409],[4.10903,49.73394],[4.17833,49.73329],[4.18352,49.95785],[3.97469,49.9597],[3.97555,50.0046],[2.72126,50.00817],[2.72101,50.05308],[2.58152,50.05268],[2.58115,50.09759],[2.44154,50.09703],[2.44203,50.05213],[2.37229,50.05179],[2.37062,50.1865],[2.02099,50.18421],[2.02013,50.2291],[1.95014,50.22853],[1.94921,50.27342],[1.80913,50.27214],[1.80807,50.31703],[1.59777,50.31482],[1.59652,50.3597],[1.52637,50.35889],[1.51449,50.7627],[1.58521,50.76352],[1.58394,50.80838],[1.51315,50.80755],[1.51048,50.89725],[1.65231,50.89886],[1.6511,50.94371],[1.72208,50.94445],[1.72093,50.98929],[1.93408,50.99129],[1.93312,51.03613],[2.07536,51.03726],[2.07452,51.0821],[2.50165,51.08453],[2.5012,51.12937],[2.57246,51.12963],[2.57323,51.03995],[2.64435,51.04017],[2.64563,50.86078],[2.7165,50.86096],[2.71676,50.8161],[2.78757,50.81624],[2.78776,50.77138],[3,50.77156],[3,50.81642],[3.21243,50.81624],[3.21205,50.72652],[3.28273,50.72638],[3.28223,50.63664],[3.35279,50.63646],[3.35216,50.54671],[3.63387,50.54559],[3.63331,50.50072],[3.70367,50.50034],[3.70179,50.36569],[4.12282,50.36258],[4.12183,50.31769],[4.26203,50.31634],[4.2598,50.22656],[4.18982,50.22725],[4.18771,50.13746],[4.25757,50.13677],[4.25424,50.00207],[4.39357,50.00056],[4.39234,49.95566],[4.46194,49.95485],[4.46323,49.99975],[4.60255,49.99801],[4.60397,50.04291],[4.67368,50.04197],[4.67665,50.13176],[4.74648,50.13079],[4.74803,50.17568],[4.95771,50.17252],[4.95425,50.08274],[4.88448,50.08383],[4.8795,49.94914],[4.94908,49.94806],[4.94394,49.81335],[5.15213,49.80985],[5.15024,49.76494],[5.21956,49.7637],[5.21761,49.7188],[5.35614,49.71619],[5.35407,49.67129],[5.42326,49.66993],[5.42072,49.61602],[5.42128,49.61601],[5.42084,49.60717],[5.43382,49.6069],[5.43338,49.59772],[5.44745,49.59743],[5.44616,49.57104],[5.46066,49.57074],[5.45978,49.55263],[5.47331,49.55235],[5.47157,49.5164],[5.49885,49.51555],[5.52633,49.51498],[5.52666,49.51947],[5.52688,49.52396],[5.52699,49.52396],[5.527,49.52403],[5.53378,49.52382],[5.54057,49.52368],[5.5409,49.52817],[5.54112,49.53266],[5.54123,49.53265],[5.54126,49.533],[5.57563,49.53192],[5.61002,49.53119],[5.61035,49.53568],[5.61058,49.54017],[5.61069,49.54017],[5.61069,49.54024],[5.61748,49.54002],[5.62428,49.53988],[5.62461,49.54437],[5.62484,49.54886],[5.62495,49.54885],[5.62495,49.54892],[5.63175,49.54871],[5.63855,49.54856],[5.63888,49.55305],[5.63911,49.55754],[5.63921,49.55754],[5.63923,49.55779],[5.66672,49.55693],[5.69434,49.55633],[5.69432,49.55607],[5.69442,49.55607],[5.6941,49.55183],[5.69387,49.54747],[5.70767,49.54704],[5.72138,49.54673],[5.72171,49.55122],[5.72195,49.55571],[5.72205,49.55571],[5.72205,49.55583],[5.73576,49.5554],[5.74947,49.55509],[5.7498,49.55958],[5.75004,49.56407],[5.75014,49.56407],[5.75014,49.56412],[5.75695,49.56391],[5.76376,49.56376],[5.76409,49.56824],[5.76433,49.57274],[5.76443,49.57273],[5.76443,49.57285],[5.77814,49.57242],[5.79195,49.5721],[5.79195,49.57199],[5.79204,49.57199],[5.79171,49.56761],[5.79147,49.56318],[5.79837,49.56296],[5.80527,49.5628],[5.80527,49.56275],[5.80536,49.56274],[5.80503,49.55831],[5.80479,49.55399],[5.82549,49.55334],[5.8462,49.55286],[5.84619,49.55269],[5.84635,49.55269],[5.8457,49.54388],[5.84521,49.53495],[5.859,49.53457],[5.859,49.53452],[5.85916,49.53451],[5.8585,49.52559],[5.85801,49.51666],[5.8718,49.51628],[5.87179,49.51623],[5.87188,49.51623],[5.87131,49.50757],[5.95411,49.50498],[5.95348,49.49644],[5.98139,49.49557],[5.97941,49.4688],[5.99346,49.46836],[5.9928,49.45952],[6.03405,49.45823],[6.03473,49.46746],[6.04835,49.46703],[6.04902,49.4761],[6.07667,49.47523],[6.07601,49.46636],[6.08961,49.46593],[6.09028,49.47502],[6.10394,49.47459],[6.10461,49.48366],[6.11827,49.48323],[6.1196,49.50126],[6.14698,49.5004],[6.14766,49.50956],[6.16141,49.50913],[6.16209,49.51822],[6.23087,49.51607],[6.23155,49.52523],[6.24535,49.5248],[6.24469,49.51595],[6.28628,49.51465],[6.28496,49.49693],[6.3126,49.49606],[6.31194,49.48709],[6.32581,49.48666],[6.32516,49.47785],[6.40773,49.47527],[6.40841,49.48444],[6.43609,49.48357],[6.43542,49.47466],[6.47684,49.47336],[6.47618,49.46448],[6.48999,49.46405],[6.48933,49.45515],[6.51698,49.45429],[6.51632,49.44533],[6.54385,49.44447],[6.54319,49.43552],[6.557,49.43509],[6.55634,49.42618],[6.57016,49.42575],[6.56816,49.39882],[6.58206,49.39838],[6.5814,49.38948],[6.59522,49.38904],[6.59455,49.38002],[6.6083,49.37959],[6.60631,49.35274],[6.59261,49.35317],[6.59194,49.3442],[6.60584,49.34377],[6.60385,49.31678],[6.61762,49.31635],[6.61696,49.30741],[6.64455,49.30655],[6.64389,49.29764],[6.65755,49.29721],[6.65689,49.28817],[6.68439,49.28731],[6.68241,49.26047],[6.69616,49.26004],[6.69351,49.22412],[6.73476,49.22282],[6.73409,49.21375],[6.74781,49.21332],[6.74649,49.1954],[6.73279,49.19583],[6.73147,49.17789],[6.79997,49.17573],[6.7993,49.16676],[6.82668,49.1659],[6.82602,49.15695],[6.83965,49.15652],[6.84296,49.20143],[6.8293,49.20186],[6.83062,49.21979],[6.84428,49.21936],[6.84494,49.22829],[6.88616,49.227],[6.8855,49.21806],[6.89909,49.21764],[6.89974,49.22651],[6.95442,49.22479],[6.95376,49.21592],[6.99498,49.21462],[6.9943,49.20546],[7.00828,49.20502],[7.00761,49.19592],[7.04854,49.19463],[7.04722,49.17671],[7.03346,49.17715],[7.03282,49.1684],[7.04676,49.16796],[7.04544,49.15009],[7.05868,49.14968],[7.05736,49.13168],[7.07078,49.13126],[7.07274,49.15801],[7.08646,49.15758],[7.0871,49.16626],[7.11475,49.16539],[7.1141,49.15656],[7.12814,49.15612],[7.12747,49.14695],[7.14076,49.14653],[7.14009,49.13748],[7.30407,49.13232],[7.30537,49.14993],[7.34717,49.14861],[7.34911,49.17494],[7.36186,49.17454],[7.36254,49.18372],[7.40534,49.18237],[7.40596,49.19086],[7.45985,49.18916],[7.4592,49.18025],[7.44512,49.18069],[7.44447,49.17191],[7.47228,49.17104],[7.47289,49.17925],[7.50105,49.17836],[7.49972,49.16036],[7.51273,49.15995],[7.51076,49.13318],[7.5239,49.13277],[7.51859,49.06053],[7.53172,49.06012],[7.5258,48.97945],[7.57886,48.97764],[7.58608,49.06679]],[[-2.36456,46.64468],[-2.36901,46.68959],[-2.43428,46.68652],[-2.44329,46.77634],[-2.31253,46.78247],[-2.30812,46.73755],[-2.24278,46.74056],[-2.23411,46.65071],[-2.36456,46.64468]]],"terms_url":"https://geoservices.ign.fr/documentation/diffusion/documentation-offre.html#bdortho_orthohr","terms_text":"IGN, CRAIG, Mégalis Bretagne"},{"id":"fr.orthohr.2013","name":"Ortho HR 2013","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/orthohr_2013/{zoom}/{x}/{y}","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[-2.36901,46.68959],[-2.43428,46.68652],[-2.44329,46.77634],[-2.31253,46.78247],[-2.30812,46.73755],[-2.24278,46.74056],[-2.23411,46.65071],[-2.36456,46.64468],[-2.36901,46.68959]],[[-3.03101,47.33387],[-3.02092,47.24411],[-3.15272,47.23717],[-3.15787,47.28205],[-3.28974,47.27496],[-3.30557,47.40956],[-3.17337,47.41667],[-3.19415,47.59615],[-3.26048,47.5926],[-3.26575,47.63747],[-3.33213,47.63388],[-3.33746,47.67874],[-3.40388,47.67511],[-3.39311,47.5854],[-3.5257,47.57804],[-3.56436,47.89198],[-3.43099,47.89938],[-3.43644,47.94423],[-3.56992,47.93682],[-3.57549,47.98166],[-3.70904,47.9741],[-3.72043,48.06377],[-3.78731,48.05992],[-3.79885,48.14958],[-3.66487,48.15724],[-3.67054,48.20207],[-3.40223,48.21695],[-3.39678,48.17211],[-3.32974,48.17573],[-3.19562,48.18286],[-3.2009,48.22771],[-2.99948,48.23812],[-2.99438,48.19326],[-2.86017,48.20001],[-2.85519,48.15515],[-2.65398,48.16497],[-2.64438,48.07522],[-2.57741,48.07841],[-2.5869,48.16817],[-2.45271,48.17446],[-2.45735,48.21934],[-2.39019,48.22243],[-2.3856,48.17754],[-2.25136,48.1836],[-2.24244,48.09381],[-2.1084,48.09971],[-2.10406,48.05481],[-2.17102,48.05188],[-2.16664,48.00699],[-2.09973,48.00991],[-2.0954,47.96501],[-2.02854,47.96789],[-2.00308,47.69843],[-1.87001,47.70406],[-1.87412,47.74897],[-1.6743,47.75713],[-1.67825,47.80205],[-1.54488,47.80731],[-1.54873,47.85223],[-1.34846,47.85983],[-1.34479,47.8149],[-1.27808,47.81736],[-1.2817,47.86229],[-1.21492,47.86471],[-1.22565,47.99951],[-1.09175,48.00425],[-1.13385,48.54336],[-0.86323,48.55247],[-0.85992,48.50754],[-0.65706,48.51396],[-0.38651,48.52199],[-0.38942,48.56692],[-0.11856,48.57433],[-0.11322,48.48445],[-0.04561,48.4862],[-0.043,48.44125],[0.09212,48.44464],[0.08963,48.48959],[0.42779,48.4974],[0.43658,48.31756],[0.57141,48.32041],[0.57348,48.27544],[0.70821,48.27813],[0.71016,48.23316],[0.84479,48.23569],[0.84662,48.19072],[0.91389,48.19193],[0.91566,48.14695],[0.98287,48.14812],[0.98458,48.10314],[0.91744,48.10198],[0.9192,48.057],[0.85211,48.05579],[0.85939,47.87587],[0.79253,47.87464],[0.79626,47.78467],[0.72952,47.7834],[0.73144,47.73841],[0.66476,47.7371],[0.66869,47.64713],[0.53556,47.6444],[0.53764,47.59942],[0.40463,47.59653],[0.40681,47.55155],[0.27393,47.54852],[0.27164,47.5935],[0.20515,47.59193],[0.2075,47.54695],[0.07464,47.54369],[0.07218,47.58867],[-0.06078,47.58525],[-0.06336,47.63023],[-0.26292,47.62482],[-0.26567,47.66978],[-0.3988,47.66599],[-0.40455,47.75591],[-0.47122,47.75395],[-0.46829,47.70899],[-0.80128,47.69864],[-0.80449,47.74359],[-1.13764,47.73228],[-1.13066,47.64239],[-0.99764,47.64702],[-0.99091,47.55713],[-1.12371,47.5525],[-1.12024,47.50756],[-0.92121,47.51443],[-0.90806,47.33461],[-1.23864,47.32301],[-1.23509,47.27806],[-1.16905,47.28046],[-1.16208,47.19055],[-1.09613,47.19291],[-1.09271,47.14795],[-1.1586,47.1456],[-1.15513,47.10065],[-1.08929,47.103],[-1.08588,47.05804],[-0.9543,47.06263],[-0.95101,47.01767],[-0.88527,47.0199],[-0.88203,46.97494],[-0.81634,46.97713],[-0.81316,46.93216],[-0.74752,46.93432],[-0.74129,46.84438],[-0.67575,46.8465],[-0.66966,46.75655],[-0.60422,46.75863],[-0.58341,46.4438],[-0.51835,46.44583],[-0.50967,46.31089],[-0.70437,46.30472],[-0.70133,46.25975],[-0.76616,46.25762],[-0.76926,46.30259],[-0.9639,46.29598],[-0.96717,46.34095],[-1.03209,46.33867],[-1.02877,46.2937],[-1.1585,46.28904],[-1.15508,46.24408],[-1.28468,46.23927],[-1.2882,46.28422],[-1.35304,46.28176],[-1.35662,46.32672],[-1.48639,46.32168],[-1.49009,46.36663],[-1.61994,46.36144],[-1.62375,46.40638],[-1.75369,46.40104],[-1.7576,46.44598],[-1.82262,46.44325],[-1.83058,46.53313],[-1.89569,46.53036],[-1.90379,46.62023],[-1.969,46.61741],[-1.97311,46.66235],[-2.03837,46.65949],[-2.04673,46.74935],[-2.11209,46.74646],[-2.11633,46.79138],[-2.18173,46.78845],[-2.19466,46.92321],[-2.32578,46.91722],[-2.33465,47.00705],[-2.4003,47.00399],[-2.4048,47.0489],[-2.20765,47.05797],[-2.20331,47.01305],[-2.13764,47.016],[-2.13336,46.97108],[-2.06773,46.97398],[-2.07618,47.06383],[-2.14192,47.06092],[-2.14621,47.10584],[-2.27778,47.0999],[-2.2866,47.18973],[-2.35248,47.1867],[-2.35695,47.23161],[-2.55472,47.22229],[-2.57336,47.40189],[-2.63948,47.3987],[-2.64422,47.44359],[-2.71039,47.44036],[-2.71519,47.48525],[-2.78141,47.48197],[-2.77655,47.43709],[-2.84271,47.43378],[-2.84762,47.47866],[-2.91382,47.47531],[-2.91879,47.5202],[-3.05128,47.51338],[-3.04113,47.42363],[-2.90886,47.43043],[-2.9039,47.38555],[-2.83781,47.38889],[-2.83292,47.344],[-2.76687,47.34731],[-2.76204,47.30241],[-2.89402,47.29578],[-2.89896,47.34066],[-3.03101,47.33387]],[[2.55821,44.69824],[2.55856,44.65322],[2.4955,44.65295],[2.49591,44.60794],[2.11786,44.60557],[2.11433,44.83063],[2.05107,44.83011],[2.04649,45.1002],[2.17361,45.10121],[2.17094,45.28129],[2.23471,45.28174],[2.23409,45.32676],[2.29792,45.32718],[2.29678,45.41722],[2.36071,45.4176],[2.36019,45.46262],[2.48815,45.46328],[2.48731,45.55333],[2.42323,45.55301],[2.42182,45.68808],[2.48606,45.68839],[2.48565,45.73342],[2.42135,45.73311],[2.42088,45.77813],[2.35654,45.77778],[2.35549,45.86783],[2.41994,45.86818],[2.41946,45.9132],[2.48396,45.91351],[2.48354,45.95854],[2.5481,45.95881],[2.54699,46.09388],[2.48227,46.09361],[2.481,46.22868],[2.41612,46.22836],[2.41564,46.27338],[2.35072,46.27303],[2.35018,46.31806],[2.28521,46.31767],[2.28462,46.36269],[2.21959,46.36226],[2.21765,46.49732],[2.28284,46.49775],[2.28225,46.54277],[2.54324,46.54411],[2.54211,46.67917],[2.60752,46.67942],[2.6072,46.72444],[2.67266,46.72464],[2.67239,46.76966],[2.86896,46.77005],[2.86885,46.81507],[3.06558,46.81513],[3.06552,46.77011],[3.19657,46.76996],[3.1964,46.72494],[3.52374,46.72391],[3.52417,46.76893],[3.65521,46.76826],[3.65467,46.72324],[3.72013,46.72285],[3.71894,46.63281],[3.78429,46.63238],[3.78299,46.54234],[3.97872,46.54084],[3.97792,46.49582],[4.0431,46.49524],[4.03882,46.27015],[3.90898,46.27126],[3.90823,46.22623],[3.84336,46.22673],[3.83922,45.9566],[3.77467,45.95706],[3.77152,45.73195],[3.83581,45.73149],[3.83445,45.64145],[3.96281,45.64042],[3.96125,45.55038],[4.02533,45.54982],[4.02201,45.36974],[4.08588,45.36914],[4.08676,45.41416],[4.34242,45.41139],[4.34133,45.36637],[4.40519,45.36559],[4.40406,45.32057],[4.46786,45.31975],[4.46668,45.27474],[4.53043,45.27389],[4.52673,45.13885],[4.46313,45.1397],[4.46196,45.09469],[4.39841,45.0955],[4.39616,45.00548],[4.33271,45.00626],[4.33057,44.91623],[4.20387,44.91768],[4.20194,44.82765],[4.07544,44.82895],[4.07458,44.78394],[3.94817,44.78509],[3.94741,44.74008],[3.75794,44.74154],[3.75855,44.78655],[3.4425,44.78827],[3.44285,44.83328],[3.37959,44.83352],[3.3802,44.92355],[3.25347,44.92391],[3.25306,44.83388],[3.12653,44.83409],[3.12643,44.78908],[3.06321,44.78913],[3.06306,44.65409],[3,44.6541],[3,44.60909],[2.93699,44.60907],[2.93694,44.65409],[2.87387,44.65403],[2.87357,44.78908],[2.81036,44.78899],[2.81021,44.834],[2.74694,44.83388],[2.74674,44.87889],[2.68342,44.87873],[2.68368,44.83371],[2.62041,44.83352],[2.62132,44.69847],[2.55821,44.69824]]],"terms_url":"https://geoservices.ign.fr/documentation/diffusion/documentation-offre.html#bdortho_orthohr","terms_text":"IGN, CRAIG, Mégalis Bretagne"},{"id":"fr.orthohr.2014","name":"Ortho HR 2014","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/orthohr_2014/{zoom}/{x}/{y}","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[5.09973,49.56806],[5.10106,49.59538],[5.11479,49.5951],[5.11521,49.60374],[5.12962,49.60344],[5.12921,49.59498],[5.15743,49.5944],[5.15701,49.58593],[5.17032,49.58565],[5.16989,49.57672],[5.19702,49.57616],[5.19742,49.58452],[5.22626,49.58393],[5.22584,49.57535],[5.23917,49.57508],[5.23871,49.56581],[5.2661,49.56525],[5.26567,49.55654],[5.27905,49.55627],[5.2795,49.56545],[5.29382,49.56516],[5.29425,49.57391],[5.30773,49.57363],[5.30814,49.58204],[5.32191,49.58175],[5.32282,49.60035],[5.36455,49.59949],[5.36497,49.60817],[5.37858,49.60789],[5.37944,49.62546],[5.4072,49.62489],[5.40679,49.6163],[5.42128,49.61601],[5.42084,49.60717],[5.43382,49.6069],[5.43338,49.59772],[5.44745,49.59743],[5.44616,49.57104],[5.46066,49.57074],[5.45978,49.55263],[5.47331,49.55235],[5.47112,49.5073],[5.48513,49.50702],[5.48471,49.49827],[5.49855,49.49798],[5.49808,49.48851],[5.48425,49.48879],[5.4825,49.45286],[5.49615,49.45258],[5.49531,49.43523],[5.50903,49.43495],[5.50856,49.42529],[5.52256,49.42501],[5.52214,49.41636],[5.535,49.41609],[5.53545,49.42544],[5.56334,49.42487],[5.56375,49.4335],[5.60573,49.43264],[5.60615,49.44125],[5.66125,49.44012],[5.66083,49.43145],[5.68753,49.43091],[5.68709,49.42196],[5.70187,49.42166],[5.70056,49.39469],[5.71381,49.39441],[5.71336,49.38508],[5.72706,49.3848],[5.72618,49.36679],[5.75326,49.36624],[5.75151,49.33012],[5.73813,49.3304],[5.73774,49.32241],[5.77871,49.32157],[5.77651,49.27606],[5.76241,49.27635],[5.76194,49.26673],[5.73446,49.2673],[5.73318,49.24082],[5.74629,49.24055],[5.7454,49.22205],[5.73149,49.22234],[5.73067,49.20536],[5.77232,49.2045],[5.77054,49.16764],[5.75652,49.16793],[5.75612,49.15952],[5.7701,49.15923],[5.76966,49.15008],[5.78319,49.1498],[5.78232,49.13172],[5.76906,49.132],[5.76863,49.1232],[5.82247,49.12209],[5.82202,49.11268],[5.83563,49.1124],[5.83391,49.0767],[5.84688,49.07643],[5.84601,49.05849],[5.85982,49.0582],[5.85848,49.0303],[5.84493,49.03059],[5.84453,49.02219],[5.83102,49.02247],[5.83061,49.01392],[5.84444,49.01364],[5.84399,49.0044],[5.83022,49.00469],[5.82936,48.98678],[5.84274,48.98651],[5.84189,48.96886],[5.85518,48.96859],[5.85387,48.94138],[5.82675,48.94194],[5.82631,48.9326],[5.79945,48.93316],[5.79902,48.92416],[5.78505,48.92445],[5.7846,48.91515],[5.77133,48.91542],[5.77049,48.89807],[5.79681,48.89752],[5.79548,48.86977],[5.78247,48.87004],[5.78165,48.8531],[5.79412,48.85284],[5.79235,48.81601],[5.77933,48.81628],[5.77895,48.80824],[5.79183,48.80798],[5.79053,48.78069],[5.76358,48.78125],[5.76315,48.77234],[5.74942,48.77262],[5.74812,48.74541],[5.73458,48.74569],[5.73375,48.72817],[5.76054,48.72761],[5.75968,48.70958],[5.77377,48.70929],[5.77287,48.69047],[5.75907,48.69076],[5.75698,48.64689],[5.77032,48.64661],[5.76945,48.62839],[5.78238,48.62812],[5.78278,48.6366],[5.81005,48.63603],[5.80832,48.59999],[5.75397,48.60113],[5.75353,48.59203],[5.74022,48.5923],[5.73981,48.58362],[5.72584,48.58391],[5.72501,48.56665],[5.73886,48.56636],[5.73842,48.55704],[5.77903,48.55619],[5.77858,48.54664],[5.79144,48.54637],[5.79057,48.52818],[5.77747,48.52845],[5.77533,48.48359],[5.76154,48.48387],[5.76072,48.46662],[5.74627,48.46693],[5.74579,48.45696],[5.73284,48.45723],[5.73242,48.44838],[5.7044,48.44897],[5.70487,48.45875],[5.66592,48.45956],[5.66546,48.44997],[5.63753,48.45056],[5.63582,48.41468],[5.60841,48.41525],[5.60929,48.43371],[5.58334,48.43426],[5.5829,48.42498],[5.52844,48.42612],[5.52758,48.40799],[5.51432,48.40827],[5.51389,48.39916],[5.48573,48.39975],[5.4862,48.40945],[5.46017,48.40999],[5.46057,48.41855],[5.43305,48.41913],[5.43347,48.42802],[5.40694,48.42857],[5.40738,48.43793],[5.39296,48.43823],[5.39424,48.46499],[5.35389,48.46583],[5.35433,48.47518],[5.34121,48.47545],[5.34162,48.48415],[5.32783,48.48443],[5.32825,48.49327],[5.31442,48.49356],[5.31486,48.50273],[5.26085,48.50386],[5.26128,48.5128],[5.23392,48.51337],[5.23432,48.52167],[5.20783,48.52222],[5.20826,48.53132],[5.18063,48.5319],[5.18151,48.55039],[5.14106,48.55124],[5.14146,48.55965],[5.12783,48.55994],[5.12827,48.56909],[5.11495,48.56937],[5.11539,48.57861],[5.10071,48.57891],[5.10111,48.58722],[5.06118,48.58805],[5.06203,48.60586],[4.99411,48.60728],[4.99454,48.61632],[4.981,48.61661],[4.98188,48.63497],[4.99497,48.6347],[4.99539,48.64365],[4.98148,48.64394],[4.98276,48.67082],[4.99599,48.67054],[4.99641,48.67936],[4.98248,48.67965],[4.98419,48.71547],[4.998,48.71518],[4.99887,48.73349],[4.97158,48.73406],[4.97241,48.75149],[4.94531,48.75206],[4.94617,48.77007],[4.93213,48.77036],[4.93254,48.77909],[4.90449,48.77968],[4.90492,48.78873],[4.87826,48.78928],[4.88,48.82564],[4.89283,48.82537],[4.89326,48.83436],[4.90741,48.83407],[4.90786,48.84352],[4.92217,48.84323],[4.92258,48.85168],[4.90724,48.852],[4.90939,48.89685],[4.89505,48.89714],[4.89549,48.90629],[4.91051,48.90598],[4.91094,48.91487],[4.92436,48.91459],[4.92522,48.93257],[4.93899,48.93228],[4.93945,48.9419],[5.00607,48.94052],[5.00694,48.95851],[5.02122,48.95821],[5.02164,48.967],[5.0075,48.9673],[5.00792,48.9761],[4.98015,48.97667],[4.98101,48.99466],[4.99495,48.99437],[4.99539,49.00361],[5.02324,49.00303],[5.0241,49.02078],[4.98304,49.02163],[4.98257,49.01192],[4.9549,49.0125],[4.95582,49.03158],[4.96921,49.03131],[4.96964,49.04026],[4.98291,49.03999],[4.98374,49.05723],[4.99649,49.05697],[4.99692,49.06597],[4.98362,49.06625],[4.9858,49.11148],[4.97139,49.11178],[4.97225,49.12971],[4.9594,49.12998],[4.96026,49.14787],[4.94577,49.14817],[4.94708,49.17517],[4.93359,49.17545],[4.93488,49.20221],[4.97572,49.20136],[4.97615,49.21027],[4.96178,49.21056],[4.96267,49.22897],[4.93498,49.22954],[4.93588,49.24813],[4.95069,49.24782],[4.95109,49.25621],[4.97816,49.25565],[4.97855,49.2638],[4.99202,49.26352],[4.9925,49.27343],[5.0056,49.27316],[5.00602,49.28187],[5.03351,49.2813],[5.03441,49.2999],[5.01962,49.3002],[5.02224,49.35412],[5.03661,49.35383],[5.03748,49.37179],[5.05111,49.37151],[5.05154,49.38034],[5.09279,49.3795],[5.09323,49.38837],[5.07909,49.38866],[5.07949,49.39685],[5.06532,49.39715],[5.06579,49.40677],[5.08008,49.40647],[5.08055,49.41603],[5.0944,49.41575],[5.0961,49.4508],[5.08181,49.45109],[5.08226,49.46017],[5.06816,49.46046],[5.06949,49.48772],[5.05546,49.48801],[5.05677,49.51486],[5.07012,49.51459],[5.07058,49.52403],[5.08476,49.52373],[5.08517,49.53231],[5.07146,49.53259],[5.07234,49.55063],[5.08538,49.55036],[5.08626,49.56834],[5.09973,49.56806]],[[-2.10209,48.73105],[-1.7628,48.74509],[-1.75462,48.65531],[-1.55131,48.66325],[-1.5474,48.61835],[-1.47967,48.62092],[-1.472,48.53111],[-1.26913,48.53858],[-1.27279,48.58349],[-1.2051,48.5859],[-1.20149,48.54099],[-1.0662,48.5457],[-1.05577,48.41093],[-0.98829,48.41322],[-0.98148,48.32337],[-1.04884,48.32108],[-1.03163,48.09643],[-0.96455,48.09871],[-0.95447,47.96389],[-1.15518,47.95697],[-1.14463,47.82216],[-1.21136,47.81978],[-1.2078,47.77484],[-1.60767,47.75977],[-1.5999,47.66992],[-1.99887,47.65352],[-1.99466,47.6086],[-2.12748,47.60284],[-2.16226,47.96209],[-2.29594,47.95613],[-2.31849,48.18059],[-2.25136,48.1836],[-2.25584,48.22849],[-2.18865,48.23146],[-2.19308,48.27635],[-2.12582,48.27929],[-2.1302,48.32418],[-1.99556,48.32995],[-2.00839,48.46463],[-1.94088,48.46746],[-1.94512,48.51235],[-2.08023,48.50664],[-2.08459,48.55153],[-2.15219,48.54861],[-2.15661,48.5935],[-2.22427,48.59054],[-2.23325,48.68029],[-2.0977,48.68617],[-2.10209,48.73105]],[[4.80544,43.91908],[4.99213,43.91584],[4.99056,43.87086],[5.05274,43.8697],[5.05112,43.82472],[5.11325,43.82354],[5.11159,43.77856],[5.35987,43.77347],[5.35801,43.72849],[5.48204,43.72574],[5.48009,43.68077],[5.60401,43.67787],[5.60605,43.72284],[5.73006,43.7198],[5.7322,43.76476],[5.79425,43.76319],[5.79205,43.71822],[5.85404,43.71662],[5.84957,43.62669],[5.72577,43.62987],[5.72364,43.58491],[5.78549,43.58334],[5.77895,43.44847],[5.84066,43.44687],[5.83844,43.40191],[5.77678,43.40351],[5.76813,43.22371],[5.70667,43.22527],[5.70246,43.13537],[5.51833,43.13983],[5.52029,43.18478],[5.45886,43.1862],[5.45695,43.14125],[5.33417,43.14397],[5.33599,43.18893],[5.21311,43.19152],[5.21483,43.23648],[5.27632,43.2352],[5.27988,43.32512],[5.21829,43.3264],[5.21656,43.28144],[4.97038,43.28621],[4.97192,43.33117],[4.91032,43.33228],[4.90883,43.28731],[4.78573,43.28941],[4.78712,43.33438],[4.54069,43.33817],[4.5431,43.42812],[4.17282,43.43276],[4.17465,43.52272],[4.29828,43.52131],[4.2993,43.56629],[4.36116,43.56553],[4.36329,43.65549],[4.42525,43.6547],[4.42749,43.74467],[4.61363,43.74207],[4.61872,43.92201],[4.68096,43.92107],[4.68229,43.96606],[4.80686,43.96407],[4.80544,43.91908]],[[7.01014,44.26587],[7.13523,44.26123],[7.13195,44.21629],[7.25692,44.21151],[7.25355,44.16657],[7.50324,44.15659],[7.5068,44.20152],[7.69415,44.19366],[7.68303,44.05889],[7.74532,44.05621],[7.74158,44.01129],[7.67933,44.01397],[7.67196,43.92413],[7.60981,43.92677],[7.60618,43.88185],[7.54407,43.88446],[7.5298,43.70478],[7.40596,43.70987],[7.4025,43.66495],[7.27874,43.66989],[7.27538,43.62497],[7.15169,43.62977],[7.14844,43.58484],[7.21024,43.58246],[7.20694,43.53754],[7.14519,43.53992],[7.14195,43.49499],[7.01852,43.49964],[7.01538,43.45471],[6.83036,43.46142],[6.83936,43.59621],[6.77753,43.59838],[6.78049,43.64332],[6.71861,43.64546],[6.72445,43.73534],[6.60048,43.73951],[6.61183,43.9193],[6.79837,43.91297],[6.80136,43.95792],[6.73914,43.96006],[6.74209,44.00501],[6.67981,44.00713],[6.68855,44.14198],[6.62612,44.14407],[6.62899,44.18902],[6.69147,44.18694],[6.70026,44.32181],[6.76288,44.31968],[6.76587,44.36464],[6.82853,44.36247],[6.83158,44.40743],[6.957,44.40299],[6.95385,44.35804],[7.01651,44.35577],[7.01014,44.26587]]],"terms_url":"https://geoservices.ign.fr/documentation/diffusion/documentation-offre.html#bdortho_orthohr","terms_text":"IGN, Mégalis Bretagne"},{"id":"fr.orthohr.2015","name":"Ortho HR 2015","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/orthohr_2015/{zoom}/{x}/{y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[-4.44289,47.92981],[-4.50954,47.92555],[-4.5159,47.97035],[-4.64928,47.96172],[-4.65577,48.0065],[-4.98931,47.98425],[-5.00287,48.07378],[-4.66877,48.09607],[-4.68836,48.2304],[-4.75537,48.22601],[-4.76198,48.27078],[-4.96311,48.25736],[-4.9767,48.34688],[-5.11096,48.33773],[-5.11788,48.38248],[-5.18505,48.37784],[-5.20606,48.51206],[-5.00401,48.52589],[-4.99717,48.48114],[-4.86253,48.49016],[-4.876,48.57967],[-4.80855,48.58413],[-4.81525,48.62888],[-4.61265,48.64204],[-4.61919,48.68681],[-4.07798,48.72024],[-4.09017,48.80982],[-3.95453,48.81781],[-3.94855,48.77301],[-3.88077,48.77694],[-3.87485,48.73214],[-3.80712,48.73604],[-3.81298,48.78084],[-3.74519,48.78469],[-3.73938,48.73989],[-3.67164,48.7437],[-3.69467,48.92293],[-3.35462,48.94148],[-3.34913,48.89666],[-3.14516,48.90733],[-3.15047,48.95215],[-3.01433,48.95907],[-3.00914,48.91424],[-2.94111,48.91764],[-2.93087,48.82796],[-2.86295,48.83132],[-2.84783,48.69678],[-2.71232,48.70336],[-2.69762,48.56878],[-2.63002,48.57201],[-2.6397,48.66173],[-2.50424,48.66807],[-2.50898,48.71293],[-2.44118,48.71605],[-2.43651,48.67118],[-2.36876,48.67426],[-2.37338,48.71913],[-2.23775,48.72517],[-2.23325,48.68029],[-2.16548,48.68325],[-2.16104,48.63837],[-2.09332,48.64129],[-2.08895,48.59641],[-1.95361,48.60213],[-1.94936,48.55724],[-1.88173,48.56004],[-1.86089,48.33556],[-1.92823,48.33277],[-1.91983,48.24297],[-2.12146,48.2344],[-2.11709,48.1895],[-2.18423,48.18657],[-2.17542,48.09678],[-2.51043,48.08157],[-2.50575,48.03669],[-2.57267,48.03353],[-2.56795,47.98865],[-2.70165,47.98223],[-2.71134,48.07199],[-2.84524,48.06541],[-2.85021,48.11028],[-2.9172,48.10693],[-2.92224,48.15179],[-3.19035,48.138],[-3.18509,48.09315],[-3.25204,48.08961],[-3.25736,48.13446],[-3.45832,48.12361],[-3.46382,48.16845],[-3.59786,48.16101],[-3.59225,48.11618],[-3.6592,48.11241],[-3.6479,48.02274],[-3.51422,48.03023],[-3.50869,47.98539],[-3.37508,47.99272],[-3.35891,47.85817],[-3.42555,47.85453],[-3.42012,47.80968],[-3.4867,47.806],[-3.47575,47.7163],[-3.60866,47.70885],[-3.61423,47.7537],[-3.88015,47.73834],[-3.86856,47.64867],[-4.06756,47.63677],[-4.08546,47.77124],[-4.21842,47.7631],[-4.21233,47.71828],[-4.34513,47.71],[-4.35133,47.75481],[-4.41777,47.7506],[-4.44289,47.92981]],[[-1.6433,48.92927],[-1.65089,49.01966],[-1.71962,49.01718],[-1.72716,49.10696],[-1.65937,49.1094],[-1.66693,49.19917],[-1.73619,49.19668],[-1.74754,49.33108],[-1.8169,49.32859],[-1.82067,49.37319],[-1.89102,49.37067],[-1.91383,49.63955],[-1.98516,49.637],[-1.99664,49.77173],[-1.85873,49.77664],[-1.85495,49.73226],[-1.78534,49.73474],[-1.78156,49.69037],[-1.50482,49.70024],[-1.50867,49.74551],[-1.30108,49.75289],[-1.29726,49.70808],[-1.22823,49.71054],[-1.22059,49.62076],[-1.15174,49.62321],[-1.14792,49.57835],[-1.21707,49.57588],[-1.21326,49.53101],[-1.14468,49.53347],[-1.13326,49.39874],[-1.06517,49.40119],[-1.05377,49.26629],[-0.91719,49.2712],[-0.91337,49.226],[-0.84616,49.22841],[-0.82727,49.00399],[-0.89683,49.00148],[-0.89309,48.95683],[-0.9618,48.95435],[-0.9543,48.86485],[-1.09086,48.8599],[-1.08709,48.81488],[-0.88344,48.82227],[-0.87965,48.77693],[-0.81215,48.77938],[-0.80837,48.73419],[-0.74099,48.73664],[-0.73722,48.6914],[-0.66995,48.69384],[-0.66621,48.64894],[-0.73508,48.64643],[-0.72389,48.51206],[-0.79253,48.50955],[-0.78885,48.46527],[-1.05908,48.4554],[-1.06286,48.50092],[-1.2655,48.49352],[-1.26177,48.44868],[-1.53207,48.4388],[-1.54326,48.57339],[-1.61188,48.57089],[-1.6343,48.83954],[-1.90748,48.82964],[-1.915,48.91943],[-1.6433,48.92927]],[[0.76029,48.63912],[0.75836,48.68407],[0.69047,48.68278],[0.68649,48.77268],[0.61849,48.77135],[0.61643,48.81629],[0.54837,48.81492],[0.54626,48.85986],[0.34193,48.8555],[0.33733,48.94537],[0.40556,48.94687],[0.40331,48.99181],[0.33503,48.99031],[0.32345,49.21496],[0.25488,49.21342],[0.24461,49.39362],[0.17715,49.39399],[0.17441,49.43509],[0.10849,49.43777],[0.04806,49.51808],[0.13183,49.64362],[0.10574,49.66674],[0.1799,49.7227],[0.29388,49.74844],[0.60562,49.87074],[0.78433,49.88829],[0.94299,49.93134],[1.05791,49.93204],[1.37975,50.08711],[1.4637,50.09093],[1.46413,50.04399],[1.53704,50.04513],[1.54015,50.00082],[1.60476,50.00192],[1.60995,49.95619],[1.74631,49.95573],[1.7488,49.82441],[1.82047,49.82537],[1.82314,49.64284],[1.75617,49.64287],[1.75619,49.55354],[1.82455,49.55238],[1.82844,49.41916],[1.75999,49.4181],[1.76107,49.37317],[1.82989,49.37385],[1.83294,49.23903],[1.7643,49.23834],[1.76537,49.1934],[1.69679,49.19268],[1.69905,49.10278],[1.6306,49.10202],[1.63178,49.05707],[1.56339,49.05627],[1.56711,48.92141],[1.49889,48.92058],[1.50148,48.83066],[1.43339,48.82979],[1.43608,48.73987],[1.09622,48.73493],[1.09786,48.68997],[0.89415,48.68655],[0.89596,48.64159],[0.76029,48.63912]],[[1.59652,50.3597],[1.52637,50.35889],[1.51449,50.7627],[1.58521,50.76352],[1.58394,50.80838],[1.51315,50.80755],[1.51048,50.89725],[1.65231,50.89886],[1.6511,50.94371],[1.72208,50.94445],[1.72093,50.98929],[1.93408,50.99129],[1.93312,51.03613],[2.07536,51.03726],[2.07452,51.0821],[2.50165,51.08453],[2.5012,51.12937],[2.57246,51.12963],[2.57323,51.03995],[2.64435,51.04017],[2.64563,50.86078],[2.7165,50.86096],[2.71676,50.8161],[2.78757,50.81624],[2.78776,50.77138],[3,50.77156],[3,50.81642],[3.21243,50.81624],[3.21205,50.72652],[3.28273,50.72638],[3.28223,50.63664],[3.35279,50.63646],[3.35216,50.54671],[3.63387,50.54559],[3.63331,50.50072],[3.70367,50.50034],[3.70179,50.36569],[4.12282,50.36258],[4.12183,50.31769],[4.26203,50.31634],[4.2598,50.22656],[4.18982,50.22725],[4.18771,50.13746],[4.25757,50.13677],[4.25424,50.00207],[4.18457,50.00276],[4.18352,49.95785],[3.97469,49.9597],[3.97555,50.0046],[3.34843,50.00799],[2.72126,50.00817],[2.72101,50.05308],[2.58152,50.05268],[2.58115,50.09759],[2.44154,50.09703],[2.44203,50.05213],[2.37229,50.05179],[2.37062,50.1865],[2.02099,50.18421],[2.02013,50.2291],[1.95014,50.22853],[1.94921,50.27342],[1.80913,50.27214],[1.80807,50.31703],[1.59777,50.31482],[1.59652,50.3597]],[[7.04165,48.23115],[7.10945,48.22898],[7.11595,48.31885],[7.04924,48.32099],[7.06163,48.49182],[7.04849,48.49224],[7.04784,48.4833],[7.02077,48.48416],[7.02012,48.47523],[6.99305,48.47609],[6.9924,48.46714],[6.97886,48.46758],[6.97821,48.45861],[6.96467,48.45904],[6.96402,48.45008],[6.95049,48.45051],[6.94984,48.44154],[6.93631,48.44198],[6.93566,48.43301],[6.92214,48.43344],[6.92149,48.42447],[6.90797,48.4249],[6.90732,48.41593],[6.8938,48.41636],[6.89315,48.40739],[6.86615,48.40825],[6.86681,48.41726],[6.83981,48.41812],[6.83851,48.40016],[6.825,48.40059],[6.82435,48.39161],[6.79737,48.39247],[6.79672,48.38349],[6.76973,48.38435],[6.77038,48.39333],[6.75688,48.39377],[6.75753,48.40275],[6.73053,48.40361],[6.73118,48.41259],[6.71768,48.41302],[6.71703,48.40401],[6.69005,48.40487],[6.67654,48.40531],[6.67719,48.41426],[6.65017,48.41513],[6.65082,48.42409],[6.63727,48.42452],[6.63858,48.44248],[6.62501,48.44291],[6.62631,48.46085],[6.59928,48.46172],[6.59862,48.4527],[6.58519,48.45313],[6.58323,48.42617],[6.59683,48.42574],[6.59552,48.40774],[6.55505,48.40903],[6.55569,48.41794],[6.5152,48.41923],[6.51454,48.41017],[6.4876,48.41103],[6.48694,48.40194],[6.43302,48.40366],[6.43236,48.39458],[6.41893,48.39501],[6.41827,48.38594],[6.37779,48.38723],[6.37843,48.39603],[6.31088,48.39819],[6.31152,48.40702],[6.2979,48.40745],[6.2992,48.42537],[6.28565,48.4258],[6.285,48.41676],[6.27163,48.41719],[6.27032,48.39913],[6.24348,48.39998],[6.24281,48.39074],[6.16201,48.39332],[6.16069,48.37511],[6.14743,48.37554],[6.14612,48.35749],[6.13281,48.35792],[6.13214,48.34878],[6.0917,48.35007],[6.09234,48.35891],[6.07885,48.35934],[6.07818,48.35005],[5.99742,48.35264],[5.99674,48.34321],[5.94267,48.34494],[5.9446,48.37166],[5.93082,48.3721],[5.93147,48.38109],[5.94481,48.38066],[5.94545,48.3895],[5.89133,48.39123],[5.89197,48.39997],[5.87847,48.4004],[5.87781,48.39131],[5.86432,48.39174],[5.86496,48.40062],[5.85114,48.40106],[5.8531,48.42802],[5.86627,48.4276],[5.86693,48.43669],[5.87988,48.43627],[5.88379,48.49013],[5.8562,48.49101],[5.85684,48.49984],[5.84332,48.50027],[5.84266,48.49112],[5.81579,48.49198],[5.81512,48.48283],[5.80178,48.48326],[5.80112,48.4741],[5.77409,48.47497],[5.77473,48.48378],[5.76094,48.48422],[5.76224,48.50207],[5.74818,48.50252],[5.75078,48.53834],[5.7368,48.53879],[5.73744,48.54759],[5.71019,48.54846],[5.71083,48.55726],[5.69691,48.5577],[5.69888,48.58466],[5.71194,48.58424],[5.71326,48.60239],[5.74007,48.60154],[5.74074,48.6107],[5.75402,48.61028],[5.75533,48.62825],[5.74141,48.62869],[5.74271,48.64654],[5.7286,48.64699],[5.73122,48.68292],[5.74414,48.68251],[5.7461,48.70946],[5.73216,48.7099],[5.73281,48.71876],[5.71905,48.7192],[5.71969,48.72806],[5.70574,48.72851],[5.7077,48.75545],[5.72082,48.75504],[5.72214,48.77312],[5.73545,48.7727],[5.73611,48.7818],[5.74934,48.78138],[5.75132,48.80845],[5.76419,48.80804],[5.76748,48.85295],[5.75315,48.85341],[5.75512,48.88035],[5.76837,48.87993],[5.76903,48.88891],[5.75523,48.88935],[5.75588,48.89822],[5.74189,48.89866],[5.74386,48.9256],[5.75713,48.92518],[5.75779,48.93428],[5.77124,48.93386],[5.77191,48.94295],[5.78537,48.94253],[5.78604,48.95173],[5.82669,48.95045],[5.82802,48.96847],[5.80048,48.96934],[5.80112,48.97815],[5.78721,48.97859],[5.78853,48.99655],[5.80183,48.99613],[5.80316,49.01421],[5.81638,49.01379],[5.81836,49.04084],[5.83168,49.04042],[5.83234,49.04935],[5.80484,49.05021],[5.80549,49.05903],[5.79147,49.05947],[5.79345,49.08641],[5.80669,49.08599],[5.808,49.1039],[5.78057,49.10476],[5.77989,49.09555],[5.75254,49.09642],[5.75318,49.10522],[5.73895,49.10567],[5.74225,49.15045],[5.728,49.1509],[5.72866,49.15988],[5.74198,49.15946],[5.74396,49.18633],[5.716,49.18721],[5.71797,49.21397],[5.70389,49.21441],[5.70455,49.22339],[5.71797,49.22297],[5.71929,49.24093],[5.7053,49.24137],[5.70596,49.25034],[5.71948,49.24992],[5.72015,49.2589],[5.70624,49.25933],[5.7069,49.26831],[5.72043,49.26789],[5.7211,49.27699],[5.73464,49.27656],[5.73531,49.28566],[5.74875,49.28524],[5.75008,49.30313],[5.72234,49.304],[5.72299,49.3128],[5.70887,49.31325],[5.71086,49.34018],[5.72413,49.33976],[5.72545,49.35766],[5.69748,49.35853],[5.69945,49.38522],[5.67136,49.3861],[5.67334,49.41284],[5.65919,49.41328],[5.65984,49.42207],[5.63232,49.42293],[5.63162,49.41348],[5.56303,49.41563],[5.56234,49.40625],[5.5488,49.40667],[5.54812,49.39741],[5.50719,49.39869],[5.50584,49.38045],[5.49243,49.38087],[5.49175,49.37167],[5.46414,49.37254],[5.46544,49.39019],[5.43735,49.39107],[5.43933,49.41792],[5.45262,49.41751],[5.45329,49.42664],[5.4667,49.42622],[5.46803,49.44417],[5.45368,49.44462],[5.45566,49.47139],[5.44141,49.47184],[5.44206,49.48059],[5.41427,49.48145],[5.41493,49.49035],[5.42834,49.48993],[5.4297,49.50819],[5.47069,49.50691],[5.47139,49.51641],[5.52631,49.51469],[5.527,49.52403],[5.54056,49.52361],[5.54126,49.533],[5.61,49.53085],[5.61069,49.54024],[5.62428,49.53981],[5.62495,49.54892],[5.63854,49.54849],[5.63923,49.55779],[5.69442,49.55607],[5.69378,49.54747],[5.72137,49.54661],[5.72205,49.55583],[5.74946,49.55497],[5.75014,49.56412],[5.76376,49.5637],[5.76443,49.57285],[5.79204,49.57199],[5.79138,49.56318],[5.80536,49.56274],[5.80471,49.55399],[5.84635,49.55269],[5.84504,49.53495],[5.85916,49.53451],[5.85784,49.51667],[5.87188,49.51623],[5.87123,49.50758],[5.89888,49.50671],[5.95411,49.50498],[5.95348,49.49644],[5.98139,49.49557],[5.97941,49.4688],[5.99346,49.46836],[5.9928,49.45952],[6.03405,49.45823],[6.03473,49.46746],[6.04835,49.46703],[6.04902,49.4761],[6.07667,49.47523],[6.07601,49.46636],[6.08961,49.46593],[6.09028,49.47502],[6.10394,49.47459],[6.10461,49.48366],[6.11827,49.48323],[6.1196,49.50126],[6.14698,49.5004],[6.14766,49.50956],[6.16141,49.50913],[6.16209,49.51822],[6.23087,49.51607],[6.23155,49.52523],[6.24535,49.5248],[6.24469,49.51595],[6.28628,49.51465],[6.28496,49.49693],[6.3126,49.49606],[6.31194,49.48709],[6.32581,49.48666],[6.32516,49.47785],[6.40773,49.47527],[6.40841,49.48444],[6.43609,49.48357],[6.43542,49.47466],[6.47684,49.47336],[6.47618,49.46448],[6.48999,49.46405],[6.48933,49.45515],[6.51698,49.45429],[6.51632,49.44533],[6.54385,49.44447],[6.54319,49.43552],[6.557,49.43509],[6.55634,49.42618],[6.57016,49.42575],[6.56816,49.39882],[6.58206,49.39838],[6.5814,49.38948],[6.59522,49.38904],[6.59455,49.38002],[6.6083,49.37959],[6.60631,49.35274],[6.59261,49.35317],[6.59194,49.3442],[6.60584,49.34377],[6.60385,49.31678],[6.61762,49.31635],[6.61696,49.30741],[6.64455,49.30655],[6.64389,49.29764],[6.65755,49.29721],[6.65689,49.28817],[6.68439,49.28731],[6.68241,49.26047],[6.69616,49.26004],[6.69351,49.22412],[6.73476,49.22282],[6.73409,49.21375],[6.74781,49.21332],[6.74649,49.1954],[6.73279,49.19583],[6.73147,49.17789],[6.79997,49.17573],[6.7993,49.16676],[6.82668,49.1659],[6.82602,49.15695],[6.83965,49.15652],[6.84296,49.20143],[6.8293,49.20186],[6.83062,49.21979],[6.84428,49.21936],[6.84494,49.22829],[6.88616,49.227],[6.8855,49.21806],[6.89909,49.21764],[6.89974,49.22651],[6.95442,49.22479],[6.95376,49.21592],[6.99498,49.21462],[6.9943,49.20546],[7.00828,49.20502],[7.00761,49.19592],[7.04854,49.19463],[7.04722,49.17671],[7.03346,49.17715],[7.03282,49.1684],[7.04676,49.16796],[7.04544,49.15009],[7.05868,49.14968],[7.05736,49.13168],[7.07078,49.13126],[7.07274,49.15801],[7.08646,49.15758],[7.0871,49.16626],[7.11475,49.16539],[7.1141,49.15656],[7.12814,49.15612],[7.12747,49.14695],[7.14076,49.14653],[7.14009,49.13748],[7.30407,49.13232],[7.30537,49.14993],[7.34717,49.14861],[7.34911,49.17494],[7.36186,49.17454],[7.36254,49.18372],[7.40534,49.18237],[7.40596,49.19086],[7.45985,49.18916],[7.4592,49.18025],[7.44512,49.18069],[7.44447,49.17191],[7.47228,49.17104],[7.47289,49.17925],[7.50105,49.17836],[7.49972,49.16036],[7.51273,49.15995],[7.51076,49.13318],[7.5239,49.13277],[7.51859,49.06053],[7.53172,49.06012],[7.52579,48.97932],[7.57953,48.97762],[7.58608,49.06679],[7.72381,49.06245],[7.72699,49.10563],[8.00039,49.09701],[7.99695,49.05016],[8.13248,49.04589],[8.12907,48.99946],[8.26373,48.99521],[8.25711,48.90501],[8.18656,48.90724],[8.18004,48.81822],[8.11029,48.82043],[8.10706,48.77627],[8.0375,48.77848],[8.03099,48.68937],[7.9616,48.69157],[7.95838,48.64732],[7.88917,48.64952],[7.88268,48.56031],[7.81154,48.56258],[7.79202,48.2936],[7.72098,48.29587],[7.71128,48.1616],[7.63885,48.16393],[7.60011,47.62462],[7.66214,47.62261],[7.65893,47.57766],[7.59148,47.57985],[7.58511,47.4904],[7.51783,47.49259],[7.51466,47.44805],[7.44782,47.45022],[7.44468,47.40616],[7.11353,47.41696],[7.11999,47.50765],[7.054,47.5098],[7.05722,47.55491],[6.99122,47.55705],[7.00409,47.73703],[6.80448,47.74349],[6.81416,47.87842],[6.88106,47.87626],[6.89075,48.01103],[6.95795,48.00887],[6.96442,48.09865],[7.03193,48.09648],[7.04165,48.23115]],[[3.55428,43.30274],[3.55384,43.25777],[3.36923,43.25856],[3.36895,43.21358],[3.30746,43.21377],[3.30722,43.1688],[3.24577,43.16896],[3.24558,43.12398],[3.18419,43.12411],[3.18404,43.07913],[3.1227,43.07922],[3.12251,42.98928],[3.06125,42.98934],[3.06121,42.94437],[3.12241,42.94432],[3.12222,42.85439],[3.06111,42.85444],[3.06083,42.58471],[3.12166,42.58466],[3.12156,42.53971],[3.18234,42.53962],[3.18192,42.40479],[3,42.40494],[3,42.44989],[2.87862,42.44982],[2.87872,42.40487],[2.69679,42.40451],[2.69726,42.31463],[2.45507,42.31367],[2.45466,42.3586],[2.33347,42.35792],[2.33296,42.40285],[2.15105,42.40156],[2.15171,42.35662],[2.09112,42.35612],[2.09181,42.31119],[1.97074,42.31008],[1.96995,42.35502],[1.90936,42.35442],[1.90769,42.44429],[1.72566,42.44227],[1.72468,42.48721],[1.66397,42.48647],[1.66294,42.53141],[1.7237,42.53215],[1.72272,42.57709],[1.78353,42.5778],[1.78259,42.62275],[1.96518,42.62467],[1.96438,42.66962],[2.08621,42.67073],[2.0855,42.71568],[1.90263,42.71396],[1.90178,42.75892],[1.84078,42.75827],[1.83808,42.89314],[1.89923,42.89378],[1.89752,42.9837],[1.95876,42.98431],[1.95795,43.02928],[1.89666,43.02867],[1.89581,43.07363],[1.83447,43.07299],[1.83357,43.11795],[1.7108,43.11655],[1.7098,43.16152],[1.64837,43.16077],[1.64415,43.34065],[1.70577,43.3414],[1.70476,43.38638],[1.76643,43.3871],[1.76547,43.43207],[1.82718,43.43276],[1.82627,43.47774],[1.88803,43.47839],[1.8889,43.43341],[2.01234,43.4346],[2.01157,43.47959],[2.07334,43.48013],[2.07407,43.43515],[2.19751,43.43613],[2.19689,43.48112],[2.38221,43.48233],[2.3827,43.43735],[2.44442,43.43768],[2.44399,43.48266],[2.50577,43.48296],[2.50615,43.43798],[2.56788,43.43824],[2.56754,43.48323],[2.62932,43.48346],[2.62903,43.52844],[2.56721,43.52821],[2.56619,43.66317],[2.87605,43.66397],[2.87595,43.70896],[2.93798,43.70901],[2.93793,43.754],[3,43.75402],[3,43.84401],[3.18651,43.84385],[3.18665,43.88885],[3.24887,43.88872],[3.24907,43.93372],[3.31133,43.93356],[3.31158,43.97856],[3.3739,43.97836],[3.37419,44.02336],[3.24946,44.02372],[3.24986,44.11372],[3.31232,44.11356],[3.31257,44.15856],[3.18754,44.15885],[3.18769,44.20385],[3.12513,44.20394],[3.12523,44.24894],[3.06261,44.249],[3.06266,44.294],[3.12533,44.29395],[3.12542,44.33896],[3.06271,44.33901],[3.06296,44.56406],[3,44.56408],[3,44.60909],[2.93699,44.60907],[2.93689,44.6991],[3,44.69912],[3,44.83416],[3.06326,44.83415],[3.06337,44.92418],[3.1901,44.92404],[3.19025,44.96905],[3.31709,44.96876],[3.31734,45.01378],[3.38081,45.01358],[3.3805,44.96857],[3.44392,44.96833],[3.44321,44.8783],[3.56983,44.87772],[3.57029,44.92274],[3.69701,44.92201],[3.69645,44.877],[3.75977,44.87658],[3.75916,44.83157],[3.82242,44.83112],[3.82176,44.7861],[3.88496,44.78562],[3.88426,44.7406],[3.94741,44.74008],[3.94514,44.60505],[4.00815,44.60449],[4.00574,44.46947],[4.06859,44.46888],[4.06774,44.42387],[4.13054,44.42325],[4.12964,44.37824],[4.19239,44.37758],[4.19144,44.33258],[4.31684,44.33115],[4.31788,44.37615],[4.38063,44.37538],[4.56885,44.37286],[4.5676,44.32786],[4.63029,44.32695],[4.63158,44.37195],[4.88251,44.36794],[4.8855,44.45793],[5.07397,44.45455],[5.07232,44.40955],[5.13509,44.40836],[5.13339,44.36336],[5.07068,44.36456],[5.06903,44.31957],[5.19437,44.31714],[5.19263,44.27215],[5.31785,44.26958],[5.31601,44.22459],[5.44112,44.22188],[5.43919,44.1769],[5.50169,44.17549],[5.50367,44.22047],[5.62877,44.21755],[5.63085,44.26253],[5.56826,44.26401],[5.5703,44.30899],[5.445,44.31185],[5.44694,44.35684],[5.38424,44.35821],[5.38803,44.44819],[5.45083,44.44681],[5.45474,44.53679],[5.58054,44.53392],[5.58672,44.66889],[5.77584,44.6643],[5.78251,44.79926],[5.90887,44.79602],[5.9112,44.841],[5.97443,44.83933],[5.97682,44.88431],[6.22989,44.87724],[6.23248,44.92222],[6.29579,44.92036],[6.29844,44.96533],[6.17171,44.96902],[6.18193,45.14895],[6.37262,45.14335],[6.36991,45.09837],[6.43341,45.09643],[6.43618,45.14141],[6.69035,45.13329],[6.68442,45.04334],[6.81127,45.03907],[6.8021,44.90417],[6.99189,44.89751],[6.9887,44.85255],[7.0519,44.85026],[7.04542,44.76035],[7.10851,44.75802],[7.10195,44.66812],[6.97596,44.67272],[6.96645,44.53785],[6.9036,44.54009],[6.90049,44.49514],[6.9633,44.4929],[6.95385,44.35804],[6.8912,44.36027],[6.88811,44.31532],[6.8255,44.31752],[6.81943,44.22761],[6.75691,44.22977],[6.74801,44.09491],[6.81038,44.09276],[6.80737,44.04781],[6.86968,44.04562],[6.86663,44.00068],[6.92889,43.99846],[6.92579,43.95351],[6.988,43.95126],[6.98172,43.86138],[6.73325,43.87017],[6.72738,43.78028],[6.60331,43.78446],[6.60048,43.73951],[6.41449,43.7455],[6.4118,43.70055],[6.28788,43.70437],[6.29047,43.74932],[6.22845,43.75118],[6.22592,43.70623],[6.10198,43.70983],[6.09954,43.66487],[6.03761,43.66662],[6.03523,43.62167],[5.97335,43.62338],[5.97568,43.66833],[5.91374,43.67001],[5.91603,43.71497],[5.85404,43.71662],[5.8518,43.67165],[5.66596,43.67637],[5.66387,43.6314],[5.41623,43.63719],[5.41813,43.68216],[5.29419,43.68485],[5.296,43.72982],[5.0479,43.73477],[5.04951,43.77975],[4.98743,43.7809],[4.98899,43.82588],[4.92686,43.82699],[4.92838,43.87197],[4.67964,43.87608],[4.67305,43.65117],[4.4872,43.65387],[4.48487,43.56391],[4.42301,43.56474],[4.4219,43.51976],[4.36009,43.52055],[4.35903,43.47557],[4.2355,43.47705],[4.23453,43.43207],[4.1111,43.43341],[4.11197,43.47839],[4.0502,43.479],[4.05102,43.52399],[3.9892,43.52457],[3.98843,43.47959],[3.86489,43.48064],[3.86421,43.43566],[3.80249,43.43613],[3.80186,43.39115],[3.74018,43.39159],[3.7396,43.34662],[3.61634,43.34739],[3.61586,43.30241],[3.55428,43.30274]]],"terms_url":"https://geoservices.ign.fr/documentation/diffusion/documentation-offre.html#bdortho_orthohr","terms_text":"IGN, Mégalis Bretagne"},{"id":"fr.orthohr.2016","name":"Ortho HR 2016","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/orthohr_2016/{zoom}/{x}/{y}","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[8.91208,42.64618],[8.91664,42.691],[9.03816,42.6842],[9.04748,42.77385],[9.29081,42.75982],[9.32008,43.02874],[9.38118,43.02512],[9.38613,43.06995],[9.44726,43.0663],[9.44226,43.02148],[9.50334,43.01779],[9.48825,42.88335],[9.54918,42.87965],[9.53402,42.74523],[9.47323,42.74893],[9.46326,42.65932],[9.52396,42.65563],[9.51893,42.61083],[9.57958,42.6071],[9.54933,42.33837],[9.60969,42.33463],[9.57443,42.0212],[9.51439,42.02492],[9.50943,41.98015],[9.44942,41.98383],[9.39584,41.49148],[9.33632,41.49509],[9.31723,41.31611],[9.13917,41.32672],[9.1438,41.37147],[9.02497,41.37838],[9.02952,41.42314],[8.97005,41.42655],[8.97456,41.47131],[8.79597,41.48134],[8.80035,41.52612],[8.74077,41.52939],[8.75818,41.70853],[8.63863,41.715],[8.65149,41.84939],[8.53164,41.85574],[8.54429,41.99017],[8.60435,41.987],[8.60862,42.03181],[8.66872,42.0286],[8.67305,42.07341],[8.55275,42.07979],[8.55699,42.12461],[8.49678,42.12775],[8.50941,42.26222],[8.56975,42.25907],[8.57402,42.30389],[8.51363,42.30705],[8.52209,42.39671],[8.58257,42.39355],[8.59545,42.52805],[8.65606,42.52485],[8.66477,42.61451],[8.78616,42.608],[8.79062,42.65283],[8.91208,42.64618]],[[2.17094,45.28129],[2.23471,45.28174],[2.23409,45.32676],[2.29792,45.32718],[2.29678,45.41722],[2.36071,45.4176],[2.36019,45.46262],[2.48815,45.46328],[2.48773,45.5083],[2.4237,45.50799],[2.42135,45.73311],[2.35706,45.73276],[2.35549,45.86783],[2.41994,45.86818],[2.41946,45.9132],[2.48396,45.91351],[2.48354,45.95854],[2.5481,45.95881],[2.54736,46.04886],[2.4827,46.04858],[2.481,46.22868],[2.41612,46.22836],[2.41564,46.27338],[2.35072,46.27303],[2.35018,46.31806],[2.28521,46.31767],[2.28462,46.36269],[2.21959,46.36226],[2.2183,46.4523],[2.28344,46.45273],[2.28225,46.54277],[2.54324,46.54411],[2.54211,46.67917],[2.60752,46.67942],[2.6072,46.72444],[2.67266,46.72464],[2.67239,46.76966],[2.86896,46.77005],[2.86885,46.81507],[3.06558,46.81513],[3.06552,46.77011],[3.19657,46.76996],[3.1964,46.72494],[3.52374,46.72391],[3.52417,46.76893],[3.65521,46.76826],[3.65467,46.72324],[3.72013,46.72285],[3.71894,46.63281],[3.78429,46.63238],[3.78299,46.54234],[3.97872,46.54084],[3.97792,46.49582],[4.0431,46.49524],[4.03882,46.27015],[3.9739,46.27072],[3.9731,46.2257],[4.36227,46.2217],[4.36339,46.26672],[4.4283,46.26593],[4.42712,46.22091],[4.49198,46.22008],[4.48953,46.13004],[4.36003,46.13167],[4.35448,45.90658],[4.41897,45.90579],[4.41205,45.63569],[4.54038,45.634],[4.53913,45.58899],[4.73146,45.58619],[4.72866,45.49616],[4.79266,45.49516],[4.78687,45.31512],[4.65927,45.31708],[4.65659,45.22706],[4.5292,45.22887],[4.52673,45.13885],[4.46313,45.1397],[4.46196,45.09469],[4.39841,45.0955],[4.39616,45.00548],[4.33271,45.00626],[4.33057,44.91623],[4.20387,44.91768],[4.20194,44.82765],[4.07544,44.82895],[4.07458,44.78394],[3.94817,44.78509],[3.94741,44.74008],[3.75794,44.74154],[3.75855,44.78655],[3.4425,44.78827],[3.44285,44.83328],[3.37959,44.83352],[3.3802,44.92355],[3.25347,44.92391],[3.25306,44.83388],[3.12653,44.83409],[3.12643,44.78908],[3.06321,44.78913],[3.06301,44.60907],[3.12603,44.60902],[3.12572,44.47398],[3.18859,44.47389],[3.18799,44.29386],[3.25065,44.29374],[3.25045,44.24873],[3.37567,44.24837],[3.37538,44.20337],[3.43794,44.20314],[3.43759,44.15813],[3.37508,44.15837],[3.37449,44.06836],[3.49931,44.06786],[3.49852,43.97787],[3.43621,43.97813],[3.43587,43.93313],[3.3736,43.93337],[3.37331,43.88837],[3.31109,43.88856],[3.3106,43.79857],[3.12424,43.79895],[3.12395,43.66397],[2.93803,43.66402],[2.93807,43.61903],[2.81422,43.61889],[2.81437,43.5739],[2.69062,43.57362],[2.69134,43.43867],[2.62961,43.43847],[2.6299,43.39349],[2.3215,43.392],[2.32097,43.43698],[2.25924,43.43657],[2.2604,43.34662],[2.13714,43.3457],[2.13647,43.39068],[1.8281,43.38778],[1.82993,43.29783],[1.76835,43.29715],[1.77027,43.20721],[1.83175,43.20789],[1.83266,43.16292],[1.95552,43.16418],[1.95633,43.11921],[2.01772,43.11979],[2.02228,42.85001],[1.96118,42.84943],[1.96278,42.75952],[2.14581,42.76114],[2.14647,42.71618],[2.20743,42.71665],[2.20865,42.62675],[2.02605,42.62524],[2.0268,42.58029],[1.90516,42.57912],[1.906,42.53417],[1.7237,42.53215],[1.72272,42.57709],[1.6011,42.57557],[1.60002,42.62051],[1.53916,42.6197],[1.54029,42.57476],[1.41868,42.57302],[1.41746,42.61797],[1.35661,42.61705],[1.35534,42.66199],[1.29445,42.66104],[1.29313,42.70598],[1.23219,42.70499],[1.23355,42.66005],[1.11178,42.65797],[1.10886,42.74785],[0.86495,42.74327],[0.8633,42.78821],[0.80228,42.78698],[0.80058,42.83192],[0.67846,42.82934],[0.68205,42.73947],[0.74301,42.74077],[0.74476,42.69583],[0.68384,42.69453],[0.68562,42.6496],[0.62476,42.64826],[0.62292,42.69319],[0.56201,42.69182],[0.56389,42.64689],[0.25961,42.63952],[0.25749,42.68445],[-0.10782,42.67446],[-0.11022,42.71938],[-0.17114,42.71759],[-0.17359,42.76251],[-0.23455,42.76069],[-0.23705,42.80561],[-0.35906,42.80186],[-0.36687,42.93662],[-0.30572,42.93852],[-0.31343,43.0733],[-0.25214,43.07517],[-0.25466,43.12011],[-0.19332,43.12194],[-0.19581,43.16688],[-0.13441,43.16868],[-0.1393,43.25856],[-0.20079,43.25675],[-0.20328,43.3017],[-0.14175,43.3035],[-0.14665,43.39339],[-0.08502,43.39516],[-0.09226,43.53001],[-0.15404,43.52823],[-0.15651,43.57318],[-0.28016,43.56952],[-0.28273,43.61447],[-0.34459,43.61258],[-0.34722,43.65753],[-0.28531,43.65942],[-0.29047,43.74932],[-0.22845,43.75118],[-0.23608,43.88605],[-0.29824,43.88419],[-0.30084,43.92915],[-0.23863,43.93101],[-0.24119,43.97597],[-0.05439,43.98135],[-0.0568,44.02632],[0.00552,44.02804],[0.00788,43.98307],[0.07016,43.98476],[0.06785,44.02973],[0.44189,44.03911],[0.43986,44.08409],[0.68948,44.08964],[0.68765,44.13462],[0.75012,44.13592],[0.74833,44.18091],[0.81085,44.18218],[0.80911,44.22716],[0.87168,44.22839],[0.86999,44.27338],[0.80737,44.27215],[0.80563,44.31714],[0.8683,44.31837],[0.86491,44.40836],[0.99045,44.41072],[0.98725,44.50071],[0.92438,44.49954],[0.92107,44.58954],[1.04701,44.59183],[1.04545,44.63683],[1.10848,44.63793],[1.10696,44.68293],[1.17004,44.68399],[1.16858,44.72899],[1.23171,44.73002],[1.22888,44.82003],[1.35535,44.82197],[1.34873,45.04702],[1.72972,45.05201],[1.73074,45.007],[1.79419,45.0077],[1.79516,44.96269],[1.85857,44.96336],[1.85765,45.00837],[2.04802,45.01016],[2.04649,45.1002],[2.17361,45.10121],[2.17094,45.28129]],[[3.80563,48.07262],[3.7385,48.07306],[3.73912,48.11805],[3.60474,48.11882],[3.60526,48.16381],[3.53801,48.16414],[3.53939,48.2991],[3.47197,48.29939],[3.47237,48.34437],[3.40489,48.34462],[3.40524,48.3896],[3.3377,48.38982],[3.33886,48.56974],[3.40663,48.56952],[3.40768,48.70445],[3.33973,48.70466],[3.34061,48.83956],[3.40873,48.83935],[3.40909,48.88432],[3.47726,48.88406],[3.47768,48.92903],[3.54591,48.92874],[3.54639,48.9737],[3.61468,48.97337],[3.61521,49.01833],[3.54686,49.01866],[3.54876,49.19847],[3.61735,49.19814],[3.6195,49.37793],[3.82599,49.37669],[3.82671,49.42163],[4.03337,49.42004],[4.03699,49.59977],[3.96786,49.60034],[3.96871,49.64527],[4.10708,49.64409],[4.10903,49.73394],[4.17833,49.73329],[4.18457,50.00276],[4.39357,50.00056],[4.39234,49.95566],[4.46194,49.95485],[4.46323,49.99975],[4.60255,49.99801],[4.60397,50.04291],[4.67368,50.04197],[4.67665,50.13176],[4.74648,50.13079],[4.74803,50.17568],[4.95771,50.17252],[4.95425,50.08274],[4.88448,50.08383],[4.8795,49.94914],[4.94908,49.94806],[4.94394,49.81335],[5.15213,49.80985],[5.15024,49.76494],[5.21956,49.7637],[5.21761,49.7188],[5.35614,49.71619],[5.35407,49.67129],[5.42326,49.66993],[5.41902,49.58011],[5.34995,49.58146],[5.3479,49.53655],[5.14084,49.54038],[5.13337,49.36069],[5.06459,49.36188],[5.06279,49.31695],[5.13152,49.31576],[5.12966,49.27083],[5.061,49.27202],[5.05742,49.18215],[4.98887,49.18331],[4.98714,49.13837],[5.05563,49.13722],[5.04675,48.9125],[4.97856,48.91364],[4.97344,48.77879],[5.04146,48.77764],[5.0362,48.64277],[5.17188,48.64038],[5.17001,48.59542],[5.23779,48.59416],[5.23587,48.5492],[5.3713,48.54658],[5.36927,48.50162],[5.43692,48.50025],[5.43483,48.45529],[5.50242,48.45389],[5.49814,48.36397],[5.56561,48.36252],[5.56342,48.31756],[5.69824,48.31457],[5.69594,48.26961],[5.76328,48.26805],[5.75857,48.17813],[5.69134,48.17968],[5.68677,48.08975],[5.82099,48.08661],[5.8162,47.99668],[5.8832,47.99506],[5.88075,47.95009],[5.94769,47.94843],[5.94269,47.8585],[5.87588,47.86015],[5.87344,47.81518],[5.80668,47.8168],[5.8043,47.77183],[5.73759,47.77341],[5.73066,47.63848],[5.46444,47.6444],[5.46236,47.59942],[5.39585,47.6008],[5.39384,47.55582],[5.19446,47.55974],[5.19631,47.60473],[5.06326,47.60715],[5.065,47.65214],[4.93183,47.65442],[4.93509,47.7444],[4.86839,47.74548],[4.86997,47.79047],[4.93673,47.78939],[4.93837,47.83438],[4.87155,47.83546],[4.87314,47.88045],[4.80627,47.8815],[4.8078,47.92648],[4.74086,47.92749],[4.74234,47.97248],[4.60835,47.97439],[4.60699,47.9294],[4.33921,47.93276],[4.33808,47.88777],[4.27119,47.88851],[4.20429,47.88922],[4.20532,47.93421],[4.13836,47.93488],[4.1374,47.88988],[3.8698,47.89217],[3.87054,47.93717],[3.80358,47.93764],[3.80563,48.07262]],[[2.19024,48.34254],[2.18955,48.38753],[2.25708,48.38797],[2.25772,48.34299],[2.46015,48.34408],[2.46061,48.2991],[2.52803,48.29939],[2.52924,48.16442],[2.73099,48.16506],[2.73076,48.21004],[2.86538,48.21027],[2.8655,48.16528],[2.93275,48.16534],[2.93269,48.21033],[3,48.21035],[3,48.16536],[3.06725,48.16534],[3.06714,48.07536],[3.13428,48.0753],[3.13382,47.89532],[3.06691,47.89537],[3.06674,47.76037],[2.93326,47.76037],[2.93337,47.67037],[3,47.67039],[3,47.53537],[2.93354,47.53535],[2.9336,47.49034],[2.73439,47.49006],[2.73461,47.44505],[2.60191,47.44467],[2.60124,47.53469],[2.46833,47.53416],[2.46788,47.57916],[2.20184,47.57765],[2.20049,47.66765],[2.00063,47.66612],[2.00147,47.62111],[1.73524,47.61853],[1.73417,47.66353],[1.66756,47.66279],[1.66644,47.70779],[1.53311,47.70619],[1.53063,47.79618],[1.46386,47.79533],[1.46256,47.84032],[1.52939,47.84118],[1.52814,47.88617],[1.46126,47.88531],[1.45602,48.06526],[1.59025,48.06694],[1.58905,48.11193],[1.85776,48.11484],[1.85582,48.20481],[1.92311,48.20544],[1.92127,48.29541],[1.98869,48.29601],[1.98782,48.34099],[2.19024,48.34254]],[[-0.97752,47.37732],[-0.98421,47.46723],[-1.18305,47.46025],[-1.2007,47.68496],[-1.26725,47.68255],[-1.2817,47.86229],[-1.21492,47.86471],[-1.22565,47.99951],[-1.09175,48.00425],[-1.13385,48.54336],[-0.79556,48.55465],[-0.80535,48.68942],[-0.87319,48.68723],[-0.87653,48.73215],[-1.0802,48.72536],[-1.08371,48.77027],[-1.15165,48.76792],[-1.15523,48.81283],[-1.22322,48.81044],[-1.22686,48.85535],[-1.15881,48.85773],[-1.1624,48.90264],[-1.09429,48.90499],[-1.10137,48.99479],[-0.96489,48.99938],[-0.96833,49.04428],[-0.90002,49.04652],[-0.9034,49.09142],[-0.97177,49.08918],[-0.97866,49.17898],[-1.11561,49.17437],[-1.11919,49.21926],[-1.18771,49.2169],[-1.19865,49.35155],[-1.12995,49.35392],[-1.13355,49.3988],[-0.78964,49.41007],[-0.78634,49.36518],[-0.37382,49.3774],[-0.37088,49.3325],[-0.02727,49.3416],[-0.02991,49.38651],[0.03889,49.38822],[0.03631,49.43312],[0.10517,49.43479],[0.10264,49.4797],[0.30943,49.48447],[0.31412,49.39464],[0.38294,49.39615],[0.39203,49.21646],[0.46061,49.21793],[0.47597,48.90339],[0.68049,48.90752],[0.68449,48.81763],[0.82063,48.82019],[0.82625,48.68533],[0.89415,48.68655],[0.89777,48.59663],[0.96555,48.59781],[0.96729,48.55285],[1.03502,48.55399],[1.03671,48.50902],[0.96904,48.50789],[0.97078,48.46292],[1.03839,48.46406],[1.04007,48.41909],[0.97251,48.41795],[0.97598,48.32802],[0.84111,48.32563],[0.84662,48.19072],[0.91389,48.19193],[0.91566,48.14695],[0.98287,48.14812],[0.98458,48.10314],[0.91744,48.10198],[0.9192,48.057],[0.85211,48.05579],[0.85939,47.87587],[0.79253,47.87464],[0.79626,47.78467],[0.72952,47.7834],[0.73144,47.73841],[0.66476,47.7371],[0.66869,47.64713],[0.53556,47.6444],[0.53764,47.59942],[0.40463,47.59653],[0.40681,47.55155],[0.27393,47.54852],[0.27851,47.45856],[0.21219,47.45699],[0.2192,47.32204],[0.15305,47.32044],[0.15781,47.23047],[0.09177,47.22883],[0.09663,47.13887],[0.03071,47.13719],[0.03566,47.04722],[-0.22755,47.04017],[-0.23025,47.08515],[-0.36194,47.08139],[-0.35914,47.03641],[-0.4907,47.03251],[-0.48779,46.98754],[-0.81634,46.97713],[-0.81316,46.93216],[-0.74752,46.93432],[-0.74129,46.84438],[-0.67575,46.8465],[-0.66966,46.75655],[-0.60422,46.75863],[-0.58341,46.4438],[-0.51835,46.44583],[-0.50967,46.31089],[-0.70437,46.30472],[-0.70133,46.25975],[-0.76616,46.25762],[-0.76926,46.30259],[-0.9639,46.29598],[-0.96717,46.34095],[-1.03209,46.33867],[-1.02877,46.2937],[-1.09364,46.29139],[-1.09028,46.24643],[-1.34947,46.23681],[-1.35662,46.32672],[-1.48639,46.32168],[-1.49009,46.36663],[-1.61994,46.36144],[-1.62375,46.40638],[-1.75369,46.40104],[-1.7576,46.44598],[-1.82262,46.44325],[-1.82659,46.48819],[-1.89165,46.48542],[-1.90379,46.62023],[-1.969,46.61741],[-1.97311,46.66235],[-2.03837,46.65949],[-2.04673,46.74935],[-2.11209,46.74646],[-2.11633,46.79138],[-2.18173,46.78845],[-2.19466,46.92321],[-2.32578,46.91722],[-2.33465,47.00705],[-2.4003,47.00399],[-2.4048,47.0489],[-2.20765,47.05797],[-2.20331,47.01305],[-2.07195,47.01891],[-2.07618,47.06383],[-1.94468,47.06954],[-1.94056,47.02461],[-1.87485,47.02741],[-1.8708,46.98248],[-1.80514,46.98523],[-1.80114,46.9403],[-1.66991,46.9457],[-1.66603,46.90076],[-1.60046,46.9034],[-1.61196,47.03822],[-1.54623,47.04083],[-1.55002,47.08577],[-1.48422,47.08834],[-1.48048,47.0434],[-1.41473,47.04593],[-1.34897,47.04843],[-1.3526,47.09338],[-1.28678,47.09584],[-1.29395,47.18574],[-1.22801,47.18816],[-1.23155,47.23311],[-1.29754,47.23068],[-1.30114,47.27563],[-1.36718,47.27316],[-1.3745,47.36305],[-0.97752,47.37732]],[[-3.17337,47.41667],[-3.19415,47.59615],[-3.26048,47.5926],[-3.26575,47.63747],[-3.33213,47.63388],[-3.33746,47.67874],[-3.40388,47.67511],[-3.39311,47.5854],[-3.5257,47.57804],[-3.56436,47.89198],[-3.43099,47.89938],[-3.43644,47.94423],[-3.56992,47.93682],[-3.57549,47.98166],[-3.70904,47.9741],[-3.72043,48.06377],[-3.78731,48.05992],[-3.79885,48.14958],[-3.66487,48.15724],[-3.67054,48.20207],[-3.40223,48.21695],[-3.39678,48.17211],[-3.32974,48.17573],[-3.19562,48.18286],[-3.2009,48.22771],[-2.99948,48.23812],[-2.99438,48.19326],[-2.86017,48.20001],[-2.85519,48.15515],[-2.65398,48.16497],[-2.64438,48.07522],[-2.57741,48.07841],[-2.5869,48.16817],[-2.45271,48.17446],[-2.45735,48.21934],[-2.39019,48.22243],[-2.3856,48.17754],[-2.25136,48.1836],[-2.24244,48.09381],[-2.1084,48.09971],[-2.10406,48.05481],[-2.17102,48.05188],[-2.16664,48.00699],[-2.09973,48.00991],[-2.0954,47.96501],[-2.02854,47.96789],[-2.00308,47.69843],[-2.06961,47.69556],[-2.05256,47.51591],[-2.11886,47.51302],[-2.11456,47.4681],[-2.31324,47.45919],[-2.30878,47.41428],[-2.50722,47.40504],[-2.51648,47.49484],[-2.64896,47.48848],[-2.64422,47.44359],[-2.71039,47.44036],[-2.71519,47.48525],[-2.78141,47.48197],[-2.77655,47.43709],[-2.84271,47.43378],[-2.84762,47.47866],[-2.91382,47.47531],[-2.91879,47.5202],[-3.05128,47.51338],[-3.04113,47.42363],[-2.90886,47.43043],[-2.9039,47.38555],[-2.83781,47.38889],[-2.83292,47.344],[-2.76687,47.34731],[-2.76204,47.30241],[-2.89402,47.29578],[-2.89896,47.34066],[-3.03101,47.33387],[-3.02092,47.24411],[-3.15272,47.23717],[-3.15787,47.28205],[-3.28974,47.27496],[-3.30557,47.40956],[-3.17337,47.41667]],[[-2.36456,46.64468],[-2.36901,46.68959],[-2.43428,46.68652],[-2.44329,46.77634],[-2.31253,46.78247],[-2.30812,46.73755],[-2.24278,46.74056],[-2.23411,46.65071],[-2.36456,46.64468]]],"terms_url":"https://geoservices.ign.fr/documentation/diffusion/documentation-offre.html#bdortho_orthohr","terms_text":"IGN, CRAIG, Mégalis Bretagne"},{"id":"fr.orthohr.2017","name":"Ortho HR 2017","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/orthohr_2017/{zoom}/{x}/{y}","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[3,21],"polygon":[[[3.06547,46.72509],[3,46.72511],[3,47.17528],[2.93398,47.17526],[2.93387,47.26529],[2.86775,47.26523],[2.86764,47.31025],[2.80146,47.31015],[2.80129,47.35516],[2.86753,47.35526],[2.86719,47.49029],[2.80079,47.49019],[2.80045,47.58021],[3.06652,47.58036],[3.06657,47.62536],[3.13314,47.62531],[3.13303,47.5803],[3.19955,47.58021],[3.19938,47.5352],[3.46521,47.53444],[3.46561,47.57945],[3.53212,47.57916],[3.53167,47.53416],[3.59813,47.53384],[3.59762,47.48883],[3.73042,47.48807],[3.72981,47.44307],[3.92883,47.44165],[3.92805,47.39664],[3.99433,47.39609],[3.9935,47.35109],[4.05973,47.3505],[4.06329,47.53052],[4.12974,47.5299],[4.13165,47.6199],[4.1982,47.61924],[4.20124,47.75423],[4.26797,47.75353],[4.26904,47.79852],[4.20226,47.79923],[4.20532,47.93421],[4.27227,47.9335],[4.27335,47.97849],[4.47436,47.97615],[4.47561,48.02113],[4.54267,48.02027],[4.54398,48.06526],[4.7453,48.06245],[4.74382,48.01747],[4.87791,48.0154],[4.87473,47.92543],[4.94166,47.92435],[4.94001,47.87936],[5.00688,47.87824],[5.00179,47.74328],[5.06849,47.74212],[5.06674,47.69713],[5.20002,47.6947],[5.19816,47.64971],[5.33131,47.64713],[5.33327,47.69212],[5.53314,47.68796],[5.53528,47.73294],[5.66861,47.72997],[5.67539,47.8649],[5.80905,47.86177],[5.81382,47.95171],[5.88075,47.95009],[5.8832,47.99506],[6.01717,47.9917],[6.01974,48.03666],[6.22084,48.03132],[6.2181,47.98637],[6.48594,47.97873],[6.48299,47.93378],[6.54988,47.93177],[6.55289,47.97672],[6.68677,47.9726],[6.68365,47.92765],[6.75052,47.92553],[6.74734,47.88059],[6.81416,47.87843],[6.81093,47.83349],[6.87768,47.8313],[6.87441,47.78635],[7.07446,47.77956],[7.06415,47.64473],[7.13066,47.64239],[7.12371,47.5525],[7.19009,47.55014],[7.18305,47.46025],[7.0505,47.46494],[7.0471,47.41999],[6.98086,47.42227],[6.97752,47.37732],[7.10987,47.37271],[7.10299,47.28281],[6.97086,47.28741],[6.96422,47.1975],[6.89826,47.19974],[6.89175,47.10982],[6.76003,47.11418],[6.75376,47.02425],[6.68801,47.02637],[6.68493,46.9814],[6.61923,46.98349],[6.61621,46.93852],[6.48489,46.94256],[6.47045,46.71768],[6.40505,46.71964],[6.40223,46.67467],[6.33688,46.67659],[6.33412,46.6316],[6.26882,46.63349],[6.26612,46.5885],[6.20087,46.59035],[6.19558,46.50038],[6.13044,46.50218],[6.12528,46.4122],[6.06023,46.41397],[6.0552,46.32399],[5.99026,46.32571],[5.9878,46.28072],[5.92291,46.2824],[5.9205,46.23741],[5.66111,46.24378],[5.6633,46.28877],[5.59839,46.29027],[5.59625,46.24527],[5.40166,46.24955],[5.40363,46.29455],[5.33871,46.2959],[5.34256,46.38591],[5.27753,46.38723],[5.28129,46.47724],[5.34643,46.47592],[5.3581,46.74593],[5.29264,46.74725],[5.29836,46.88225],[5.23272,46.88354],[5.23458,46.92854],[4.8404,46.93551],[4.83887,46.89051],[4.57625,46.8944],[4.57756,46.93941],[4.51185,46.94029],[4.51311,46.9853],[4.44734,46.98614],[4.44854,47.03115],[4.31688,47.03273],[4.31798,47.07774],[4.12031,47.07982],[4.11381,46.76473],[3.98278,46.76593],[3.98197,46.72091],[3.85105,46.72195],[3.85035,46.67694],[3.71953,46.67783],[3.72013,46.72285],[3.65467,46.72324],[3.65412,46.67822],[3.58871,46.67858],[3.58823,46.63356],[3.39215,46.6344],[3.39248,46.67942],[3.26165,46.67979],[3.26144,46.63477],[3.13072,46.63499],[3.13083,46.68001],[3.06541,46.68007],[3.06547,46.72509]],[[4.97192,43.33117],[4.91032,43.33228],[4.90883,43.28731],[4.78573,43.28941],[4.78712,43.33438],[4.54069,43.33817],[4.5431,43.42812],[4.17282,43.43276],[4.17465,43.52272],[4.29828,43.52131],[4.2993,43.56629],[4.36116,43.56553],[4.36329,43.65549],[4.42525,43.6547],[4.42749,43.74467],[4.61363,43.74207],[4.61872,43.92201],[4.68096,43.92107],[4.68229,43.96606],[4.80686,43.96407],[4.80544,43.91908],[4.99213,43.91584],[4.99056,43.87086],[5.05274,43.8697],[5.05112,43.82472],[5.11325,43.82354],[5.11159,43.77856],[5.35987,43.77347],[5.35801,43.72849],[5.48204,43.72574],[5.48009,43.68077],[5.60401,43.67787],[5.60605,43.72284],[5.73006,43.7198],[5.73435,43.80973],[5.9827,43.80321],[5.98036,43.75825],[6.04239,43.75654],[6.04478,43.8015],[6.16893,43.79796],[6.17142,43.84292],[6.29565,43.83923],[6.29306,43.79428],[6.35512,43.79238],[6.35776,43.83734],[6.60614,43.8294],[6.61183,43.9193],[6.79837,43.91297],[6.80136,43.95792],[6.73914,43.96006],[6.74209,44.00501],[6.67981,44.00713],[6.68855,44.14198],[6.62612,44.14407],[6.62899,44.18902],[6.69147,44.18694],[6.70026,44.32181],[6.76288,44.31968],[6.76587,44.36464],[6.82853,44.36247],[6.83158,44.40743],[6.957,44.40299],[6.95385,44.35804],[7.01651,44.35577],[7.01014,44.26587],[7.13523,44.26123],[7.13195,44.21629],[7.25692,44.21151],[7.25355,44.16657],[7.50324,44.15659],[7.5068,44.20152],[7.69415,44.19366],[7.69044,44.14874],[7.75283,44.14605],[7.74158,44.01129],[7.67933,44.01397],[7.67196,43.92413],[7.60981,43.92677],[7.60618,43.88185],[7.54407,43.88446],[7.5298,43.70478],[7.40596,43.70987],[7.4025,43.66495],[7.27874,43.66989],[7.27538,43.62497],[7.15169,43.62977],[7.14844,43.58484],[7.21024,43.58246],[7.20694,43.53754],[7.14519,43.53992],[7.14195,43.49499],[7.01852,43.49964],[7.01538,43.45471],[6.95371,43.45698],[6.94754,43.36713],[6.76279,43.37372],[6.74816,43.14909],[6.6868,43.1512],[6.68394,43.10628],[6.43866,43.11439],[6.43599,43.06946],[6.55854,43.06548],[6.55303,42.97563],[6.43066,42.97961],[6.42801,42.93469],[6.36687,42.93662],[6.36948,42.98155],[6.30829,42.98345],[6.30572,42.93852],[6.12227,42.94401],[6.12469,42.98894],[6.06348,42.9907],[6.06586,43.03564],[5.88208,43.04072],[5.87984,42.99578],[5.7574,42.99899],[5.75954,43.04393],[5.69826,43.04548],[5.70036,43.09043],[5.63903,43.09195],[5.64109,43.13689],[5.51833,43.13983],[5.52029,43.18478],[5.45886,43.1862],[5.45695,43.14125],[5.33417,43.14397],[5.33599,43.18893],[5.21311,43.19152],[5.21483,43.23648],[5.27632,43.2352],[5.2781,43.28016],[4.97038,43.28621],[4.97192,43.33117]],[[-60.77401,14.41694],[-60.82036,14.41737],[-60.8208,14.3722],[-60.91349,14.37303],[-60.91307,14.41821],[-61.09849,14.41978],[-61.09811,14.46496],[-61.14448,14.46533],[-61.14335,14.60089],[-61.18975,14.60125],[-61.18901,14.69162],[-61.23543,14.69198],[-61.2336,14.9179],[-61.0942,14.91679],[-61.0946,14.8716],[-61.00169,14.87081],[-61.0021,14.82563],[-60.86278,14.82438],[-60.86367,14.73403],[-60.81725,14.7336],[-60.81859,14.59808],[-60.7722,14.59764],[-60.77401,14.41694]],[[-61.36452,16.0034],[-61.31781,16.00304],[-61.31743,16.04822],[-61.22398,16.04747],[-61.22438,16.00229],[-61.17767,16.00189],[-61.17889,15.86636],[-61.22557,15.86674],[-61.22597,15.82156],[-61.31931,15.82231],[-61.31893,15.86749],[-61.36562,15.86785],[-61.36452,16.0034]],[[-63.09449,18.04349],[-63.18897,18.04342],[-63.18902,18.08862],[-63.09451,18.08869],[-63.09453,18.13388],[-62.95273,18.1339],[-62.95275,18.0887],[-63,18.08871],[-63,18.04352],[-63.04724,18.04351],[-63.04723,17.99832],[-63.09446,17.9983],[-63.09449,18.04349]],[[-61.12838,16.27262],[-61.12802,16.3177],[-61.08117,16.31735],[-61.08081,16.3624],[-60.98729,16.36171],[-60.98801,16.27147],[-61.08182,16.27216],[-61.0829,16.13668],[-61.17641,16.13736],[-61.17605,16.18258],[-61.12924,16.18223],[-61.12888,16.22748],[-61.31591,16.22885],[-61.31627,16.18378],[-61.5033,16.18515],[-61.50366,16.13997],[-61.55028,16.14031],[-61.5528,15.82392],[-61.69278,15.82495],[-61.69207,15.91522],[-61.73887,15.91557],[-61.73851,15.96069],[-61.78543,15.96104],[-61.784,16.14172],[-61.8312,16.14207],[-61.82904,16.41332],[-61.54844,16.41127],[-61.54771,16.5018],[-61.50091,16.50145],[-61.50055,16.54664],[-61.40687,16.54595],[-61.40723,16.50076],[-61.36043,16.50041],[-61.36151,16.36483],[-61.26796,16.36414],[-61.26832,16.31891],[-61.22158,16.31857],[-61.22194,16.2733],[-61.12838,16.27262]]],"terms_url":"https://geoservices.ign.fr/documentation/diffusion/documentation-offre.html#bdortho_orthohr","terms_text":"IGN"},{"id":"LV_ORTOFOTO_C1","name":"Orthophoto (1994–1999), B&W, 1:30000, Latvia","type":"wms","template":"https://services.lgia.gov.lv/arcfree/services/WMS_Ortofoto_v1/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2001-12-31T00:00:00.000Z","startDate":"1994-01-01T00:00:00.000Z","polygon":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"terms_text":"LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0) and WMS service.","description":"Made in 1994-1999 in cooperation with the Swedish company Swedesurvey Oy. In 1995, aerial photography of Daugavpils city and district was performed in cooperation with the Danish Ministry of Agriculture, aerial photography works are performed by the company 'Kampsax-Geoplan', and orthophoto maps are produced by the State Land Service (VZD) with a resolution of 1 meter. Aerial photography was performed with analog cameras to obtain black and white aerial at 1:30,000 scale. Satellite images of the Eastern border of Latvia were purchased in 2000-2001 from ICONOSS. ArcGIS service description."},{"id":"LV_ORTOFOTO_C4","name":"Orthophoto (2010-2011), 1:5000, Latvia","type":"wms","template":"https://lvmgeoserver.lvm.lv/geoserver/ows?LAYERS=public:Orto_4cikls&STYLES=&FORMAT=image/vnd.jpeg-png8&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2011-12-31T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","polygon":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"terms_text":"LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry).","description":"This service includes a color orthophoto map for the entire territory of Latvia with a resolution of 0.5 meters, obtained from aerial photography data for the years 2010-2011. The orthophoto map is linked to the LKS-92 TM coordinate system. The map sheet breakdown corresponds to the TKS-93 M 1:5000 map sheet nomenclature breakdown. Aerial photography was performed in cooperation with the Polish company MGGPAero. WMS service is freely provided by LVM (Latvian State Forestry, https://lvmgeo.lv/en/data)."},{"id":"LV_ORTOFOTO_C5","name":"Orthophoto (2013-2015), 1:5000, Latvia","type":"wms","template":"https://lvmgeoserver.lvm.lv/geoserver/ows?LAYERS=public:Orto_5cikls&STYLES=&FORMAT=image/vnd.jpeg-png8&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-12-31T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"terms_text":"LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry).","description":"This service includes a color orthophoto map for the entire territory of Latvia with a resolution of 0.4 meters, obtained from aerial photography data for the years 2013-2015. The orthophoto map is linked to the LKS-92 TM coordinate system. The map sheet breakdown corresponds to the TKS-93 M 1:5000 map sheet nomenclature breakdown. Aerial photography was performed in cooperation with the Polish company MGGPAero. WMS service is freely provided by LVM (Latvian State Forestry, https://lvmgeo.lv/en/data)."},{"id":"LV_ORTOFOTO_C6","name":"Orthophoto (2016–2018), 1:5000, Latvia","type":"wms","template":"https://lvmgeoserver.lvm.lv/geoserver/ows?LAYERS=public:Orto_LKS&STYLES=&FORMAT=image/vnd.jpeg-png8&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-12-31T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[27.66415,55.75354],[27.68475,55.93319],[28.26703,56.1908],[28.23682,56.49827],[27.82757,56.94886],[27.90997,57.37037],[27.58313,57.56387],[26.93219,57.63598],[26.5202,57.58596],[26.0368,57.87192],[25.1991,58.10487],[24.31744,57.90258],[24.31744,57.19669],[23.93567,56.9788],[23.55115,56.98479],[23.23804,57.10283],[23.14465,57.37333],[22.60632,57.60215],[22.60083,57.76953],[21.66699,57.56681],[21.40057,57.29625],[21.38409,57.0177],[21.04626,56.80026],[20.99133,56.36615],[21.0545,56.0392],[21.28796,56.05608],[21.29895,56.1908],[22.11743,56.41936],[24.44379,56.24425],[24.81183,56.3996],[25.15515,56.1694],[25.58087,56.12962],[26.53668,55.66146],[26.91296,55.66766],[27.0805,55.80991],[27.66415,55.75354]]],"terms_text":"LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry).","best":true,"description":"This service includes a color orthophoto map for the entire territory of Latvia with a resolution of 0.25 meters, obtained from aerial photography data for the years 2016-2018. The orthophoto map is linked to the LKS-92 TM coordinate system. The map sheet breakdown corresponds to the TKS-93 M 1:5000 map sheet nomenclature breakdown. WMS service is freely provided by LVM (Latvian State Forestry, https://lvmgeo.lv/en/data)."},{"id":"ortofotomozaika-sr","name":"Ortofotomozaika SR","type":"tms","template":"https://ofmozaika.tiles.freemap.sk/{zoom}/{x}/{y}.jpg","zoomExtent":[0,19],"polygon":[[[19.83682,49.25529],[19.80075,49.42385],[19.60437,49.48058],[19.49179,49.63961],[19.21831,49.52604],[19.16778,49.42521],[19.00308,49.42236],[18.97611,49.5308],[18.54685,49.51425],[18.31432,49.33818],[18.15913,49.2961],[18.05564,49.11134],[17.56396,48.84938],[17.17929,48.88816],[17.058,48.81105],[16.90426,48.61947],[16.79685,48.38561],[17.06762,48.01116],[17.32787,47.97749],[17.51699,47.82535],[17.74776,47.73093],[18.29515,47.72075],[18.67959,47.75541],[18.89755,47.81203],[18.79463,47.88245],[18.84318,48.04046],[19.46212,48.05333],[19.62064,48.22938],[19.89585,48.09387],[20.33766,48.2643],[20.55395,48.52358],[20.82335,48.55714],[21.10271,48.47096],[21.45863,48.55513],[21.74536,48.31435],[22.15293,48.37179],[22.61255,49.08914],[22.09997,49.23814],[21.9686,49.36363],[21.6244,49.46989],[21.06873,49.46402],[20.94336,49.31088],[20.73052,49.44006],[20.22804,49.41714],[20.05234,49.23052],[19.83682,49.25529]]],"terms_text":"© GKÚ, NLC 2017-2019"},{"id":"ORTOS_DGRF_2004_06","name":"Ortofotos DGRF 2004-2006 (WMS)","type":"wms","template":"http://mapas.dgterritorio.pt:8888/wms/produtos?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Ortos&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2006-01-01T00:00:00.000Z","startDate":"2004-01-01T00:00:00.000Z","zoomExtent":[14,19],"polygon":[[[-7.31278,36.98391],[-7.44461,37.5718],[-7.1933,37.97019],[-6.97357,38.00807],[-6.90628,38.24142],[-7.06627,38.20743],[-7.27158,38.45628],[-7.20429,38.72356],[-7.0134,38.85468],[-6.91315,39.03839],[-6.97357,39.13113],[-7.17957,39.23651],[-7.28668,39.48497],[-7.44873,39.61838],[-7.34162,39.60886],[-6.99692,39.64906],[-6.81839,40.0192],[-7.01065,40.19986],[-6.85272,40.24285],[-6.76209,40.35073],[-6.77994,40.8886],[-6.88637,41.01151],[-6.79642,41.01721],[-6.63849,41.21689],[-6.4531,41.24116],[-6.29311,41.38763],[-6.15715,41.5908],[-6.31165,41.68932],[-6.51215,41.71188],[-6.49841,41.88081],[-6.56296,41.97991],[-6.80191,42.00951],[-7.20497,42.00135],[-7.22763,41.8849],[-7.36908,41.87058],[-7.72751,41.92885],[-7.92526,41.94009],[-8.07907,41.84706],[-8.1601,41.91812],[-8.01796,42.05031],[-8.19924,42.18681],[-8.39356,42.1023],[-8.66066,42.07886],[-8.88382,41.88081],[-9.17084,41.86956],[-9.04175,41.43655],[-9.01978,40.65981],[-9.15711,40.26695],[-9.81903,39.52099],[-9.74213,38.6512],[-9.12964,37.88136],[-9.27246,36.99378],[-9.09394,36.68604],[-7.80579,36.74989],[-7.31278,36.98391]]],"terms_url":"http://www.dgterritorio.pt/dados_abertos/ortofotos/","terms_text":"Direcção-Geral do Território","icon":"http://www.igeo.pt/favicon.ico"},{"id":"ORTOS_DGT_2014_15","name":"Ortofotos Litoral DGT 2014-2015 (WMS)","type":"wms","template":"http://ows.dgterritorio.pt/wss/service/ortos2014-2015-wms/guest?LAYERS=Ortoimagens_2014-2015_Litoral&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LANGUAGE=por","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-7.38968,37.19205],[-7.52426,37.18002],[-7.89505,36.98171],[-8.15186,37.10886],[-8.65036,37.14062],[-8.95111,37.03545],[-8.78632,37.34833],[-8.76434,37.55111],[-8.7561,38.38258],[-8.47664,38.33466],[-8.47183,38.40141],[-8.66066,38.46596],[-8.66959,38.60882],[-9.142,38.53689],[-8.81104,38.67372],[-8.79318,38.85468],[-8.95935,38.9829],[-9.18732,38.84934],[-9.2395,38.72838],[-9.37821,38.74659],[-9.38233,39.07891],[-9.29169,39.2514],[-9.31915,39.33642],[-9.17084,39.38526],[-9.06372,39.48815],[-9.02252,39.69662],[-8.78632,40.14529],[-8.86322,40.2093],[-8.72589,40.53155],[-8.64075,40.50858],[-8.62427,40.63063],[-8.53089,40.6004],[-8.535,40.71292],[-8.61466,40.89275],[-8.61878,41.10419],[-8.53089,41.16728],[-8.66959,41.21689],[-8.72315,41.41081],[-8.76984,41.65958],[-8.66547,41.73955],[-8.81104,41.72316],[-8.81104,41.85217],[-8.74649,41.9125],[-8.83576,41.93089],[-8.91815,41.84501],[-8.89343,41.70778],[-8.82065,41.50755],[-8.73139,41.16315],[-8.67508,41.069],[-8.68469,40.90729],[-8.93326,40.17573],[-8.88107,40.12219],[-9.11453,39.64694],[-9.11865,39.5623],[-9.3013,39.40543],[-9.43039,39.37571],[-9.34799,39.23864],[-9.45099,39.04799],[-9.45786,38.89317],[-9.53201,38.78835],[-9.50043,38.68551],[-9.28894,38.663],[-9.19418,38.54172],[-9.25324,38.38473],[-9.03488,38.42347],[-8.92502,38.46757],[-8.81241,38.35997],[-8.7973,38.14968],[-8.91953,37.95286],[-8.84262,37.8651],[-8.83988,37.40617],[-9.02664,37.01023],[-8.92914,36.97513],[-8.61466,37.099],[-8.15048,37.05956],[-7.8923,36.93672],[-7.48993,37.15156],[-7.39105,37.15813],[-7.38968,37.19205]]],"terms_url":"http://www.dgterritorio.pt/","terms_text":"Direcção-Geral do Território","icon":"http://www.igeo.pt/favicon.ico"},{"id":"OS-OpenData_Locator","name":"OS OpenData Locator","type":"tms","template":"https://tiles.itoworld.com/os_locator/{zoom}/{x}/{y}.png","zoomExtent":[0,22],"polygon":[[[-0.88639,61.11666],[-9.24009,57.92465],[-6.61235,55.46835],[-6.1039,55.40191],[-5.61358,55.06607],[-5.40088,54.90562],[-5.29371,54.77201],[-5.11832,54.5911],[-4.92368,54.38599],[-4.94067,53.59884],[-5.44172,52.27725],[-6.03376,51.6012],[-7.54473,49.33762],[-2.59721,50.2588],[0.65674,50.64047],[1.32419,50.83256],[1.87586,51.19234],[2.05883,52.88863],[-1.61452,56.47933],[-1.21085,57.64972],[-1.69525,59.08903],[0.21543,60.43058],[-0.88639,61.11666]]],"overlay":true},{"id":"OS-OpenData_StreetView","name":"OS OpenData StreetView","type":"tms","template":"https://{switch:a,b,c}.os.openstreetmap.org/sv/{zoom}/{x}/{y}.png","zoomExtent":[1,18],"polygon":[[[-5.82929,50.02297],[-5.82929,50.25482],[-5.37336,50.25482],[-5.37336,50.35306],[-5.1756,50.35306],[-5.1756,50.59254],[-4.99707,50.59254],[-4.99707,50.69356],[-4.79657,50.69356],[-4.79657,50.78221],[-4.69495,50.78221],[-4.69495,50.96074],[-4.60431,50.96074],[-4.60431,51.06921],[-4.37922,51.06921],[-4.37922,51.25218],[-3.90393,51.25218],[-3.90393,51.2917],[-3.71717,51.2917],[-3.71717,51.2453],[-3.14862,51.2453],[-3.14862,51.36207],[-3.74463,51.36207],[-3.74463,51.43404],[-3.82978,51.43404],[-3.82978,51.52982],[-4.08521,51.52982],[-4.08521,51.49393],[-4.37922,51.49393],[-4.37922,51.54272],[-5.14442,51.54272],[-5.14442,51.6296],[-5.73871,51.6296],[-5.73871,51.77404],[-5.50954,51.77404],[-5.50954,51.98026],[-5.1988,51.98026],[-5.1988,52.09734],[-4.88806,52.09734],[-4.88806,52.18316],[-4.49575,52.18316],[-4.49575,52.29257],[-4.30154,52.29257],[-4.30154,52.36853],[-4.18112,52.36853],[-4.18112,52.79337],[-4.44137,52.79337],[-4.44137,52.73696],[-4.85698,52.73696],[-4.85698,52.93173],[-4.7288,52.93173],[-4.7288,53.50386],[-4.15782,53.50386],[-4.15782,53.41135],[-3.31105,53.41135],[-3.31105,53.50386],[-3.23337,53.50386],[-3.23337,54.01592],[-3.39262,54.01592],[-3.39262,54.1981],[-3.55964,54.1981],[-3.55964,54.43373],[-3.7189,54.43373],[-3.7189,54.7219],[-4.30154,54.7219],[-4.30154,54.61407],[-5.04731,54.61407],[-5.04731,54.75329],[-5.22987,54.75329],[-5.22987,55.21908],[-5.65326,55.21908],[-5.65326,55.25009],[-5.89796,55.25009],[-5.89796,55.48225],[-6.59332,55.48225],[-6.59332,56.30134],[-7.17277,56.30134],[-7.17277,56.56018],[-6.81717,56.56018],[-6.81717,56.69917],[-6.53153,56.69917],[-6.53153,56.9067],[-6.81168,56.9067],[-6.81168,57.37166],[-6.8721,57.37166],[-6.8721,57.55189],[-7.09732,57.55189],[-7.09732,57.24111],[-7.17423,57.24111],[-7.17423,56.9067],[-7.37198,56.9067],[-7.37198,56.80759],[-7.5203,56.80759],[-7.5203,56.71425],[-7.83068,56.71425],[-7.83068,56.89946],[-7.64941,56.89946],[-7.64941,57.47396],[-7.83068,57.47396],[-7.83068,57.79156],[-7.47362,57.79156],[-7.47362,58.08606],[-7.18798,58.08606],[-7.18798,58.3672],[-6.80346,58.3672],[-6.80346,58.41558],[-6.63866,58.41558],[-6.63866,58.46733],[-6.51781,58.46733],[-6.51781,58.56256],[-6.05362,58.56256],[-6.05362,58.15688],[-6.14701,58.15688],[-6.14701,58.11059],[-6.27998,58.11059],[-6.27998,57.71227],[-6.15913,57.71227],[-6.15913,57.66676],[-5.93391,57.66676],[-5.93391,57.88925],[-5.80643,57.88925],[-5.80643,57.96218],[-5.61417,57.96218],[-5.61417,58.09112],[-5.49082,58.09112],[-5.49082,58.37333],[-5.31991,58.37333],[-5.31991,58.75015],[-3.572,58.75015],[-3.572,59.20918],[-3.19445,59.20918],[-3.19445,59.47592],[-2.24358,59.47592],[-2.24358,59.13887],[-2.4611,59.13887],[-2.4611,58.81859],[-2.74077,58.81859],[-2.74077,58.58047],[-2.91167,58.58047],[-2.91167,58.11575],[-3.48654,58.11575],[-3.48654,57.74039],[-1.71532,57.74039],[-1.71532,57.22256],[-1.97945,57.22256],[-1.97945,56.87607],[-2.1659,56.87607],[-2.1659,56.63332],[-2.36011,56.63332],[-2.36011,56.04775],[-1.97945,56.04775],[-1.97945,55.86509],[-1.4745,55.86509],[-1.4745,55.24999],[-1.3222,55.24999],[-1.3222,54.82217],[-1.055,54.82217],[-1.055,54.67466],[-0.66188,54.67466],[-0.66188,54.55275],[-0.32476,54.55275],[-0.32476,54.28652],[0.00928,54.28652],[0.00928,53.79385],[0.2082,53.79385],[0.2082,53.52177],[0.41635,53.52177],[0.41635,53.02989],[1.42734,53.02989],[1.42734,52.92021],[1.83339,52.92021],[1.83339,52.04249],[1.52355,52.04249],[1.52355,51.82613],[1.2697,51.82613],[1.2697,51.69675],[1.11665,51.69675],[1.11665,51.44035],[1.52355,51.44035],[1.52355,51.33318],[1.45076,51.33318],[1.45076,51.02076],[1.06999,51.02076],[1.06999,50.90084],[0.77881,50.90084],[0.77881,50.72984],[-0.7256,50.72984],[-0.7256,50.70384],[-1.00744,50.70384],[-1.00744,50.57363],[-2.36253,50.57363],[-2.36253,50.48464],[-2.49878,50.48464],[-2.49878,50.57363],[-3.40964,50.57363],[-3.40964,50.20578],[-3.69224,50.20578],[-3.69224,50.13477],[-5.00547,50.13477],[-5.00547,49.94745],[-5.28395,49.94745],[-5.28395,50.02297],[-5.82929,50.02297]],[[-6.45807,49.86736],[-6.45807,49.94999],[-6.39788,49.94999],[-6.39788,50.00538],[-6.17996,50.00538],[-6.17996,49.91686],[-6.25402,49.91686],[-6.25402,49.86736],[-6.45807,49.86736]],[[-5.83432,49.93216],[-5.83432,49.97546],[-5.76833,49.97546],[-5.76833,49.93216],[-5.83432,49.93216]],[[-1.94838,60.68857],[-1.94838,60.30588],[-1.75431,60.30588],[-1.75431,60.12844],[-1.57549,60.12844],[-1.57549,59.79792],[-1.0317,59.79792],[-1.0317,60.03545],[-0.66269,60.03545],[-0.66269,60.91039],[-1.10344,60.91039],[-1.10344,60.804],[-1.35063,60.804],[-1.35063,60.68857],[-1.94838,60.68857]],[[-2.20338,60.19686],[-2.20338,60.09294],[-1.9864,60.09294],[-1.9864,60.19686],[-2.20338,60.19686]],[[-1.75431,59.56983],[-1.75431,59.46394],[-1.53733,59.46394],[-1.53733,59.56983],[-1.75431,59.56983]],[[-4.5586,59.13705],[-4.5586,58.95691],[-4.2867,58.95691],[-4.2867,59.13705],[-4.5586,59.13705]],[[-6.27877,59.20257],[-6.27877,59.02278],[-5.66506,59.02278],[-5.66506,59.20257],[-6.27877,59.20257]],[[-8.71635,57.94406],[-8.71635,57.73059],[-8.35929,57.73059],[-8.35929,57.94406],[-8.71635,57.94406]],[[-7.6077,50.4021],[-7.6077,50.26887],[-7.39072,50.26887],[-7.39072,50.4021],[-7.6077,50.4021]],[[-7.73043,58.35799],[-7.73043,58.24831],[-7.51345,58.24831],[-7.51345,58.35799],[-7.73043,58.35799]]]},{"id":"OSIP_1ft","name":"OSIP 1ft Imagery Most Current Available","type":"wms","template":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/osip_best_avail_1ft/ImageServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-83.1356,41.75081],[-83.08101,41.7511],[-83.0796,41.62936],[-82.95011,41.54404],[-82.89032,41.54404],[-82.89032,41.69462],[-82.8494,41.7463],[-82.76758,41.73925],[-82.75184,41.63584],[-82.64799,41.62408],[-82.68575,41.50634],[-82.49063,41.40492],[-82.0217,41.53462],[-81.72901,41.52048],[-81.39541,41.7369],[-81.10587,41.84484],[-80.50161,41.99939],[-80.51105,40.62127],[-80.6275,40.59021],[-80.58344,40.49933],[-80.58973,40.2812],[-80.85095,39.625],[-81.19399,39.37974],[-81.38912,39.31159],[-81.45521,39.38704],[-81.515,39.35054],[-81.54333,39.26288],[-81.72586,39.19461],[-81.73216,38.9258],[-81.9021,38.85477],[-81.95875,38.89397],[-81.9084,38.93315],[-82.02799,38.99922],[-82.11611,38.92336],[-82.12555,38.8278],[-82.19794,38.78856],[-82.16647,38.72475],[-82.16017,38.58712],[-82.26718,38.57236],[-82.29865,38.43198],[-82.57875,38.39745],[-82.73925,38.53545],[-82.8494,38.56006],[-82.91235,38.73212],[-83.00676,38.71002],[-83.14524,38.59942],[-83.30575,38.58466],[-83.39387,38.64368],[-83.46625,38.64614],[-83.54178,38.69283],[-83.65193,38.61172],[-83.74635,38.63385],[-83.9635,38.76403],[-84.08624,38.75421],[-84.22157,38.7812],[-84.34117,38.99922],[-84.49223,39.07255],[-84.64015,39.05545],[-84.74086,39.11164],[-84.84471,39.08477],[-84.82898,41.70637],[-83.44737,41.76038],[-83.13438,41.64959],[-83.1356,41.75081]]],"terms_url":"https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx","terms_text":"Ohio Statewide Imagery Program","description":"Most recent available 1-foot orthoimagery from the Ohio Statewide Imagery Program."},{"id":"OSIP_6in","name":"OSIP 6in Imagery Most Current Available","type":"wms","template":"https://geo1.oit.ohio.gov/arcgis/services/OSIP/OSIP_6in_best_avail/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2018-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[8,20],"polygon":[[[-83.1356,41.75081],[-83.08101,41.7511],[-83.0796,41.62936],[-82.95011,41.54404],[-82.89032,41.54404],[-82.89032,41.69462],[-82.8494,41.7463],[-82.76758,41.73925],[-82.75184,41.63584],[-82.64799,41.62408],[-82.68575,41.50634],[-82.49063,41.40492],[-82.0217,41.53462],[-81.72901,41.52048],[-81.39541,41.7369],[-81.10587,41.84484],[-80.50161,41.99939],[-80.51105,40.62127],[-80.6275,40.59021],[-80.58344,40.49933],[-80.58973,40.2812],[-80.85095,39.625],[-81.19399,39.37974],[-81.38912,39.31159],[-81.45521,39.38704],[-81.515,39.35054],[-81.54333,39.26288],[-81.72586,39.19461],[-81.73216,38.9258],[-81.9021,38.85477],[-81.95875,38.89397],[-81.9084,38.93315],[-82.02799,38.99922],[-82.11611,38.92336],[-82.12555,38.8278],[-82.19794,38.78856],[-82.16647,38.72475],[-82.16017,38.58712],[-82.26718,38.57236],[-82.29865,38.43198],[-82.57875,38.39745],[-82.73925,38.53545],[-82.8494,38.56006],[-82.91235,38.73212],[-83.00676,38.71002],[-83.14524,38.59942],[-83.30575,38.58466],[-83.39387,38.64368],[-83.46625,38.64614],[-83.54178,38.69283],[-83.65193,38.61172],[-83.74635,38.63385],[-83.9635,38.76403],[-84.08624,38.75421],[-84.22157,38.7812],[-84.34117,38.99922],[-84.49223,39.07255],[-84.64015,39.05545],[-84.74086,39.11164],[-84.84471,39.08477],[-84.82898,41.70637],[-83.44737,41.76038],[-83.13438,41.64959],[-83.1356,41.75081]]],"terms_url":"https://ogrip.oit.ohio.gov/ProjectsInitiatives/StatewideImagery.aspx","terms_text":"Ohio Statewide Imagery Program","description":"Most recent available 6-inch orthoimagery from the Ohio Statewide Imagery Program."},{"id":"osm-hr-knin-2007","name":"osm-hr: Knin 2007 Aerial imagery","type":"tms","template":"https://tms.osm-hr.org/knin-2007/{zoom}/{x}/{-y}.png","endDate":"2007-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[16.21712,44.08054],[16.22916,44.08041],[16.22938,44.06055],[16.2303,44.05757],[16.23715,44.04213],[16.23715,44.03615],[16.23041,44.03599],[16.22494,44.03627],[16.2243,44.03599],[16.22404,44.03504],[16.21608,44.02178],[16.21286,44.01661],[16.20391,44.01672],[16.19269,44.02601],[16.18003,44.03662],[16.18011,44.03772],[16.21129,44.06685],[16.21712,44.08054]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-orbview","name":"osm-hr: Orbview","type":"tms","template":"https://tms.osm-hr.org/orbview/{zoom}/{x}/{-y}.png","endDate":"2007-01-01T00:00:00.000Z","startDate":"2003-01-01T00:00:00.000Z","zoomExtent":[0,17],"polygon":[[[19.59394,45.00171],[19.70329,45.00547],[19.70441,43.01839],[19.77633,43.02304],[19.77427,42.11507],[19.66935,42.11019],[19.66656,42.98104],[19.59377,42.97665],[19.59394,45.00171]],[[21.49434,44.00064],[21.60243,44.00519],[21.60273,41.98521],[21.49527,41.97908],[21.49434,44.00064]],[[15.48386,45.51525],[15.59338,45.5102],[15.59355,44.51169],[15.66994,44.5156],[15.672,45.25531],[15.77499,45.25411],[15.77568,44.47642],[15.75886,44.47618],[15.75611,44.24569],[15.82169,44.2452],[15.82203,44.51156],[15.92279,44.51046],[15.92245,44.2618],[15.98837,44.26094],[15.98614,44.51022],[16.09531,44.5156],[16.09016,43.4736],[15.9918,43.4746],[15.98991,43.99825],[15.92365,43.99924],[15.92674,43.48132],[15.64453,43.46987],[15.65277,43.97898],[15.48385,43.97602],[15.48042,44.2393],[15.56145,44.24274],[15.55904,44.4725],[15.48489,44.47201],[15.48386,45.51525]],[[18.79237,44.00158],[18.90404,44.00813],[18.8994,42.19012],[18.79864,42.18821],[18.79237,44.00158]],[[19.39593,42.03272],[19.50138,42.03734],[19.50056,44.59982],[19.39748,44.59838],[19.39593,42.03272]],[[21.35021,45.06504],[21.46076,45.04982],[21.21554,44.33975],[21.11795,44.35651],[21.35021,45.06504]],[[16.90521,45.22606],[17.02057,45.22606],[17.01713,46.01461],[16.92238,46.02128],[16.92032,46.16889],[17.01096,46.16937],[17.01507,46.7963],[16.92169,46.79677],[16.92169,47.01397],[16.53511,47.01818],[16.53717,46.48397],[16.45889,46.48705],[16.46061,47.01561],[15.98305,47.01608],[15.98339,46.95542],[15.90031,46.95143],[15.90752,45.84399],[16.00965,45.84339],[16.00914,45.97334],[16.37031,45.97549],[16.36825,46.23258],[16.44379,46.23305],[16.44722,45.96452],[16.64978,45.95736],[16.64978,45.97358],[16.90315,45.97072],[16.90521,45.22606]],[[15.29674,45.59698],[15.40112,45.59795],[15.39974,45.00632],[15.2988,45.00632],[15.29674,45.59698]],[[15.97412,45.78345],[16.13153,45.78446],[16.13814,45.69833],[15.97936,45.69959],[15.97412,45.78345]],[[20.4847,44.95994],[20.67661,44.96091],[20.67541,44.65815],[20.48658,44.65937],[20.4847,44.95994]],[[18.98403,47.01631],[19.27586,47.01631],[19.27654,45.97788],[19.16977,45.97549],[19.17114,46.48965],[19.09098,46.48906],[19.09115,46.23329],[18.98678,46.23246],[18.98403,47.01631]],[[13.59695,45.63229],[14.01031,45.61884],[14.01581,44.96893],[13.70441,44.96796],[13.70407,44.87461],[13.59283,44.87242],[13.59695,45.63229]],[[16.30663,45.51074],[16.51623,45.51429],[16.51211,44.73015],[16.4043,44.73417],[16.4043,45.24903],[16.30955,45.25],[16.30663,45.51074]],[[20.33295,44.96067],[20.44933,44.9597],[20.4483,44.65449],[20.33535,44.65937],[20.33295,44.96067]],[[19.35362,47.01502],[19.46005,47.01549],[19.46056,45.96845],[19.35379,45.96666],[19.35362,47.01502]],[[16.15505,44.50899],[16.26595,44.51585],[16.26217,44.24077],[16.32465,44.24151],[16.32397,44.5112],[16.4352,44.51658],[16.42997,43.47553],[16.24535,43.47385],[16.24466,43.72707],[16.16055,43.72794],[16.15505,44.50899]],[[19.92714,43.97651],[20.03632,43.98244],[20.03717,46.00686],[20.0116,46.00573],[20.02052,47.02474],[19.533,47.01397],[19.53953,45.97382],[19.73556,45.97096],[19.73848,46.73951],[19.81007,46.7361],[19.81676,45.97442],[19.92336,45.97334],[19.92714,43.97651]],[[21.98055,42.96107],[21.98038,44.79377],[22.08801,44.79329],[22.08681,44.5868],[22.1517,44.58594],[22.14809,45.01542],[22.25933,45.01967],[22.25281,44.12407],[22.31872,44.12358],[22.31666,44.75697],[22.39357,44.75844],[22.39494,45.0022],[22.59484,45.01606],[22.5927,43.60377],[22.49382,43.60526],[22.49382,43.76961],[22.4231,43.7701],[22.42378,43.53312],[22.49794,43.53212],[22.50069,43.31818],[22.58789,43.31619],[22.5872,43.27521],[22.60368,43.27371],[22.603,42.97602],[22.5872,42.97451],[22.58446,42.88502],[22.48764,42.88603],[22.48695,42.97099],[22.22465,42.94587],[22.22603,42.97501],[21.98055,42.96107]],[[15.90666,45.64165],[16.00965,45.64201],[16.01352,44.96404],[15.90314,44.95927],[15.90666,45.64165]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-ustopo50","name":"osm-hr: US Topo 50","type":"tms","template":"https://tms.osm-hr.org/ustopo/{zoom}/{x}/{y}.png","endDate":"2002-01-01T00:00:00.000Z","startDate":"1992-01-01T00:00:00.000Z","zoomExtent":[0,15],"polygon":[[[14.70005,45.75004],[15.00046,45.75004],[15.00046,45.50081],[14.70005,45.50033],[14.70005,45.75004]],[[20.99995,42.00004],[20.99899,41.49932],[21.90262,41.49932],[21.8985,41.7498],[22.19993,41.75004],[22.19959,41.50061],[22.80006,41.50086],[22.79938,41.99982],[22.50069,42.00084],[22.49931,42.24987],[22.19994,42.24987],[22.19788,42.00186],[21.59912,42.00084],[21.59981,42.24987],[21.30043,42.24987],[21.29974,42.00033],[20.99995,42.00004]],[[13.49962,46.50217],[13.49945,45.50009],[14.09958,45.50105],[14.09958,45.75028],[13.79883,45.75028],[13.8002,45.99982],[14.39964,46.0003],[14.40102,46.2492],[14.09958,46.24967],[14.10026,46.49981],[13.49962,46.50217]],[[15.89996,46.75115],[16.19968,46.75048],[16.19917,46.5004],[15.89979,46.5004],[15.89996,46.75115]],[[15.59964,45.25006],[16.80084,45.25],[16.80016,45.49985],[16.50009,45.50009],[16.49975,45.75004],[16.79981,45.75004],[16.80018,45.50012],[17.0997,45.50009],[17.10005,45.24988],[18.89854,45.25193],[18.89992,45.75052],[18.6002,45.75052],[18.60054,45.99982],[19.49936,45.99887],[19.49867,46.24944],[20.39921,46.24896],[20.39886,46.00006],[20.69893,45.99959],[20.69824,45.50009],[20.99899,45.50009],[21.00037,45.25024],[21.29837,45.25169],[21.297,45.00171],[21.60187,45.00171],[21.59912,44.74673],[21.89438,44.74673],[21.89987,44.50238],[22.1965,44.49944],[22.20062,44.75064],[22.49863,44.74868],[22.49863,43.50075],[22.798,43.49876],[22.79938,43.25021],[23.09875,43.2492],[23.1015,43.00164],[22.49588,42.99963],[22.49863,42.50045],[21.89712,42.50045],[21.90262,42.74903],[21.59775,42.74802],[21.59775,42.50147],[21.30112,42.50147],[21.29837,42.74903],[20.99762,42.75105],[20.99899,43.00063],[20.69961,43.00063],[20.69961,42.75105],[19.80148,42.75206],[19.80423,42.50248],[19.49936,42.49944],[19.50073,42.00237],[18.88962,42.00033],[18.88824,42.24987],[18.29773,42.24784],[18.2991,42.49944],[17.70035,42.50147],[17.69897,42.74903],[17.3996,42.75004],[17.40234,43.00164],[17.10022,43.00063],[17.10022,43.50075],[16.79947,43.50275],[16.80084,43.74927],[16.50284,43.74828],[16.49872,43.50374],[16.20209,43.50075],[16.19797,43.74927],[16.49803,43.75082],[16.49872,44.00121],[15.90134,43.99973],[15.89928,44.49993],[15.60059,44.49944],[15.59964,45.25006]],[[14.40033,45.25024],[14.69902,45.25024],[14.70002,44.99997],[14.4017,45.00074],[14.40033,45.25024]],[[21.59997,41.25002],[21.89996,41.25052],[21.90056,41.00218],[21.60118,41.00115],[21.59997,41.25002]],[[14.69996,46.49996],[14.99984,46.50017],[14.99951,46.25039],[14.69962,46.25005],[14.69996,46.49996]],[[13.7996,45.25018],[14.09992,45.25048],[14.10027,44.74966],[13.80089,44.75063],[13.7996,45.25018]],[[20.39886,41.75185],[20.40024,41.00218],[21.29974,41.00011],[21.29837,41.25045],[20.7003,41.25097],[20.69824,41.74929],[20.39886,41.75185]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-zagreb-2012","name":"osm-hr: Zagreb 2012 Aerial imagery","type":"tms","template":"https://tms.osm-hr.org/zagreb-2012/{zoom}/{x}/{-y}.png","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[16.15334,45.96857],[16.17462,45.94041],[16.17599,45.91796],[16.18595,45.90793],[16.18423,45.89789],[16.19728,45.8924],[16.22578,45.86085],[16.22097,45.85248],[16.22938,45.84638],[16.22921,45.84148],[16.24088,45.83645],[16.21719,45.83885],[16.20655,45.82784],[16.19865,45.77638],[16.1602,45.79554],[16.12827,45.80224],[16.13033,45.79434],[16.12278,45.78716],[16.10081,45.7862],[16.07677,45.77303],[16.0572,45.75746],[16.03901,45.76082],[16.03695,45.7577],[16.03935,45.75411],[16.02699,45.75507],[16.01772,45.74453],[16.01772,45.71936],[15.98785,45.71601],[15.96554,45.69131],[15.96725,45.67236],[15.95077,45.65125],[15.95077,45.63589],[15.94768,45.62989],[15.94288,45.63109],[15.93395,45.62172],[15.92606,45.61932],[15.92125,45.6138],[15.90031,45.62244],[15.90717,45.63229],[15.89619,45.63565],[15.87421,45.65557],[15.83885,45.66517],[15.81722,45.67044],[15.8131,45.67716],[15.77568,45.68915],[15.77396,45.7081],[15.78941,45.73398],[15.79285,45.73159],[15.80898,45.7383],[15.81001,45.73063],[15.82237,45.72344],[15.83473,45.72871],[15.85155,45.71673],[15.87078,45.73159],[15.84434,45.73159],[15.84469,45.76465],[15.83834,45.76764],[15.81276,45.76764],[15.80555,45.77543],[15.80538,45.80403],[15.8325,45.80391],[15.82993,45.80762],[15.83319,45.81062],[15.82289,45.82581],[15.82186,45.83837],[15.82975,45.84136],[15.84074,45.83992],[15.8452,45.84112],[15.84434,45.84459],[15.84984,45.84805],[15.85052,45.85236],[15.85979,45.85511],[15.86031,45.85308],[15.86477,45.85272],[15.87301,45.85451],[15.87378,45.85755],[15.87328,45.86081],[15.87816,45.8621],[15.87782,45.86563],[15.88263,45.8618],[15.88649,45.86306],[15.88529,45.86545],[15.89026,45.87603],[15.89709,45.88143],[15.9082,45.88642],[15.92125,45.88953],[15.9288,45.88762],[15.93876,45.89359],[15.92194,45.89431],[15.91988,45.89789],[15.92983,45.90339],[15.94768,45.90434],[15.95352,45.90554],[15.95524,45.91223],[15.97412,45.91271],[15.99918,45.92369],[16.00811,45.9299],[16.02802,45.93324],[16.03043,45.93611],[16.04313,45.93969],[16.05206,45.93563],[16.05171,45.94447],[16.06476,45.94661],[16.06579,45.95115],[16.0778,45.95569],[16.09325,45.95903],[16.09497,45.95449],[16.10767,45.95688],[16.11317,45.96165],[16.11282,45.96762],[16.12038,45.96905],[16.13205,45.96475],[16.1372,45.96523],[16.13823,45.96786],[16.15334,45.96857]]],"terms_url":"https://geoportal.zagreb.hr/","terms_text":"Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osm-hr-zagreb-2018","name":"osm-hr: Zagreb 2018 Aerial imagery","type":"tms","template":"https://tms.osm-hr.org/zagreb-2018/{zoom}/{x}/{-y}.png","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[15.87649,45.87423],[15.87739,45.87821],[15.88087,45.88248],[15.88503,45.8849],[15.88773,45.88741],[15.89112,45.88953],[15.89357,45.89019],[15.89773,45.89311],[15.90151,45.8944],[15.90687,45.89527],[15.91116,45.89652],[15.91455,45.89691],[15.91953,45.89837],[15.92378,45.89891],[15.92786,45.89849],[15.93035,45.90133],[15.9343,45.90408],[15.93854,45.90599],[15.94155,45.90817],[15.94567,45.9096],[15.9509,45.91008],[15.95326,45.91166],[15.95605,45.91378],[15.96138,45.9159],[15.96507,45.92053],[15.96923,45.92298],[15.97734,45.92536],[15.98232,45.92814],[15.9873,45.9305],[15.99047,45.93104],[15.99463,45.93405],[16.00287,45.93802],[16.00687,45.93924],[16.01219,45.93945],[16.01648,45.93996],[16.01789,45.94056],[16.0191,45.94262],[16.02219,45.9447],[16.02579,45.94605],[16.03141,45.94721],[16.03618,45.94834],[16.04103,45.94849],[16.04352,45.95094],[16.04759,45.95267],[16.05025,45.95339],[16.05326,45.95401],[16.05609,45.95673],[16.06008,45.95876],[16.06536,45.9598],[16.06819,45.96252],[16.07167,45.96407],[16.07549,45.96493],[16.07931,45.96508],[16.08141,45.96538],[16.08411,45.96669],[16.08707,45.96744],[16.09076,45.96762],[16.0936,45.96729],[16.09566,45.96657],[16.09755,45.96562],[16.09922,45.96463],[16.10034,45.96475],[16.10089,45.96565],[16.10098,45.96693],[16.10132,45.97027],[16.1027,45.97281],[16.10527,45.97504],[16.10827,45.97648],[16.11205,45.9774],[16.11407,45.97755],[16.11669,45.97803],[16.11948,45.97815],[16.12334,45.97758],[16.12707,45.97633],[16.12939,45.97603],[16.13179,45.9754],[16.13402,45.97618],[16.13703,45.97683],[16.13892,45.97698],[16.14145,45.97743],[16.14428,45.9774],[16.14557,45.97722],[16.1481,45.97767],[16.15145,45.97761],[16.15415,45.97797],[16.15724,45.97797],[16.1599,45.97734],[16.16235,45.97663],[16.16458,45.97525],[16.16651,45.97334],[16.16793,45.9712],[16.16844,45.9689],[16.16896,45.96726],[16.16913,45.96529],[16.17123,45.96443],[16.17376,45.96264],[16.17621,45.96076],[16.1778,45.95888],[16.17866,45.95664],[16.17866,45.95524],[16.17956,45.95321],[16.17964,45.95082],[16.17986,45.94945],[16.18278,45.94736],[16.18462,45.94521],[16.18582,45.94276],[16.18595,45.94065],[16.18578,45.93874],[16.18509,45.93727],[16.18582,45.93506],[16.18617,45.93256],[16.18578,45.93059],[16.18608,45.92721],[16.18728,45.92548],[16.18771,45.9228],[16.19067,45.92077],[16.1923,45.91856],[16.19308,45.91644],[16.19329,45.91515],[16.19535,45.91309],[16.19698,45.91059],[16.19741,45.90784],[16.19737,45.90605],[16.19647,45.90378],[16.19651,45.90279],[16.19951,45.9027],[16.20359,45.90163],[16.20625,45.90022],[16.20827,45.89822],[16.2117,45.89365],[16.21505,45.88854],[16.21664,45.88553],[16.21977,45.88338],[16.22204,45.8806],[16.22591,45.87531],[16.2338,45.86969],[16.2359,45.86862],[16.23874,45.86626],[16.24032,45.86327],[16.24071,45.85983],[16.2405,45.85855],[16.24002,45.85598],[16.23904,45.85409],[16.23779,45.85281],[16.23972,45.85122],[16.24093,45.84949],[16.2417,45.84737],[16.24487,45.84641],[16.24779,45.84474],[16.25041,45.84231],[16.25191,45.8401],[16.25247,45.83795],[16.25204,45.83517],[16.26826,45.83511],[16.26831,45.8236],[16.22974,45.82356],[16.2299,45.78591],[16.21109,45.78616],[16.21101,45.78447],[16.21243,45.7827],[16.21333,45.78039],[16.21333,45.77797],[16.2123,45.77558],[16.2099,45.77309],[16.20788,45.77129],[16.20543,45.76977],[16.20217,45.76878],[16.19934,45.76827],[16.19552,45.76851],[16.19174,45.7695],[16.17531,45.77818],[16.16934,45.78081],[16.1578,45.78497],[16.1508,45.78692],[16.14394,45.78701],[16.14368,45.77965],[16.11181,45.69503],[16.07629,45.69513],[16.07624,45.69708],[16.02624,45.69689],[16.01491,45.70991],[16.01129,45.70996],[16.00871,45.71028],[16.00373,45.71008],[15.99841,45.70879],[15.99472,45.70513],[15.99386,45.70237],[15.99172,45.69914],[15.9888,45.69698],[15.98657,45.69581],[15.98369,45.69365],[15.97949,45.69185],[15.97923,45.68954],[15.97803,45.68739],[15.98022,45.68427],[15.98077,45.68091],[15.98043,45.67911],[15.9797,45.67755],[15.97944,45.6756],[15.97858,45.67314],[15.97906,45.6711],[15.97871,45.66844],[15.97704,45.66604],[15.97459,45.66379],[15.97305,45.66196],[15.97052,45.65968],[15.97034,45.65614],[15.96846,45.6526],[15.96627,45.65023],[15.96215,45.64795],[15.96223,45.64567],[15.96288,45.64225],[15.96271,45.64],[15.96335,45.63724],[15.96279,45.63478],[15.95987,45.63049],[15.95944,45.6273],[15.95768,45.62454],[15.95429,45.62211],[15.95163,45.62118],[15.94803,45.62061],[15.94494,45.61761],[15.94082,45.61515],[15.93799,45.61389],[15.93408,45.61305],[15.93099,45.60935],[15.92764,45.60704],[15.92322,45.60542],[15.91816,45.605],[15.91352,45.60596],[15.91181,45.60671],[15.90885,45.6074],[15.90387,45.6083],[15.90074,45.60989],[15.89812,45.6114],[15.89464,45.61263],[15.89194,45.61431],[15.8885,45.61665],[15.8864,45.61911],[15.88554,45.62199],[15.88584,45.6246],[15.88747,45.62697],[15.88816,45.62808],[15.88464,45.63013],[15.88224,45.63256],[15.88134,45.63436],[15.88095,45.63577],[15.87778,45.63718],[15.87554,45.63859],[15.87215,45.64033],[15.86984,45.64267],[15.86821,45.64525],[15.86666,45.64738],[15.86318,45.64744],[15.85962,45.64807],[15.85696,45.64912],[15.85413,45.6502],[15.85138,45.65014],[15.84731,45.65104],[15.84426,45.65242],[15.84224,45.65395],[15.83967,45.65515],[15.83417,45.6562],[15.83027,45.65755],[15.82709,45.65923],[15.8246,45.66118],[15.82044,45.66112],[15.81563,45.66136],[15.81048,45.66271],[15.80641,45.66514],[15.80435,45.66796],[15.80306,45.67008],[15.79851,45.67149],[15.79529,45.67338],[15.7928,45.6735],[15.78817,45.6747],[15.78349,45.67632],[15.77521,45.67992],[15.76791,45.6837],[15.76525,45.68649],[15.76431,45.68909],[15.76427,45.69158],[15.76379,45.69539],[15.76405,45.69944],[15.76281,45.70246],[15.76079,45.70606],[15.7607,45.70957],[15.76221,45.71289],[15.76598,45.71652],[15.76856,45.72287],[15.77143,45.72748],[15.77345,45.73264],[15.77748,45.73713],[15.77989,45.73985],[15.78371,45.74183],[15.78787,45.74282],[15.79169,45.74255],[15.79551,45.74387],[15.79808,45.74474],[15.8013,45.74617],[15.80615,45.74716],[15.80438,45.87573],[15.83911,45.87594],[15.84298,45.8754],[15.84322,45.85968],[15.84542,45.86074],[15.84866,45.86191],[15.85106,45.86268],[15.85246,45.86304],[15.85518,45.86382],[15.85733,45.86421],[15.8599,45.86422],[15.8617,45.86397],[15.8637,45.86682],[15.86499,45.86781],[15.86726,45.87077],[15.87035,45.87286],[15.87301,45.8737],[15.87649,45.87423]]],"terms_url":"https://geoportal.zagreb.hr/","terms_text":"Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/hr/osm-hr.png"},{"id":"osmie_tie_not_counties","name":"OSMIE T.ie Land not in Counties","type":"tms","template":"https://www.townlands.ie/tiles/not_counties/{zoom}/{x}/{y}.png","zoomExtent":[2,19],"polygon":[[[-6.32987,52.38838],[-6.16508,52.58073],[-5.9893,52.9811],[-6.05796,53.31713],[-5.9838,53.50704],[-6.24473,53.86326],[-6.35459,53.91182],[-6.31614,53.98133],[-6.13487,53.97002],[-5.61851,54.23574],[-5.3878,54.44708],[-5.53886,54.67641],[-6.07444,55.21277],[-6.21452,55.33168],[-6.78306,55.17828],[-6.9506,55.25505],[-7.17582,55.35355],[-7.22526,55.45024],[-7.50816,55.28791],[-7.63999,55.28009],[-8.02451,55.2206],[-8.25797,55.27853],[-8.28269,55.172],[-8.58482,55.01168],[-8.38432,54.86021],[-8.69743,54.78901],[-8.85124,54.67641],[-8.46946,54.57942],[-8.17008,54.62397],[-8.33763,54.4854],[-8.68644,54.36556],[-8.62876,54.27625],[-9.04075,54.3051],[-9.13688,54.23614],[-9.2852,54.33834],[-9.90043,54.32233],[-10.15037,54.2245],[-10.27397,53.94578],[-9.98832,53.85678],[-10.3289,53.60982],[-10.22727,53.39418],[-9.78233,53.21857],[-8.96934,53.26952],[-9.04624,53.1762],[-9.2852,53.15644],[-9.40879,52.99433],[-9.57084,52.75562],[-9.97321,52.54316],[-9.70405,52.57071],[-9.69444,52.4855],[-9.97733,52.41854],[-9.87296,52.33387],[-9.92378,52.2381],[-10.06523,52.34478],[-10.15586,52.30113],[-10.65849,52.07212],[-9.90318,52.12274],[-10.45799,51.88772],[-10.39344,51.82411],[-10.56098,51.76635],[-10.32478,51.79014],[-10.25749,51.70937],[-9.80705,51.81816],[-10.28289,51.57045],[-9.89631,51.60032],[-9.51454,51.70256],[-9.83177,51.55082],[-9.83039,51.43368],[-9.43351,51.50468],[-9.53788,51.41741],[-8.63151,51.59179],[-7.70316,51.95209],[-7.46421,52.12105],[-6.33537,52.17667],[-6.32987,52.38838]],[[-9.89082,53.14368],[-9.51042,53.03605],[-9.45274,53.08557],[-9.82902,53.18279],[-9.89082,53.14368]]],"icon":"https://www.townlands.ie/static/logo_small.png"},{"id":"OSMUK-Cadastral-Parcels","name":"OSMUK Cadastral Parcels","type":"tms","template":"https://tiles.osmuk.org/PropertyBoundaries/{zoom}/{x}/{y}.png","zoomExtent":[18,20],"polygon":[[[-5.82929,50.02297],[-5.82929,50.25482],[-5.37336,50.25482],[-5.37336,50.35306],[-5.1756,50.35306],[-5.1756,50.59254],[-4.99707,50.59254],[-4.99707,50.69356],[-4.79657,50.69356],[-4.79657,50.78221],[-4.69495,50.78221],[-4.69495,50.96074],[-4.60431,50.96074],[-4.60431,51.06921],[-4.37922,51.06921],[-4.37922,51.25218],[-3.90393,51.25218],[-3.90393,51.2917],[-3.71717,51.2917],[-3.71717,51.2453],[-3.14862,51.2453],[-3.14862,51.36207],[-3.74463,51.36207],[-3.74463,51.43404],[-3.82978,51.43404],[-3.82978,51.52982],[-4.08521,51.52982],[-4.08521,51.49393],[-4.37922,51.49393],[-4.37922,51.54272],[-5.14442,51.54272],[-5.14442,51.6296],[-5.73871,51.6296],[-5.73871,51.77404],[-5.50954,51.77404],[-5.50954,51.98026],[-5.1988,51.98026],[-5.1988,52.09734],[-4.88806,52.09734],[-4.88806,52.18316],[-4.49575,52.18316],[-4.49575,52.29257],[-4.30154,52.29257],[-4.30154,52.36853],[-4.18112,52.36853],[-4.18112,52.79337],[-4.44137,52.79337],[-4.44137,52.73696],[-4.85698,52.73696],[-4.85698,52.93173],[-4.7288,52.93173],[-4.7288,53.50386],[-4.15782,53.50386],[-4.15782,53.41135],[-3.31105,53.41135],[-3.31105,53.50386],[-3.23337,53.50386],[-3.23337,54.01592],[-3.39262,54.01592],[-3.39262,54.1981],[-3.55964,54.1981],[-3.55964,54.43373],[-3.7189,54.43373],[-3.7189,54.7219],[-4.30154,54.7219],[-4.30154,54.61407],[-5.04731,54.61407],[-5.04731,54.75329],[-5.22987,54.75329],[-5.22987,55.21908],[-5.65326,55.21908],[-5.65326,55.25009],[-5.89796,55.25009],[-5.89796,55.48225],[-6.59332,55.48225],[-6.59332,56.30134],[-7.17277,56.30134],[-7.17277,56.56018],[-6.81717,56.56018],[-6.81717,56.69917],[-6.53153,56.69917],[-6.53153,56.9067],[-6.81168,56.9067],[-6.81168,57.37166],[-6.8721,57.37166],[-6.8721,57.55189],[-7.09732,57.55189],[-7.09732,57.24111],[-7.17423,57.24111],[-7.17423,56.9067],[-7.37198,56.9067],[-7.37198,56.80759],[-7.5203,56.80759],[-7.5203,56.71425],[-7.83068,56.71425],[-7.83068,56.89946],[-7.64941,56.89946],[-7.64941,57.47396],[-7.83068,57.47396],[-7.83068,57.79156],[-7.47362,57.79156],[-7.47362,58.08606],[-7.18798,58.08606],[-7.18798,58.3672],[-6.80346,58.3672],[-6.80346,58.41558],[-6.63866,58.41558],[-6.63866,58.46733],[-6.51781,58.46733],[-6.51781,58.56256],[-6.05362,58.56256],[-6.05362,58.15688],[-6.14701,58.15688],[-6.14701,58.11059],[-6.27998,58.11059],[-6.27998,57.71227],[-6.15913,57.71227],[-6.15913,57.66676],[-5.93391,57.66676],[-5.93391,57.88925],[-5.80643,57.88925],[-5.80643,57.96218],[-5.61417,57.96218],[-5.61417,58.09112],[-5.49082,58.09112],[-5.49082,58.37333],[-5.31991,58.37333],[-5.31991,58.75015],[-3.572,58.75015],[-3.572,59.20918],[-3.19445,59.20918],[-3.19445,59.47592],[-2.24358,59.47592],[-2.24358,59.13887],[-2.4611,59.13887],[-2.4611,58.81859],[-2.74077,58.81859],[-2.74077,58.58047],[-2.91167,58.58047],[-2.91167,58.11575],[-3.48654,58.11575],[-3.48654,57.74039],[-1.71532,57.74039],[-1.71532,57.22256],[-1.97945,57.22256],[-1.97945,56.87607],[-2.1659,56.87607],[-2.1659,56.63332],[-2.36011,56.63332],[-2.36011,56.04775],[-1.97945,56.04775],[-1.97945,55.86509],[-1.4745,55.86509],[-1.4745,55.24999],[-1.3222,55.24999],[-1.3222,54.82217],[-1.055,54.82217],[-1.055,54.67466],[-0.66188,54.67466],[-0.66188,54.55275],[-0.32476,54.55275],[-0.32476,54.28652],[0.00928,54.28652],[0.00928,53.79385],[0.2082,53.79385],[0.2082,53.52177],[0.41635,53.52177],[0.41635,53.02989],[1.42734,53.02989],[1.42734,52.92021],[1.83339,52.92021],[1.83339,52.04249],[1.52355,52.04249],[1.52355,51.82613],[1.2697,51.82613],[1.2697,51.69675],[1.11665,51.69675],[1.11665,51.44035],[1.52355,51.44035],[1.52355,51.33318],[1.45076,51.33318],[1.45076,51.02076],[1.06999,51.02076],[1.06999,50.90084],[0.77881,50.90084],[0.77881,50.72984],[-0.7256,50.72984],[-0.7256,50.70384],[-1.00744,50.70384],[-1.00744,50.57363],[-2.36253,50.57363],[-2.36253,50.48464],[-2.49878,50.48464],[-2.49878,50.57363],[-3.40964,50.57363],[-3.40964,50.20578],[-3.69224,50.20578],[-3.69224,50.13477],[-5.00547,50.13477],[-5.00547,49.94745],[-5.28395,49.94745],[-5.28395,50.02297],[-5.82929,50.02297]],[[-6.45807,49.86736],[-6.45807,49.94999],[-6.39788,49.94999],[-6.39788,50.00538],[-6.17996,50.00538],[-6.17996,49.91686],[-6.25402,49.91686],[-6.25402,49.86736],[-6.45807,49.86736]],[[-5.83432,49.93216],[-5.83432,49.97546],[-5.76833,49.97546],[-5.76833,49.93216],[-5.83432,49.93216]],[[-1.94838,60.68857],[-1.94838,60.30588],[-1.75431,60.30588],[-1.75431,60.12844],[-1.57549,60.12844],[-1.57549,59.79792],[-1.0317,59.79792],[-1.0317,60.03545],[-0.66269,60.03545],[-0.66269,60.91039],[-1.10344,60.91039],[-1.10344,60.804],[-1.35063,60.804],[-1.35063,60.68857],[-1.94838,60.68857]],[[-2.20338,60.19686],[-2.20338,60.09294],[-1.9864,60.09294],[-1.9864,60.19686],[-2.20338,60.19686]],[[-1.75431,59.56983],[-1.75431,59.46394],[-1.53733,59.46394],[-1.53733,59.56983],[-1.75431,59.56983]],[[-4.5586,59.13705],[-4.5586,58.95691],[-4.2867,58.95691],[-4.2867,59.13705],[-4.5586,59.13705]],[[-6.27877,59.20257],[-6.27877,59.02278],[-5.66506,59.02278],[-5.66506,59.20257],[-6.27877,59.20257]],[[-8.71635,57.94406],[-8.71635,57.73059],[-8.35929,57.73059],[-8.35929,57.94406],[-8.71635,57.94406]],[[-7.6077,50.4021],[-7.6077,50.26887],[-7.39072,50.26887],[-7.39072,50.4021],[-7.6077,50.4021]],[[-7.73043,58.35799],[-7.73043,58.24831],[-7.51345,58.24831],[-7.51345,58.35799],[-7.73043,58.35799]]],"terms_url":"https://osmuk.org/cadastral-parcels/","terms_text":"Contains public sector information licensed under the Open Government Licence v3.0.","description":"Perfectly aligned cadastral (land registry) parcels in Great Britain","icon":"https://osmuk.org/wp-content/uploads/2017/09/icon_color_square.png","overlay":true},{"id":"Pangasinan_Bulacan_HiRes","name":"Pangasinán/Bulacan (Philippines HiRes)","type":"tms","template":"https://gravitystorm.dev.openstreetmap.org/imagery/philippines/{zoom}/{x}/{y}.png","zoomExtent":[14,19],"polygon":[[[120.33659,15.98577],[120.44599,15.984],[120.44613,15.97446],[120.47646,15.97459],[120.59425,15.94683],[120.59806,16.09079],[120.59654,16.198],[120.36854,16.21853],[120.34758,16.04231],[120.33659,15.98577]],[[120.8268,15.3658],[121.2684,15.2602],[121.2699,14.7025],[120.695,14.8423],[120.8268,15.3658]]]},{"id":"PCN-Italy-2006","name":"PCN 2006 - Italy","type":"wms","template":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_06.map&LAYERS=OI.ORTOIMMAGINI.2006.33,OI.ORTOIMMAGINI.2006.32&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2006-01-01T00:00:00.000Z","startDate":"2006-01-01T00:00:00.000Z","polygon":[[[7.54795,43.73118],[8.10697,43.86701],[8.73593,44.38944],[10.18338,43.85116],[9.55016,43.13605],[10.27725,42.27515],[11.69748,42.08118],[12.90059,40.84897],[14.97466,40.20869],[16.04773,38.8953],[13.1086,38.74113],[11.77717,37.93605],[14.40624,36.74299],[15.13467,36.59364],[15.42867,37.027],[15.21993,37.43376],[15.4836,37.92936],[16.01644,37.8036],[17.21669,38.87425],[17.21669,39.40468],[16.55477,39.78775],[17.05464,40.45144],[18.32906,39.70539],[18.68773,40.0587],[18.04964,40.67064],[16.00545,41.52122],[16.38448,41.85964],[15.51837,42.1537],[14.57997,42.2461],[13.56099,43.65128],[12.57889,44.0867],[12.28795,44.62204],[12.56398,44.97092],[12.34151,45.17458],[12.41696,45.40557],[13.09252,45.62826],[13.69549,45.70806],[13.78445,45.5825],[13.9191,45.6322],[13.8235,45.7176],[13.59784,45.8072],[13.64307,45.98326],[13.52963,45.96588],[13.47474,46.00546],[13.66472,46.17392],[13.47587,46.22725],[13.42218,46.20758],[13.37671,46.29668],[13.59777,46.44137],[13.68684,46.43881],[13.7148,46.5222],[12.9151,46.60953],[12.38708,46.71529],[12.27591,46.88651],[12.17486,46.90895],[12.11675,47.01241],[12.21781,47.03996],[12.19254,47.09331],[11.74789,46.98484],[11.33355,46.99862],[11.10618,46.92966],[11.00764,46.76896],[10.72974,46.78972],[10.75753,46.82258],[10.66405,46.87614],[10.47197,46.85698],[10.38659,46.67847],[10.49375,46.62049],[10.46136,46.53164],[10.25309,46.57432],[10.23674,46.63484],[10.10307,46.61003],[10.03715,46.44479],[10.165,46.41051],[10.10506,46.3372],[10.17862,46.25626],[10.07055,46.21668],[9.95249,46.38045],[9.73086,46.35071],[9.71273,46.29266],[9.57015,46.2958],[9.46117,46.37481],[9.45936,46.50873],[9.40487,46.46621],[9.36128,46.5081],[9.28136,46.49685],[9.24503,46.23616],[8.95601,45.96503],[9.09065,45.89906],[9.0298,45.82127],[8.90992,45.8333],[8.9408,45.86682],[8.88904,45.95465],[8.78551,45.99063],[8.85617,46.0748],[8.62242,46.12112],[8.45032,46.26869],[8.42464,46.46367],[8.08814,46.26692],[8.15493,46.1834],[8.11383,46.11577],[8.02906,46.10331],[7.98881,45.99867],[7.9049,45.99945],[7.85949,45.91485],[7.56343,45.97421],[7.10685,45.85653],[7.04151,45.92435],[6.95315,45.85163],[6.80785,45.83265],[6.80785,45.71864],[6.98948,45.63869],[7.00037,45.509],[7.18019,45.40071],[7.10572,45.32924],[7.13115,45.25386],[6.85144,45.13226],[6.7697,45.16044],[6.62803,45.11175],[6.66981,45.02324],[6.74791,45.01939],[6.75518,44.89915],[7.02217,44.82519],[7.07484,44.68073],[6.95133,44.66264],[6.85507,44.53072],[6.94504,44.43112],[6.88784,44.42043],[6.89171,44.36637],[7.00764,44.23736],[7.36364,44.11882],[7.68694,44.17487],[7.72508,44.07578],[7.49355,43.86551],[7.54795,43.73118]],[[8.17134,39.14848],[8.62453,38.75119],[9.09831,39.03764],[9.03102,39.13144],[9.26585,39.18575],[9.64076,39.0227],[9.89894,40.67991],[9.50068,41.39257],[8.30317,40.91071],[8.41304,41.16139],[8.21254,41.13864],[8.07521,40.59862],[8.36154,40.35],[8.27914,39.98585],[8.38283,39.6536],[8.17134,39.14848]],[[12.51489,35.53423],[12.64054,35.5306],[12.63861,35.48641],[12.51296,35.49005],[12.51489,35.53423]],[[11.91218,36.85688],[12.08179,36.85523],[12.07958,36.70974],[11.90998,36.71139],[11.91218,36.85688]],[[12.84019,35.88131],[12.89186,35.88145],[12.89198,35.85003],[12.84031,35.84989],[12.84019,35.88131]]],"terms_url":"http://www.sitr.regione.sicilia.it","terms_text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale"},{"id":"PCN-Lazio_Umbria-2008","name":"PCN 2008 - IT Lazio+Umbria","type":"wms","template":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_08.map&LAYERS=OI.ORTOIMMAGINI.2008.33&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2008-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","polygon":[[[12.33149,41.64637],[12.41178,41.64791],[12.41499,41.54635],[12.49574,41.54789],[12.4985,41.49619],[12.57948,41.49843],[12.58062,41.42932],[12.60632,41.4288],[12.60746,41.39663],[12.8293,41.39818],[12.83159,41.34688],[12.9128,41.34843],[12.9151,41.29726],[12.99585,41.2983],[12.99791,41.19636],[13.1679,41.19808],[13.16721,41.24692],[13.41337,41.24829],[13.4152,41.19705],[13.8341,41.19808],[13.83341,41.2476],[13.91737,41.24847],[13.91668,41.39749],[14.0011,41.39784],[13.99996,41.49774],[14.08415,41.49826],[14.08346,41.65014],[14.00087,41.6498],[13.99973,41.75051],[13.83433,41.74965],[13.83364,41.80047],[13.75151,41.79978],[13.7499,41.84987],[13.41841,41.8497],[13.41681,41.95027],[13.33445,41.94959],[13.3333,42.00041],[13.25141,41.99973],[13.25003,42.05051],[13.08509,42.04966],[13.08394,42.097],[13.33399,42.09819],[13.33376,42.1472],[13.41772,42.14822],[13.41635,42.25052],[13.33399,42.24984],[13.33353,42.30094],[13.25141,42.29992],[13.25003,42.54699],[13.41795,42.54817],[13.41589,42.75065],[13.33468,42.74947],[13.33307,42.90056],[13.16836,42.89938],[13.16721,42.95079],[12.96419,42.95012],[12.96258,43.0003],[12.91877,42.9998],[12.91601,43.25078],[12.83526,43.24994],[12.83228,43.50107],[12.66321,43.4994],[12.66482,43.45112],[12.58567,43.44996],[12.58246,43.5508],[12.50171,43.5498],[12.49987,43.65131],[12.16242,43.64915],[12.16494,43.60132],[12.07891,43.5995],[12.0819,43.45196],[11.99541,43.44913],[11.99862,43.34661],[12.07891,43.34795],[12.08075,43.30189],[11.9961,43.29955],[11.99862,43.20214],[11.91237,43.19929],[11.91466,43.15212],[11.83207,43.14944],[11.8323,43.09653],[11.91099,43.09837],[11.91466,42.90191],[11.82909,42.89922],[11.83139,42.85231],[11.74582,42.84945],[11.74811,42.65236],[11.6731,42.64966],[11.67493,42.6105],[11.49485,42.59936],[11.49852,42.49593],[11.57812,42.49796],[11.58156,42.45244],[11.41226,42.44872],[11.41524,42.34656],[11.49599,42.34792],[11.49921,42.29636],[11.57835,42.29822],[11.58225,42.24628],[11.66185,42.24832],[11.66621,42.09649],[11.74536,42.09819],[11.74903,41.99666],[11.91443,41.99922],[11.91535,41.98626],[11.99403,41.98745],[11.99862,41.89685],[12.07868,41.89907],[12.08144,41.84594],[12.16311,41.84799],[12.16563,41.6964],[12.3292,41.69863],[12.33149,41.64637]]],"terms_url":"http://www.sitr.regione.sicilia.it","terms_text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale"},{"id":"PCN-Italy-2012","name":"PCN 2012 - Italy","type":"wms","template":"http://wms.pcn.minambiente.it/ogc?MAP=/ms_ogc/WMS_v1.3/raster/ortofoto_colore_12.map&LAYERS=OI.ORTOIMMAGINI.2012.32,OI.ORTOIMMAGINI.2012.33&STYLES=,&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[7.54795,43.73118],[8.10697,43.86701],[8.73593,44.38944],[10.18338,43.85116],[9.55016,43.13605],[10.27725,42.27515],[11.69748,42.08118],[12.90059,40.84897],[14.97466,40.20869],[16.04773,38.8953],[13.1086,38.74113],[11.77717,37.93605],[14.40624,36.74299],[15.13467,36.59364],[15.42867,37.027],[15.21993,37.43376],[15.4836,37.92936],[16.01644,37.8036],[17.21669,38.87425],[17.21669,39.40468],[16.55477,39.78775],[17.05464,40.45144],[18.32906,39.70539],[18.68773,40.0587],[18.04964,40.67064],[16.00545,41.52122],[16.38448,41.85964],[15.51837,42.1537],[14.57997,42.2461],[13.56099,43.65128],[12.57889,44.0867],[12.28795,44.62204],[12.56398,44.97092],[12.34151,45.17458],[12.41696,45.40557],[13.09252,45.62826],[13.69549,45.70806],[13.78445,45.5825],[13.9191,45.6322],[13.8235,45.7176],[13.59784,45.8072],[13.64307,45.98326],[13.52963,45.96588],[13.47474,46.00546],[13.66472,46.17392],[13.47587,46.22725],[13.42218,46.20758],[13.37671,46.29668],[13.59777,46.44137],[13.68684,46.43881],[13.7148,46.5222],[12.9151,46.60953],[12.38708,46.71529],[12.27591,46.88651],[12.17486,46.90895],[12.11675,47.01241],[12.21781,47.03996],[12.19254,47.09331],[11.74789,46.98484],[11.33355,46.99862],[11.10618,46.92966],[11.00764,46.76896],[10.72974,46.78972],[10.75753,46.82258],[10.66405,46.87614],[10.47197,46.85698],[10.38659,46.67847],[10.49375,46.62049],[10.46136,46.53164],[10.25309,46.57432],[10.23674,46.63484],[10.10307,46.61003],[10.03715,46.44479],[10.165,46.41051],[10.10506,46.3372],[10.17862,46.25626],[10.07055,46.21668],[9.95249,46.38045],[9.73086,46.35071],[9.71273,46.29266],[9.57015,46.2958],[9.46117,46.37481],[9.45936,46.50873],[9.40487,46.46621],[9.36128,46.5081],[9.28136,46.49685],[9.24503,46.23616],[8.95601,45.96503],[9.09065,45.89906],[9.0298,45.82127],[8.90992,45.8333],[8.9408,45.86682],[8.88904,45.95465],[8.78551,45.99063],[8.85617,46.0748],[8.62242,46.12112],[8.45032,46.26869],[8.42464,46.46367],[8.08814,46.26692],[8.15493,46.1834],[8.11383,46.11577],[8.02906,46.10331],[7.98881,45.99867],[7.9049,45.99945],[7.85949,45.91485],[7.56343,45.97421],[7.10685,45.85653],[7.04151,45.92435],[6.95315,45.85163],[6.80785,45.83265],[6.80785,45.71864],[6.98948,45.63869],[7.00037,45.509],[7.18019,45.40071],[7.10572,45.32924],[7.13115,45.25386],[6.85144,45.13226],[6.7697,45.16044],[6.62803,45.11175],[6.66981,45.02324],[6.74791,45.01939],[6.75518,44.89915],[7.02217,44.82519],[7.07484,44.68073],[6.95133,44.66264],[6.85507,44.53072],[6.94504,44.43112],[6.88784,44.42043],[6.89171,44.36637],[7.00764,44.23736],[7.36364,44.11882],[7.68694,44.17487],[7.72508,44.07578],[7.49355,43.86551],[7.54795,43.73118]],[[8.17134,39.14848],[8.62453,38.75119],[9.09831,39.03764],[9.03102,39.13144],[9.26585,39.18575],[9.64076,39.0227],[9.89894,40.67991],[9.50068,41.39257],[8.30317,40.91071],[8.41304,41.16139],[8.21254,41.13864],[8.07521,40.59862],[8.36154,40.35],[8.27914,39.98585],[8.38283,39.6536],[8.17134,39.14848]],[[12.51489,35.53423],[12.64054,35.5306],[12.63861,35.48641],[12.51296,35.49005],[12.51489,35.53423]],[[11.91218,36.85688],[12.08179,36.85523],[12.07958,36.70974],[11.90998,36.71139],[11.91218,36.85688]],[[12.84019,35.88131],[12.89186,35.88145],[12.89198,35.85003],[12.84031,35.84989],[12.84019,35.88131]]],"terms_url":"http://www.sitr.regione.sicilia.it","terms_text":"© Ministero dell'Ambiente e della Tutela del Territorio e del Mare - Geoportale nazionale"},{"id":"Actueel_ortho25_WMS","name":"PDOK aerial imagery Beeldmateriaal.nl 25cm latest","type":"tms","template":"https://geodata.nationaalgeoregister.nl/luchtfoto/rgb/wmts?FORMAT=image/jpeg&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=Actueel_ortho25&STYLE=&FORMAT=image/jpeg&tileMatrixSet=OGC:1.0:GoogleMapsCompatible&tileMatrix={zoom}&tileRow={y}&tileCol={x}","zoomExtent":[0,19],"polygon":[[[3.14377,51.35984],[3.1575,51.24113],[3.33878,51.11544],[3.91281,51.05851],[4.65714,51.28067],[4.89334,51.26348],[5.17899,51.12579],[5.38498,51.13096],[5.54428,51.05678],[5.42069,50.85956],[5.46738,50.70326],[5.65689,50.61926],[6.14853,50.62143],[6.30234,50.85782],[6.29959,50.95438],[6.26389,51.01835],[6.37238,51.09259],[6.40122,51.20114],[6.37375,51.25102],[6.44516,51.31587],[6.42044,51.5496],[6.34354,51.67922],[6.79672,51.76429],[7.04666,51.91024],[7.07138,52.04559],[7.27188,52.17041],[7.30759,52.38551],[7.20596,52.53195],[7.28287,52.61458],[7.29935,52.77853],[7.44217,52.97827],[7.43393,53.28314],[7.04392,53.55159],[6.78299,53.63635],[6.23917,53.54016],[5.6871,53.51241],[5.17349,53.43885],[4.81644,53.23384],[4.65164,53.06583],[4.54178,52.48598],[4.32205,52.19568],[4.08104,52.01369],[4.02199,52.01623],[3.93684,51.96379],[3.95195,51.88079],[3.84483,51.84942],[3.62373,51.70752],[3.65532,51.66069],[3.63335,51.62746],[3.54683,51.62234],[3.39577,51.56091],[3.38203,51.51735],[3.49876,51.43267],[3.32985,51.38556],[3.14377,51.35984]]],"terms_url":"https://www.nationaalgeoregister.nl/geonetwork/srv/dut/catalog.search#/search?facet.q=license%2FCC-BY&isChild=%27false%27&resultType=details&any_OR_title_OR_keyword=luchtfoto&fast=index&_content_type=json&from=1&to=20&sortBy=relevance","terms_text":"Kadaster / Beeldmateriaal.nl, CC BY 4.0","best":true,"description":"Nationwide data set 25cm resolution color aerial imagery of the most recent year.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/nl/PDOK-Luchtfoto-Beeldmateriaal-25cm-latest.png"},{"id":"PNOA-Spain-TMS","name":"PNOA Spain","type":"tms","template":"https://www.ign.es/wmts/pnoa-ma?request=GetTile&service=WMTS&VERSION=1.0.0&Layer=OI.OrthoimageCoverage&Style=default&Format=image/png&TileMatrixSet=GoogleMapsCompatible&TileMatrix={zoom}&TileRow={y}&TileCol={x}","zoomExtent":[0,20],"polygon":[[[-17.88463,28.44606],[-17.89395,28.52255],[-18.02125,28.74819],[-18.02241,28.80384],[-17.9424,28.87261],[-17.89118,28.87371],[-17.89033,28.85151],[-17.76759,28.85378],[-17.76698,28.83122],[-17.74127,28.832],[-17.73949,28.76422],[-17.71398,28.76497],[-17.71293,28.73037],[-17.75744,28.69318],[-17.75708,28.67413],[-17.74579,28.67435],[-17.74573,28.61656],[-17.75197,28.58337],[-17.76225,28.5592],[-17.78331,28.54167],[-17.78316,28.49366],[-17.80861,28.4925],[-17.80601,28.4469],[-17.88463,28.44606]],[[-18.1661,27.78516],[-18.16349,27.69492],[-18.08898,27.69634],[-18.08734,27.67387],[-18.03641,27.67537],[-18.03501,27.63026],[-17.959,27.6324],[-17.86033,27.7926],[-17.86303,27.83688],[-17.8884,27.83649],[-17.88913,27.85905],[-17.99065,27.85675],[-18.03868,27.76558],[-18.11464,27.76379],[-18.11546,27.78636],[-18.1661,27.78516]],[[-17.36038,28.06398],[-17.36297,28.17572],[-17.33756,28.17637],[-17.33846,28.2213],[-17.18579,28.22388],[-17.08208,28.13518],[-17.08084,28.068],[-17.13154,28.06681],[-17.15633,28.02146],[-17.23211,28.02037],[-17.23199,27.99804],[-17.25768,27.99784],[-17.25785,28.01997],[-17.30867,28.01923],[-17.36038,28.06398]],[[-16.92782,28.32758],[-16.92866,28.37219],[-16.87767,28.37293],[-16.87807,28.39542],[-16.52143,28.42261],[-16.44571,28.49113],[-16.44625,28.53597],[-16.42059,28.53627],[-16.42092,28.55884],[-16.34433,28.55976],[-16.3446,28.58221],[-16.19125,28.58372],[-16.19162,28.60684],[-16.12793,28.60782],[-16.1278,28.59218],[-16.09951,28.5925],[-16.09934,28.51638],[-16.16481,28.51612],[-16.16475,28.49386],[-16.23858,28.44847],[-16.26535,28.44761],[-16.26586,28.403],[-16.31675,28.40176],[-16.31631,28.38019],[-16.34208,28.37951],[-16.34083,28.2893],[-16.41584,28.19761],[-16.4151,28.13113],[-16.51533,28.01648],[-16.61684,28.01532],[-16.61681,27.99305],[-16.71842,27.99192],[-16.7191,28.03714],[-16.7447,28.03679],[-16.74534,28.08181],[-16.7707,28.08161],[-16.8224,28.1259],[-16.82317,28.17087],[-16.8487,28.17075],[-16.85028,28.26079],[-16.87565,28.26055],[-16.87608,28.28322],[-16.90151,28.28277],[-16.90239,28.32793],[-16.92782,28.32758]],[[-15.85374,27.90089],[-15.8542,27.99018],[-15.82895,27.99066],[-15.82911,28.03558],[-15.7783,28.03632],[-15.75328,28.08143],[-15.72788,28.08157],[-15.72826,28.17186],[-15.49897,28.1728],[-15.49874,28.15041],[-15.44978,28.15075],[-15.45016,28.19614],[-15.39728,28.19614],[-15.39644,28.03836],[-15.37103,28.03802],[-15.37065,28.01532],[-15.34578,28.01532],[-15.34548,27.92544],[-15.3708,27.92524],[-15.37057,27.83521],[-15.39598,27.83474],[-15.421,27.78797],[-15.47181,27.78939],[-15.47188,27.76665],[-15.52277,27.76678],[-15.54771,27.72161],[-15.62361,27.72134],[-15.62415,27.74199],[-15.70075,27.74335],[-15.80167,27.81105],[-15.85374,27.90089]],[[-14.52156,28.04678],[-14.52244,28.11841],[-14.41575,28.11561],[-14.21688,28.22788],[-14.21537,28.33903],[-14.16417,28.45283],[-14.11151,28.4748],[-14.03358,28.72267],[-13.95652,28.74494],[-13.95617,28.76659],[-13.82902,28.76643],[-13.82896,28.78798],[-13.80007,28.78793],[-13.8013,28.71899],[-13.82757,28.71935],[-13.82786,28.6518],[-13.80258,28.6519],[-13.80339,28.53842],[-13.82885,28.53847],[-13.83151,28.39702],[-13.91582,28.22414],[-13.98564,28.22357],[-14.03696,28.17958],[-14.13871,28.17999],[-14.13866,28.15791],[-14.21537,28.15781],[-14.21472,28.11189],[-14.29132,28.04524],[-14.33197,28.03687],[-14.44578,28.04698],[-14.44666,28.0658],[-14.49628,28.06826],[-14.49593,28.04585],[-14.52156,28.04678]],[[-13.80066,28.84566],[-13.80093,28.82311],[-13.77569,28.82305],[-13.69729,28.88982],[-13.69729,28.91277],[-13.60725,28.9118],[-13.43886,29.00024],[-13.43746,29.13513],[-13.4117,29.13499],[-13.41056,29.22298],[-13.45928,29.25559],[-13.45974,29.2942],[-13.50913,29.29456],[-13.51006,29.31635],[-13.56354,29.31729],[-13.56406,29.27138],[-13.53892,29.2712],[-13.53897,29.25004],[-13.56613,29.25013],[-13.5666,29.203],[-13.51565,29.20223],[-13.51565,29.18206],[-13.5398,29.18278],[-13.54089,29.13753],[-13.65782,29.13685],[-13.71322,29.09351],[-13.76634,29.09345],[-13.85025,29.01659],[-13.85182,28.98343],[-13.85244,28.91486],[-13.90131,28.89245],[-13.9024,28.84698],[-13.80066,28.84566]],[[1.64799,38.99907],[1.73217,38.99936],[1.73147,39.04417],[1.64895,39.04319],[1.64816,39.12764],[1.39486,39.12657],[1.39544,39.08642],[1.22811,39.08526],[1.22911,39.0029],[1.14487,39.0018],[1.14528,38.832],[1.31136,38.83316],[1.31219,38.79065],[1.39469,38.79162],[1.39519,38.75296],[1.31128,38.75193],[1.31259,38.62388],[1.6489,38.62511],[1.64807,38.71115],[1.58456,38.71012],[1.58116,38.70054],[1.54915,38.70028],[1.51972,38.70921],[1.50355,38.72532],[1.48133,38.91551],[1.55189,38.92544],[1.56673,38.95666],[1.64874,38.95833],[1.64799,38.99907]],[[2.54507,39.41667],[2.43933,39.41611],[2.43871,39.48469],[2.43902,39.49934],[2.31223,39.49934],[2.31192,39.54179],[2.22907,39.541],[2.22835,39.62606],[2.34601,39.62709],[2.92704,39.96016],[3.14566,39.96005],[3.14608,40.00198],[3.23139,40.00198],[3.23129,39.83292],[3.14823,39.83316],[3.14844,39.79357],[3.48148,39.79318],[3.48035,39.5959],[3.31506,39.47846],[3.31462,39.37855],[3.08302,39.24994],[2.97986,39.25015],[2.97904,39.3335],[2.72874,39.33342],[2.72885,39.45814],[2.64569,39.45774],[2.64538,39.49966],[2.54528,39.49942],[2.54507,39.41667]],[[3.81204,40.04344],[3.72908,40.0438],[3.72862,39.95842],[3.81266,39.9576],[3.81228,39.91644],[3.9609,39.91598],[4.19381,39.79131],[4.31503,39.79058],[4.31599,39.83293],[4.39874,39.83204],[4.39737,39.91858],[4.3158,39.91933],[4.31619,40.0434],[4.2319,40.04436],[4.23248,40.08478],[4.14915,40.08611],[4.14906,40.12552],[4.0628,40.12722],[4.06242,40.08499],[3.81287,40.08529],[3.81204,40.04344]],[[-8.89106,41.82289],[-9.1092,42.57511],[-9.03655,42.73066],[-9.08834,42.72696],[-9.14661,42.77503],[-9.21855,42.90163],[-9.2761,42.86051],[-9.30991,42.93113],[-9.27898,42.9822],[-9.30991,43.06004],[-9.25236,43.10417],[-9.2315,43.17032],[-9.14733,43.21018],[-9.06748,43.19916],[-9.03367,43.24267],[-8.99842,43.24477],[-8.99986,43.29558],[-8.93727,43.30553],[-8.92936,43.32699],[-8.8639,43.32908],[-8.87613,43.37407],[-8.82217,43.37354],[-8.78548,43.31914],[-8.70635,43.305],[-8.60996,43.3296],[-8.55097,43.32332],[-8.52435,43.3364],[-8.52507,43.36465],[-8.45745,43.39184],[-8.36105,43.41118],[-8.36033,43.46342],[-8.33444,43.57974],[-8.27761,43.57088],[-8.06467,43.72392],[-7.99921,43.7234],[-7.9172,43.78264],[-7.85605,43.79146],[-7.83591,43.73743],[-7.66284,43.80982],[-7.31889,43.67827],[-7.19975,43.58308],[-6.24882,43.6075],[-6.12293,43.57901],[-5.85204,43.6799],[-5.60363,43.57087],[-5.28553,43.56191],[-5.17875,43.49916],[-4.90899,43.48367],[-4.61562,43.4192],[-4.18399,43.42492],[-3.80295,43.51954],[-3.74,43.48693],[-3.56128,43.54236],[-3.1083,43.38163],[-2.93857,43.46246],[-2.74524,43.47551],[-2.30462,43.31706],[-1.9854,43.3563],[-1.85528,43.39725],[-1.7698,43.39644],[-1.77005,43.37605],[-1.71005,43.37569],[-1.71135,43.33125],[-1.72259,43.31318],[-1.68904,43.31291],[-1.68811,43.33413],[-1.64467,43.33372],[-1.64498,43.31332],[-1.60299,43.31295],[-1.60344,43.29266],[-1.56359,43.29212],[-1.56305,43.31338],[-1.47799,43.31284],[-1.36677,43.27614],[-1.35688,43.23815],[-1.37037,43.1713],[-1.44231,43.08336],[-1.41983,43.06036],[-1.37307,43.05117],[-1.36407,43.11159],[-1.30203,43.13522],[-1.23549,43.13325],[-1.27955,43.07744],[-1.19232,43.06496],[-1.00619,43.00778],[-0.94234,42.9749],[-0.7562,42.98213],[-0.71484,42.96108],[-0.69685,42.90314],[-0.55118,42.82207],[-0.50442,42.84845],[-0.42889,42.82009],[-0.31648,42.86558],[-0.14563,42.81086],[-0.03143,42.71249],[0.18618,42.7541],[0.30218,42.71777],[0.36422,42.74287],[0.44875,42.71447],[0.62769,42.7224],[0.64118,42.85767],[0.71492,42.88272],[0.9676,42.81811],[1.10878,42.79898],[1.17532,42.73429],[1.36326,42.74155],[1.41137,42.70939],[1.48061,42.71034],[1.4813,42.50107],[1.64436,42.50203],[1.64328,42.54245],[1.73041,42.54342],[1.73164,42.50118],[2.06386,42.50164],[2.06456,42.45902],[2.39693,42.45994],[2.39768,42.41784],[2.48048,42.41797],[2.48098,42.37594],[2.64479,42.37626],[2.64448,42.45924],[2.81133,42.45961],[2.81126,42.50104],[3.06388,42.50085],[3.06388,42.45915],[3.23078,42.45934],[3.23049,42.37644],[3.31415,42.37604],[3.31412,42.33399],[3.39785,42.33404],[3.39739,42.29009],[3.31389,42.29084],[3.31397,42.20702],[3.14759,42.2073],[3.14759,42.12606],[3.23055,42.126],[3.24668,41.95294],[3.19452,41.85589],[3.06054,41.76474],[2.78358,41.63718],[2.26293,41.42716],[2.16492,41.29893],[1.86008,41.22322],[1.3763,41.11627],[1.17937,41.04646],[1.08585,41.04849],[0.75854,40.81956],[0.9114,40.73376],[0.87813,40.67514],[0.66502,40.53587],[0.55801,40.55022],[0.43392,40.37576],[0.26756,40.19192],[0.16415,40.06472],[0.07513,40.01447],[0.01039,39.89522],[-0.09392,39.81169],[-0.18474,39.63117],[-0.29085,39.50363],[-0.28636,39.33343],[-0.18564,39.17746],[-0.21352,39.15585],[-0.11101,38.97222],[0.00949,38.88268],[0.12189,38.87218],[0.23429,38.79864],[0.25587,38.72642],[0.09581,38.61338],[-0.0022,38.60706],[-0.05705,38.52691],[-0.27197,38.47624],[-0.37987,38.39312],[-0.38347,38.33813],[-0.45091,38.33108],[-0.50487,38.28309],[-0.48238,38.19481],[-0.42933,38.16583],[-0.45451,38.14886],[-0.584,38.17219],[-0.61367,38.11986],[-0.63705,37.96122],[-0.68111,37.94562],[-0.73237,37.88107],[-0.72158,37.78306],[-0.68831,37.734],[-0.66415,37.62315],[-0.71939,37.58784],[-0.91963,37.53758],[-1.11071,37.51641],[-1.33832,37.52867],[-1.44089,37.39037],[-1.6767,37.27652],[-1.85408,36.91229],[-2.06835,36.69291],[-2.21588,36.66192],[-2.37219,36.78018],[-2.68129,36.65911],[-2.92015,36.66756],[-3.09402,36.71263],[-3.46108,36.65488],[-3.72804,36.69291],[-4.37435,36.66333],[-4.65712,36.44042],[-4.9188,36.45313],[-5.16995,36.35135],[-5.28411,36.19702],[-5.26809,36.12418],[-5.35248,36.12247],[-5.35161,36.04014],[-5.43658,36.03889],[-5.43532,36.00344],[-5.68886,36.00365],[-5.68996,36.04053],[-5.85506,36.03856],[-5.85668,36.12421],[-5.93848,36.12215],[-5.94003,36.16556],[-5.99834,36.1645],[-6.03573,36.1781],[-6.07752,36.22241],[-6.15061,36.28646],[-6.23154,36.37701],[-6.33585,36.53106],[-6.32146,36.58163],[-6.40419,36.6235],[-6.47433,36.74897],[-6.41588,36.79939],[-6.49052,36.91738],[-6.62989,37.0194],[-6.87448,37.10838],[-7.04264,37.18507],[-7.26474,37.18435],[-7.37535,37.15354],[-7.40832,37.16822],[-7.42029,37.21183],[-7.42492,37.23505],[-7.43805,37.2452],[-7.44597,37.33261],[-7.4481,37.39094],[-7.46963,37.40758],[-7.4647,37.45305],[-7.50197,37.51641],[-7.51916,37.52292],[-7.52196,37.57237],[-7.45013,37.66958],[-7.4249,37.75992],[-7.31666,37.83997],[-7.26833,37.98895],[-7.15368,38.01552],[-7.11771,38.05536],[-7.0143,38.02438],[-6.99632,38.10756],[-6.96147,38.20125],[-7.08062,38.15708],[-7.34027,38.44024],[-7.26383,38.73807],[-7.04352,38.87297],[-7.06151,38.90796],[-6.96934,39.01983],[-7.00081,39.08879],[-7.15368,39.09577],[-7.15255,39.16029],[-7.24472,39.19689],[-7.25596,39.28133],[-7.33689,39.35351],[-7.3279,39.45599],[-7.51449,39.58865],[-7.55271,39.67954],[-7.05027,39.67522],[-6.99519,39.81954],[-6.92213,39.87909],[-6.88616,40.02299],[-7.04128,40.13479],[-7.01767,40.26615],[-6.8086,40.34501],[-6.86818,40.44516],[-6.85356,40.60664],[-6.83783,40.87576],[-6.9536,41.03704],[-6.80186,41.03959],[-6.76814,41.13871],[-6.64112,41.26556],[-6.56244,41.26303],[-6.21737,41.5791],[-6.31628,41.64465],[-6.51523,41.64129],[-6.58717,41.68832],[-6.54783,41.85597],[-6.62988,41.91121],[-7.13345,41.94048],[-7.16829,41.87188],[-7.42569,41.78477],[-7.95398,41.84593],[-8.13045,41.78058],[-8.25185,41.90786],[-8.12933,42.03488],[-8.24848,42.1008],[-8.36762,42.05575],[-8.60704,42.03405],[-8.89106,41.82289]]],"terms_text":"PNOA","best":true},{"id":"debicki-buildings","name":"Powiat dębicki: Buildings","type":"wms","template":"https://debica.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,adresy,EBU,EBT,S&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[21.53768,50.01085],[21.51944,50.05423],[21.58099,50.1233],[21.48804,50.18059],[21.13725,50.14835],[21.13939,50.12721],[21.18058,50.12101],[21.14315,50.05965],[21.15356,49.92854],[21.27892,49.92554],[21.22448,49.8861],[21.22362,49.84258],[21.35177,49.8349],[21.36368,49.86838],[21.41585,49.82003],[21.47943,49.8398],[21.52679,49.88911],[21.47689,50.00135],[21.53768,50.01085]]],"terms_text":"Powiat dębicki","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"lancucki-buildings","name":"Powiat łańcucki: Buildings","type":"wms","template":"https://lancut.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,budynki,adresy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.17224,50.10121],[22.12574,50.1079],[22.0823,50.17206],[22.13591,50.1867],[22.173,50.18117],[22.18418,50.22914],[22.235,50.24718],[22.3856,50.16031],[22.40346,50.13331],[22.45275,50.12745],[22.45275,50.10676],[22.41768,50.08997],[22.38364,50.08915],[22.38542,50.05393],[22.35315,50.05067],[22.3562,50.00627],[22.31478,49.99451],[22.32139,49.94614],[22.29979,49.92455],[22.24161,49.92847],[22.20901,49.93728],[22.22382,49.96085],[22.16683,50.00412],[22.1387,50.00251],[22.12015,50.04626],[22.17224,50.10121]]],"terms_text":"Powiat łańcucki","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"lubaczowski-buildings","name":"Powiat lubaczowski: Buildings","type":"wms","template":"https://lubaczow.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=S,EBT,adresy,budynki_ewid&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[23.29224,50.09693],[23.55763,50.25704],[23.51394,50.26643],[23.522,50.29892],[23.40991,50.3083],[23.44482,50.35653],[23.38072,50.3699],[23.38829,50.4058],[23.35821,50.41105],[23.2527,50.36601],[23.19379,50.40529],[23.01962,50.2928],[22.84161,50.30574],[22.83572,50.27037],[22.82426,50.26923],[22.79651,50.20933],[22.86603,50.18949],[22.87414,50.13786],[22.93233,50.1678],[22.88954,50.11501],[22.95351,50.07178],[23.05556,50.04967],[22.99884,49.99028],[23.14951,49.97563],[23.29224,50.09693]]],"terms_text":"Powiat lubaczowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"sropczyce-buildings","name":"Powiat ropczycko-sędziszowski: Buildings","type":"wms","template":"https://spropczyce.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[21.60041,50.21025],[21.74199,50.16538],[21.792,50.17829],[21.81459,50.15264],[21.78741,50.10859],[21.82597,50.09149],[21.82552,50.02925],[21.78666,49.97585],[21.70632,49.96022],[21.683,49.92431],[21.60062,49.91793],[21.54249,49.8862],[21.5188,49.89119],[21.45315,49.99268],[21.50364,50.0198],[21.49298,50.07161],[21.55535,50.11909],[21.50429,50.16559],[21.59816,50.17866],[21.60041,50.21025]]],"terms_text":"Powiat ropczycko-sędziszowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"rzeszowski-buildings","name":"Powiat rzeszowski: Buildings","type":"wms","template":"https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,EBT,EBU&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.18219,50.17339],[22.09834,50.17176],[22.18016,50.09784],[22.13779,50.00695],[22.09444,50.00841],[22.02839,50.06668],[21.9354,50.06636],[21.98164,49.94977],[22.05278,50.0097],[22.1771,50.00555],[22.23319,49.96829],[22.31144,49.87008],[22.34961,49.72826],[21.99951,49.82808],[21.84961,49.95739],[21.7495,49.96981],[21.78503,50.14212],[21.93307,50.24748],[22.08291,50.26471],[21.98553,50.31545],[22.0901,50.37369],[22.19821,50.35265],[22.2536,50.2647],[22.18219,50.17339]]],"terms_text":"Powiat rzeszowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"rzeszowski-aerial","name":"Powiat rzeszowski: Orthophotomap (aerial image)","type":"wms","template":"https://powiatrzeszowski.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.18219,50.17339],[22.09834,50.17176],[22.18016,50.09784],[22.13779,50.00695],[22.09444,50.00841],[22.02839,50.06668],[21.9354,50.06636],[21.98164,49.94977],[22.05278,50.0097],[22.1771,50.00555],[22.23319,49.96829],[22.31144,49.87008],[22.34961,49.72826],[21.99951,49.82808],[21.84961,49.95739],[21.7495,49.96981],[21.78503,50.14212],[21.93307,50.24748],[22.08291,50.26471],[21.98553,50.31545],[22.0901,50.37369],[22.19821,50.35265],[22.2536,50.2647],[22.18219,50.17339]]],"terms_text":"Powiat rzeszowski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"stalowowolski-buildings","name":"Powiat stalowowolski: Buildings","type":"wms","template":"https://stalowawola.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=EBT,adresy,budynki,centroidy&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.017,50.35811],[22.09292,50.44916],[22.06785,50.51434],[22.09722,50.54302],[22.16347,50.52686],[22.23795,50.5503],[22.26768,50.60465],[22.22757,50.6653],[22.16235,50.66969],[22.20843,50.75403],[22.16239,50.80039],[22.0546,50.82234],[21.94394,50.77639],[21.86228,50.80439],[21.83413,50.75035],[21.87465,50.70066],[21.84046,50.65749],[21.97582,50.53164],[21.84797,50.47196],[21.88045,50.3913],[22.017,50.35811]]],"terms_text":"Powiat stalowowolski","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"poznan-ortofotomapa2014","name":"Poznań: Orthophotomap 2014 (aerial image)","type":"wms","template":"http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapa_2014/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa_2014_image&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},{"id":"poznan-ortofotomapa2016","name":"Poznań: Orthophotomap 2016 (aerial image)","type":"wms","template":"http://wms1.geopoz.poznan.pl:6080/arcgis/services/sip/ortofotomapy/MapServer/WmsServer?LAYERS=ortofotomapa_2016_image&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ"},{"id":"poznan-ortofotomapaBiezaca","name":"Poznań: Orthophotomap Bieżąca (aerial image)","type":"wms","template":"http://wms2.geopoz.poznan.pl/geoserver/ortogpkg/wms?LAYERS=ortofotomapa_biezaca&STYLES=raster&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[16.72794,52.48838],[16.86925,52.48982],[16.86879,52.50779],[16.93948,52.50845],[16.93926,52.51743],[16.98639,52.51784],[16.98784,52.45494],[17.03491,52.45534],[17.0353,52.43736],[17.08235,52.43774],[17.0831,52.4018],[17.0596,52.40161],[17.06129,52.32075],[17.01438,52.32035],[17.01518,52.28441],[16.96829,52.28401],[16.96787,52.30198],[16.89752,52.30134],[16.89662,52.33728],[16.80273,52.33638],[16.80176,52.37232],[16.77828,52.3721],[16.77603,52.45294],[16.72897,52.45244],[16.72794,52.48838]]],"terms_text":"Zarząd Geodezji i Katastru Miejskiego GEOPOZ","terms_html":"https://www.geopoz.pl/","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/geopoz-logo.png"},{"id":"PrahaIPRlatestorthophoto","name":"Praha IPR latest orthophoto","type":"wms","template":"http://giswa1.mag.mepnet.cz/arcgis/services/MAP/letecke_snimky_posledni_snimkovani_cache/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","zoomExtent":[1,20],"polygon":[[[14.81232,49.93089],[14.18755,49.87687],[14.12025,50.19882],[14.74502,50.25247],[14.81232,49.93089]]]},{"id":"PrahaIPRlow-vegetationorthophoto","name":"Praha IPR low-vegetation orthophoto","type":"wms","template":"https://giswas1.mepnet.cz/arcgis/services/MAP/mimovegetacni_snimkovani_cache/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","zoomExtent":[1,20],"polygon":[[[14.30454,49.99538],[14.31604,49.94205],[14.35,49.94508],[14.35384,49.92726],[14.42385,49.93352],[14.42009,49.95097],[14.48865,49.95709],[14.48479,49.97501],[14.55386,49.98117],[14.55012,49.99852],[14.58455,50.00159],[14.5883,49.98424],[14.69168,49.99346],[14.67634,50.06453],[14.71279,50.06777],[14.70115,50.12158],[14.6647,50.11834],[14.661,50.13543],[14.62755,50.13246],[14.61965,50.16895],[14.58543,50.16591],[14.58163,50.18344],[14.40776,50.168],[14.41156,50.15045],[14.37765,50.14744],[14.3738,50.16524],[14.33893,50.16214],[14.34278,50.14434],[14.27368,50.1382],[14.27749,50.12058],[14.2088,50.11447],[14.21289,50.09557],[14.24656,50.09857],[14.25417,50.06336],[14.21987,50.0603],[14.2237,50.04259],[14.258,50.04565],[14.26953,49.99226],[14.30454,49.99538]]]},{"id":"przemysl-buildings","name":"Przemyśl: Buildings","type":"wms","template":"http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=adresy,budynki&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[22.72268,49.76885],[22.73002,49.76787],[22.73097,49.77612],[22.72027,49.77662],[22.71787,49.78062],[22.73104,49.78553],[22.7244,49.79043],[22.73458,49.80441],[22.73167,49.81429],[22.7261,49.8165],[22.72762,49.82124],[22.74395,49.8187],[22.75952,49.80939],[22.79042,49.81462],[22.81169,49.80571],[22.79738,49.80146],[22.80384,49.79247],[22.83118,49.79664],[22.85752,49.78561],[22.84549,49.76746],[22.82485,49.77105],[22.82004,49.75674],[22.77358,49.74439],[22.73838,49.75895],[22.72205,49.74644],[22.71065,49.76288],[22.72268,49.76885]]],"terms_text":"Miasto Przemyśl","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"przemysl-aerial","name":"Przemyśl: Ortophotomap (aerial image)","type":"wms","template":"http://przemysl.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[22.72268,49.76885],[22.73002,49.76787],[22.73097,49.77612],[22.72027,49.77662],[22.71787,49.78062],[22.73104,49.78553],[22.7244,49.79043],[22.73458,49.80441],[22.73167,49.81429],[22.7261,49.8165],[22.72762,49.82124],[22.74395,49.8187],[22.75952,49.80939],[22.79042,49.81462],[22.81169,49.80571],[22.79738,49.80146],[22.80384,49.79247],[22.83118,49.79664],[22.85752,49.78561],[22.84549,49.76746],[22.82485,49.77105],[22.82004,49.75674],[22.77358,49.74439],[22.73838,49.75895],[22.72205,49.74644],[22.71065,49.76288],[22.72268,49.76885]]],"terms_text":"Miasto Przemyśl","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/pl/PowiatrzeszowskiBuildings.png"},{"id":"RABA-KGZ-3000","name":"RABA-KGZ: Slovenia built-up areas","type":"tms","template":"https://wms.openstreetmap.de/tms/RABA3000/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ","terms_text":"Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png"},{"id":"RABA-KGZ","name":"RABA-KGZ: Slovenia farmland use","type":"tms","template":"https://wms.openstreetmap.de/tms/RABA/{zoom}/{x}/{y}.png","zoomExtent":[8,19],"polygon":[[[15.17101,45.41273],[15.06731,45.4781],[14.98353,45.48726],[14.93027,45.51869],[14.91295,45.46869],[14.81398,45.45019],[14.77755,45.49724],[14.71885,45.52386],[14.68383,45.51924],[14.68367,45.57107],[14.58902,45.61966],[14.59477,45.65727],[14.51653,45.5974],[14.49636,45.52968],[14.32388,45.46048],[14.28251,45.47949],[14.26083,45.47352],[14.2367,45.49569],[14.21022,45.45962],[14.1328,45.46542],[14.06694,45.47615],[14.01187,45.50769],[13.98752,45.49945],[14.00668,45.4739],[13.99154,45.44854],[13.91789,45.44329],[13.88867,45.416],[13.81063,45.42531],[13.7856,45.45577],[13.67553,45.43241],[13.38,45.5666],[13.63822,45.64153],[13.72158,45.60472],[13.83759,45.59226],[13.89962,45.63295],[13.82754,45.67917],[13.82429,45.70266],[13.78961,45.73525],[13.66355,45.79008],[13.62279,45.78613],[13.58835,45.80154],[13.56531,45.85522],[13.62633,45.93894],[13.62975,45.97662],[13.59233,45.97929],[13.57124,45.9591],[13.52998,45.95627],[13.46729,46.00147],[13.49765,46.03741],[13.4896,46.06574],[13.58839,46.11268],[13.63712,46.14524],[13.65358,46.17505],[13.57147,46.17434],[13.54859,46.19982],[13.48189,46.21479],[13.42003,46.19662],[13.40026,46.21037],[13.40304,46.23284],[13.36653,46.30266],[13.43369,46.33243],[13.43247,46.36779],[13.56263,46.40895],[13.59357,46.44846],[13.68393,46.44947],[13.71321,46.53296],[13.79725,46.5164],[13.91305,46.53108],[14.00849,46.49169],[14.09406,46.49538],[14.12664,46.4852],[14.16569,46.44341],[14.28242,46.45347],[14.3259,46.44111],[14.43178,46.4568],[14.45113,46.43239],[14.52618,46.43623],[14.56677,46.38549],[14.58993,46.44479],[14.65658,46.45447],[14.71191,46.50954],[14.80818,46.51778],[14.81442,46.55093],[14.86094,46.61239],[14.9102,46.61569],[14.95398,46.64257],[14.98376,46.61868],[15.02973,46.65796],[15.10645,46.66965],[15.23727,46.64973],[15.41364,46.66553],[15.46237,46.64732],[15.47411,46.6226],[15.53427,46.64346],[15.53636,46.6761],[15.59201,46.69952],[15.62405,46.69039],[15.65624,46.71643],[15.767,46.70899],[15.83801,46.73237],[15.91476,46.71958],[16.02919,46.67033],[16.02955,46.68778],[15.99495,46.71178],[15.97505,46.74967],[15.98671,46.84189],[16.0553,46.85049],[16.11022,46.87912],[16.15425,46.86525],[16.23302,46.88667],[16.29431,46.8824],[16.34649,46.85476],[16.36058,46.8278],[16.34711,46.79707],[16.32245,46.79068],[16.33977,46.7799],[16.33186,46.75896],[16.38893,46.70785],[16.4383,46.69655],[16.42822,46.65301],[16.40159,46.6439],[16.51477,46.57299],[16.54136,46.53627],[16.5416,46.50887],[16.611,46.48393],[16.61889,46.46203],[16.52219,46.45842],[16.47451,46.50108],[16.36776,46.53371],[16.2582,46.489],[16.28533,46.42441],[16.3168,46.40141],[16.30574,46.36921],[16.18689,46.36804],[16.14548,46.39515],[16.06959,46.38154],[16.08614,46.34087],[16.04058,46.32708],[16.01819,46.29964],[15.80777,46.25091],[15.79649,46.21296],[15.77128,46.19937],[15.67996,46.21707],[15.65737,46.20838],[15.65639,46.18456],[15.62037,46.16163],[15.61899,46.11595],[15.63483,46.09529],[15.71869,46.06873],[15.74241,46.04578],[15.71612,45.99489],[15.71645,45.9178],[15.69237,45.90013],[15.69375,45.87111],[15.71776,45.8416],[15.6441,45.81058],[15.57467,45.83999],[15.52333,45.81155],[15.49115,45.82041],[15.47514,45.78666],[15.40343,45.78216],[15.28683,45.73391],[15.27435,45.72408],[15.29763,45.70782],[15.36329,45.72191],[15.41517,45.65443],[15.39705,45.62929],[15.31501,45.62356],[15.31503,45.60696],[15.29266,45.60163],[15.30852,45.58653],[15.31145,45.5423],[15.39496,45.48325],[15.34824,45.44665],[15.27515,45.45599],[15.22848,45.41683],[15.17101,45.41273]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Slovenia_Landcover_Import_-_RABA-KGZ","terms_text":"Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved.","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/si/RABA-KGZSloveniafarmlanduse.png"},{"id":"Rennes_2014","name":"Rennes - 2014","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/rennes_2014/{zoom}/{x}/{y}","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[-1.92261,48.16059],[-1.99402,48.07257],[-1.98303,48.02759],[-1.86218,48.04137],[-1.82099,48.01565],[-1.80201,47.9839],[-1.75644,47.91082],[-1.65619,47.92094],[-1.64108,47.93383],[-1.54221,47.94395],[-1.48178,48.01381],[-1.48316,48.03861],[-1.54083,48.08083],[-1.46393,48.07349],[-1.44333,48.08175],[-1.44333,48.17158],[-1.47766,48.19081],[-1.55869,48.18623],[-1.53946,48.19813],[-1.54633,48.24114],[-1.62048,48.27314],[-1.6713,48.26948],[-1.71387,48.20546],[-1.76743,48.25943],[-1.80588,48.25851],[-1.81,48.29873],[-1.88828,48.29599],[-1.89789,48.32065],[-1.94183,48.32156],[-1.98715,48.29873],[-1.98166,48.25577],[-1.92261,48.16059]]],"terms_url":"https://data.rennesmetropole.fr/explore/dataset/orthophotographie-2014/information/","terms_text":"Rennes Métropole 2014"},{"id":"riksantikvaren-kulturminner","name":"Riksantikvaren Heritage Sites overlay","type":"wms","template":"https://kart.ra.no/arcgis/services/Distribusjon/Kulturminner20180301/MapServer/WmsServer?LAYERS=Enkeltminner,Enkeltminneikoner&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[15,22],"polygon":[[[-10.95725,71.60964],[-6.16765,71.62095],[-6.13756,70.30991],[-10.92717,70.29784],[-10.95725,71.60964]],[[16.81947,74.9482],[21.25771,74.94213],[21.23712,73.8918],[16.79889,73.89828],[16.81947,74.9482]],[[4.04288,79.93593],[20.65421,81.54417],[36.6503,80.40108],[26.76265,75.8129],[13.88667,75.79135],[4.04288,79.93593]],[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.riksantikvaren.no/Veiledning/Data-og-tjenester/Karttjenester","terms_text":"© Riksantikvaren","description":"Archeological and architectural monuments/sites and cultural environments protected by law (''enkeltminner'') from the Norwegian Directorate for Cultural Heritage","icon":"https://www.riksantikvaren.no/extension/riksantikvaren/design/internetsite/images/logo_na.png","overlay":true},{"id":"rio2013","name":"Rio Mosaic 2013","type":"wms","template":"http://geo.rio.rj.gov.br/ArcGIS/services/Imagens/Mosaico_2013/MapServer/WMSServer?LAYERS=1&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[-43.17709,-22.96971],[-43.14586,-22.96959],[-43.14605,-22.92719],[-43.15625,-22.92731],[-43.15647,-22.87557],[-43.17739,-22.87494],[-43.17742,-22.88553],[-43.19804,-22.88571],[-43.19804,-22.85429],[-43.21875,-22.85444],[-43.21901,-22.83365],[-43.22937,-22.83365],[-43.22934,-22.82371],[-43.19869,-22.82353],[-43.19856,-22.83413],[-43.18826,-22.83398],[-43.18804,-22.84448],[-43.16667,-22.84442],[-43.16683,-22.83404],[-43.15638,-22.83407],[-43.15654,-22.81336],[-43.10436,-22.81306],[-43.10446,-22.80288],[-43.09387,-22.80276],[-43.0941,-22.73998],[-43.13599,-22.73992],[-43.13569,-22.75067],[-43.12573,-22.75055],[-43.12556,-22.77118],[-43.14595,-22.77109],[-43.14612,-22.76055],[-43.17771,-22.76088],[-43.17758,-22.77115],[-43.18807,-22.7713],[-43.18807,-22.78166],[-43.25067,-22.78163],[-43.25057,-22.79198],[-43.28054,-22.79282],[-43.30343,-22.79312],[-43.33353,-22.79297],[-43.33347,-22.80258],[-43.38574,-22.8024],[-43.38542,-22.81255],[-43.41691,-22.81285],[-43.41675,-22.82341],[-43.42717,-22.82335],[-43.4274,-22.83374],[-43.45844,-22.83362],[-43.45864,-22.81276],[-43.48984,-22.813],[-43.48994,-22.7965],[-43.50208,-22.79746],[-43.51543,-22.79737],[-43.52078,-22.79591],[-43.54169,-22.79603],[-43.54179,-22.80234],[-43.54653,-22.80246],[-43.54666,-22.81189],[-43.55251,-22.81279],[-43.56991,-22.81294],[-43.56998,-22.8197],[-43.57361,-22.82326],[-43.58348,-22.82329],[-43.58352,-22.83347],[-43.59391,-22.83374],[-43.59394,-22.85468],[-43.66099,-22.85459],[-43.66099,-22.85983],[-43.70852,-22.86019],[-43.70836,-22.86503],[-43.72206,-22.86488],[-43.72213,-22.86847],[-43.75015,-22.86859],[-43.75009,-22.8753],[-43.76038,-22.87527],[-43.75992,-22.8785],[-43.75976,-22.88457],[-43.76132,-22.88586],[-43.78129,-22.8858],[-43.78126,-22.89591],[-43.80213,-22.89621],[-43.80135,-22.91137],[-43.80119,-22.92758],[-43.79213,-22.92776],[-43.7922,-22.93822],[-43.78191,-22.93799],[-43.78184,-22.94869],[-43.75067,-22.94845],[-43.7506,-22.95909],[-43.72986,-22.95886],[-43.72966,-22.97984],[-43.70904,-22.97966],[-43.70891,-22.99033],[-43.69846,-22.99006],[-43.69836,-23.00065],[-43.66735,-23.00044],[-43.66726,-23.01117],[-43.63125,-23.00937],[-43.63131,-23.02079],[-43.63586,-23.02091],[-43.63602,-23.03164],[-43.67771,-23.03164],[-43.67765,-23.04233],[-43.67086,-23.0423],[-43.67109,-23.0631],[-43.64599,-23.06304],[-43.64605,-23.05276],[-43.60475,-23.05255],[-43.60452,-23.06307],[-43.58381,-23.06289],[-43.58368,-23.08404],[-43.54186,-23.08383],[-43.54195,-23.06319],[-43.52147,-23.06301],[-43.5213,-23.07352],[-43.50043,-23.07337],[-43.50043,-23.04218],[-43.45877,-23.04221],[-43.4587,-23.03194],[-43.43782,-23.03182],[-43.43776,-23.02154],[-43.3235,-23.02121],[-43.3233,-23.04212],[-43.31291,-23.04195],[-43.31275,-23.05267],[-43.30239,-23.05258],[-43.30236,-23.04227],[-43.29194,-23.04215],[-43.29197,-23.03194],[-43.27109,-23.03182],[-43.27119,-23.01093],[-43.26061,-23.01087],[-43.26067,-23.00059],[-43.25057,-23.00047],[-43.25054,-23.01126],[-43.23989,-23.01102],[-43.23986,-23.00062],[-43.21908,-23.0005],[-43.21904,-22.99021],[-43.20901,-22.99009],[-43.20862,-23.08389],[-43.18768,-23.08377],[-43.18761,-23.07334],[-43.13582,-23.07337],[-43.13589,-23.05249],[-43.17732,-23.05255],[-43.17709,-22.96971]]],"terms_url":"https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2013_UTM/MapServer","terms_text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."},{"id":"rio2015","name":"Rio Mosaic 2015","type":"wms","template":"https://pgeo3.rio.rj.gov.br/arcgis/services/Imagens/Mosaico_2015_UTM/MapServer/WmsServer?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=1&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-43.59375,-23.09163],[-43.49213,-23.09163],[-43.49043,-23.05158],[-43.42965,-23.04994],[-43.42958,-23.03186],[-43.42655,-23.02912],[-43.35517,-23.02925],[-43.35275,-23.0322],[-43.35273,-23.04931],[-43.32336,-23.05052],[-43.32046,-23.07079],[-43.27378,-23.07079],[-43.27156,-23.05116],[-43.24219,-23.04994],[-43.24219,-23.02902],[-43.23053,-23.02917],[-43.22783,-23.03186],[-43.22776,-23.09163],[-43.11654,-23.09163],[-43.11722,-23.03416],[-43.14502,-23.03414],[-43.1481,-23.03106],[-43.14754,-22.98957],[-43.11653,-22.98732],[-43.11722,-22.90906],[-43.14502,-22.90904],[-43.14805,-22.90629],[-43.14923,-22.86457],[-43.14741,-22.82414],[-43.14433,-22.82106],[-43.08564,-22.82104],[-43.08564,-22.72164],[-43.16528,-22.72227],[-43.1653,-22.73907],[-43.16696,-22.7417],[-43.19618,-22.74253],[-43.1962,-22.76033],[-43.19771,-22.76284],[-43.25866,-22.76343],[-43.25873,-22.78092],[-43.26176,-22.78367],[-43.41453,-22.78622],[-43.41511,-22.80369],[-43.42776,-22.80537],[-43.45873,-22.80481],[-43.46052,-22.80212],[-43.46123,-22.78622],[-43.55392,-22.78749],[-43.5541,-22.79474],[-43.55793,-22.8019],[-43.5704,-22.80269],[-43.57864,-22.81028],[-43.58017,-22.81603],[-43.59306,-22.81851],[-43.59375,-22.84646],[-43.72215,-22.84891],[-43.73108,-22.85144],[-43.73374,-22.85711],[-43.75373,-22.85651],[-43.75466,-22.86261],[-43.75861,-22.86767],[-43.78738,-22.87297],[-43.78944,-22.87424],[-43.78951,-22.8854],[-43.79156,-22.8879],[-43.8121,-22.88817],[-43.8121,-22.93182],[-43.80039,-22.93188],[-43.78897,-22.93578],[-43.78326,-22.94066],[-43.77767,-22.94095],[-43.76014,-22.95055],[-43.75786,-22.98804],[-43.72977,-22.98767],[-43.72766,-22.99051],[-43.72696,-23.00888],[-43.69775,-23.00989],[-43.69606,-23.04994],[-43.68379,-23.0512],[-43.68033,-23.06129],[-43.68026,-23.07079],[-43.60544,-23.07086],[-43.60269,-23.07389],[-43.60267,-23.091],[-43.59375,-23.09163]]],"terms_url":"https://pgeo3.rio.rj.gov.br/arcgis/rest/services/Imagens/Mosaico_2015_UTM/MapServer","terms_text":"Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro."},{"id":"route500","name":"Route 500","type":"tms","template":"https://{switch:a,b,c}.tile.openstreetmap.fr/route500/{zoom}/{x}/{y}.png","zoomExtent":[12,20],"polygon":[[[-2.7,43.9],[-6.3,48.98],[-2.25,50.09],[1.31,50.88],[2.35816,51.32937],[2.5488,51.09759],[2.57048,51.07409],[2.58741,51.01763],[2.59845,51.0051],[2.61558,50.99749],[2.63986,50.95766],[2.64225,50.94578],[2.62452,50.9256],[2.61962,50.91067],[2.62396,50.86071],[2.62781,50.85054],[2.63786,50.83696],[2.6511,50.82906],[2.73267,50.81738],[2.79995,50.73795],[2.81655,50.73092],[2.85265,50.73335],[2.89072,50.7162],[2.90492,50.71536],[2.9161,50.72418],[2.93508,50.75592],[3.00718,50.78377],[3.08218,50.78749],[3.09244,50.79092],[3.11412,50.80566],[3.14877,50.80195],[3.2154,50.73111],[3.22149,50.7267],[3.27051,50.70375],[3.27545,50.67757],[3.26576,50.6604],[3.26588,50.64054],[3.28922,50.60028],[3.29219,50.55037],[3.3056,50.53267],[3.37551,50.50839],[3.3898,50.50884],[3.4748,50.54445],[3.52173,50.53459],[3.53266,50.51873],[3.54779,50.51012],[3.61523,50.50558],[3.67378,50.45642],[3.68415,50.35277],[3.6901,50.34044],[3.70258,50.33482],[3.71576,50.33854],[3.74935,50.36279],[3.84109,50.36558],[3.90189,50.3436],[3.91317,50.34291],[4.02672,50.36904],[4.13761,50.29984],[4.14388,50.29727],[4.21444,50.28167],[4.22904,50.26664],[4.23078,50.25233],[4.17084,50.18579],[4.16601,50.16888],[4.1764,50.1547],[4.21195,50.13602],[4.24074,50.07102],[4.23193,50.05551],[4.18164,50.03436],[4.17177,50.02537],[4.16976,50.01217],[4.1765,50.00065],[4.20633,49.97546],[4.22164,49.97089],[4.30877,49.98145],[4.44542,49.9523],[4.45469,49.95251],[4.6581,50.00609],[4.66936,50.01392],[4.67293,50.02716],[4.66924,50.06972],[4.69517,50.10472],[4.83123,50.17941],[4.8815,50.16436],[4.90479,50.14451],[4.90426,50.12639],[4.88076,50.0815],[4.86277,50.0745],[4.85104,50.06216],[4.84331,50.03884],[4.84331,50.03883],[4.8433,50.03881],[4.82678,49.989],[4.82662,49.97692],[4.83343,49.96696],[4.89654,49.91753],[4.89755,49.89424],[4.87913,49.86942],[4.87625,49.85111],[4.88924,49.81266],[4.89769,49.80204],[4.91098,49.79926],[4.99534,49.81116],[5.01867,49.79272],[5.02686,49.78886],[5.09944,49.77323],[5.13458,49.73462],[5.1412,49.72984],[5.18761,49.70906],[5.19602,49.70732],[5.28157,49.70836],[5.33363,49.67308],[5.344,49.65049],[5.3544,49.64041],[5.43141,49.60791],[5.48205,49.52815],[5.49294,49.51979],[5.50666,49.52042],[5.55401,49.54025],[5.59311,49.53424],[5.6076,49.53761],[5.641,49.56095],[5.70676,49.55267],[5.71578,49.55361],[5.77526,49.57414],[5.8399,49.55321],[5.86126,49.52038],[5.876,49.5114],[5.97516,49.50129],[5.99801,49.47317],[6.01627,49.46597],[6.08635,49.47562],[6.09319,49.47787],[6.17397,49.52187],[6.24643,49.52511],[6.334,49.48235],[6.34423,49.48037],[6.43515,49.487],[6.5451,49.44384],[6.60639,49.37868],[6.60497,49.33739],[6.61627,49.31869],[6.67013,49.29269],[6.72996,49.22917],[6.74328,49.19086],[6.76026,49.17752],[6.80904,49.17284],[6.82473,49.17826],[6.83093,49.19366],[6.82982,49.21802],[6.85119,49.23136],[6.88453,49.2239],[6.89322,49.22389],[6.93753,49.23369],[7.04055,49.19794],[7.0463,49.17503],[7.05478,49.16313],[7.06908,49.16018],[7.10494,49.16634],[7.14315,49.14159],[7.1535,49.13839],[7.28683,49.13488],[7.29893,49.13856],[7.36095,49.18259],[7.45012,49.19517],[7.50113,49.17672],[7.54379,49.10572],[7.5579,49.09626],[7.6296,49.08527],[7.64722,49.06722],[7.6612,49.06119],[7.75401,49.05963],[7.76073,49.06067],[7.80291,49.07489],[7.85525,49.05329],[7.8673,49.05227],[7.93826,49.06832],[8.08069,49.00688],[8.2225,48.98787],[8.23704,48.97683],[8.23589,48.95817],[8.20888,48.94863],[8.20089,48.94339],[8.15824,48.89753],[8.10087,48.7993],[7.99071,48.74478],[7.98534,48.7409],[7.90422,48.65865],[7.85605,48.63606],[7.8484,48.62977],[7.81842,48.58883],[7.81456,48.57704],[7.81449,48.50968],[7.78547,48.48337],[7.78055,48.47652],[7.74506,48.39484],[7.74357,48.38427],[7.75159,48.32322],[7.71085,48.29841],[7.70241,48.28803],[7.67661,48.21555],[7.59605,48.11698],[7.59165,48.10648],[7.58522,48.04694],[7.59127,48.03035],[7.62437,47.99865],[7.63205,47.97081],[7.57554,47.87436],[7.5728,47.86435],[7.57267,47.83631],[7.54581,47.78793],[7.54418,47.77232],[7.55758,47.72899],[7.53526,47.6989],[7.53136,47.68564],[7.537,47.67302],[7.60016,47.60822],[7.58967,47.56755],[7.55424,47.55128],[7.54511,47.54283],[7.51256,47.48439],[7.38747,47.42111],[7.32653,47.4273],[7.24435,47.40939],[7.16708,47.4335],[7.15212,47.47612],[7.14279,47.48707],[7.12853,47.48893],[7.0801,47.47718],[7.03557,47.48695],[7.02102,47.48458],[7.01205,47.47287],[7.003,47.44095],[6.9551,47.40808],[6.94716,47.39698],[6.94818,47.38337],[6.95769,47.37359],[6.97126,47.37218],[7.018,47.38386],[7.05623,47.37035],[7.07007,47.35005],[7.05958,47.32257],[6.97424,47.27856],[6.96347,47.26233],[6.96134,47.23479],[6.89443,47.19393],[6.88913,47.18922],[6.85545,47.14636],[6.76907,47.10751],[6.76011,47.09953],[6.72561,47.0418],[6.62355,46.9811],[6.4812,46.9445],[6.46892,46.93522],[6.46686,46.91997],[6.47548,46.88771],[6.4535,46.8239],[6.45644,46.80534],[6.46722,46.79104],[6.46098,46.76887],[6.15817,46.59343],[6.14872,46.58069],[6.15152,46.56508],[6.16549,46.54399],[6.15811,46.52456],[6.10174,46.46979],[6.09572,46.45418],[6.09704,46.43317],[6.10829,46.41643],[6.16622,46.38839],[6.17817,46.36922],[6.13748,46.31297],[6.13371,46.30227],[6.13038,46.23737],[6.1103,46.22344],[6.08865,46.23081],[6.07717,46.23123],[6.01857,46.21601],[6.00681,46.20752],[6.00388,46.19332],[6.00787,46.16977],[6.01783,46.15564],[6.03509,46.15456],[6.05564,46.16288],[6.12468,46.15415],[6.13778,46.15702],[6.24026,46.22094],[6.24906,46.23299],[6.24707,46.24777],[6.21148,46.31057],[6.21219,46.32485],[6.23946,46.36705],[6.31648,46.41557],[6.41083,46.42495],[6.41748,46.42682],[6.50498,46.46871],[6.63047,46.47435],[6.74665,46.45695],[6.82244,46.42925],[6.81832,46.38181],[6.80484,46.36179],[6.80189,46.34639],[6.81095,46.33359],[6.86491,46.30038],[6.87504,46.28007],[6.86092,46.2439],[6.82698,46.21188],[6.82075,46.19862],[6.81863,46.16592],[6.82259,46.15261],[6.83427,46.14509],[6.90382,46.12971],[6.90491,46.09595],[6.90932,46.08406],[6.92001,46.07721],[6.94898,46.0699],[7.01556,46.00883],[7.05191,45.93066],[7.04533,45.92217],[7.04497,45.92064],[7.04394,45.92036],[6.99582,45.85822],[6.94097,45.83551],[6.84376,45.82387],[6.83102,45.81711],[6.82614,45.80353],[6.82787,45.73217],[6.83174,45.72082],[6.8414,45.71373],[6.90729,45.69124],[6.92419,45.66935],[6.94247,45.66172],[6.97131,45.66528],[7.00597,45.64945],[7.01151,45.63652],[6.9978,45.60877],[6.99643,45.59465],[7.0158,45.52354],[7.02774,45.5102],[7.1072,45.47877],[7.1228,45.44924],[7.13304,45.44001],[7.1856,45.41894],[7.19515,45.40409],[7.17075,45.35069],[7.14232,45.32298],[7.13649,45.30576],[7.14458,45.25048],[7.08417,45.20279],[6.99279,45.19823],[6.98106,45.19368],[6.90009,45.12689],[6.85843,45.11699],[6.78283,45.14228],[6.77056,45.14242],[6.67751,45.11356],[6.6653,45.10289],[6.66501,45.08667],[6.68237,45.04558],[6.69602,45.03395],[6.75744,45.01884],[6.78375,44.9146],[6.7942,44.90161],[6.86698,44.86519],[6.8798,44.86346],[6.93633,44.87461],[7.01795,44.84402],[7.03453,44.82282],[7.03711,44.75009],[7.0496,44.73226],[7.07224,44.72311],[7.08651,44.6968],[7.08666,44.68085],[7.07671,44.67134],[6.99007,44.67203],[6.97413,44.66431],[6.97056,44.64696],[6.97819,44.61784],[6.94659,44.57124],[6.88235,44.53479],[6.87233,44.5195],[6.87892,44.50245],[6.95894,44.43129],[6.95872,44.42908],[6.92167,44.41436],[6.91223,44.40659],[6.90907,44.39477],[6.90972,44.38195],[6.91637,44.36804],[6.99909,44.29414],[7.01181,44.256],[7.01983,44.24558],[7.03259,44.2424],[7.07312,44.2461],[7.1651,44.22112],[7.24533,44.18544],[7.26053,44.16682],[7.27537,44.15947],[7.33878,44.1574],[7.36278,44.13834],[7.37776,44.13416],[7.56283,44.15792],[7.5642,44.15836],[7.56478,44.15817],[7.60548,44.1634],[7.6162,44.16827],[7.63989,44.18928],[7.68608,44.1861],[7.69422,44.17795],[7.68937,44.13869],[7.69445,44.12276],[7.72786,44.08615],[7.72403,44.05704],[7.68603,44.02371],[7.68077,44.0164],[7.66016,43.9672],[7.59624,43.94466],[7.58419,43.93287],[7.56858,43.89159],[7.5271,43.87434],[7.51649,43.86397],[7.51594,43.84915],[7.53622,43.79234],[9.8,43.1],[9.63227,41.43244],[9.36968,41.35052],[9.27311,41.29196],[8.94186,41.27688],[5.8,41.64],[3.17358,42.41768],[3.16081,42.42757],[3.0944,42.41457],[3.03402,42.45331],[3.02214,42.45645],[2.87822,42.4487],[2.87019,42.44653],[2.78424,42.40256],[2.7413,42.41128],[2.72928,42.40998],[2.69331,42.39417],[2.68378,42.3854],[2.68162,42.37263],[2.68585,42.34679],[2.66719,42.33008],[2.58106,42.34418],[2.56777,42.34173],[2.5338,42.32197],[2.47795,42.32986],[2.41933,42.37658],[2.41222,42.38021],[2.26719,42.42055],[2.25973,42.42117],[2.20694,42.41558],[2.20653,42.41526],[2.20526,42.41541],[2.16028,42.41065],[2.14881,42.40545],[2.09393,42.35474],[2.00861,42.33818],[1.965,42.36473],[1.93076,42.42442],[1.92089,42.43302],[1.88467,42.44761],[1.88459,42.44762],[1.88444,42.4477],[1.82774,42.47056],[1.72567,42.48452],[1.71561,42.50125],[1.7272,42.56103],[1.72479,42.57499],[1.71011,42.59992],[1.69377,42.60975],[1.60283,42.61382],[1.56069,42.6392],[1.54636,42.64166],[1.50444,42.6331],[1.4921,42.62502],[1.47238,42.59703],[1.43792,42.59264],[1.41936,42.60643],[1.38032,42.67415],[1.37335,42.68127],[1.33313,42.70563],[1.32364,42.7085],[1.23221,42.71248],[1.16554,42.69928],[1.08546,42.76635],[1.07564,42.77079],[0.95937,42.78852],[0.95073,42.78794],[0.92265,42.7797],[0.84606,42.8157],[0.71511,42.8464],[0.70017,42.84402],[0.69117,42.83186],[0.67409,42.76479],[0.67474,42.75286],[0.69192,42.70684],[0.669,42.67901],[0.43024,42.67863],[0.3715,42.70308],[0.35954,42.70415],[0.34912,42.69817],[0.32567,42.67274],[0.29571,42.66388],[0.24594,42.70175],[0.23972,42.70494],[0.18967,42.72039],[0.17919,42.72075],[-0.01993,42.67389],[-0.06726,42.6848],[-0.16949,42.77157],[-0.29987,42.82697],[-0.31683,42.82635],[-0.39208,42.78766],[-0.44354,42.78453],[-0.48842,42.80255],[-0.50868,42.79935],[-0.54499,42.76906],[-0.56721,42.76937],[-0.67446,42.86392],[-0.68094,42.86775],[-0.73372,42.88666],[-0.7476,42.93879],[-0.75711,42.95107],[-0.77253,42.95284],[-0.82114,42.93865],[-0.94508,42.94192],[-1.02313,42.98206],[-1.10852,43.00409],[-1.1156,43.00461],[-1.14775,43.00124],[-1.15845,43.01452],[-1.16736,43.02083],[-1.21622,43.0381],[-1.22612,43.03898],[-1.26236,43.03303],[-1.30643,43.05531],[-1.31992,43.05696],[-1.33135,43.0496],[-1.3542,43.0197],[-1.43868,43.03371],[-1.4775,43.06889],[-1.48311,43.08561],[-1.47641,43.10248],[-1.43479,43.13087],[-1.42732,43.1404],[-1.39411,43.22935],[-1.39531,43.24596],[-1.40868,43.25591],[-1.52629,43.28099],[-1.54626,43.2737],[-1.57149,43.2412],[-1.61053,43.24223],[-1.65,43.29323],[-1.66953,43.30065],[-1.73359,43.28856],[-1.75606,43.31966],[-1.76297,43.32565],[-1.79156,43.34067],[-1.80099,43.37017],[-1.78509,43.39037],[-1.7835,43.39686],[-2.7,43.9]]],"terms_url":"https://wiki.openstreetmap.org/wiki/FR:Servers/tile.openstreetmap.fr#Route500.E2.84.A2.C2.A9.C2.AE","terms_text":"Tiles © cquest@Openstreetmap France, data © IGN, LO/OL","description":"Routes du réseau classé (autoroutes, nationales, départementales)","overlay":true},{"id":"Ruda_Slaska-aerial_image","name":"Ruda Śląska: Orthophotomap (aerial image)","type":"wms","template":"https://rudaslaska.geoportal2.pl/map/wmsorto/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[18.84294,50.32508],[18.84008,50.33091],[18.85132,50.33437],[18.86262,50.3305],[18.88693,50.333],[18.89493,50.3319],[18.90045,50.32562],[18.89713,50.31146],[18.89312,50.31149],[18.89114,50.30778],[18.8972,50.2999],[18.89073,50.29586],[18.90211,50.29204],[18.90706,50.28637],[18.90853,50.27823],[18.93583,50.27379],[18.94106,50.25859],[18.93848,50.25317],[18.95086,50.24267],[18.96531,50.24084],[18.94611,50.22907],[18.89932,50.22516],[18.90251,50.21749],[18.89075,50.21557],[18.89292,50.20913],[18.86474,50.20512],[18.85673,50.22078],[18.85258,50.22331],[18.84619,50.21761],[18.83341,50.21715],[18.83533,50.22307],[18.83051,50.23099],[18.82411,50.23055],[18.81641,50.23709],[18.81619,50.24125],[18.80635,50.24596],[18.80344,50.24293],[18.78831,50.24456],[18.79552,50.2768],[18.81681,50.27732],[18.81919,50.28794],[18.83893,50.29795],[18.83849,50.3004],[18.82699,50.30342],[18.82691,50.32073],[18.83007,50.32371],[18.84294,50.32508]]],"terms_text":"Urząd Miasta Ruda Śląska"},{"id":"SanJuanMetroAreaUSACEOrthophotos","name":"San Juan Metro Area: 2013 USACE Orthophotos","type":"tms","template":"http://imagery-pr-usace-2013.s3-website-us-east-1.amazonaws.com/tiles/{zoom}/{x}/{y}.jpg","endDate":"2013-03-15T00:00:00.000Z","startDate":"2013-03-13T00:00:00.000Z","zoomExtent":[7,20],"polygon":[[[-66.15007,18.35002],[-66.03337,18.35002],[-66.03328,18.45634],[-66.05464,18.45636],[-66.05463,18.46542],[-66.08303,18.46544],[-66.08302,18.47451],[-66.13034,18.47455],[-66.13034,18.4796],[-66.13983,18.47961],[-66.13984,18.46557],[-66.14995,18.46558],[-66.15007,18.35002]]]},{"id":"GEOSN-DOP-2005","name":"Saxony historical aerial imagery 2005","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop-2005/guest?LAYERS=dop_2005&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2005-01-01T00:00:00.000Z","startDate":"2005-01-01T00:00:00.000Z","polygon":[[[13.86571,50.71509],[13.86683,50.73012],[13.90116,50.73012],[13.90184,50.74446],[13.91043,50.74446],[13.91043,50.77378],[13.95266,50.77486],[13.95197,50.78897],[13.99969,50.78941],[13.999,50.79831],[14.16715,50.79762],[14.1747,50.8462],[14.32851,50.84534],[14.33503,50.87643],[14.41674,50.876],[14.41674,50.95025],[14.33263,50.95133],[14.3364,50.99802],[14.58188,50.99608],[14.57742,50.94895],[14.54068,50.95003],[14.54446,50.89831],[14.60557,50.89116],[14.60454,50.83439],[14.6605,50.83352],[14.65673,50.79578],[14.83422,50.79469],[14.84727,50.89138],[14.9204,50.88943],[14.9331,50.99478],[14.99902,50.99673],[15.00142,51.09709],[15.04159,51.09709],[15.04228,51.35317],[14.99696,51.35317],[15.00314,51.49959],[14.91593,51.50301],[14.91662,51.55043],[14.74908,51.55129],[14.75114,51.60121],[14.41056,51.59993],[14.41125,51.55129],[14.07891,51.54915],[14.07479,51.49831],[13.99446,51.50002],[13.99446,51.39817],[13.53921,51.39989],[13.53852,51.42516],[13.50041,51.42505],[13.50179,51.44945],[13.41596,51.45094],[13.41699,51.50013],[13.3315,51.50055],[13.33047,51.44966],[13.24945,51.44987],[13.25116,51.60036],[13.16773,51.60057],[13.16739,51.65023],[13.08328,51.65066],[13.08362,51.69941],[12.66202,51.70027],[12.66065,51.64832],[12.4162,51.65045],[12.41345,51.60057],[12.16146,51.60015],[12.16146,51.50109],[12.07631,51.50023],[12.07974,51.39625],[12.16008,51.39753],[12.16214,51.34995],[12.07906,51.35253],[12.07906,51.24562],[12.16214,51.24691],[12.16352,51.0958],[12.24317,51.09709],[12.2454,51.04813],[12.49688,51.04883],[12.49894,50.89966],[12.33346,50.89923],[12.32797,50.84984],[12.20712,50.8494],[12.20506,50.69829],[12.24694,50.69744],[12.24694,50.65023],[11.91529,50.64849],[11.91598,50.59839],[11.83221,50.59817],[11.83255,50.39922],[11.91495,50.39922],[11.91461,50.34886],[11.99486,50.34659],[11.99838,50.29897],[12.16506,50.29912],[12.16549,50.24904],[12.23673,50.24871],[12.24823,50.24212],[12.24772,50.14904],[12.33149,50.14893],[12.33852,50.19335],[12.33286,50.23927],[12.3538,50.23619],[12.35998,50.24926],[12.41457,50.24948],[12.41594,50.29906],[12.49851,50.29874],[12.49834,50.34948],[12.58142,50.34915],[12.58125,50.39896],[12.69489,50.39962],[12.70622,50.39426],[12.71257,50.39875],[13.0813,50.39907],[13.0813,50.4992],[13.24816,50.49898],[13.24884,50.54809],[13.33124,50.54918],[13.33056,50.59911],[13.50908,50.59759],[13.50462,50.62656],[13.5393,50.62635],[13.53827,50.65481],[13.54633,50.65547],[13.54599,50.66983],[13.5544,50.67027],[13.55457,50.68908],[13.54736,50.68887],[13.54582,50.69969],[13.63886,50.69947],[13.63955,50.71425],[13.86571,50.71509]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=3f38c3f3-03db-4a2a-b6da-2704b9a1d5f0","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DOP-2012_2014","name":"Saxony historical aerial imagery 2012-2014","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop_2012_2014/guest?LAYERS=dop_2012_2014_rgb&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[13.86571,50.71509],[13.86683,50.73012],[13.90116,50.73012],[13.90184,50.74446],[13.91043,50.74446],[13.91043,50.77378],[13.95266,50.77486],[13.95197,50.78897],[13.99969,50.78941],[13.999,50.79831],[14.16715,50.79762],[14.1747,50.8462],[14.32851,50.84534],[14.33503,50.87643],[14.41674,50.876],[14.41674,50.95025],[14.33263,50.95133],[14.3364,50.99802],[14.58188,50.99608],[14.57742,50.94895],[14.54068,50.95003],[14.54446,50.89831],[14.60557,50.89116],[14.60454,50.83439],[14.6605,50.83352],[14.65673,50.79578],[14.83422,50.79469],[14.84727,50.89138],[14.9204,50.88943],[14.9331,50.99478],[14.99902,50.99673],[15.00142,51.09709],[15.04159,51.09709],[15.04228,51.35317],[14.99696,51.35317],[15.00314,51.49959],[14.91593,51.50301],[14.91662,51.55043],[14.74908,51.55129],[14.75114,51.60121],[14.41056,51.59993],[14.41125,51.55129],[14.07891,51.54915],[14.07479,51.49831],[13.99446,51.50002],[13.99446,51.39817],[13.53921,51.39989],[13.53852,51.42516],[13.50041,51.42505],[13.50179,51.44945],[13.41596,51.45094],[13.41699,51.50013],[13.3315,51.50055],[13.33047,51.44966],[13.24945,51.44987],[13.25116,51.60036],[13.16773,51.60057],[13.16739,51.65023],[13.08328,51.65066],[13.08362,51.69941],[12.66202,51.70027],[12.66065,51.64832],[12.4162,51.65045],[12.41345,51.60057],[12.16146,51.60015],[12.16146,51.50109],[12.07631,51.50023],[12.07974,51.39625],[12.16008,51.39753],[12.16214,51.34995],[12.07906,51.35253],[12.07906,51.24562],[12.16214,51.24691],[12.16352,51.0958],[12.24317,51.09709],[12.2454,51.04813],[12.49688,51.04883],[12.49894,50.89966],[12.33346,50.89923],[12.32797,50.84984],[12.20712,50.8494],[12.20506,50.69829],[12.24694,50.69744],[12.24694,50.65023],[11.91529,50.64849],[11.91598,50.59839],[11.83221,50.59817],[11.83255,50.39922],[11.91495,50.39922],[11.91461,50.34886],[11.99486,50.34659],[11.99838,50.29897],[12.16506,50.29912],[12.16549,50.24904],[12.23673,50.24871],[12.24823,50.24212],[12.24772,50.14904],[12.33149,50.14893],[12.33852,50.19335],[12.33286,50.23927],[12.3538,50.23619],[12.35998,50.24926],[12.41457,50.24948],[12.41594,50.29906],[12.49851,50.29874],[12.49834,50.34948],[12.58142,50.34915],[12.58125,50.39896],[12.69489,50.39962],[12.70622,50.39426],[12.71257,50.39875],[13.0813,50.39907],[13.0813,50.4992],[13.24816,50.49898],[13.24884,50.54809],[13.33124,50.54918],[13.33056,50.59911],[13.50908,50.59759],[13.50462,50.62656],[13.5393,50.62635],[13.53827,50.65481],[13.54633,50.65547],[13.54599,50.66983],[13.5544,50.67027],[13.55457,50.68908],[13.54736,50.68887],[13.54582,50.69969],[13.63886,50.69947],[13.63955,50.71425],[13.86571,50.71509]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=8c276e3c-88af-462f-8128-6900bc7dd4f8","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DOP-RGB","name":"Saxony latest aerial imagery","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop-rgb/guest?LAYERS=sn_dop_020&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=cd01c334-7e32-482f-bd43-af286707178a","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DOP-CIR","name":"Saxony latest aerial imagery infrared","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dop-cir/guest?LAYERS=sn_dop_020_cir&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=ba87bbed-4cb5-4539-a9f5-f863de752f52","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-DTK","name":"Saxony topographic map","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_dtk-pg-color/guest?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=sn_dtk_pg_color&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=d6d24c6d-94ea-447d-8a0c-40afdedeb5c6","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"GEOSN-WebAtlas","name":"Saxony WebAtlasSN","type":"wms","template":"https://geodienste.sachsen.de/wms_geosn_webatlas-sn/guest?LAYERS=Vegetation,Siedlung,Gewaesser,Verkehr,Administrative_Einheiten,Beschriftung&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[13.54901,50.69792],[13.84251,50.71126],[13.93239,50.74504],[14.04614,50.79389],[14.25257,50.85953],[14.40002,50.88966],[14.42671,50.9357],[14.35649,50.97197],[14.32559,50.99319],[14.27504,50.99054],[14.31577,51.04266],[14.41547,51.01263],[14.51939,51.0038],[14.5882,50.9817],[14.54467,50.91977],[14.57977,50.90649],[14.64718,50.92243],[14.64437,50.90915],[14.60505,50.85687],[14.7202,50.81785],[14.81008,50.81341],[14.85642,50.89055],[14.91259,50.94721],[14.99685,51.08679],[15.05303,51.24793],[15.05583,51.29274],[14.99264,51.34452],[14.98843,51.398],[14.97719,51.45754],[14.90979,51.49603],[14.73986,51.5371],[14.73986,51.59122],[14.70054,51.60605],[14.67948,51.5982],[14.68369,51.57813],[14.67386,51.55806],[14.61769,51.55718],[14.58399,51.59035],[14.51939,51.56941],[14.43513,51.5598],[14.327,51.52574],[14.13461,51.55544],[14.0672,51.49952],[14.02788,51.47854],[14.04333,51.45229],[13.99558,51.39274],[13.95767,51.40588],[13.88886,51.38836],[13.72455,51.37434],[13.55463,51.39274],[13.40437,51.45929],[13.35241,51.43916],[13.3159,51.44354],[13.28641,51.41815],[13.22602,51.40063],[13.21339,51.46104],[13.219,51.52661],[13.17406,51.5982],[13.00274,51.67751],[12.90584,51.65312],[12.90303,51.66619],[12.85388,51.69318],[12.76401,51.65922],[12.68817,51.67054],[12.64324,51.62959],[12.57723,51.63046],[12.42557,51.61041],[12.23037,51.57028],[12.17701,51.53011],[12.13909,51.46017],[12.16718,51.41727],[12.1742,51.33487],[12.13207,51.3182],[12.18684,51.21364],[12.15875,51.18812],[12.22054,51.09296],[12.49017,51.05414],[12.52106,50.99319],[12.60532,50.97286],[12.62639,50.91889],[12.50281,50.91092],[12.23739,50.81874],[12.21352,50.72993],[12.28654,50.665],[12.21773,50.6463],[12.13347,50.6276],[12.05343,50.56342],[12.01972,50.64719],[11.85963,50.54825],[11.87649,50.50808],[11.92704,50.5054],[11.93687,50.48664],[11.87087,50.44194],[11.93406,50.39989],[11.96917,50.33987],[12.12083,50.29773],[12.17279,50.3067],[12.18543,50.26094],[12.21212,50.25375],[12.25705,50.21603],[12.28233,50.15668],[12.35535,50.15848],[12.35535,50.22142],[12.41433,50.28158],[12.51123,50.34705],[12.53791,50.38735],[12.67835,50.40257],[12.71205,50.38646],[12.7289,50.39631],[12.75699,50.42584],[12.78648,50.43389],[12.81737,50.41779],[12.84686,50.43657],[12.94797,50.38735],[13.00976,50.41421],[13.04627,50.44999],[13.0561,50.48753],[13.21479,50.49289],[13.27517,50.56609],[13.34118,50.56877],[13.39173,50.61334],[13.47739,50.58571],[13.54761,50.63473],[13.56867,50.67212],[13.54901,50.69792]]],"terms_url":"https://geoportal.sachsen.de/cps/metadaten_portal.html?id=475a9197-620f-4dcb-b8aa-7f71b626443f","terms_text":"Staatsbetrieb Geobasisinformation und Vermessung Sachsen","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/de/SaxonyWebAtlasSN.png"},{"id":"Geodatastyrelsen_Denmark","name":"SDFE aerial imagery","type":"tms","template":"https://osmtools.septima.dk/mapproxy/tiles/1.0.0/kortforsyningen_ortoforaar/EPSG3857/{zoom}/{x}/{y}.jpeg","zoomExtent":[0,21],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_url":"https://download.kortforsyningen.dk/content/vilkaar-og-betingelser","terms_text":"Geodatastyrelsen og Danske Kommuner","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Geodatastyrelsen_Cadastral_Parcels_INSPIRE_View","name":"SDFE Cadastral Parcels INSPIRE View","type":"wms","template":"https://kortforsyningen.kms.dk/cp_inspire?LAYERS=CP.CadastralParcel&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LOGIN=OpenStreetMapDK2015&PASSWORD=Gall4Peters","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Geodatastyrelsen_DTK_Kort25","name":"SDFE DTK Kort25","type":"wms","template":"https://kortforsyningen.kms.dk/topo25?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=topo25_klassisk&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Geodatastyrelsen_Skaermkort","name":"SDFE Skærmkort","type":"wms","template":"https://kortforsyningen.kms.dk/topo_skaermkort?FORMAT=image/png&VERSION=1.1.1&login=OpenStreetMapDK2015&password=Gall4Peters&SERVICE=WMS&REQUEST=GetMap&Layers=dtk_skaermkort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,19],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"SDFE_Overflade_Skyggekort_40cm","name":"SDFE Surface Shadow Map (40 cm)","type":"wms","template":"https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_overflade_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"SDFE_Terraen_Skyggekort_40cm","name":"SDFE Terrain Shadow Map (40 cm)","type":"wms","template":"https://kortforsyningen.kms.dk/dhm?login=OpenStreetMapDK2015&password=Gall4Peters&FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=dhm_terraen_skyggekort&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,20],"polygon":[[[8.37439,54.95517],[8.36838,55.40421],[8.2104,55.40398],[8.20873,55.49373],[8.05027,55.49247],[8.01851,56.75014],[8.18192,56.75099],[8.17633,57.02089],[8.34133,57.02199],[8.33925,57.11196],[8.50544,57.11232],[8.50339,57.20205],[9.33163,57.20276],[9.33191,57.29248],[9.49789,57.29196],[9.49886,57.38206],[9.66497,57.38116],[9.66873,57.56056],[9.8352,57.55963],[9.83749,57.64933],[10.17257,57.64628],[10.17542,57.73678],[10.51183,57.73303],[10.51521,57.82289],[10.68349,57.82077],[10.67516,57.6412],[10.5077,57.64331],[10.504,57.55351],[10.67104,57.55141],[10.65078,57.10245],[10.48577,57.10451],[10.47862,56.92491],[10.3144,56.92676],[10.31123,56.83693],[10.47503,56.83509],[10.4649,56.56567],[10.95242,56.55898],[10.94792,56.46922],[11.10993,56.46647],[11.10526,56.37683],[10.94299,56.37953],[10.93412,56.19948],[10.77197,56.20202],[10.76948,56.11201],[10.60797,56.11503],[10.44667,56.11672],[10.28659,56.11868],[10.28315,56.02819],[10.44393,56.02704],[10.44177,55.75792],[10.4335,55.66935],[10.74381,55.66469],[10.74381,55.57123],[10.8969,55.57123],[10.90518,55.39539],[11.06137,55.38128],[11.0593,55.11241],[11.04586,55.03186],[11.20308,55.02475],[11.20308,55.11714],[11.0593,55.11241],[11.06137,55.38128],[11.07896,55.57123],[10.8969,55.57123],[10.92587,55.66702],[10.74381,55.66469],[10.75623,55.75792],[10.44177,55.75792],[10.44393,56.02704],[10.44667,56.11672],[10.60797,56.11503],[10.60521,56.02475],[10.92587,56.02012],[10.91971,55.93094],[11.08028,55.92792],[11.08581,56.01783],[11.7265,56.00506],[11.732,56.09521],[12.05403,56.08713],[12.06085,56.17626],[12.70235,56.15944],[12.66111,55.71143],[12.97923,55.7014],[12.96129,55.52173],[12.32687,55.54121],[12.32061,55.45137],[12.47782,55.44707],[12.47024,55.35705],[12.62697,55.35238],[12.62009,55.26326],[12.46273,55.26722],[12.45529,55.17782],[12.2987,55.18223],[12.28973,55.09236],[12.60486,55.08329],[12.5872,54.90363],[12.27666,54.9119],[12.26102,54.73316],[12.10707,54.73782],[12.08586,54.46817],[11.7795,54.47536],[11.78374,54.56548],[11.16585,54.57822],[11.17064,54.66865],[10.86172,54.6734],[10.86512,54.76347],[10.77136,54.76439],[10.77073,54.73728],[10.75514,54.73758],[10.7544,54.71957],[10.73891,54.71976],[10.73844,54.71085],[10.70745,54.7113],[10.70411,54.67567],[10.5511,54.67817],[10.55472,54.76702],[10.2424,54.77059],[10.24598,54.86047],[10.09023,54.86221],[10.08737,54.77239],[9.15558,54.77696],[9.15628,54.86754],[8.5322,54.86638],[8.53143,54.95516],[8.37439,54.95517]],[[11.45777,56.81955],[11.78492,56.81274],[11.77167,56.63328],[11.44596,56.64011],[11.45777,56.81955]],[[11.32747,57.3613],[11.31618,57.1818],[11.15087,57.18473],[11.14566,57.09496],[10.81577,57.10017],[10.82906,57.36953],[11.32747,57.3613]],[[11.58433,56.27779],[11.57829,56.18804],[11.73923,56.18458],[11.74564,56.27432],[11.58433,56.27779]],[[14.68259,55.36394],[14.83952,55.35652],[14.82638,55.26713],[15.13934,55.25174],[15.1532,55.34108],[15.30992,55.33306],[15.29572,55.24374],[15.13934,55.25174],[15.12556,55.16238],[15.28158,55.15442],[15.25356,54.97576],[14.63175,55.00625],[14.68259,55.36394]]],"terms_text":"Geodatastyrelsen og Danske Kommuner","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/dk/SDFESkrmkort.png"},{"id":"Sicily-ATA2007","name":"Sicily - Italy","type":"wms","template":"http://map.sitr.regione.sicilia.it/ArcGIS/services/WGS84_F33/Ortofoto_ATA20072008_f33/MapServer/WMSServer?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&Layers=0&STYLES=default&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[15.71165,38.25894],[15.23718,38.81938],[14.27124,38.55246],[13.15063,38.75408],[11.96411,37.97451],[12.52441,37.54022],[11.87897,36.79609],[12.49695,35.47409],[12.68921,35.46962],[14.57336,36.66401],[15.29709,36.62875],[15.39854,37.42171],[15.71165,38.25894]]]},{"id":"Siemianowice_Slaskie-buildings","name":"Siemianowice Śląskie: Buildings","type":"wms","template":"https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/png&transparent=true&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=budynki,drogi,adresy,ulice&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,19],"polygon":[[[19.03103,50.33933],[19.0316,50.35413],[19.0656,50.35373],[19.06529,50.34219],[19.06118,50.33749],[19.06069,50.31967],[19.05603,50.31975],[19.05562,50.30155],[19.06432,50.3015],[19.06366,50.27175],[19.04379,50.27179],[19.04375,50.27478],[19.0213,50.27505],[19.02156,50.28398],[19.01027,50.28856],[18.98791,50.28871],[18.98822,50.3022],[18.98143,50.30226],[18.98213,50.33977],[19.03103,50.33933]]],"terms_text":"Urząd Miasta Siemianowice Śląskie"},{"id":"Siemianowice_Slaskie-aerial_image","name":"Siemianowice Śląskie: Orthophotomap (aerial image)","type":"wms","template":"https://siemianowice.geoportal2.pl/map/wms/wms.php?FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=ortofotomapa&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","zoomExtent":[0,23],"polygon":[[[19.03103,50.33933],[19.0316,50.35413],[19.0656,50.35373],[19.06529,50.34219],[19.06118,50.33749],[19.06069,50.31967],[19.05603,50.31975],[19.05562,50.30155],[19.06432,50.3015],[19.06366,50.27175],[19.04379,50.27179],[19.04375,50.27478],[19.0213,50.27505],[19.02156,50.28398],[19.01027,50.28856],[18.98791,50.28871],[18.98822,50.3022],[18.98143,50.30226],[18.98213,50.33977],[19.03103,50.33933]]],"terms_text":"Urząd Miasta Siemianowice Śląskie"},{"id":"sc2012","name":"SIG Santa Catarina OrtoRGB 2012","type":"wms","template":"http://sigsc.sc.gov.br/sigserver/SIGSC/wms?LAYERS=OrtoRGB-Landsat-2012&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[-48.62488,-26.91624],[-48.62416,-26.83409],[-48.56163,-26.83412],[-48.56165,-26.74919],[-48.62675,-26.74918],[-48.62715,-26.73276],[-48.64126,-26.733],[-48.64174,-26.70912],[-48.62414,-26.70913],[-48.62418,-26.50079],[-48.57099,-26.50077],[-48.57155,-26.47415],[-48.55418,-26.47381],[-48.5545,-26.45736],[-48.56155,-26.45747],[-48.56161,-26.41746],[-48.4991,-26.41747],[-48.49909,-26.25081],[-48.43664,-26.25079],[-48.43661,-26.20752],[-48.4601,-26.20751],[-48.46195,-26.1242],[-48.56161,-26.12419],[-48.56163,-25.95753],[-48.62411,-25.95753],[-48.62411,-25.94507],[-48.68838,-25.94607],[-48.6884,-25.95752],[-49.25089,-25.95752],[-49.2509,-25.9992],[-49.31339,-25.9992],[-49.31338,-26.0825],[-49.37591,-26.0825],[-49.37591,-26.12419],[-49.50093,-26.12418],[-49.50092,-26.16586],[-49.68661,-26.16585],[-49.68661,-26.12417],[-49.74907,-26.08246],[-49.74908,-26.04084],[-49.8116,-26.04085],[-49.81159,-25.99918],[-49.93657,-25.99915],[-49.93661,-25.98244],[-50.00091,-25.98288],[-50.00094,-25.99915],[-50.31338,-25.99916],[-50.31342,-26.04083],[-50.37411,-26.04084],[-50.3741,-25.9992],[-50.49914,-25.99918],[-50.49911,-25.98414],[-50.62593,-25.98452],[-50.62595,-26.04084],[-50.6884,-26.04161],[-50.68845,-26.12416],[-50.75094,-26.12414],[-50.75095,-26.20752],[-51.12595,-26.20747],[-51.12595,-26.24913],[-51.18848,-26.24918],[-51.31344,-26.33245],[-51.31347,-26.62414],[-51.4366,-26.62415],[-51.43659,-26.56476],[-51.62409,-26.5641],[-51.62411,-26.5408],[-51.99907,-26.5408],[-52.06158,-26.49911],[-52.06158,-26.45747],[-52.12408,-26.45749],[-52.12406,-26.41579],[-52.37407,-26.4158],[-52.37409,-26.39133],[-52.56156,-26.3894],[-52.56158,-26.37415],[-52.62408,-26.37417],[-52.62409,-26.33247],[-53.12408,-26.33247],[-53.1241,-26.31707],[-53.1618,-26.3165],[-53.16136,-26.29082],[-53.18656,-26.29083],[-53.24907,-26.24911],[-53.24906,-26.23919],[-53.31159,-26.23824],[-53.3741,-26.22882],[-53.43845,-26.22777],[-53.43843,-26.24914],[-53.5616,-26.24916],[-53.56159,-26.23983],[-53.65501,-26.23814],[-53.65623,-26.29263],[-53.67011,-26.31684],[-53.68846,-26.33242],[-53.70322,-26.3741],[-53.70929,-26.38449],[-53.7098,-26.39568],[-53.70619,-26.40722],[-53.70721,-26.45927],[-53.71438,-26.46168],[-53.71476,-26.48118],[-53.73047,-26.49913],[-53.73146,-26.54081],[-53.75096,-26.5408],[-53.75095,-26.62417],[-53.7602,-26.62414],[-53.76125,-26.6675],[-53.75098,-26.66751],[-53.75096,-26.74298],[-53.72737,-26.7434],[-53.72133,-26.74905],[-53.72141,-26.75093],[-53.74571,-26.75943],[-53.74612,-26.77704],[-53.71948,-26.77755],[-53.72084,-26.83416],[-53.70047,-26.83414],[-53.70277,-26.93108],[-53.71168,-26.93091],[-53.71224,-26.95557],[-53.751,-26.95479],[-53.75092,-26.99915],[-53.76467,-26.99915],[-53.8037,-27.03751],[-53.80454,-27.07258],[-53.80809,-27.07249],[-53.80862,-27.09613],[-53.8269,-27.09577],[-53.82762,-27.12414],[-53.84644,-27.12413],[-53.84765,-27.17014],[-53.83506,-27.18932],[-53.83536,-27.20054],[-53.68847,-27.20284],[-53.68849,-27.22789],[-53.43654,-27.23246],[-53.43655,-27.16751],[-53.37598,-27.16751],[-53.37601,-27.23352],[-53.24905,-27.23564],[-53.24905,-27.20922],[-53.06344,-27.20918],[-53.06345,-27.2334],[-52.81348,-27.23685],[-52.81346,-27.27653],[-52.75096,-27.27732],[-52.75096,-27.29249],[-52.4385,-27.29252],[-52.43848,-27.32689],[-52.37603,-27.32753],[-52.37599,-27.3342],[-52.25098,-27.33418],[-52.25099,-27.34669],[-52.18655,-27.34728],[-52.18657,-27.33419],[-52.12598,-27.3342],[-52.12599,-27.36413],[-52.02979,-27.36489],[-52.03036,-27.42442],[-51.97534,-27.42479],[-51.97603,-27.50088],[-51.93845,-27.50085],[-51.93845,-27.54252],[-51.68846,-27.54247],[-51.68847,-27.55742],[-51.59903,-27.5579],[-51.59923,-27.59481],[-51.56351,-27.59498],[-51.56348,-27.62586],[-51.50088,-27.62586],[-51.50095,-27.66754],[-51.43937,-27.6675],[-51.43954,-27.70932],[-51.37597,-27.7095],[-51.37601,-27.75089],[-51.31349,-27.7509],[-51.31346,-27.79253],[-51.18847,-27.79251],[-51.18848,-27.87586],[-51.12598,-27.87586],[-51.12597,-27.91752],[-51.06348,-27.9175],[-51.06347,-27.95919],[-51.00095,-28.00086],[-50.9385,-28.00086],[-50.93849,-28.16755],[-50.81346,-28.16752],[-50.81345,-28.29253],[-50.75096,-28.29251],[-50.68845,-28.33418],[-50.68849,-28.41754],[-50.626,-28.41752],[-50.56352,-28.44094],[-50.43848,-28.44051],[-50.43847,-28.45917],[-50.37597,-28.45921],[-50.37598,-28.47554],[-50.18844,-28.47454],[-50.18849,-28.51143],[-50.12398,-28.51104],[-50.12402,-28.50086],[-49.87597,-28.50085],[-49.87601,-28.5142],[-49.81347,-28.51369],[-49.81347,-28.58255],[-49.83003,-28.58251],[-49.82951,-28.62597],[-49.8759,-28.66572],[-50.001,-28.74915],[-50.001,-29.04083],[-50.03319,-29.04081],[-50.03219,-29.14711],[-50.12602,-29.14774],[-50.12598,-29.16579],[-50.13613,-29.16581],[-50.1885,-29.19623],[-50.1885,-29.31905],[-50.1422,-29.31873],[-50.14208,-29.33422],[-50.126,-29.33418],[-50.12599,-29.36238],[-49.99906,-29.36153],[-49.99904,-29.24031],[-49.93848,-29.23986],[-49.93851,-29.25087],[-49.87601,-29.25087],[-49.876,-29.30098],[-49.82262,-29.30052],[-49.82227,-29.33419],[-49.81347,-29.33422],[-49.81354,-29.3411],[-49.68654,-29.33991],[-49.68651,-29.29255],[-49.62399,-29.29252],[-49.62398,-29.25085],[-49.56149,-29.25083],[-49.56145,-29.16749],[-49.49901,-29.16746],[-49.49902,-29.08419],[-49.4365,-29.08418],[-49.43651,-29.04251],[-49.37405,-29.04248],[-49.37402,-28.9592],[-49.31153,-28.95917],[-49.31152,-28.91749],[-49.24898,-28.9175],[-49.24897,-28.87582],[-49.18655,-28.87585],[-49.18653,-28.83414],[-49.12402,-28.83418],[-49.12401,-28.7925],[-49.06149,-28.79247],[-49.06146,-28.75084],[-48.99903,-28.75085],[-48.99903,-28.70919],[-48.93658,-28.70918],[-48.93658,-28.66752],[-48.87405,-28.66751],[-48.87404,-28.62585],[-48.74912,-28.62585],[-48.74912,-28.54254],[-48.68656,-28.54253],[-48.68658,-28.33417],[-48.62408,-28.33416],[-48.62406,-28.08418],[-48.5616,-28.08418],[-48.56159,-27.95919],[-48.49905,-27.95916],[-48.49904,-27.91581],[-48.56157,-27.9158],[-48.5616,-27.87584],[-48.49902,-27.87586],[-48.49902,-27.83422],[-48.43657,-27.83418],[-48.43661,-27.62583],[-48.37406,-27.62585],[-48.37405,-27.50086],[-48.31157,-27.50086],[-48.31153,-27.24913],[-48.43657,-27.24913],[-48.43654,-27.20916],[-48.37402,-27.2092],[-48.37405,-27.1658],[-48.43656,-27.1658],[-48.43656,-27.12415],[-48.49906,-27.12413],[-48.49907,-27.08667],[-48.50022,-27.08666],[-48.50031,-27.08247],[-48.5616,-27.08248],[-48.56159,-27.04252],[-48.49906,-27.04252],[-48.49906,-26.99913],[-48.56156,-26.99913],[-48.56157,-26.91579],[-48.62488,-26.91624]]],"terms_url":"http://sigsc.sds.sc.gov.br/download/termo_sigsc.pdf","terms_text":"Sistema de Informações Geográficas - Governo de Santa Catarina"},{"id":"SIGIP-2012","name":"SIGIP - Orthophoto 2012","type":"tms","template":"https://osmdata.asitvd.ch/tiles/sigip2012/{zoom}/{x}/{y}.png","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[6.71057,46.54396],[6.72968,46.54408],[6.72995,46.52605],[6.71085,46.52596],[6.71113,46.50796],[6.6922,46.50788],[6.6923,46.49883],[6.63531,46.49847],[6.63488,46.52547],[6.65381,46.52558],[6.65361,46.54358],[6.69163,46.54384],[6.69155,46.55284],[6.71047,46.55293],[6.71057,46.54396]]],"terms_url":"https://www.sigip.ch/","terms_text":"SIGIP"},{"id":"Singapore-Landlot","name":"Singapore Landlot","type":"wms","template":"https://mapservices.onemap.sg/mapproxy/service?LAYERS=singapore_landlot_wmts&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","zoomExtent":[9,22],"polygon":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"terms_url":"https://www.onemap.sg/legal/opendatalicence.html","terms_text":"©OneMap Singapore ODL v1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png"},{"id":"Singapore-OneMap","name":"Singapore OneMap","type":"wms","template":"https://mapservices.onemap.sg/mapproxy/service?LAYERS=singapore_3414_wms&STYLES=&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","zoomExtent":[10,22],"polygon":[[[103.564,1.189],[103.7453,1.12465],[104.1284,1.28255],[104.08035,1.3457],[104.1229,1.49123],[103.6615,1.49123],[103.564,1.189]]],"terms_url":"https://www.onemap.sg/legal/opendatalicence.html","terms_text":"©OneMap Singapore ODL v1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/sg/OM2_logo.png"},{"id":"Slovakia-Historic-Maps","name":"Slovakia Historic Maps","type":"tms","template":"https://tms.freemap.sk/historicke/{zoom}/{x}/{y}.png","zoomExtent":[0,12],"polygon":[[[16.81969,47.49272],[16.81969,49.50303],[22.83883,49.50303],[22.83883,47.49272],[16.81969,47.49272]]],"icon":"https://raw.githubusercontent.com/FreemapSlovakia/freemap-v3-react/master/src/images/freemap-logo-small.png"},{"id":"skoterleder","name":"Snowmobile map Sweden","type":"tms","template":"https://tiles.skoterleder.org/tiles/{zoom}/{x}/{y}.png","zoomExtent":[5,14],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[23.87328,65.21069],[30.14647,65.19226],[30.19042,67.62596],[29.43236,69.62651],[27.93822,70.14037],[20.73119,69.2756],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://skoterleder.org/","terms_text":"© Skoterleder.org","description":"Snowmobile trails","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Sweden_road_sign_D9.svg/200px-Sweden_road_sign_D9.svg.png"},{"id":"sollentuna-orto","name":"Sollentuna Orthophoto","type":"wms","template":"https://kartor.sollentuna.se/bios/wms/site/web/WMS_ORTOFOTO2016?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=p_40137&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[5,20],"polygon":[[[17.82184,59.46941],[17.83167,59.47526],[17.8624,59.48153],[17.86669,59.49238],[17.88883,59.49199],[17.90668,59.48502],[17.91149,59.4987],[17.92325,59.49857],[17.99483,59.46218],[18.00796,59.44385],[18.0114,59.42709],[18.00608,59.39988],[17.97934,59.39224],[17.9096,59.42561],[17.91355,59.43521],[17.89793,59.43836],[17.89158,59.42412],[17.87733,59.42709],[17.86772,59.45293],[17.84291,59.45398],[17.84369,59.46078],[17.82184,59.46941]]],"terms_url":"https://www.sollentuna.se/","terms_text":"© Solentuna municipality","best":true,"description":"Orthophotos from the municipality of Sollentuna 2016, open data","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Sollentuna_kommunvapen_-_Riksarkivet_Sverige.png/207px-Sollentuna_kommunvapen_-_Riksarkivet_Sverige.png"},{"id":"Soskut_Pusztazamor_Tarnok_Diosd_orto_2017","name":"Sóskút, Pusztazámor, Tárnok, Diósd ortophoto 2017","type":"tms","template":"http://adam.openstreetmap.hu/mapproxy/tiles/1.0.0/Soskut-Tarnok-Pusztazamor-Diosd/mercator/{zoom}/{x}/{y}.png","endDate":"2017-03-01T00:00:00.000Z","startDate":"2017-03-01T00:00:00.000Z","zoomExtent":[11,20],"polygon":[[[18.79273,47.37079],[18.79194,47.37048],[18.79139,47.37063],[18.79011,47.37176],[18.78916,47.37345],[18.78722,47.37566],[18.78603,47.37765],[18.78498,47.37905],[18.7837,47.38032],[18.78267,47.38195],[18.7814,47.38368],[18.77934,47.38713],[18.77666,47.3894],[18.76472,47.3967],[18.7617,47.39966],[18.75631,47.40328],[18.75837,47.40653],[18.7588,47.40776],[18.762,47.41217],[18.76304,47.41315],[18.76593,47.41471],[18.77041,47.41766],[18.77247,47.41809],[18.77248,47.4203],[18.8086,47.44041],[18.81742,47.43539],[18.82092,47.43572],[18.82804,47.43755],[18.83021,47.43526],[18.83585,47.43754],[18.84049,47.43346],[18.84765,47.43572],[18.851,47.43281],[18.869,47.43961],[18.87361,47.43597],[18.87499,47.43342],[18.87386,47.43248],[18.87604,47.42797],[18.8605,47.423],[18.86621,47.41798],[18.87243,47.41086],[18.8663,47.40773],[18.86964,47.40471],[18.86777,47.40207],[18.86509,47.40052],[18.87081,47.39838],[18.86772,47.39699],[18.86992,47.39655],[18.87649,47.39478],[18.87749,47.39495],[18.87867,47.39462],[18.88358,47.38996],[18.88291,47.38967],[18.88539,47.3853],[18.87748,47.38339],[18.88181,47.37605],[18.87914,47.37393],[18.88638,47.36923],[18.88206,47.36773],[18.87973,47.36641],[18.8747,47.36252],[18.87282,47.36137],[18.87028,47.36063],[18.86688,47.35853],[18.86234,47.35637],[18.85567,47.35199],[18.84874,47.34728],[18.83192,47.33841],[18.82497,47.34258],[18.8162,47.34925],[18.81079,47.35357],[18.80823,47.356],[18.80645,47.35854],[18.80708,47.35902],[18.80635,47.36021],[18.80465,47.36175],[18.80381,47.36335],[18.80055,47.36545],[18.79988,47.36617],[18.79416,47.36975],[18.79273,47.37079]],[[18.91871,47.40938],[18.91826,47.40998],[18.92067,47.41156],[18.9251,47.41372],[18.93473,47.41917],[18.94063,47.42241],[18.94982,47.41938],[18.95155,47.4175],[18.9569,47.41923],[18.9577,47.41878],[18.95755,47.41435],[18.96211,47.40507],[18.96266,47.40118],[18.96316,47.39903],[18.95446,47.39673],[18.95276,47.39526],[18.95202,47.39362],[18.95119,47.39356],[18.94692,47.39799],[18.94411,47.39845],[18.94161,47.39869],[18.93735,47.39633],[18.93617,47.39683],[18.93122,47.4],[18.9312,47.40023],[18.92924,47.40205],[18.92561,47.40605],[18.92466,47.40635],[18.92293,47.40926],[18.91871,47.40938]]],"terms_url":"http://fototerkep.hu","terms_text":"Fototerkep.hu","best":true,"description":"5 cm resolution bald image of 4 settlement"},{"id":"South_Africa-CD_NGI-Aerial","name":"South Africa CD:NGI Aerial","type":"tms","template":"http://{switch:a,b,c}.aerial.openstreetmap.org.za/ngi-aerial/{zoom}/{x}/{y}.jpg","zoomExtent":[0,22],"polygon":[[[17.83968,-32.79834],[17.88935,-32.69728],[18.00364,-32.69822],[18.09917,-32.74853],[18.28987,-32.55266],[18.29302,-32.04871],[18.10545,-31.6455],[17.85293,-31.3444],[17.548,-30.90217],[17.40445,-30.63747],[17.24937,-30.39917],[16.9937,-29.65436],[16.7988,-29.19437],[16.54941,-28.84159],[16.44987,-28.69188],[16.4491,-28.55158],[16.60026,-28.48257],[16.75141,-28.4487],[16.74622,-28.2459],[16.88551,-28.04729],[16.99295,-28.0244],[17.05297,-28.02571],[17.10076,-28.03388],[17.20115,-28.09305],[17.20263,-28.23284],[17.24746,-28.23382],[17.2508,-28.19889],[17.35119,-28.19759],[17.35156,-28.24427],[17.40158,-28.24524],[17.41491,-28.34898],[17.40083,-28.548],[17.4527,-28.54897],[17.45121,-28.64951],[17.49836,-28.68721],[17.60282,-28.683],[17.64997,-28.69679],[17.65259,-28.73815],[17.80139,-28.73815],[17.99943,-28.75606],[18.00027,-28.79562],[18.15745,-28.87181],[18.50638,-28.87181],[18.61536,-28.82959],[18.90875,-28.82775],[19.1047,-28.94885],[19.19691,-28.93785],[19.24301,-28.85162],[19.23149,-28.80296],[19.25873,-28.70099],[19.44315,-28.69732],[19.55003,-28.49583],[19.69673,-28.49399],[19.69882,-28.44794],[19.85076,-28.44333],[19.84971,-28.40278],[19.99536,-28.39909],[19.98937,-24.74979],[20.29167,-24.91923],[20.47246,-25.15017],[20.65324,-25.45294],[20.73326,-25.6802],[20.8281,-25.89635],[20.84292,-26.21585],[20.65028,-26.48409],[20.65324,-26.82049],[21.08891,-26.84693],[21.67277,-26.839],[21.7765,-26.66963],[21.97211,-26.64314],[22.28034,-26.32747],[22.57078,-26.1334],[22.77528,-25.67752],[23.00052,-25.27619],[23.46583,-25.27351],[23.88372,-25.59737],[24.2364,-25.6134],[24.60391,-25.78966],[25.1107,-25.73894],[25.50784,-25.68554],[25.64418,-25.48238],[25.84193,-24.78054],[25.84664,-24.75385],[26.39285,-24.63329],[26.47391,-24.56533],[26.509,-24.48424],[26.58619,-24.40758],[26.73006,-24.30145],[26.85674,-24.24995],[26.85744,-24.10269],[26.92155,-23.8991],[26.93183,-23.84619],[26.97148,-23.69943],[27.00061,-23.63676],[27.0578,-23.60526],[27.13605,-23.52034],[27.33396,-23.39738],[27.51441,-23.35939],[27.59581,-23.20855],[27.80986,-23.0995],[27.88285,-23.06205],[27.93829,-22.94965],[28.04076,-22.82551],[28.20568,-22.65529],[28.33972,-22.56394],[28.49061,-22.5607],[28.61088,-22.54002],[28.82818,-22.45502],[28.92853,-22.42323],[28.95941,-22.30901],[29.01626,-22.20834],[29.23241,-22.16935],[29.35312,-22.18429],[29.6549,-22.11864],[29.77771,-22.1362],[29.9293,-22.18494],[30.11668,-22.28303],[30.25634,-22.29148],[30.30336,-22.33952],[30.50618,-22.30576],[30.83743,-22.28498],[31.00586,-22.30771],[31.18342,-22.32329],[31.29306,-22.36746],[31.56806,-23.19034],[31.55683,-23.44308],[31.69311,-23.61752],[31.71197,-23.74114],[31.77747,-23.88006],[31.88863,-23.94811],[31.91444,-24.17467],[31.99483,-24.30409],[32.01667,-24.4406],[32.00773,-24.65366],[32.01964,-24.91407],[32.03552,-25.08498],[32.01964,-25.38214],[31.99285,-25.44938],[31.99979,-25.51657],[32.00575,-25.6079],[32.00575,-25.66248],[31.93627,-25.84037],[31.98094,-25.95465],[31.86878,-26.00373],[31.41621,-25.72777],[31.32291,-25.74386],[31.25046,-25.82965],[31.1393,-25.91627],[31.11647,-25.99124],[30.96561,-26.26658],[30.89217,-26.32797],[30.85346,-26.40356],[30.82269,-26.44888],[30.80226,-26.52407],[30.80384,-26.80821],[30.90209,-26.78075],[30.91003,-26.84895],[30.98249,-26.90826],[30.97653,-27.00292],[31.00344,-27.04416],[31.15433,-27.19804],[31.50156,-27.31112],[31.97002,-27.31112],[31.97002,-27.12047],[31.97697,-27.05066],[32.00025,-26.79839],[32.10698,-26.79846],[32.31145,-26.84795],[32.89999,-26.85161],[32.88609,-26.9817],[32.70943,-27.47854],[32.62407,-27.77751],[32.5814,-28.07479],[32.53872,-28.2288],[32.42756,-28.50216],[32.36404,-28.59457],[32.07026,-28.84698],[31.98788,-28.90695],[31.77648,-28.96949],[31.46385,-29.28593],[31.35963,-29.38543],[31.16808,-29.63074],[31.06486,-29.78935],[31.05345,-29.84705],[31.06699,-29.86403],[31.04555,-29.9502],[30.95186,-30.00339],[30.86518,-30.10241],[30.72447,-30.3925],[30.35563,-30.93089],[30.09724,-31.24583],[29.86731,-31.43043],[29.74094,-31.50147],[29.48131,-31.69787],[28.89432,-32.28989],[28.54971,-32.58946],[28.14365,-32.83207],[28.07487,-32.94169],[27.84509,-33.08287],[27.3758,-33.38607],[26.88054,-33.6459],[26.59169,-33.74808],[26.45273,-33.79358],[26.20675,-33.75489],[26.00779,-33.7224],[25.80555,-33.75243],[25.75111,-33.80065],[25.65291,-33.85436],[25.65291,-33.94698],[25.71958,-34.00401],[25.72028,-34.05112],[25.55089,-34.06315],[25.35046,-34.05026],[25.28106,-34.00203],[25.04763,-33.99946],[24.95472,-34.00436],[24.94966,-34.10104],[24.87704,-34.15065],[24.87629,-34.20053],[24.85326,-34.21896],[24.76453,-34.20179],[24.50014,-34.20033],[24.34867,-34.11638],[24.19888,-34.1019],[23.99634,-34.05144],[23.80175,-34.05243],[23.74936,-34.01119],[23.49735,-34.00901],[23.41552,-34.04346],[23.41543,-34.11404],[22.90009,-34.0993],[22.84124,-34.05479],[22.64703,-34.05026],[22.64598,-34.00728],[22.57002,-34.00641],[22.50505,-34.06459],[22.252,-34.06459],[22.22213,-34.10147],[22.16212,-34.1057],[22.17124,-34.15218],[22.15769,-34.21809],[22.00156,-34.21722],[21.9497,-34.322],[21.86115,-34.40071],[21.56147,-34.40201],[21.5468,-34.36612],[21.50174,-34.36699],[21.5007,-34.40201],[21.41949,-34.44652],[21.19787,-34.44782],[21.09882,-34.39913],[21.00337,-34.37539],[20.89319,-34.39971],[20.89766,-34.4854],[20.74468,-34.48281],[20.5042,-34.48626],[20.25272,-34.70148],[20.08035,-34.83619],[19.99233,-34.83791],[19.89907,-34.82758],[19.89383,-34.7936],[19.5973,-34.79618],[19.39297,-34.64202],[19.28771,-34.64048],[19.28614,-34.59866],[19.34744,-34.52445],[19.32853,-34.45344],[19.098,-34.44998],[19.07256,-34.38024],[19.00235,-34.35256],[18.95206,-34.39494],[18.7975,-34.39364],[18.79842,-34.10164],[18.50175,-34.10153],[18.49995,-34.36169],[18.44773,-34.362],[18.44799,-34.35227],[18.39744,-34.3514],[18.39717,-34.3023],[18.35657,-34.30056],[18.34793,-34.20204],[18.29721,-34.19503],[18.29511,-33.99371],[18.33745,-33.99141],[18.34766,-33.84924],[18.34793,-33.78155],[18.41247,-33.74488],[18.36155,-33.65016],[18.2992,-33.58559],[18.21668,-33.44887],[18.13899,-33.39741],[17.94735,-33.16026],[17.88552,-33.05757],[17.84859,-32.96685],[17.83968,-32.85073],[17.83968,-32.79834]]],"best":true},{"id":"South-Tyrol-DSM_2013","name":"South Tyrol DSM Hillshade 2013 (0.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DSM_Hillshade_SolarTirol_3857&STYLES=DSM_Hillshade_SolarTirol_3857&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DSM)"},{"id":"South-Tyrol-DSM_2013_2_5m","name":"South Tyrol DSM Hillshade 2013 (2.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DSM-2p5m_Hillshade&STYLES=DSM-2p5m_Hillshade&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DSM)"},{"id":"South-Tyrol-DTM_2013","name":"South Tyrol DTM Hillshade 2013 (0.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DTM_Hillshade_SolarTirol_3857&STYLES=DTM_Hillshade_SolarTirol_3857&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DTM"},{"id":"South-Tyrol-DTM_2013_2_5m","name":"South Tyrol DTM Hillshade 2013 (2.5 m)","type":"wms","template":"http://geoservices.buergernetz.bz.it/geoserver/p_bz-elevation/ows?LAYERS=DTM-2p5m_Hillshade&STYLES=DTM-2p5m_Hillshade&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","description":"Schummerung errechnet aus dem DTM"},{"id":"South-Tyrol-Orthofoto2011-20cm","name":"South Tyrol Orthofoto 2011 (highres)","type":"wms","template":"https://geoservices.buergernetz.bz.it/geoserver/ows?SERVICE=WMS&FORMAT=image/jpeg&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=P_BZ_OF_2011_EPSG3857,P_BZ_OF_2011_20cm_EPSG3857&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0","description":"Orthophoto of South Tyrol from 2011 with up to 20cm resolution (larger valleys)"},{"id":"South-Tyrol-Orthofoto2014","name":"South Tyrol Orthofoto 2014","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[11.71495,46.51227],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.61936,46.43957],[11.62508,46.43957],[11.62508,46.44797],[11.63349,46.44587],[11.63769,46.45846],[11.64399,46.45846],[11.6608,46.44587],[11.66711,46.44587],[11.66711,46.47525],[11.69442,46.47735],[11.69652,46.48575],[11.70913,46.49624],[11.70913,46.50254],[11.71333,46.50254],[11.71495,46.51227]],[[11.61435,46.41535],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20644,46.4156],[11.20485,46.3997],[11.17754,46.3997],[11.17543,46.3871],[11.16703,46.38081],[11.16703,46.36821],[11.16283,46.36821],[11.16283,46.29895],[11.12501,46.29895],[11.12291,46.25488],[11.13131,46.25278],[11.12711,46.24858],[11.16283,46.24858],[11.16283,46.215],[11.24898,46.2129],[11.25108,46.2234],[11.2889,46.2234],[11.2889,46.24019],[11.3015,46.25278],[11.30991,46.25278],[11.31201,46.24858],[11.33722,46.25068],[11.34143,46.26747],[11.34563,46.26747],[11.34773,46.25698],[11.35613,46.24858],[11.41707,46.25278],[11.41917,46.32414],[11.49271,46.32204],[11.48851,46.33044],[11.49901,46.32834],[11.50111,46.34723],[11.52423,46.34723],[11.53894,46.34513],[11.53894,46.32834],[11.55995,46.32414],[11.58306,46.34932],[11.58306,46.37241],[11.60407,46.37241],[11.60617,46.38291],[11.61458,46.38291],[11.62508,46.3934],[11.62508,46.41229],[11.61435,46.41535]],[[11.20663,46.41745],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.96285,46.47718],[10.96952,46.45217],[10.98423,46.45217],[10.98843,46.44587],[10.99894,46.44587],[11.01154,46.42068],[11.04096,46.42068],[11.08088,46.43537],[11.08298,46.47525],[11.15232,46.47525],[11.18804,46.48365],[11.19014,46.47525],[11.20695,46.47315],[11.20485,46.44587],[11.19855,46.44167],[11.19435,46.42698],[11.19014,46.42698],[11.19014,46.42068],[11.20695,46.42068],[11.20663,46.41745]],[[10.47433,46.55501],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.46952,46.62628],[10.47785,46.61797],[10.47785,46.59069],[10.47365,46.59069],[10.47155,46.5676],[10.46314,46.55501],[10.47433,46.55501]],[[10.46925,46.62643],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43626,46.79843],[10.43373,46.81106],[10.42532,46.80686],[10.42532,46.79847],[10.42112,46.79847],[10.41692,46.78587],[10.41692,46.75229],[10.3938,46.7376],[10.3896,46.72081],[10.3854,46.72081],[10.3791,46.69353],[10.3791,46.66834],[10.3833,46.66414],[10.3812,46.64735],[10.3896,46.64525],[10.3938,46.63056],[10.42532,46.62846],[10.44843,46.63476],[10.46925,46.62643]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog/","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 3.0"},{"id":"South-Tyrol-Orthofoto-2014-2015","name":"South Tyrol Orthofoto 2014/2015","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_OF_2014_2015_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","endDate":"2015-11-01T00:00:00.000Z","startDate":"2014-07-01T00:00:00.000Z","zoomExtent":[0,18],"polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0","best":true},{"id":"South-Tyrol-Orthofoto-2017","name":"South Tyrol Orthofoto 2017","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=p_bz-orthoimagery:P_BZ_OF_2017_EPSG3857&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","endDate":"2017-10-01T00:00:00.000Z","startDate":"2017-07-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[11.37851,46.30096],[11.38516,46.30241],[11.39571,46.30998],[11.39893,46.30771],[11.40047,46.30835],[11.39922,46.30922],[11.39641,46.31043],[11.39752,46.3114],[11.39759,46.31529],[11.40432,46.32512],[11.41239,46.3245],[11.41531,46.32568],[11.41956,46.32559],[11.45325,46.33531],[11.4632,46.35096],[11.48003,46.35439],[11.47676,46.36434],[11.52706,46.3557],[11.54972,46.34515],[11.55762,46.34977],[11.5638,46.38164],[11.59641,46.3872],[11.61907,46.4252],[11.62525,46.47109],[11.64705,46.48445],[11.63315,46.49875],[11.63847,46.5017],[11.66456,46.49804],[11.70632,46.51086],[11.70362,46.62244],[11.39677,46.62433],[11.38982,46.61077],[11.38124,46.61248],[11.3742,46.6172],[11.3736,46.62351],[11.33308,46.62445],[11.3324,46.66169],[11.28639,46.65415],[11.27008,46.72256],[11.18099,46.71845],[11.1779,46.73045],[11.15988,46.72433],[11.1331,46.72321],[11.11404,46.71539],[11.03371,46.70832],[10.99869,46.69655],[10.92607,46.69632],[10.89226,46.68431],[10.81879,46.67159],[10.76729,46.6697],[10.74531,46.66452],[10.54001,46.64237],[10.5098,46.63247],[10.46448,46.63341],[10.49143,46.61407],[10.47546,46.56476],[10.47787,46.55756],[10.47049,46.54257],[10.45916,46.5408],[10.45057,46.52863],[10.45504,46.50879],[10.48199,46.49296],[10.48851,46.49567],[10.55065,46.49071],[10.57966,46.47369],[10.60181,46.4692],[10.62138,46.44779],[10.63992,46.44555],[10.67116,46.45252],[10.67888,46.4485],[10.6933,46.45737],[10.71562,46.46104],[10.74188,46.48386],[10.76385,46.48539],[10.77913,46.4705],[10.7975,46.4446],[10.86205,46.43656],[10.88333,46.45099],[10.91183,46.44401],[10.93191,46.45335],[10.93809,46.4666],[10.95491,46.47014],[10.96075,46.4744],[10.96556,46.48232],[10.98753,46.48362],[11.00573,46.47735],[11.01002,46.47121],[11.02993,46.46116],[11.03525,46.453],[11.03903,46.45276],[11.04177,46.44708],[11.04675,46.44661],[11.05482,46.45016],[11.06409,46.4459],[11.0677,46.44294],[11.07336,46.44129],[11.07731,46.44354],[11.07868,46.44862],[11.06787,46.46577],[11.0622,46.48835],[11.0586,46.48917],[11.05001,46.50643],[11.03525,46.51399],[11.04366,46.51741],[11.05619,46.51635],[11.0828,46.53171],[11.08829,46.50312],[11.10512,46.49615],[11.11044,46.49709],[11.13035,46.4822],[11.15919,46.48917],[11.1858,46.50855],[11.20794,46.49473],[11.21241,46.48208],[11.21962,46.46021],[11.20717,46.41668],[11.21524,46.4065],[11.20073,46.37204],[11.20597,46.36695],[11.19472,46.3647],[11.19275,46.36043],[11.20348,46.34515],[11.18923,46.3234],[11.17816,46.30319],[11.16477,46.29731],[11.16271,46.29044],[11.14391,46.28812],[11.13928,46.28415],[11.15001,46.27991],[11.15838,46.26834],[11.16653,46.2619],[11.17477,46.25914],[11.18301,46.25864],[11.18599,46.25755],[11.19397,46.25715],[11.19719,46.2581],[11.19996,46.25626],[11.1958,46.25092],[11.19508,46.249],[11.19183,46.24901],[11.19168,46.25283],[11.18932,46.25395],[11.18704,46.25405],[11.1826,46.25209],[11.18116,46.24865],[11.19484,46.24838],[11.20756,46.24807],[11.20683,46.21877],[11.2073,46.21773],[11.20923,46.21948],[11.24657,46.23109],[11.25433,46.23872],[11.25966,46.24089],[11.26365,46.24199],[11.27442,46.25184],[11.27652,46.25181],[11.28266,46.2565],[11.28631,46.26107],[11.29429,46.26086],[11.30313,46.25929],[11.31042,46.26599],[11.30888,46.2676],[11.31145,46.26872],[11.31485,46.27341],[11.31334,46.27943],[11.31025,46.2816],[11.31073,46.28367],[11.31575,46.28596],[11.32317,46.29224],[11.32291,46.29319],[11.33167,46.29479],[11.33201,46.29708],[11.3333,46.2982],[11.33566,46.29776],[11.33815,46.29951],[11.34017,46.29838],[11.3375,46.29432],[11.33858,46.29195],[11.33583,46.29067],[11.34158,46.28207],[11.34562,46.28023],[11.3475,46.28026],[11.356,46.2765],[11.35733,46.27409],[11.35729,46.27252],[11.35664,46.2697],[11.35823,46.26582],[11.36527,46.26469],[11.36986,46.26255],[11.373,46.26398],[11.37763,46.26226],[11.38857,46.26166],[11.39308,46.26499],[11.39789,46.26472],[11.39565,46.27282],[11.38917,46.27863],[11.38643,46.27988],[11.38505,46.2813],[11.38441,46.28705],[11.38093,46.29127],[11.37887,46.29221],[11.37102,46.29324],[11.35862,46.29613],[11.35896,46.29889],[11.36025,46.3009],[11.36458,46.30191],[11.36797,46.30072],[11.36815,46.3017],[11.37851,46.30096]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0","best":true},{"id":"South-Tyrol-Topomap","name":"South Tyrol Topomap","type":"tms","template":"https://geoservices.buergernetz.bz.it/geoserver/gwc/service/wmts/?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=P_BZ_BASEMAP_TOPO&STYLE=default&TILEMATRIXSET=GoogleMapsCompatible&TILEMATRIX=GoogleMapsCompatible%3A{zoom}&TILEROW={y}&TILECOL={x}&FORMAT=image%2Fjpeg","zoomExtent":[0,20],"polygon":[[[10.38615,46.68821],[10.39201,46.69016],[10.40215,46.70624],[10.41274,46.70821],[10.41622,46.71479],[10.4168,46.71847],[10.39934,46.73435],[10.43464,46.75356],[10.44107,46.75413],[10.44011,46.77149],[10.42123,46.78861],[10.42845,46.79755],[10.43851,46.79869],[10.44925,46.80462],[10.45602,46.81635],[10.45438,46.82221],[10.4583,46.82478],[10.45513,46.83059],[10.45906,46.83548],[10.46483,46.83624],[10.46229,46.8413],[10.46987,46.84933],[10.46819,46.8553],[10.47838,46.86013],[10.48372,46.85543],[10.49628,46.85305],[10.49931,46.84857],[10.52124,46.84653],[10.5527,46.8511],[10.55795,46.84695],[10.55264,46.8408],[10.55536,46.84087],[10.58883,46.85125],[10.59502,46.85829],[10.60936,46.8597],[10.62441,46.86558],[10.64858,46.86655],[10.66787,46.87651],[10.67297,46.87138],[10.69112,46.86861],[10.69786,46.86339],[10.69508,46.85308],[10.70594,46.84786],[10.71763,46.84795],[10.72333,46.83892],[10.75621,46.83383],[10.76481,46.82409],[10.76387,46.81971],[10.75239,46.81387],[10.74506,46.80223],[10.7276,46.79709],[10.73122,46.78925],[10.75722,46.78624],[10.77744,46.79149],[10.78678,46.79735],[10.81439,46.77662],[10.82479,46.77472],[10.83129,46.78138],[10.84112,46.78282],[10.85354,46.77506],[10.86845,46.77313],[10.86993,46.7669],[10.88294,46.76393],[10.88962,46.76529],[10.8951,46.77092],[10.90527,46.76911],[10.92299,46.7764],[10.92821,46.77408],[10.94388,46.77648],[10.97522,46.77361],[10.97932,46.77014],[10.99475,46.76804],[11.01397,46.77317],[11.02328,46.76715],[11.0346,46.79428],[11.04234,46.801],[11.03792,46.80562],[11.05633,46.80928],[11.07279,46.82092],[11.08171,46.82252],[11.0762,46.83384],[11.06887,46.83793],[11.07303,46.84345],[11.06988,46.85348],[11.08742,46.87927],[11.09961,46.88922],[11.09538,46.89178],[11.09795,46.89844],[11.0946,46.91247],[11.10792,46.91706],[11.10804,46.92632],[11.11418,46.93234],[11.13851,46.92865],[11.16322,46.94091],[11.16642,46.94479],[11.16114,46.94979],[11.1637,46.96677],[11.17598,46.96367],[11.18658,46.97062],[11.19527,46.97152],[11.20418,46.96877],[11.20688,46.96403],[11.22047,46.97025],[11.24139,46.9708],[11.24865,46.97517],[11.25582,46.97535],[11.26272,46.98169],[11.27662,46.98168],[11.28762,46.98699],[11.30709,46.98525],[11.3205,46.99345],[11.33765,46.98606],[11.34516,46.99169],[11.35932,46.99154],[11.37697,46.98025],[11.38324,46.97168],[11.40465,46.96609],[11.43929,46.97601],[11.45134,46.99294],[11.46803,46.99582],[11.46859,47.003],[11.47831,47.01201],[11.50238,47.01073],[11.50313,47.00808],[11.51366,47.00595],[11.51679,47.00091],[11.53381,46.99233],[11.53846,46.98519],[11.55297,46.99149],[11.57663,46.99657],[11.58,47.00277],[11.58879,47.00641],[11.59901,47.00657],[11.60944,47.01207],[11.62697,47.01437],[11.63629,47.00383],[11.66542,46.99304],[11.6885,46.99658],[11.71226,46.99416],[11.72897,46.97322],[11.74698,46.97013],[11.76411,46.97412],[11.78106,46.99342],[11.81526,46.991],[11.83564,46.99417],[11.84396,47.0025],[11.85192,47.0014],[11.86722,47.01252],[11.87393,47.01136],[11.8794,47.01714],[11.89137,47.01728],[11.91627,47.03422],[11.9329,47.03864],[11.94688,47.03464],[11.95457,47.04374],[11.96773,47.04158],[11.97912,47.0511],[11.98587,47.04815],[11.99534,47.05064],[12.02037,47.04821],[12.02968,47.05127],[12.03353,47.0583],[12.04276,47.06228],[12.07543,47.0605],[12.08035,47.06951],[12.09308,47.07791],[12.10329,47.07931],[12.11867,47.07445],[12.13561,47.08171],[12.15125,47.08049],[12.15997,47.08267],[12.18589,47.09322],[12.2278,47.08302],[12.24228,47.06892],[12.23786,47.0644],[12.21821,47.05795],[12.2182,47.04483],[12.20552,47.02595],[12.18048,47.02414],[12.16423,47.01782],[12.14786,47.02357],[12.12723,47.01218],[12.12285,47.00662],[12.1322,46.99339],[12.12974,46.98593],[12.13977,46.982],[12.13808,46.96514],[12.13328,46.96292],[12.13882,46.95764],[12.15927,46.95133],[12.1702,46.93758],[12.15414,46.91654],[12.14675,46.91413],[12.16205,46.908],[12.16959,46.91121],[12.19154,46.90682],[12.20106,46.8965],[12.2022,46.88806],[12.21663,46.87517],[12.22147,46.88084],[12.23125,46.88146],[12.2345,46.88919],[12.24162,46.89192],[12.27486,46.88512],[12.27979,46.87921],[12.27736,46.87319],[12.29326,46.86566],[12.2912,46.85704],[12.29733,46.84455],[12.30833,46.84137],[12.30726,46.83271],[12.285,46.81503],[12.29383,46.8027],[12.28905,46.79948],[12.28889,46.79427],[12.28232,46.79153],[12.28539,46.7839],[12.30943,46.78603],[12.35837,46.77583],[12.37036,46.74163],[12.38475,46.71745],[12.40283,46.70811],[12.41103,46.70701],[12.41522,46.70163],[12.42862,46.6997],[12.42943,46.69567],[12.44268,46.68979],[12.47501,46.68756],[12.4795,46.67969],[12.43473,46.66714],[12.40648,46.64167],[12.38115,46.64183],[12.37944,46.63733],[12.3915,46.62765],[12.38577,46.62154],[12.35939,46.61829],[12.34465,46.62376],[12.34034,46.63022],[12.33578,46.62732],[12.3172,46.62876],[12.31785,46.62355],[12.30802,46.61811],[12.28413,46.61623],[12.26982,46.62003],[12.25931,46.62809],[12.24502,46.62326],[12.24198,46.61586],[12.21241,46.60918],[12.20444,46.59836],[12.19228,46.59321],[12.19261,46.62059],[12.1818,46.6192],[12.17117,46.63275],[12.16062,46.63574],[12.1511,46.63215],[12.1436,46.6327],[12.13739,46.64122],[12.12342,46.64475],[12.10949,46.65204],[12.10609,46.65783],[12.09345,46.66123],[12.08826,46.66638],[12.07985,46.66686],[12.07038,46.67386],[12.07173,46.66064],[12.06686,46.65364],[12.07479,46.64329],[12.06837,46.63997],[12.06495,46.62121],[12.05448,46.61778],[12.05318,46.60989],[12.04613,46.60716],[12.05043,46.60016],[12.04763,46.58357],[12.03665,46.57668],[12.0266,46.55871],[12.02189,46.55791],[11.99941,46.53208],[11.99411,46.53345],[11.98704,46.54417],[11.96633,46.54363],[11.95094,46.53869],[11.94719,46.52879],[11.94147,46.52689],[11.93294,46.52631],[11.9121,46.532],[11.8904,46.52175],[11.85192,46.51682],[11.82849,46.50783],[11.82334,46.51315],[11.82391,46.52141],[11.81086,46.53146],[11.79385,46.52023],[11.79189,46.51322],[11.76157,46.50503],[11.74317,46.50391],[11.73202,46.50877],[11.71935,46.50916],[11.71524,46.51245],[11.69889,46.50218],[11.6672,46.49647],[11.64515,46.49743],[11.63849,46.50051],[11.63495,46.49486],[11.64297,46.49346],[11.65174,46.48271],[11.64536,46.47189],[11.64179,46.47439],[11.62679,46.4708],[11.62987,46.46377],[11.61882,46.44325],[11.62143,46.42539],[11.60161,46.39731],[11.60307,46.38924],[11.5932,46.38265],[11.56489,46.38018],[11.55878,46.35076],[11.55249,46.34418],[11.54423,46.34483],[11.53837,46.35015],[11.52445,46.35502],[11.47969,46.36277],[11.48052,46.3551],[11.46322,46.34922],[11.45556,46.33396],[11.42105,46.32441],[11.40517,46.32387],[11.39865,46.31426],[11.39994,46.30709],[11.39569,46.3083],[11.38188,46.30052],[11.36088,46.29906],[11.36078,46.29682],[11.38256,46.29177],[11.3871,46.28143],[11.39609,46.27423],[11.39862,46.264],[11.38756,46.26029],[11.37347,46.2629],[11.36836,46.26135],[11.35783,46.26481],[11.35495,46.27564],[11.33912,46.28306],[11.33379,46.29049],[11.33471,46.2962],[11.3129,46.28256],[11.31737,46.27303],[11.30645,46.25786],[11.29124,46.2604],[11.24743,46.22933],[11.20622,46.2187],[11.18267,46.22496],[11.17077,46.23806],[11.17994,46.24434],[11.18351,46.25269],[11.18935,46.25354],[11.19448,46.2461],[11.20029,46.25566],[11.16604,46.26129],[11.14885,46.27904],[11.13725,46.28336],[11.14293,46.28934],[11.15847,46.29059],[11.16439,46.2986],[11.1761,46.30346],[11.1847,46.32104],[11.18894,46.32151],[11.18696,46.32673],[11.1942,46.33016],[11.20204,46.34212],[11.19001,46.35984],[11.19263,46.36578],[11.20393,46.36765],[11.19792,46.37232],[11.21275,46.39804],[11.21345,46.40675],[11.20565,46.4166],[11.21026,46.4206],[11.20347,46.42682],[11.21416,46.43556],[11.21634,46.44255],[11.20903,46.45293],[11.21419,46.45807],[11.21736,46.45731],[11.21886,46.46199],[11.21626,46.47277],[11.20939,46.481],[11.20876,46.49346],[11.19608,46.50241],[11.1924,46.501],[11.18686,46.50734],[11.18002,46.49823],[11.17014,46.49635],[11.16095,46.4878],[11.12934,46.48058],[11.1103,46.49643],[11.10449,46.4948],[11.08812,46.50128],[11.08173,46.53021],[11.05915,46.51508],[11.03795,46.51357],[11.05006,46.50784],[11.05773,46.49235],[11.06278,46.4894],[11.06894,46.46619],[11.07625,46.45487],[11.0778,46.44569],[11.07301,46.44042],[11.05394,46.44849],[11.0414,46.44569],[11.02817,46.46116],[11.00952,46.46917],[11.00462,46.47607],[10.98695,46.48289],[10.96543,46.48103],[10.95791,46.46983],[10.93819,46.46578],[10.9325,46.45831],[10.93332,46.4528],[10.91305,46.44284],[10.89161,46.44366],[10.88324,46.44995],[10.88093,46.44579],[10.87162,46.4438],[10.86174,46.43509],[10.85113,46.43817],[10.80034,46.44185],[10.78906,46.45164],[10.77835,46.47112],[10.76934,46.47609],[10.76463,46.4848],[10.75906,46.48547],[10.74422,46.48333],[10.71753,46.46022],[10.69667,46.4573],[10.68293,46.44846],[10.66821,46.45122],[10.63303,46.44309],[10.61439,46.45098],[10.60128,46.46139],[10.59995,46.46766],[10.57672,46.47237],[10.55875,46.48187],[10.54986,46.49123],[10.53685,46.49062],[10.52657,46.49425],[10.49366,46.49719],[10.48141,46.49337],[10.45714,46.5096],[10.45124,46.53083],[10.45814,46.54215],[10.47056,46.54377],[10.46954,46.54856],[10.47617,46.55749],[10.47321,46.56701],[10.48305,46.5777],[10.48575,46.58921],[10.48221,46.59199],[10.48576,46.59805],[10.48291,46.60512],[10.49055,46.61394],[10.44632,46.63989],[10.40935,46.63389],[10.40011,46.63648],[10.39873,46.6455],[10.38946,46.65862],[10.39057,46.67089],[10.3803,46.68399],[10.38615,46.68821]]],"terms_url":"https://geoservices.buergernetz.bz.it/geokatalog","terms_text":"© Autonomen Provinz Bozen/Provincia Autonoma di Bolzano","description":"Topographical basemap of South Tyrol"},{"id":"SPW2009","name":"SPW(allonie) 2009-2010 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2009_2010/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2010-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2012","name":"SPW(allonie) 2012-2013 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2012_2013/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2015","name":"SPW(allonie) 2015 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2015/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2016","name":"SPW(allonie) 2016 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2016/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW2018","name":"SPW(allonie) 2018 aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_2018/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW_ORTHO_LAST","name":"SPW(allonie) most recent aerial imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/IMAGERIE/ORTHO_LAST/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPW_PICC","name":"SPW(allonie) PICC numerical imagery","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/TOPOGRAPHIE/PICC_VDIFF/MapServer/WmsServer?SERVICE=WMS&TRANSPARENT=FALSE&STYLES=&LAYERS=1,3,4,5,7,9,10,11,12,14,15,16,17,19,20,21,23,24,25,26,27,28,29&FORMAT=image/png&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"SPWrelief2014","name":"SPW(allonie) shaded relief","type":"wms","template":"https://geoservices.wallonie.be/arcgis/services/RELIEF/WALLONIE_MNT_2013_2014_HILLSHADE/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[5.78257,49.87573],[5.73919,49.83362],[5.75516,49.79146],[5.78839,49.79665],[5.91064,49.66249],[5.84857,49.59723],[5.87102,49.57599],[5.81857,49.54638],[5.66079,49.55362],[5.61108,49.50603],[5.55603,49.52928],[5.47051,49.49737],[5.45708,49.56703],[5.37522,49.62333],[5.31486,49.61137],[5.33243,49.65263],[5.26851,49.69657],[5.16628,49.69303],[4.99753,49.80006],[4.85164,49.79345],[4.84754,49.86806],[4.89013,49.90893],[4.79117,49.958],[4.87762,50.15374],[4.82418,50.16932],[4.70207,50.09556],[4.69441,49.99625],[4.44551,49.93722],[4.30589,49.96829],[4.19746,49.9546],[4.1352,50.01508],[4.22825,50.07842],[4.19682,50.13519],[4.12714,50.1355],[4.2052,50.27347],[4.16262,50.28896],[4.13538,50.25784],[4.02795,50.3584],[3.88574,50.32701],[3.84578,50.35323],[3.74546,50.35005],[3.70994,50.30316],[3.65756,50.37076],[3.65552,50.4617],[3.60586,50.49632],[3.4993,50.48921],[3.51992,50.52362],[3.47439,50.53368],[3.37698,50.49109],[3.28634,50.52793],[3.26104,50.70131],[3.20602,50.71139],[3.17839,50.75609],[3.30562,50.75466],[3.36077,50.70962],[3.45439,50.77072],[3.64047,50.72242],[3.67752,50.77062],[3.75857,50.78045],[3.77568,50.74789],[3.8798,50.75146],[3.9097,50.69245],[4.05868,50.69439],[4.14853,50.72834],[4.2467,50.6894],[4.46355,50.75511],[4.52399,50.72724],[4.59727,50.76359],[4.63445,50.74272],[4.64309,50.79755],[4.76014,50.80544],[4.92545,50.74275],[5.00339,50.76594],[5.07039,50.70649],[5.16508,50.6957],[5.16984,50.72257],[5.30912,50.71802],[5.35029,50.74629],[5.47863,50.72352],[5.68786,50.81193],[5.68225,50.75651],[5.7707,50.75132],[5.81963,50.71396],[5.88333,50.70992],[5.89217,50.75518],[5.96561,50.76107],[6.04045,50.74546],[6.03959,50.71833],[6.11066,50.72299],[6.18169,50.62383],[6.26953,50.62519],[6.17812,50.54153],[6.22658,50.49432],[6.35036,50.48854],[6.34298,50.38033],[6.40542,50.32331],[6.30647,50.32019],[6.27889,50.26734],[6.17377,50.23165],[6.19232,50.18203],[6.147,50.17775],[6.13779,50.12985],[6.10245,50.17055],[5.96368,50.17263],[5.96133,50.13136],[5.89532,50.11216],[5.81968,50.01329],[5.83578,49.97892],[5.77502,49.9608],[5.73577,49.89684],[5.78257,49.87573]],[[2.99943,50.81035],[2.93719,50.79361],[2.96,50.7735],[2.92247,50.75729],[2.84203,50.75153],[2.86315,50.70826],[2.91065,50.69409],[2.94001,50.74543],[3.02932,50.77896],[2.99943,50.81035]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/SPW.png"},{"id":"ssb-sentrum","name":"SSB City Centres overlay","type":"wms","template":"https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_193&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.ssb.no/arealsentrum/","terms_text":"© SSB","description":"Downtown areas with significant commercial and service activities.","icon":"https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png","overlay":true},{"id":"ssb-tettsteder","name":"SSB Urban Areas overlay","type":"wms","template":"https://ogc.ssb.no/wms.ashx?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=layer_198&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[0,22],"polygon":[[[31.90425,70.43681],[28.47652,71.32896],[23.6865,71.25143],[16.80906,70.07308],[11.16207,67.52539],[9.97554,64.81158],[4.21871,62.145],[4.37254,59.1872],[6.17431,57.8915],[7.93212,57.73936],[10.77758,58.86491],[11.7224,58.76251],[12.72216,60.11415],[13.05175,61.34935],[12.52439,63.61699],[14.23826,63.98561],[15.11717,65.90166],[18.69871,68.37491],[20.06101,68.26126],[21.00584,68.78415],[25.24656,68.3506],[26.93845,69.8472],[28.76219,69.61121],[28.5864,68.8556],[31.06931,69.51915],[31.90425,70.43681]]],"terms_url":"https://www.ssb.no/beftett","terms_text":"© SSB","description":"Human settlements of at least 200 people with less than 200 meters between households","icon":"https://www.fosterhjemsforening.no/wp-content/uploads/2015/06/SSB_logo1.png","overlay":true},{"id":"Bern-bern2016-wms","name":"Stadt Bern 10cm (2016)","type":"wms","template":"https://map.bern.ch/wms/OpenData/proxy.php?LAYERS=luftbild_2016&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[7.29431,46.92376],[7.29827,46.92747],[7.30616,46.93095],[7.30433,46.93623],[7.30686,46.94037],[7.32464,46.94328],[7.32845,46.94641],[7.34141,46.94608],[7.34385,46.94737],[7.34346,46.94879],[7.35136,46.94855],[7.35056,46.95021],[7.35309,46.95193],[7.3582,46.95118],[7.3685,46.95662],[7.37151,46.96073],[7.37503,46.95983],[7.37851,46.96147],[7.38062,46.96547],[7.38321,46.9663],[7.3938,46.96693],[7.40005,46.96918],[7.40829,46.96869],[7.42817,46.9738],[7.43271,46.97269],[7.43536,46.96843],[7.43785,46.96843],[7.44125,46.97679],[7.44569,46.97479],[7.44838,46.97564],[7.4477,46.97901],[7.44405,46.97807],[7.44127,46.97982],[7.45067,46.99015],[7.45221,46.98968],[7.45465,46.97782],[7.46804,46.97583],[7.47079,46.97],[7.47019,46.96741],[7.47816,46.97118],[7.48452,46.97016],[7.48613,46.9679],[7.48579,46.96468],[7.47847,46.9629],[7.48029,46.96068],[7.47893,46.95878],[7.47978,46.9566],[7.47701,46.95446],[7.48405,46.94999],[7.48339,46.9452],[7.49556,46.93962],[7.49351,46.93766],[7.4908,46.93876],[7.4895,46.93687],[7.47667,46.93695],[7.47811,46.93625],[7.4747,46.93392],[7.47535,46.93299],[7.4691,46.92924],[7.47077,46.9255],[7.45857,46.93484],[7.44764,46.93043],[7.43542,46.93497],[7.4338,46.93312],[7.43764,46.93074],[7.41469,46.93682],[7.41384,46.93157],[7.40708,46.93038],[7.40806,46.92563],[7.40213,46.9242],[7.40148,46.92119],[7.38757,46.93045],[7.38231,46.92728],[7.38002,46.92989],[7.38087,46.93241],[7.37487,46.93143],[7.37489,46.93271],[7.36807,46.93239],[7.36831,46.93043],[7.36041,46.92859],[7.36056,46.9272],[7.33878,46.92454],[7.33937,46.91967],[7.32746,46.91903],[7.32692,46.9236],[7.32437,46.92519],[7.30823,46.92229],[7.29431,46.92376]]],"terms_url":"https://www.bern.ch/themen/planen-und-bauen/geodaten-und-plane/nutzungsbedingungengeodaten/nutzungsbedingungen","terms_text":"Geodaten Stadt Bern"},{"id":"Bern-bern2020-wms","name":"Stadt Bern 10cm (2020)","type":"wms","template":"https://map.bern.ch/wms/OpenData/proxy.php?LAYERS=luftbild_2020&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[7.29506,46.99148],[7.49657,46.99148],[7.49657,46.92032],[7.29506,46.92032],[7.29506,46.99148]]],"terms_url":"https://www.bern.ch/themen/planen-und-bauen/geodaten-und-plane/nutzungsbedingungengeodaten/nutzungsbedingungen","terms_text":"Geodaten Stadt Bern","best":true},{"id":"SG-2018-WMS","name":"Stadt St. Gallen","type":"wms","template":"https://map.stadt.sg.ch/cgi-bin/mapserv.exe?map=d:data/wms_op_stadt_sg.map&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_SG&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:4326","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[4,21],"polygon":[[[9.29495,47.4188],[9.30293,47.42309],[9.3054,47.42254],[9.30939,47.42124],[9.30716,47.41791],[9.30484,47.41656],[9.30475,47.41636],[9.30664,47.41509],[9.30763,47.41549],[9.3086,47.41483],[9.31042,47.41557],[9.31229,47.41591],[9.31387,47.41688],[9.31495,47.41718],[9.3172,47.41707],[9.3231,47.41822],[9.32347,47.41862],[9.32535,47.4188],[9.32756,47.42006],[9.32868,47.42002],[9.3308,47.42092],[9.33295,47.42305],[9.3345,47.42383],[9.33767,47.42457],[9.33791,47.42555],[9.33932,47.42595],[9.34226,47.42491],[9.34359,47.42632],[9.34492,47.42671],[9.3484,47.42723],[9.34911,47.42813],[9.35138,47.42906],[9.35267,47.42916],[9.35432,47.43003],[9.35537,47.43096],[9.35627,47.43298],[9.35816,47.43404],[9.35921,47.4342],[9.36001,47.43392],[9.36052,47.43434],[9.36057,47.43533],[9.35939,47.43717],[9.35681,47.43944],[9.35737,47.44086],[9.35821,47.44193],[9.35776,47.44302],[9.35784,47.44362],[9.35851,47.44417],[9.35939,47.4443],[9.36016,47.44423],[9.361,47.44379],[9.36164,47.44423],[9.36121,47.44513],[9.36175,47.44569],[9.36318,47.44568],[9.36447,47.44508],[9.36687,47.44466],[9.36694,47.445],[9.36608,47.44562],[9.36456,47.44713],[9.36475,47.44771],[9.36748,47.44867],[9.36876,47.44867],[9.37091,47.44997],[9.37288,47.44986],[9.37557,47.44855],[9.37411,47.44957],[9.37323,47.45086],[9.37363,47.45153],[9.3734,47.45218],[9.37413,47.4526],[9.37561,47.45218],[9.37683,47.45257],[9.37769,47.45318],[9.38134,47.45369],[9.38277,47.45142],[9.3822,47.44925],[9.38464,47.45005],[9.3888,47.45105],[9.38949,47.45092],[9.39095,47.44983],[9.39194,47.44584],[9.38986,47.44473],[9.39097,47.44424],[9.39125,47.44365],[9.39333,47.44295],[9.39376,47.44363],[9.39374,47.44436],[9.39353,47.44485],[9.394,47.44581],[9.3935,47.44607],[9.39376,47.44681],[9.3946,47.44825],[9.39539,47.44842],[9.39599,47.45023],[9.39704,47.45225],[9.40082,47.45183],[9.40161,47.45282],[9.40372,47.45272],[9.404,47.45322],[9.40595,47.45334],[9.40745,47.45251],[9.40771,47.452],[9.40835,47.45251],[9.40973,47.45227],[9.41367,47.45256],[9.41603,47.45141],[9.41561,47.45093],[9.41694,47.4501],[9.41728,47.45032],[9.41771,47.45154],[9.41934,47.45304],[9.42091,47.45241],[9.42151,47.45273],[9.4235,47.45272],[9.42479,47.45341],[9.42588,47.45328],[9.42621,47.45245],[9.42822,47.45205],[9.43039,47.45073],[9.43048,47.44733],[9.43226,47.44498],[9.43213,47.44384],[9.43088,47.4433],[9.42996,47.44156],[9.43075,47.44028],[9.43185,47.43816],[9.43125,47.43758],[9.43202,47.43696],[9.43202,47.43648],[9.4346,47.43601],[9.43582,47.43478],[9.43614,47.43363],[9.43545,47.43156],[9.4346,47.43116],[9.43354,47.42981],[9.43402,47.42907],[9.43399,47.42862],[9.43522,47.42709],[9.43582,47.42588],[9.43597,47.42434],[9.43565,47.42399],[9.43567,47.42309],[9.4353,47.42261],[9.43605,47.42054],[9.43468,47.42023],[9.43475,47.41965],[9.43382,47.41928],[9.43417,47.41862],[9.43391,47.41822],[9.43151,47.41778],[9.43187,47.41657],[9.43264,47.41556],[9.43288,47.4146],[9.43372,47.41429],[9.43391,47.41389],[9.43288,47.41226],[9.43129,47.41101],[9.43058,47.41091],[9.4308,47.41046],[9.43065,47.40933],[9.42824,47.40824],[9.42681,47.40687],[9.42741,47.40499],[9.42172,47.40506],[9.42155,47.4024],[9.41365,47.40249],[9.41359,47.39982],[9.40166,47.4],[9.40153,47.39726],[9.39316,47.39746],[9.39329,47.40012],[9.3893,47.40016],[9.38949,47.40295],[9.37745,47.40317],[9.37756,47.4058],[9.37003,47.40596],[9.3699,47.40316],[9.362,47.40335],[9.3619,47.40066],[9.34997,47.40089],[9.34982,47.39815],[9.34095,47.39832],[9.33969,47.39873],[9.33857,47.3995],[9.3381,47.3996],[9.33754,47.39925],[9.3369,47.39873],[9.33578,47.39857],[9.33516,47.39861],[9.33413,47.39932],[9.33372,47.39906],[9.33293,47.39892],[9.33222,47.39896],[9.33128,47.40005],[9.33005,47.40032],[9.32913,47.40077],[9.32812,47.4006],[9.32748,47.40062],[9.32632,47.40032],[9.326,47.4],[9.3252,47.39979],[9.32475,47.39989],[9.32377,47.39916],[9.32173,47.39855],[9.32098,47.39777],[9.31924,47.39742],[9.31909,47.39698],[9.31821,47.39672],[9.31774,47.39678],[9.31701,47.39719],[9.31671,47.39723],[9.31126,47.39626],[9.31083,47.39604],[9.30911,47.39592],[9.30849,47.39594],[9.30748,47.39572],[9.30724,47.39543],[9.30609,47.39523],[9.30493,47.39507],[9.30295,47.39465],[9.30154,47.3946],[9.30001,47.39492],[9.2978,47.39566],[9.29634,47.39584],[9.2948,47.39565],[9.29351,47.39594],[9.29319,47.3965],[9.29343,47.39723],[9.29456,47.39826],[9.29506,47.39819],[9.29606,47.39919],[9.29482,47.39973],[9.29458,47.40053],[9.29169,47.40199],[9.29113,47.4026],[9.29068,47.40378],[9.29098,47.40496],[9.29134,47.40629],[9.29381,47.40907],[9.29446,47.40915],[9.29669,47.40882],[9.29609,47.41273],[9.29495,47.4188]]],"terms_url":"https://daten.stadt.sg.ch/","terms_text":"Orthofoto 2018 Stadt St. Gallen","best":true,"description":"7.5 cm orthophoto from 2018"},{"id":"Uster-2008","name":"Stadt Uster Orthophoto 2008 10cm","type":"tms","template":"https://mapproxy.osm.ch/tiles/uster/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2008-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","zoomExtent":[6,21],"polygon":[[[8.68,47.32],[8.74,47.32],[8.74,47.365],[8.68,47.365],[8.68,47.32]]],"terms_text":"Stadt Uster Vermessung Orthophoto 2008","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Zuerich-zh_luftbild2011-tms","name":"Stadt Zürich Luftbild 2011","type":"tms","template":"https://mapproxy.osm.ch/tiles/zh_luftbild2011/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[4,21],"polygon":[[[8.44624,47.44143],[8.63178,47.43968],[8.62895,47.31377],[8.44381,47.31555],[8.44624,47.44143]]],"terms_text":"Stadt Zürich Luftbild 2011","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"Zuerich-zh_luftbild2013-wms","name":"Stadt Zürich Luftbild 2013","type":"wms","template":"https://www.ogd.stadt-zuerich.ch/wms/geoportal/Orthofoto_2013_Stadt_Zuerich___Fruehling?FORMAT=image/jpeg&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=OP_2013_STZH.tif&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,21],"polygon":[[[8.44624,47.44143],[8.63178,47.43968],[8.62895,47.31377],[8.44381,47.31555],[8.44624,47.44143]]],"terms_text":"Stadt Zürich Open Government Data"},{"id":"Zuerich-zh_uebersichtsplan-tms","name":"Stadt Zürich Übersichtsplan","type":"tms","template":"https://mapproxy.osm.ch/tiles/zh_uebersichtsplan/EPSG900913/{zoom}/{x}/{y}.png?origin=nw","zoomExtent":[3,21],"polygon":[[[8.45788,47.44582],[8.57392,47.44477],[8.57362,47.43124],[8.60266,47.43096],[8.60231,47.41746],[8.6318,47.41716],[8.6295,47.33628],[8.57162,47.33679],[8.57152,47.32292],[8.54236,47.3236],[8.54212,47.31013],[8.48418,47.31062],[8.48478,47.33762],[8.45582,47.33787],[8.45609,47.35135],[8.42713,47.35161],[8.42864,47.43259],[8.45745,47.43231],[8.45788,47.44582]]],"terms_text":"Stadt Zürich Open Government Data","description":"This imagery is provided via a proxy operated by https://sosm.ch/"},{"id":"stamen-terrain-background","name":"Stamen Terrain","type":"tms","template":"https://stamen-tiles-{switch:a,b,c,d}.a.ssl.fastly.net/terrain-background/{zoom}/{x}/{y}.jpg","zoomExtent":[4,18],"terms_url":"http://maps.stamen.com/#terrain","terms_text":"Map tiles by Stamen Design, under CC BY 3.0. Data by OpenStreetMap, under ODbL","icon":"https://stamen.com/wp-content/uploads/2016/07/stamen_compass_rose_small-01.png"},{"id":"stockholm-orto","name":"Stockholm Orthophoto","type":"wms","template":"https://openmap.stockholm.se/bios/wms/app/baggis/web/WMS_STHLM_ORTOFOTO_2016?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=p_1002630&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[5,21],"polygon":[[[17.8755,59.2625],[17.94411,59.27307],[18.09551,59.22603],[18.19582,59.22786],[18.20297,59.24886],[18.12538,59.30779],[18.1786,59.32566],[18.09876,59.3721],[18.04264,59.37816],[18.00796,59.34334],[17.93655,59.37641],[17.97483,59.40246],[17.90882,59.4417],[17.8854,59.43792],[17.88918,59.41382],[17.84077,59.38568],[17.81708,59.40054],[17.77725,59.39984],[17.75622,59.3916],[17.79899,59.36204],[17.94993,59.31121],[17.85622,59.28412],[17.8755,59.2625]]],"terms_url":"https://dataportalen.stockholm.se/dataportalen/","terms_text":"© Stockholm municipality, CC0","best":true,"description":"Orthophotos from the municipality of Stockholm 2016, CC0 license","icon":"https://upload.wikimedia.org/wikipedia/commons/thumb/4/4d/Stockholm_vapen_bra.svg/196px-Stockholm_vapen_bra.svg.png"},{"id":"Stuttgart-latest","name":"Stuttgart Luftbild Stadtmessungsamt 2017","type":"wms","template":"https://gis5.stuttgart.de/arcgis/services/1_Base/WMS_Luftbilder_aktuell/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2017-04-21T00:00:00.000Z","startDate":"2017-04-12T00:00:00.000Z","polygon":[[[9.0262,48.88138],[9.09436,48.88137],[9.0944,48.89936],[9.10812,48.89934],[9.10813,48.92635],[9.19002,48.92621],[9.19009,48.93518],[9.2583,48.93509],[9.25825,48.92608],[9.31283,48.92595],[9.31278,48.91696],[9.35372,48.91683],[9.35337,48.87188],[9.36702,48.87183],[9.36683,48.84483],[9.38045,48.84481],[9.38021,48.80884],[9.36656,48.8089],[9.36639,48.78192],[9.42079,48.78173],[9.42012,48.70079],[9.32503,48.7011],[9.32473,48.65614],[9.27043,48.65626],[9.27034,48.63831],[9.24321,48.63835],[9.24313,48.62038],[9.18887,48.62048],[9.18889,48.62947],[9.1482,48.62953],[9.14826,48.6565],[9.1347,48.65652],[9.13473,48.66552],[9.08044,48.66555],[9.08042,48.65657],[9.02612,48.65662],[9.02612,48.64761],[8.97184,48.64761],[8.9717,48.66558],[8.91751,48.66557],[8.91751,48.68355],[8.90391,48.68353],[8.90388,48.70153],[8.91747,48.70154],[8.91744,48.71054],[8.93104,48.71053],[8.93101,48.73751],[8.99899,48.73753],[8.99899,48.74652],[9.02617,48.74653],[9.02621,48.81845],[8.99897,48.81847],[8.99898,48.82745],[8.95812,48.82745],[8.95806,48.86342],[8.97171,48.86342],[8.97171,48.87242],[9.02622,48.87241],[9.0262,48.88138]]],"best":true,"icon":"https://www.stuttgart.de/favicon.ico"},{"id":"Surrey-Air_Survey","name":"Surrey Air Survey","type":"tms","template":"https://{switch:a,b,c}.surrey.aerial.openstreetmap.org.uk/layer/gb_surrey_aerial/{zoom}/{x}/{y}.png","endDate":"2009-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[8,21],"polygon":[[[-0.75248,51.08219],[-0.75952,51.08563],[-0.80143,51.14579],[-0.83989,51.14407],[-0.83577,51.18024],[-0.85295,51.20113],[-0.85227,51.20962],[-0.84952,51.2179],[-0.82669,51.24037],[-0.8121,51.24692],[-0.77365,51.24596],[-0.75442,51.23811],[-0.75408,51.23392],[-0.74464,51.23338],[-0.74307,51.28472],[-0.7515,51.30695],[-0.76644,51.3121],[-0.78206,51.32702],[-0.78154,51.33881],[-0.73743,51.37205],[-0.71923,51.37697],[-0.67958,51.3848],[-0.68078,51.39015],[-0.65314,51.39176],[-0.63014,51.39058],[-0.62911,51.39701],[-0.62344,51.39776],[-0.61314,51.42956],[-0.60025,51.44591],[-0.58671,51.44454],[-0.57624,51.4532],[-0.56268,51.45235],[-0.54774,51.447],[-0.53727,51.44486],[-0.5371,51.45267],[-0.54396,51.45459],[-0.54053,51.46989],[-0.53092,51.47609],[-0.50912,51.47448],[-0.5086,51.46957],[-0.49006,51.46828],[-0.45264,51.46069],[-0.44869,51.44293],[-0.44148,51.44186],[-0.44183,51.43694],[-0.41127,51.43801],[-0.40149,51.42795],[-0.38071,51.42624],[-0.38054,51.41617],[-0.34913,51.41382],[-0.3275,51.40375],[-0.30398,51.39904],[-0.30192,51.37547],[-0.30948,51.36969],[-0.31119,51.35297],[-0.29557,51.35415],[-0.29231,51.36733],[-0.2851,51.36808],[-0.27875,51.37719],[-0.26553,51.38372],[-0.24115,51.3848],[-0.21231,51.36283],[-0.21077,51.34986],[-0.19086,51.35029],[-0.15429,51.33388],[-0.14966,51.30577],[-0.10743,51.29665],[-0.08872,51.30996],[-0.08786,51.32208],[-0.0652,51.32154],[-0.06417,51.32648],[-0.05198,51.32637],[-0.05284,51.33463],[-0.03308,51.34309],[0.00192,51.33763],[0.01188,51.3282],[0.01393,51.29944],[0.02029,51.29944],[0.02406,51.30727],[0.03316,51.30867],[0.04552,51.30545],[0.05239,51.28774],[0.06166,51.25778],[0.06406,51.24155],[0.04621,51.21263],[0.04071,51.21091],[0.04483,51.19898],[0.04947,51.19973],[0.05582,51.19446],[0.06114,51.17907],[0.06234,51.15421],[0.05771,51.14171],[0.02046,51.13654],[-0.0446,51.13364],[-0.1567,51.13525],[-0.15721,51.129],[-0.22879,51.11834],[-0.24733,51.11834],[-0.25008,51.12114],[-0.29935,51.1137],[-0.32218,51.11198],[-0.32235,51.10584],[-0.3596,51.10196],[-0.35891,51.11133],[-0.38638,51.11176],[-0.3869,51.10625],[-0.4281,51.09472],[-0.48568,51.09516],[-0.48713,51.08723],[-0.52974,51.08654],[-0.53023,51.07899],[-0.61046,51.07655],[-0.60997,51.08067],[-0.6578,51.07922],[-0.65828,51.07434],[-0.68365,51.07075],[-0.6998,51.07083],[-0.72966,51.07449],[-0.75248,51.08219]]]},{"id":"susono_shizuoka_jp_orthophoto","name":"Susono city orthophoto","type":"tms","template":"http://tile.senmon.jpn.com/1.0.0/susono/{zoom}/{x}/{-y}.png","zoomExtent":[12,19],"polygon":[[[138.85747,35.2833],[138.85746,35.27794],[138.83993,35.27796],[138.83992,35.27254],[138.83109,35.27255],[138.83108,35.26719],[138.81337,35.26721],[138.81338,35.27262],[138.80462,35.27263],[138.80466,35.29425],[138.79592,35.29426],[138.79593,35.29974],[138.77833,35.29976],[138.77837,35.32135],[138.76959,35.32136],[138.7696,35.32679],[138.76081,35.3268],[138.76082,35.33224],[138.74343,35.33226],[138.74341,35.32154],[138.75209,35.32153],[138.75203,35.28905],[138.7608,35.28904],[138.76077,35.27281],[138.76955,35.2728],[138.76952,35.25661],[138.77822,35.2566],[138.77821,35.25117],[138.78708,35.25116],[138.78703,35.22413],[138.80451,35.22411],[138.8045,35.21861],[138.81333,35.2186],[138.81332,35.21323],[138.82205,35.21322],[138.82204,35.20776],[138.83084,35.20775],[138.83083,35.20233],[138.84839,35.2023],[138.84837,35.19688],[138.85712,35.19687],[138.8571,35.18605],[138.86589,35.18604],[138.86587,35.17521],[138.87463,35.1752],[138.87462,35.16976],[138.88334,35.16975],[138.88333,35.1643],[138.8921,35.16429],[138.89207,35.14805],[138.90949,35.14803],[138.9095,35.15343],[138.91839,35.15342],[138.91841,35.16421],[138.92719,35.1642],[138.9272,35.16951],[138.96231,35.16946],[138.96232,35.17485],[138.97993,35.17483],[138.97994,35.18017],[138.99751,35.18015],[138.99752,35.18553],[139.00634,35.18552],[139.00636,35.19624],[138.99761,35.19625],[138.99762,35.20168],[138.98895,35.20169],[138.98901,35.23415],[138.98028,35.23416],[138.98029,35.23961],[138.97161,35.23962],[138.9716,35.23426],[138.94522,35.23429],[138.94521,35.22895],[138.92761,35.22897],[138.9276,35.22362],[138.91868,35.22363],[138.91869,35.22903],[138.90993,35.22904],[138.90994,35.23449],[138.9012,35.2345],[138.90124,35.25615],[138.89248,35.25616],[138.89249,35.26158],[138.88375,35.26159],[138.88379,35.28327],[138.85747,35.2833]]],"terms_url":"https://www.geospatial.jp/ckan/dataset/susono-photo-202006","terms_text":"Susono city orthophoto","description":"The aerial photos released by Susono City as open data."},{"id":"Szeged_2011","name":"Szeged orthophoto 2011","type":"tms","template":"http://e.tile.openstreetmap.hu/szeged-2011-10cm/{zoom}/{x}/{y}.png","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[10,22],"polygon":[[[20.14599,46.22811],[20.13323,46.22904],[20.12584,46.22987],[20.12233,46.23099],[20.12085,46.23175],[20.11897,46.23351],[20.11312,46.24136],[20.11203,46.2433],[20.11157,46.245],[20.11119,46.24709],[20.11129,46.24877],[20.11159,46.25097],[20.11222,46.2528],[20.11299,46.25427],[20.11354,46.25535],[20.11477,46.2568],[20.13523,46.27685],[20.13664,46.27751],[20.13789,46.27803],[20.13939,46.27835],[20.14088,46.27846],[20.16115,46.27816],[20.16211,46.27816],[20.16359,46.2777],[20.16618,46.27615],[20.16878,46.27386],[20.16961,46.27144],[20.16959,46.27045],[20.17009,46.27044],[20.17399,46.26433],[20.17662,46.25829],[20.1948,46.25492],[20.18587,46.24481],[20.18466,46.24531],[20.17804,46.23831],[20.17818,46.23771],[20.17953,46.2371],[20.17257,46.23002],[20.16983,46.23504],[20.16877,46.23629],[20.16703,46.23785],[20.16594,46.23873],[20.16544,46.239],[20.16548,46.239],[20.16352,46.24014],[20.16021,46.2412],[20.15927,46.24153],[20.15927,46.24158],[20.15835,46.24185],[20.15495,46.24229],[20.15108,46.23515],[20.14938,46.23246],[20.14599,46.22811]]],"terms_url":"http://www.geo.u-szeged.hu","terms_text":"SZTE TFGT - University of Szeged","best":true,"description":"Inner part of Szeged"},{"id":"TW_NLSC_WMS_EMAP6","name":"Taiwan e-Map Open Data","type":"tms","template":"https://wmts.nlsc.gov.tw/wmts/EMAP6_OPENDATA/default/GoogleMapsCompatible/{zoom}/{y}/{x}","zoomExtent":[0,15],"polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw/","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"TW_NLSC_WMS_LANDSECT","name":"Taiwan Land-Section Data","type":"wms","template":"https://wms.nlsc.gov.tw/wms?LAYERS=LANDSECT&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[7,22],"polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw/","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"TW_NLSC_WMS_Village","name":"Taiwan Village Boundaries","type":"wms","template":"https://wms.nlsc.gov.tw/wms?LAYERS=Village&STYLES=&FORMAT=image/jpeg&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[6,22],"polygon":[[[121.2237,25.76997],[122.2251,26.60305],[122.9312,22.57058],[120.6771,20.72799],[118.2509,23.26265],[118.3036,23.30751],[118.1978,24.34453],[118.1036,24.36172],[118.2283,24.49486],[118.4416,24.55302],[118.6024,24.46068],[120.0474,25.38843],[119.8935,25.78169],[119.787,26.2048],[120.4578,26.53253],[121.2237,25.76997]]],"terms_url":"https://maps.nlsc.gov.tw/","terms_text":"© National Land Surveying and Mapping Center, Taiwan OGDL 1.0","icon":"https://osmlab.github.io/editor-layer-index/sources/asia/tw/Taiwane-MapOpenData.png"},{"id":"TEClines","name":"TEC bus lines","type":"wms","template":"https://geodata.tec-wl.be/arcgis/services/Lignes/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[5.40236,49.50688],[5.81984,49.54253],[6.1714,49.62089],[5.85829,49.68846],[5.7704,49.85343],[5.894,50.11832],[6.15492,50.13593],[6.39662,50.36775],[6.28126,50.46576],[6.11372,50.7933],[5.72646,50.77941],[5.70998,50.85229],[5.61385,50.80024],[5.46278,50.79677],[5.21284,50.70119],[4.94917,50.80371],[4.75966,50.80718],[4.72121,50.88869],[4.60585,50.77941],[4.48775,50.85749],[4.36964,50.85056],[4.15266,50.72728],[3.59236,50.76725],[3.29848,50.76377],[3.04579,50.80024],[2.86177,50.72728],[2.89748,50.68553],[3.0815,50.76725],[3.19685,50.68031],[3.28749,50.52691],[3.67201,50.47625],[3.68574,50.31692],[3.99062,50.27305],[4.14992,50.17465],[4.24055,50.08661],[4.15266,49.99842],[4.18562,49.96486],[4.55366,49.94542],[4.69923,50.03372],[4.81184,50.0919],[4.84206,50.01607],[4.86677,49.90475],[4.85854,49.80382],[5.08925,49.7648],[5.34743,49.60843],[5.40236,49.50688]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png","overlay":true},{"id":"TECstops","name":"TEC bus stops","type":"wms","template":"https://geodata.tec-wl.be/arcgis/services/Poteaux/MapServer/WMSServer?FORMAT=image/png&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[5.40236,49.50688],[5.81984,49.54253],[6.1714,49.62089],[5.85829,49.68846],[5.7704,49.85343],[5.894,50.11832],[6.15492,50.13593],[6.39662,50.36775],[6.28126,50.46576],[6.11372,50.7933],[5.72646,50.77941],[5.70998,50.85229],[5.61385,50.80024],[5.46278,50.79677],[5.21284,50.70119],[4.94917,50.80371],[4.75966,50.80718],[4.72121,50.88869],[4.60585,50.77941],[4.48775,50.85749],[4.36964,50.85056],[4.15266,50.72728],[3.59236,50.76725],[3.29848,50.76377],[3.04579,50.80024],[2.86177,50.72728],[2.89748,50.68553],[3.0815,50.76725],[3.19685,50.68031],[3.28749,50.52691],[3.67201,50.47625],[3.68574,50.31692],[3.99062,50.27305],[4.14992,50.17465],[4.24055,50.08661],[4.15266,49.99842],[4.18562,49.96486],[4.55366,49.94542],[4.69923,50.03372],[4.81184,50.0919],[4.84206,50.01607],[4.86677,49.90475],[4.85854,49.80382],[5.08925,49.7648],[5.34743,49.60843],[5.40236,49.50688]]],"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/TEC.png","overlay":true},{"id":"texas_naip_2012_wms","name":"Texas NAIP Imagery 2012","type":"wms","template":"https://imagery.tnris.org/server/services/NAIP/NAIP12_NCCIR_1m/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/924d3c6f-9f74-4147-8044-d4025f12eac3","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2012-10-01"},{"id":"texas_naip_2014_wms","name":"Texas NAIP Imagery 2014","type":"wms","template":"https://imagery.tnris.org/server/services/NAIP/NAIP14_NCCIR_1m/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/e7d2ccee-5288-4257-85bc-e4a2babf91ee","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2014-10-31"},{"id":"texas_naip_2016_wms","name":"Texas NAIP Imagery 2016","type":"wms","template":"https://imagery.tnris.org/server/services/NAIP/NAIP16_NCCIR_1m/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/a40c2ff9-ccac-4c76-99a1-2382c09cf716","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2016-12-15"},{"id":"texas_naip_2018_wms","name":"Texas NAIP Imagery 2018","type":"wms","template":"https://imagery.tnris.org/server/services/NAIP/NAIP18_NCCIR_60cm/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[-99.99854,34.56018],[-95.55655,33.99257],[-93.89679,33.61039],[-93.98468,32.04103],[-93.41614,31.02505],[-93.74531,29.57268],[-96.50492,28.23159],[-97.36942,26.95467],[-97.04867,25.8053],[-99.07342,26.32559],[-100.76599,29.02532],[-102.33154,29.84339],[-103.13355,28.88112],[-104.28879,29.28831],[-104.72698,29.94816],[-104.72697,30.23535],[-106.5345,31.78457],[-106.75767,31.78457],[-106.75766,32.04386],[-106.61848,32.04385],[-103.11949,32.04376],[-103.09544,36.50046],[-103.05798,36.54269],[-100.00042,36.54222],[-99.99854,34.56018]]],"terms_url":"https://data.tnris.org/collection/f1d66250-4021-47df-9fe9-9fca286b0f50","terms_text":"United States Department of Agriculture (USDA). Texas NAIP Imagery, 2018-12-31"},{"id":"US-TIGER-Roads-2017","name":"TIGER Roads 2017","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cj8dftc3q1ecn2tnx9qhwyj0c/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"US-TIGER-Roads-2018","name":"TIGER Roads 2018","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/cjo1wbulo3ub82ro1c9onlzmh/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"US-TIGER-Roads-2019","name":"TIGER Roads 2019","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/ck0dxfa7602e61cmjk7p86749/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"US-TIGER-Roads-2020","name":"TIGER Roads 2020","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/openstreetmapus/ckkumpdx506oy17s5kwdz8iz6/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcHVzIiwiYSI6ImNpcnF4Ym43dDBoOXZmYW04bWhlNWdrY2EifQ.4SFexuTUuKkZeerO3dgtmw","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.1572,68.722],[-164.8554,67.0255],[-168.0022,66.0018],[-169.0087,66.0015],[-169.0075,64.9988],[-172.5143,63.8767],[-173.8197,59.7401],[-178.0001,52.2446],[-177.9993,51.2554],[-171.4689,51.8215],[-162.4025,53.9567],[-159.0076,55.0025],[-158.0191,55.0028],[-151.9963,55.9992],[-151.5003,57.9988],[-151.5013,58.992],[-138.516,58.9953],[-138.515,57.9986],[-133.9948,54.0032],[-130.0044,54.0043],[-130.0071,57.0001],[-131.9759,56.9995],[-135.123,59.7566],[-138.0072,59.9918],[-139.1716,60.4127],[-140.9874,61.0119],[-140.9684,69.9535],[-156.1769,71.5633],[-160.4136,70.7398],[-163.0218,69.9707],[-164.9717,68.9947],[-167.1572,68.722]],[[-68.2,17.8],[-64.32,17.38],[-64.64,18.36],[-65.33,18.57],[-67.9,18.67],[-68.2,17.8]],[[146.2,15.4],[145.7,15.6],[144.2,13.2],[144.8,12.9],[146.2,15.4]],[[179.99,52.2],[172,53.5],[172,52.5],[179.99,51],[179.99,52.2]]],"description":"Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/TIGER2017RoadsOverlay.png","overlay":true},{"id":"tirol.gv.at-contourlines","name":"Tiris: contour lines","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?LAYERS=Hoehenschichtlinien_20m&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[15,22],"polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif","overlay":true},{"id":"tirol.gv.at-DGM","name":"Tiris: DGM (Terrain model)","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?LAYERS=Image_Schummerung_Gelaendemodell&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"tirol.gv.at-DOM","name":"Tiris: DOM (Surface model)","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/terrain/MapServer/WmsServer?LAYERS=Image_Schummerung_Oberflaechenmodell&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"tirol.gv.at-orthofoto","name":"Tiris: orthophoto","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?LAYERS=Image_Aktuell_RGB&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"tirol.gv.at-orthofoto-cir","name":"Tiris: orthophoto infrared","type":"wms","template":"https://gis.tirol.gv.at/arcgis/services/Service_Public/orthofoto/MapServer/WmsServer?LAYERS=Image_Aktuell_CIR&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[10.43998,47.59768],[10.47886,47.59925],[10.50277,47.58656],[10.4838,47.55979],[10.51312,47.5435],[10.57177,47.54582],[10.57004,47.56212],[10.60109,47.58074],[10.63904,47.5691],[10.70804,47.57027],[10.71149,47.54932],[10.76841,47.55048],[10.78566,47.52603],[10.89605,47.55048],[10.93572,47.5237],[10.934,47.50506],[10.89088,47.49573],[10.95125,47.49107],[10.9547,47.46776],[11.003,47.43276],[10.99092,47.40825],[11.10304,47.40475],[11.11511,47.41993],[11.20998,47.4456],[11.26863,47.44093],[11.26691,47.41059],[11.29451,47.4421],[11.33073,47.46076],[11.38248,47.45843],[11.3704,47.47592],[11.4394,47.53069],[11.467,47.51787],[11.57394,47.5237],[11.57567,47.55863],[11.59809,47.59121],[11.63431,47.60633],[11.66881,47.5947],[11.793,47.60284],[11.83958,47.59238],[11.84993,47.61098],[12.00689,47.63656],[12.03622,47.62494],[12.07761,47.62726],[12.10866,47.61912],[12.19491,47.62261],[12.15351,47.68768],[12.15868,47.7167],[12.18111,47.71206],[12.21906,47.72482],[12.24148,47.75382],[12.27253,47.7515],[12.2846,47.73178],[12.26563,47.69581],[12.33635,47.7109],[12.37602,47.69581],[12.44329,47.70277],[12.45364,47.69232],[12.45364,47.6749],[12.51057,47.63191],[12.53126,47.64586],[12.58991,47.63424],[12.57956,47.61098],[12.66581,47.5947],[12.67961,47.57492],[12.64511,47.55048],[12.66753,47.53185],[12.68478,47.50389],[12.71238,47.48175],[12.66753,47.45609],[12.64166,47.45959],[12.65028,47.44326],[12.62096,47.40709],[12.57439,47.38607],[12.55024,47.39658],[12.49159,47.37205],[12.50884,47.35102],[12.48814,47.32063],[12.43467,47.32297],[12.41397,47.30426],[12.36395,47.30894],[12.3122,47.32764],[12.2708,47.29841],[12.17766,47.29373],[12.14833,47.28437],[12.11729,47.29958],[12.09831,47.27501],[12.12591,47.25042],[12.09659,47.19771],[12.11039,47.14846],[12.14143,47.10974],[12.13799,47.08977],[12.15006,47.07568],[12.00517,47.04395],[11.92065,47.02985],[11.83095,46.99103],[11.78783,46.98633],[11.77403,46.9675],[11.73091,46.96514],[11.70676,46.98986],[11.64294,46.99456],[11.61189,47.00515],[11.53254,46.97809],[11.49287,47.00868],[11.44457,46.9675],[11.4049,46.96161],[11.34453,46.98633],[11.20309,46.9569],[11.17549,46.96161],[11.17721,46.94395],[11.14616,46.92275],[11.12546,46.92275],[11.10822,46.90389],[11.11511,46.88857],[11.08234,46.85319],[11.09614,46.8237],[11.05129,46.80245],[11.02369,46.76229],[10.91848,46.77056],[10.88398,46.75756],[10.84085,46.77292],[10.82361,46.76938],[10.79083,46.78946],[10.75633,46.77883],[10.72529,46.79064],[10.74771,46.82724],[10.69424,46.84494],[10.67354,46.86971],[10.60799,46.85319],[10.55452,46.82724],[10.52002,46.83904],[10.46827,46.83668],[10.45103,46.8815],[10.47517,46.93217],[10.41308,46.95572],[10.3941,46.98868],[10.3665,46.98044],[10.33891,46.94748],[10.32856,46.91803],[10.29751,46.91332],[10.25956,46.9251],[10.23886,46.86263],[10.16642,46.83904],[10.13537,46.8473],[10.13192,46.87207],[10.10604,46.88621],[10.09224,46.92746],[10.12502,46.95219],[10.14572,47.00044],[10.11294,47.02514],[10.15262,47.04983],[10.13019,47.06276],[10.13364,47.09095],[10.15952,47.12617],[10.20091,47.1426],[10.19229,47.20005],[10.20954,47.21294],[10.18711,47.23989],[10.20091,47.25628],[10.16814,47.2633],[10.16814,47.28086],[10.20264,47.29139],[10.24404,47.28905],[10.33373,47.32063],[10.38893,47.39074],[10.4148,47.39424],[10.4562,47.43626],[10.44758,47.48175],[10.41998,47.50506],[10.4424,47.55514],[10.41308,47.57143],[10.43998,47.59768]],[[12.4019,47.16019],[12.35705,47.13908],[12.35015,47.11208],[12.31048,47.10739],[12.25528,47.07215],[12.21388,47.05923],[12.20008,47.02632],[12.14488,47.03102],[12.11556,47.0075],[12.13626,46.95926],[12.16731,46.9357],[12.14316,46.91096],[12.18973,46.90036],[12.21733,46.86617],[12.25528,46.88386],[12.27425,46.88268],[12.2984,46.83432],[12.27598,46.82016],[12.27943,46.77765],[12.35015,46.77174],[12.3812,46.715],[12.44329,46.68425],[12.51402,46.67004],[12.56576,46.64873],[12.62958,46.65347],[12.70203,46.65347],[12.70375,46.69844],[12.72963,46.70081],[12.72273,46.73747],[12.80207,46.74929],[12.85382,46.74456],[12.90384,46.77174],[12.92799,46.75992],[12.95732,46.77647],[12.97974,46.79772],[12.89522,46.83314],[12.89522,46.84848],[12.8452,46.86381],[12.84692,46.91568],[12.7969,46.93099],[12.78828,46.94748],[12.7486,46.96867],[12.73653,46.99691],[12.78138,47.0416],[12.7624,47.051],[12.7141,47.04513],[12.71065,47.07803],[12.62268,47.12617],[12.56921,47.14142],[12.55196,47.13321],[12.52609,47.15433],[12.48297,47.16488],[12.46054,47.14846],[12.43467,47.15785],[12.41915,47.14377],[12.4019,47.16019]]],"terms_url":"https://tiris.tirol.gv.at","terms_text":"tiris.tirol.gv.at","icon":"https://static.tirol.gv.at/plainhtml/v1/tirollogo.gif"},{"id":"lu.geoportail.opendata.topo","name":"Topographical Map geoportail.lu","type":"tms","template":"https://{switch:wmts3,wmts4}.geoportail.lu/opendata/wmts/topo/GLOBAL_WEBMERCATOR_4_V3/{zoom}/{x}/{y}.png","endDate":"2010-07-20T00:00:00.000Z","startDate":"2013-07-19T00:00:00.000Z","zoomExtent":[5,20],"polygon":[[[5.96175,50.17631],[6.02627,50.18496],[6.03318,50.16395],[6.06069,50.15536],[6.07668,50.15913],[6.07824,50.17255],[6.10176,50.17199],[6.1225,50.16437],[6.1201,50.15594],[6.1277,50.14993],[6.11323,50.13739],[6.12369,50.13719],[6.14093,50.1305],[6.13555,50.11899],[6.13808,50.10263],[6.13108,50.09964],[6.13547,50.09119],[6.12194,50.09059],[6.12634,50.07817],[6.13186,50.07348],[6.12117,50.064],[6.11444,50.06139],[6.11563,50.05817],[6.12361,50.06323],[6.13661,50.04178],[6.13034,50.02975],[6.14821,50.02307],[6.13868,50.01572],[6.13594,50.01485],[6.13138,50.01905],[6.13024,50.01819],[6.13934,50.01116],[6.1517,50.01058],[6.14546,49.99689],[6.13966,49.9994],[6.13852,49.99829],[6.14218,49.99535],[6.15023,49.99518],[6.15625,49.98867],[6.17305,49.98589],[6.17348,49.98344],[6.17035,49.98376],[6.16549,49.97115],[6.17151,49.96298],[6.1763,49.962],[6.17995,49.95386],[6.18339,49.9548],[6.17983,49.96307],[6.18331,49.9686],[6.19277,49.97158],[6.19978,49.95352],[6.20707,49.95672],[6.21269,49.9514],[6.22502,49.95039],[6.22044,49.94369],[6.22824,49.93726],[6.22635,49.92766],[6.21913,49.92354],[6.22986,49.92125],[6.23603,49.91355],[6.23187,49.91064],[6.22769,49.91062],[6.23229,49.9072],[6.23381,49.90028],[6.24692,49.89535],[6.25781,49.88724],[6.26301,49.88101],[6.27646,49.87725],[6.28113,49.87957],[6.29166,49.87548],[6.2977,49.86673],[6.30989,49.87107],[6.31532,49.8673],[6.31465,49.86057],[6.32361,49.85188],[6.32158,49.8409],[6.32741,49.83673],[6.33656,49.83998],[6.33937,49.8507],[6.36465,49.85164],[6.4022,49.82098],[6.42643,49.81629],[6.42807,49.81186],[6.43097,49.81129],[6.44161,49.81547],[6.44344,49.81233],[6.45366,49.81275],[6.46454,49.81975],[6.47057,49.82385],[6.49681,49.81277],[6.50669,49.80993],[6.51155,49.80238],[6.51485,49.80513],[6.5196,49.81446],[6.52981,49.81048],[6.53225,49.80686],[6.53083,49.80116],[6.50622,49.78899],[6.51917,49.78344],[6.51105,49.77422],[6.52056,49.76818],[6.52052,49.76134],[6.50373,49.75086],[6.50263,49.73298],[6.50727,49.72938],[6.51809,49.7242],[6.51642,49.72129],[6.51176,49.72016],[6.50479,49.725],[6.49891,49.72639],[6.49558,49.72443],[6.50712,49.71655],[6.50788,49.71215],[6.5046,49.71227],[6.42714,49.66237],[6.4399,49.66025],[6.44251,49.65591],[6.42178,49.61809],[6.39898,49.60094],[6.37941,49.59526],[6.37551,49.58809],[6.38443,49.5801],[6.38119,49.57509],[6.36909,49.5783],[6.35791,49.57166],[6.3849,49.55817],[6.38009,49.54856],[6.35855,49.53296],[6.35932,49.52481],[6.37076,49.50545],[6.37056,49.45732],[6.3334,49.46493],[6.32189,49.47244],[6.29503,49.47928],[6.28789,49.48379],[6.27191,49.49995],[6.24133,49.50693],[6.19669,49.50331],[6.17337,49.50577],[6.16086,49.50085],[6.1671,49.49006],[6.14018,49.48525],[6.12937,49.48803],[6.12725,49.47081],[6.1014,49.46726],[6.10483,49.45076],[6.08167,49.45417],[6.07722,49.46139],[6.05917,49.46306],[6.05222,49.46028],[6.04421,49.44553],[6.02529,49.44703],[6.02154,49.45127],[6.01574,49.44885],[5.99412,49.45301],[5.97657,49.44885],[5.97773,49.45955],[5.97232,49.46087],[5.96891,49.48202],[5.9616,49.49026],[5.91578,49.49835],[5.89033,49.4948],[5.86332,49.50006],[5.84897,49.50826],[5.84828,49.51397],[5.83641,49.51817],[5.83187,49.52639],[5.84308,49.53081],[5.83562,49.54114],[5.81625,49.53325],[5.8052,49.54272],[5.85943,49.57158],[5.86866,49.587],[5.86289,49.58525],[5.8511,49.58379],[5.84712,49.58961],[5.84565,49.5981],[5.8694,49.6106],[5.88182,49.63815],[5.89998,49.63907],[5.89934,49.66239],[5.85656,49.67628],[5.85628,49.68211],[5.8757,49.71118],[5.86481,49.72331],[5.84325,49.71822],[5.82191,49.72128],[5.82489,49.73767],[5.82073,49.74878],[5.78626,49.79079],[5.76517,49.78961],[5.75094,49.79094],[5.74159,49.82126],[5.74581,49.82435],[5.7372,49.83353],[5.74053,49.84142],[5.74701,49.84048],[5.74624,49.84783],[5.75399,49.84878],[5.74066,49.85152],[5.75229,49.85922],[5.74955,49.87554],[5.77567,49.87438],[5.77505,49.88057],[5.7346,49.89341],[5.73303,49.90285],[5.75783,49.91737],[5.76039,49.93252],[5.77073,49.93711],[5.76878,49.94239],[5.7688,49.96104],[5.78672,49.96816],[5.80524,49.96677],[5.80652,49.97321],[5.83129,49.97995],[5.83462,49.98656],[5.81806,49.99936],[5.81561,50.01437],[5.84792,50.02809],[5.86189,50.04581],[5.85087,50.0563],[5.85781,50.07186],[5.881,50.08069],[5.89196,50.12041],[5.95286,50.13384],[5.96175,50.17631]]],"terms_url":"https://data.public.lu/en/datasets/cartes-topographiques-services-wms-et-wmts","terms_text":"Administration du Cadastre et de la Topographie","icon":"https://www.geoportail.lu/static/img/lion.png"},{"id":"Torokbalint-orthophoto-2013","name":"Törökbálint orthophoto 2013","type":"wms","template":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=ORTO_2013_5CM_2013SZEPT_TAKARASSAL_512_512&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2013-09-01T00:00:00.000Z","startDate":"2013-09-01T00:00:00.000Z","polygon":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"terms_url":"http://www.torokbalint.hu","terms_text":"Törökbálint","description":"5 cm resolution bald image"},{"id":"Torokbalint-orthophoto-2015","name":"Törökbálint orthophoto 2015","type":"wms","template":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=TBORTO_2015_20160218&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"terms_url":"http://www.torokbalint.hu/","terms_text":"Törökbálint","description":"5 cm resolution bald image"},{"id":"Torokbalint-orthophoto-2018","name":"Törökbálint orthophoto 2018","type":"wms","template":"https://terkep.torokbalint.hu/mapproxy/service?LAYERS=TBORTO_2018&STYLES=&FORMAT=image/png&TRANSPARENT=true&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[18.91731,47.40854],[18.91691,47.40849],[18.91606,47.40885],[18.91565,47.40905],[18.91458,47.40938],[18.91385,47.4097],[18.91376,47.40976],[18.91314,47.41038],[18.9122,47.41098],[18.91041,47.41175],[18.90932,47.41258],[18.90841,47.41317],[18.90676,47.41443],[18.90481,47.41568],[18.90362,47.41597],[18.90317,47.41616],[18.90062,47.41742],[18.90042,47.41755],[18.89968,47.41797],[18.89888,47.41818],[18.89814,47.41835],[18.89752,47.41855],[18.89666,47.41901],[18.8958,47.41954],[18.89421,47.4205],[18.89055,47.42209],[18.88743,47.42332],[18.88554,47.42424],[18.88436,47.42476],[18.88189,47.42553],[18.88085,47.42598],[18.8801,47.42629],[18.87956,47.42649],[18.87741,47.42738],[18.87602,47.42789],[18.87508,47.42836],[18.87281,47.42934],[18.87164,47.42968],[18.8714,47.43001],[18.87259,47.4323],[18.87273,47.43278],[18.87274,47.43324],[18.87244,47.43482],[18.87206,47.43526],[18.86891,47.43712],[18.86561,47.4375],[18.86466,47.43774],[18.86404,47.43809],[18.86378,47.43791],[18.8634,47.43784],[18.863,47.43798],[18.85195,47.44715],[18.85217,47.44847],[18.8593,47.45387],[18.85839,47.45512],[18.85777,47.45568],[18.85718,47.456],[18.8572,47.45636],[18.86015,47.45839],[18.86194,47.4595],[18.86099,47.46071],[18.85979,47.46201],[18.85929,47.46236],[18.85859,47.46272],[18.85713,47.46333],[18.85634,47.4636],[18.85628,47.46403],[18.85719,47.46528],[18.85663,47.46551],[18.85653,47.4658],[18.85693,47.46656],[18.85836,47.46953],[18.85826,47.4698],[18.85827,47.46991],[18.85838,47.47019],[18.85844,47.47027],[18.85852,47.47033],[18.85862,47.47036],[18.85873,47.47038],[18.8589,47.47036],[18.86146,47.46973],[18.86277,47.46929],[18.86617,47.46785],[18.86794,47.46656],[18.86997,47.46524],[18.8708,47.46457],[18.87268,47.46333],[18.87536,47.46113],[18.87687,47.45927],[18.88943,47.45987],[18.89024,47.45988],[18.90371,47.45534],[18.90427,47.4552],[18.90493,47.45506],[18.90542,47.4551],[18.90567,47.45505],[18.90629,47.45477],[18.90648,47.45453],[18.9066,47.45447],[18.90678,47.45439],[18.90811,47.45399],[18.90837,47.45395],[18.9089,47.45384],[18.90954,47.4537],[18.91326,47.45317],[18.91353,47.4532],[18.91372,47.45317],[18.91386,47.45307],[18.91431,47.45294],[18.91598,47.453],[18.91807,47.45317],[18.91846,47.453],[18.91903,47.45161],[18.92173,47.4508],[18.92246,47.45069],[18.92418,47.45025],[18.92756,47.44989],[18.92972,47.44951],[18.93221,47.44922],[18.93347,47.44932],[18.93921,47.44935],[18.94229,47.44903],[18.94549,47.4489],[18.94826,47.4487],[18.95003,47.44824],[18.9547,47.44722],[18.95749,47.44692],[18.95802,47.44715],[18.95844,47.44708],[18.95877,47.44666],[18.96145,47.4393],[18.96368,47.4358],[18.96598,47.43288],[18.96899,47.4297],[18.9701,47.42704],[18.97009,47.42679],[18.96695,47.4246],[18.95735,47.41842],[18.95676,47.4184],[18.95606,47.41813],[18.95385,47.41739],[18.95144,47.41665],[18.95131,47.41664],[18.9327,47.41703],[18.93257,47.41696],[18.93201,47.41674],[18.93149,47.4164],[18.93114,47.41612],[18.92123,47.41091],[18.91957,47.40987],[18.91927,47.40961],[18.91731,47.40854]]],"terms_url":"http://www.torokbalint.hu/","terms_text":"Törökbálint","best":true,"description":"5 cm resolution bald image"},{"id":"Toulouse-Orthophotoplan-2007","name":"Toulouse - Orthophotoplan 2007","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2007/{zoom}/{x}/{y}","endDate":"2007-01-01T00:00:00.000Z","startDate":"2007-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.192,43.63288],[1.20154,43.63297],[1.20111,43.65549],[1.2228,43.6557],[1.22262,43.66534],[1.22753,43.66538],[1.22754,43.66564],[1.23376,43.66569],[1.23376,43.66502],[1.23512,43.66503],[1.23509,43.66707],[1.24436,43.66716],[1.24416,43.67439],[1.2494,43.67443],[1.2494,43.67466],[1.25557,43.67472],[1.25557,43.67445],[1.25695,43.67447],[1.25688,43.67853],[1.28749,43.67883],[1.28708,43.70132],[1.30882,43.70146],[1.30865,43.71277],[1.33033,43.71295],[1.33002,43.73052],[1.33671,43.73058],[1.33673,43.73122],[1.37343,43.73105],[1.37358,43.72458],[1.46045,43.72529],[1.46078,43.7028],[1.48249,43.70295],[1.48298,43.66921],[1.50468,43.66936],[1.50484,43.65812],[1.52655,43.65827],[1.52669,43.64703],[1.54837,43.64716],[1.54854,43.63594],[1.57022,43.63608],[1.57051,43.61358],[1.54882,43.61343],[1.5491,43.59095],[1.57077,43.59107],[1.57094,43.57983],[1.57937,43.57989],[1.57948,43.57377],[1.58091,43.57378],[1.58109,43.55738],[1.57123,43.55731],[1.57165,43.52355],[1.39848,43.52226],[1.39865,43.51101],[1.3121,43.51025],[1.3119,43.52152],[1.29026,43.52131],[1.28986,43.54382],[1.31152,43.54401],[1.31133,43.55526],[1.30369,43.55519],[1.30361,43.55951],[1.29554,43.55943],[1.29554,43.55955],[1.28956,43.55945],[1.28929,43.57754],[1.26757,43.57736],[1.2674,43.58861],[1.25355,43.5885],[1.25338,43.59563],[1.2518,43.59563],[1.2518,43.59494],[1.23504,43.59478],[1.23504,43.5946],[1.22396,43.5946],[1.22394,43.59947],[1.21397,43.5993],[1.21388,43.60464],[1.20206,43.60448],[1.20195,43.61048],[1.19243,43.61037],[1.192,43.63288]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2007/information/","terms_text":"Orthophotoplan 2007 - Toulouse Métropole, 20/09/2012, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2011","name":"Toulouse - Orthophotoplan 2011","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_ortho2011/{zoom}/{x}/{y}","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2011/information/","terms_text":"Orthophotoplan 2011 - Toulouse Métropole, 20/09/2012, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2013","name":"Toulouse - Orthophotoplan 2013","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2013/{zoom}/{x}/{y}","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2013/information/","terms_text":"Orthophotoplan 2013 - Toulouse Métropole, 31/12/2013, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2015","name":"Toulouse - Orthophotoplan 2015","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2015/{zoom}/{x}/{y}","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2015/information/","terms_text":"Orthophotoplan 2015 - Toulouse Métropole, 14/12/2015, sous license ODbL"},{"id":"Toulouse-Orthophotoplan-2017","name":"Toulouse - Orthophotoplan 2017","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/toulouse_2017/{zoom}/{x}/{y}","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","zoomExtent":[7,22],"polygon":[[[1.11351,43.68676],[1.13518,43.68708],[1.13489,43.69835],[1.17829,43.69903],[1.17799,43.71028],[1.19966,43.71061],[1.19934,43.72187],[1.24274,43.72253],[1.24243,43.73375],[1.26415,43.73409],[1.26383,43.74536],[1.28553,43.74565],[1.28525,43.75693],[1.30692,43.75723],[1.30664,43.76848],[1.32834,43.76879],[1.32808,43.78003],[1.43673,43.78158],[1.43731,43.7591],[1.45901,43.75937],[1.45933,43.74815],[1.48103,43.7484],[1.48133,43.73718],[1.50303,43.73741],[1.50359,43.71497],[1.52531,43.71518],[1.52561,43.70401],[1.54727,43.70426],[1.54757,43.69304],[1.5692,43.69329],[1.56957,43.68203],[1.5912,43.68227],[1.59174,43.6598],[1.61342,43.66003],[1.61372,43.64883],[1.63538,43.64908],[1.63841,43.51407],[1.29216,43.50947],[1.29186,43.5207],[1.27021,43.5204],[1.26988,43.53164],[1.24823,43.53133],[1.2476,43.55378],[1.22596,43.55349],[1.22568,43.56472],[1.20398,43.56442],[1.20331,43.5869],[1.18162,43.58656],[1.18102,43.60904],[1.15928,43.60869],[1.15896,43.61995],[1.13726,43.61962],[1.13659,43.64209],[1.11491,43.64176],[1.11351,43.68676]]],"terms_url":"https://data.toulouse-metropole.fr/explore/dataset/orthophotoplan-2017/information/","terms_text":"Orthophotoplan 2017 - Toulouse Métropole, 04/07/2018, sous license ODbL","best":true},{"id":"Tours-Orthophoto-2008_2010","name":"Tours - Orthophotos 2008-2010","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/tours/{zoom}/{x}/{y}","endDate":"2011-01-01T00:00:00.000Z","startDate":"2008-01-01T00:00:00.000Z","zoomExtent":[0,20],"polygon":[[[0.54575,47.46526],[0.54585,47.46082],[0.53922,47.4607],[0.53935,47.45624],[0.5328,47.4561],[0.5329,47.45157],[0.52619,47.4514],[0.52659,47.44249],[0.50009,47.44207],[0.50024,47.43758],[0.4936,47.43743],[0.4937,47.43293],[0.46061,47.43246],[0.46072,47.42798],[0.4541,47.42781],[0.45493,47.40539],[0.46154,47.40545],[0.46191,47.39649],[0.46843,47.3966],[0.46913,47.37864],[0.47571,47.37876],[0.47621,47.3652],[0.48283,47.36535],[0.48296,47.36083],[0.47635,47.36074],[0.47665,47.35173],[0.47005,47.35162],[0.4702,47.34713],[0.46375,47.34701],[0.45714,47.34241],[0.45729,47.33791],[0.45067,47.33781],[0.45084,47.33331],[0.44422,47.3332],[0.44438,47.32871],[0.43114,47.3285],[0.43163,47.315],[0.43824,47.31511],[0.43838,47.31062],[0.47145,47.31114],[0.47131,47.31566],[0.47789,47.31575],[0.47807,47.31128],[0.48468,47.31136],[0.48486,47.30687],[0.49144,47.30698],[0.49174,47.29797],[0.48516,47.29787],[0.48543,47.28887],[0.47885,47.28877],[0.47916,47.27978],[0.48578,47.2799],[0.48591,47.27539],[0.49254,47.2755],[0.49267,47.27101],[0.4993,47.27111],[0.49943,47.26661],[0.51927,47.26692],[0.51942,47.26242],[0.52602,47.26252],[0.52587,47.26702],[0.5457,47.26734],[0.54555,47.27183],[0.55877,47.27204],[0.55863,47.27652],[0.56523,47.27663],[0.56508,47.28112],[0.57168,47.28123],[0.57152,47.28572],[0.57814,47.28583],[0.57799,47.29033],[0.5846,47.29043],[0.58431,47.29942],[0.5975,47.29961],[0.59766,47.29514],[0.65716,47.296],[0.6573,47.29151],[0.6705,47.29172],[0.67035,47.29621],[0.68362,47.29637],[0.68343,47.30089],[0.69006,47.30096],[0.68992,47.30547],[0.7362,47.30612],[0.73608,47.31061],[0.7559,47.31089],[0.75577,47.31539],[0.76238,47.31547],[0.76223,47.31999],[0.77549,47.32015],[0.77497,47.33882],[0.77458,47.35163],[0.76804,47.35159],[0.76759,47.36053],[0.77424,47.36062],[0.77335,47.39213],[0.76674,47.39202],[0.76644,47.40108],[0.77306,47.40111],[0.77289,47.41013],[0.76618,47.41002],[0.76603,47.4145],[0.75276,47.4143],[0.75298,47.40981],[0.74624,47.4097],[0.74594,47.42322],[0.73923,47.42315],[0.73887,47.43661],[0.73233,47.43652],[0.73219,47.44106],[0.7255,47.44098],[0.72542,47.44535],[0.73188,47.44548],[0.73185,47.45011],[0.73845,47.45023],[0.73831,47.45463],[0.74494,47.45474],[0.74432,47.4772],[0.73107,47.47697],[0.7309,47.48154],[0.71762,47.48126],[0.71779,47.47684],[0.69777,47.4765],[0.69805,47.47198],[0.69145,47.47189],[0.69173,47.46302],[0.6851,47.46293],[0.68494,47.46735],[0.67826,47.46733],[0.67798,47.47622],[0.67141,47.47616],[0.67104,47.4882],[0.65773,47.48797],[0.65782,47.48504],[0.65119,47.48483],[0.65147,47.47586],[0.64482,47.47572],[0.64493,47.47126],[0.6118,47.47075],[0.61188,47.46631],[0.60528,47.46612],[0.60542,47.46166],[0.59888,47.46155],[0.59902,47.45709],[0.57249,47.45669],[0.57218,47.46565],[0.54575,47.46526]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto","terms_text":"Orthophoto Tour(s) Plus 2008"},{"id":"Tours-Orthophoto-2013","name":"Tours - Orthophotos 2013","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/tours_2013/{zoom}/{x}/{y}","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","zoomExtent":[0,22],"polygon":[[[0.77512,47.32983],[0.77427,47.35617],[0.77053,47.35611],[0.77024,47.36512],[0.77398,47.36517],[0.7728,47.40148],[0.7904,47.40147],[0.78988,47.4103],[0.79117,47.41047],[0.79108,47.41942],[0.79392,47.41942],[0.79319,47.43733],[0.79834,47.43742],[0.79808,47.45544],[0.80044,47.45541],[0.80138,47.46426],[0.80074,47.46899],[0.79396,47.47331],[0.78405,47.47323],[0.78387,47.47871],[0.77606,47.47859],[0.77585,47.48204],[0.77066,47.48219],[0.77044,47.4859],[0.76096,47.49092],[0.75718,47.49092],[0.73753,47.50336],[0.7259,47.50588],[0.71113,47.50576],[0.70418,47.50408],[0.69109,47.50038],[0.69045,47.49718],[0.67757,47.49683],[0.67757,47.49353],[0.66427,47.49301],[0.6635,47.48953],[0.65088,47.48958],[0.65133,47.48032],[0.64734,47.4803],[0.64747,47.47852],[0.64474,47.47846],[0.64479,47.47575],[0.64238,47.47578],[0.64225,47.47302],[0.63835,47.47294],[0.63792,47.47131],[0.60513,47.47079],[0.60513,47.46632],[0.59852,47.46603],[0.59878,47.46156],[0.592,47.46156],[0.59226,47.45976],[0.58084,47.45971],[0.58007,47.46145],[0.57234,47.46139],[0.57222,47.46512],[0.55874,47.46489],[0.5466,47.46052],[0.53269,47.45355],[0.52677,47.45315],[0.52677,47.45152],[0.52231,47.45123],[0.52256,47.44804],[0.51977,47.44776],[0.52007,47.44247],[0.4975,47.4416],[0.49716,47.44049],[0.49355,47.44015],[0.49355,47.43573],[0.47943,47.43575],[0.46171,47.42819],[0.45643,47.42088],[0.45489,47.41229],[0.45506,47.40218],[0.46149,47.40193],[0.46167,47.39641],[0.46879,47.39602],[0.47016,47.35173],[0.45677,47.3515],[0.45729,47.34254],[0.43085,47.34196],[0.43196,47.30602],[0.47154,47.3067],[0.47257,47.28004],[0.48527,47.28004],[0.48578,47.27084],[0.49935,47.27107],[0.49917,47.26245],[0.55273,47.26304],[0.55222,47.27201],[0.56561,47.27224],[0.56526,47.28156],[0.59118,47.28156],[0.59067,47.29099],[0.66912,47.29169],[0.6832,47.29564],[0.6832,47.30077],[0.69658,47.30123],[0.69641,47.3024],[0.71006,47.30245],[0.72293,47.30589],[0.72285,47.31043],[0.74165,47.31084],[0.75426,47.31392],[0.7625,47.31815],[0.76207,47.32013],[0.76619,47.32009],[0.76956,47.32207],[0.77233,47.32508],[0.77336,47.3267],[0.77512,47.32983]]],"terms_url":"https://wiki.openstreetmap.org/wiki/Tours/Orthophoto","terms_text":"Orthophoto Tour(s)plus 2013"},{"id":"trafikverket-baninfo","name":"Trafikverket Railway Network","type":"wms","template":"https://geo-baninfo.trafikverket.se/mapservice/wms.axd/BanInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Spar_Huvud_och_sidospar&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[7,20],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish railway network, including sidings","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"trafikverket-vagnat","name":"Trafikverket Road Network","type":"wms","template":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?LAYERS=Vagtrafiknat,Funkvagklass,Farjeled&STYLES=&FORMAT=image/png&TRANSPARENT=TRUE&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","zoomExtent":[13,20],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish NVDB road network","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"trafikverket-vagnat-extra","name":"Trafikverket Road Network extra","type":"wms","template":"https://geo-netinfo.trafikverket.se/mapservice/wms.axd/NetInfo?FORMAT=image/png&TRANSPARENT=TRUE&VERSION=1.1.1&SERVICE=WMS&REQUEST=GetMap&LAYERS=Vagnummer,Vaghinder,Rastplats,Rastficka,Hallplats,Farthinder,BroTunnel,ATK_Matplats&STYLES=&SRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","zoomExtent":[3,20],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish NVDB extra details: Highway reference, traffic calming, rest area, bus stop, bridge, tunnel, speed camera","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"trafikverket-vagnat-navn","name":"Trafikverket Street Names","type":"tms","template":"https://mapproxy.openstreetmap.se/tiles/1.0.0/nvdb_names/EPSG3857/{zoom}/{x}/{y}.png","zoomExtent":[15,19],"polygon":[[[12.80182,55.19612],[14.22729,55.27286],[18.44604,56.69244],[19.74242,57.98481],[20.0061,59.5371],[19.08394,60.19308],[20.49499,63.2497],[24.25231,65.57437],[23.81835,67.92514],[23.23607,68.34655],[20.43456,69.17038],[18.08349,68.5644],[16.50145,67.88382],[14.43602,66.14275],[11.82128,63.30775],[12.20031,60.31063],[10.62377,58.5482],[12.64251,56.03062],[12.80182,55.19612]]],"terms_url":"https://www.trafikverket.se","terms_text":"© Trafikverket, CC0","description":"Swedish NVDB street names","icon":"https://api.trafikinfo.trafikverket.se/img/apple-touch-icon-144-precomposed.png","overlay":true},{"id":"brazos_county_2019_wms","name":"TX: Brazos County Imagery 2019","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap19_NCCIR_6in_Brazos/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[-96.15,30.33],[-96.18,30.33],[-96.18,30.36],[-96.24,30.36],[-96.24,30.33],[-96.3,30.33],[-96.3,30.36],[-96.33,30.36],[-96.33,30.45],[-96.36,30.45],[-96.36,30.51],[-96.42,30.51],[-96.42,30.54],[-96.45,30.54],[-96.45,30.57],[-96.48,30.57],[-96.48,30.6],[-96.57,30.6],[-96.57,30.63],[-96.63,30.63],[-96.63,30.66],[-96.6,30.66],[-96.6,30.69],[-96.57,30.69],[-96.57,30.72],[-96.54,30.72],[-96.54,30.75],[-96.48,30.75],[-96.48,30.78],[-96.45,30.78],[-96.45,30.81],[-96.42,30.81],[-96.42,30.87],[-96.39,30.87],[-96.39,30.9],[-96.36,30.9],[-96.36,30.93],[-96.33,30.93],[-96.33,30.96],[-96.27,30.96],[-96.27,30.99],[-96.21,30.99],[-96.21,30.96],[-96.18,30.96],[-96.18,30.87],[-96.15,30.87],[-96.15,30.54],[-96.12,30.54],[-96.12,30.45],[-96.06,30.45],[-96.06,30.39],[-96.09,30.39],[-96.09,30.36],[-96.12,30.36],[-96.12,30.33],[-96.15,30.33]]],"terms_url":"https://data.tnris.org/collection/aa2cd74e-9c2d-4f00-bae5-609b5e898093","terms_text":"Strategic Mapping Program (StratMap). Brazos County Imagery, 2019-01-29","best":true},{"id":"caparea_2019_wms","name":"TX: CapArea Imagery 2019","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap19_NCCIR_CapArea/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[2,22],"polygon":[[[-96.85,29.6],[-97.15,29.6],[-97.15,29.65],[-97.25,29.65],[-97.25,29.7],[-97.3,29.7],[-97.3,29.75],[-97.35,29.75],[-97.35,29.7],[-97.45,29.7],[-97.45,29.65],[-97.55,29.65],[-97.55,29.6],[-97.65,29.6],[-97.65,29.65],[-97.75,29.65],[-97.75,29.7],[-97.8,29.7],[-97.8,29.75],[-97.85,29.75],[-97.85,29.8],[-97.95,29.8],[-97.95,29.75],[-98.05,29.75],[-98.05,29.85],[-98.15,29.85],[-98.15,29.9],[-98.2,29.9],[-98.2,29.95],[-98.25,29.95],[-98.25,30],[-98.3,30],[-98.3,29.95],[-98.35,29.95],[-98.35,29.9],[-98.45,29.9],[-98.45,29.95],[-98.5,29.95],[-98.5,30],[-98.55,30],[-98.55,30.05],[-98.6,30.05],[-98.6,30.45],[-99,30.45],[-99,30.95],[-98.5,30.95],[-98.5,31.05],[-97.85,31.05],[-97.85,30.95],[-97.75,30.95],[-97.75,30.9],[-97.55,30.9],[-97.55,30.85],[-97.4,30.85],[-97.4,30.8],[-97.3,30.8],[-97.3,30.75],[-97.25,30.75],[-97.25,30.7],[-97.2,30.7],[-97.2,30.6],[-97.15,30.6],[-97.15,30.5],[-97.1,30.5],[-97.1,30.55],[-97,30.55],[-97,30.6],[-96.95,30.6],[-96.95,30.55],[-96.9,30.55],[-96.9,30.5],[-96.85,30.5],[-96.85,30.45],[-96.8,30.45],[-96.8,30.4],[-96.75,30.4],[-96.75,30.35],[-96.65,30.35],[-96.65,30.3],[-96.6,30.3],[-96.6,30.25],[-96.65,30.25],[-96.65,30.15],[-96.6,30.15],[-96.6,30.05],[-96.55,30.05],[-96.55,29.9],[-96.6,29.9],[-96.6,29.85],[-96.65,29.85],[-96.65,29.8],[-96.7,29.8],[-96.7,29.75],[-96.75,29.75],[-96.75,29.7],[-96.8,29.7],[-96.8,29.65],[-96.85,29.65],[-96.85,29.6]]],"terms_url":"https://data.tnris.org/collection/f84442b8-ac2a-4708-b5c0-9d15515f4483","terms_text":"Strategic Mapping Program (StratMap). CapArea Imagery, 2019-01-29","best":true},{"id":"amarillo_2016_wms","name":"TX: City of Amarillo Imagery 2015","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap15_NCCIR_12in_NGA_Amarillo/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[5,22],"polygon":[[[-101.62309,35.13352],[-101.62265,35.12001],[-101.6391,35.11965],[-101.65554,35.11929],[-101.67199,35.11893],[-101.68843,35.11857],[-101.70487,35.1182],[-101.72132,35.11783],[-101.73776,35.11746],[-101.7542,35.11709],[-101.77065,35.11672],[-101.78709,35.11634],[-101.80353,35.11596],[-101.81997,35.11558],[-101.83641,35.11519],[-101.85285,35.11481],[-101.86929,35.11442],[-101.88573,35.11403],[-101.90217,35.11364],[-101.91861,35.11324],[-101.93505,35.11284],[-101.95149,35.11244],[-101.96793,35.11204],[-101.98437,35.11164],[-102.00081,35.11123],[-102.0013,35.12474],[-102.0018,35.13825],[-102.00229,35.15175],[-102.00279,35.16526],[-102.00329,35.17877],[-102.00378,35.19228],[-102.00428,35.20578],[-102.00478,35.21929],[-102.00528,35.2328],[-102.00578,35.2463],[-102.00628,35.25981],[-101.98981,35.26022],[-101.97334,35.26062],[-101.95687,35.26103],[-101.9404,35.26143],[-101.92393,35.26183],[-101.90747,35.26223],[-101.891,35.26262],[-101.89148,35.27613],[-101.875,35.27652],[-101.87548,35.29003],[-101.87596,35.30354],[-101.87644,35.31705],[-101.87692,35.33056],[-101.8774,35.34406],[-101.87788,35.35757],[-101.87836,35.37108],[-101.87884,35.38459],[-101.86234,35.38498],[-101.84585,35.38537],[-101.82935,35.38576],[-101.81285,35.38614],[-101.79636,35.38653],[-101.77986,35.38691],[-101.76336,35.38729],[-101.74687,35.38766],[-101.74641,35.37415],[-101.74595,35.36064],[-101.74549,35.34714],[-101.74504,35.33363],[-101.74458,35.32012],[-101.74412,35.30661],[-101.74367,35.2931],[-101.74321,35.27959],[-101.74275,35.26608],[-101.7423,35.25257],[-101.72583,35.25294],[-101.70936,35.25331],[-101.69289,35.25368],[-101.67642,35.25404],[-101.65995,35.25441],[-101.64347,35.25477],[-101.627,35.25513],[-101.61053,35.25548],[-101.6101,35.24197],[-101.60966,35.22846],[-101.60923,35.21495],[-101.6088,35.20144],[-101.60837,35.18792],[-101.62482,35.18757],[-101.62439,35.17406],[-101.62396,35.16055],[-101.62352,35.14703],[-101.62309,35.13352]]],"terms_url":"https://data.tnris.org/collection/c4045402-55b8-41ee-a911-adbda2a2c4aa","terms_text":"Strategic Mapping Program (StratMap). City of Amarillo Imagery, 2015-03-13"},{"id":"el_paso_2015_wms","name":"TX: City of El Paso Imagery 2015","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap15_NCCIR_12in_NGA_ElPaso/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[4,22],"polygon":[[[-106.11096,31.50405],[-106.1108,31.49052],[-106.12659,31.49038],[-106.14238,31.49024],[-106.15817,31.4901],[-106.17396,31.48995],[-106.18975,31.48981],[-106.20554,31.48966],[-106.22133,31.48951],[-106.23712,31.48936],[-106.25291,31.48921],[-106.25309,31.50274],[-106.25327,31.51627],[-106.25345,31.5298],[-106.26925,31.52964],[-106.26943,31.54317],[-106.28523,31.54301],[-106.30103,31.54285],[-106.30122,31.55638],[-106.30141,31.56991],[-106.30159,31.58345],[-106.3174,31.58328],[-106.31759,31.59681],[-106.31778,31.61034],[-106.31797,31.62387],[-106.33378,31.62371],[-106.33398,31.63724],[-106.34979,31.63707],[-106.34999,31.6506],[-106.35018,31.66413],[-106.366,31.66396],[-106.3662,31.67749],[-106.38202,31.67732],[-106.39784,31.67715],[-106.39804,31.69068],[-106.39825,31.70421],[-106.39845,31.71774],[-106.39865,31.73127],[-106.41448,31.73109],[-106.43031,31.73092],[-106.43052,31.74444],[-106.44635,31.74427],[-106.46218,31.74409],[-106.46197,31.73056],[-106.4778,31.73037],[-106.49363,31.73019],[-106.50946,31.73],[-106.50968,31.74353],[-106.52551,31.74334],[-106.52573,31.75687],[-106.54156,31.75668],[-106.54179,31.77021],[-106.55762,31.77002],[-106.55785,31.78354],[-106.55808,31.79707],[-106.57392,31.79688],[-106.58976,31.79668],[-106.6056,31.79648],[-106.60583,31.81001],[-106.62167,31.80981],[-106.62191,31.82334],[-106.62214,31.83686],[-106.63799,31.83666],[-106.65384,31.83646],[-106.65408,31.84998],[-106.65432,31.86351],[-106.65456,31.87704],[-106.63871,31.87724],[-106.63895,31.89077],[-106.63919,31.9043],[-106.63943,31.91783],[-106.63967,31.93135],[-106.63991,31.94488],[-106.64015,31.95841],[-106.64039,31.97194],[-106.64063,31.98546],[-106.64087,31.99899],[-106.625,31.99919],[-106.62523,32.01272],[-106.62547,32.02625],[-106.60959,32.02645],[-106.59372,32.02665],[-106.57784,32.02685],[-106.56196,32.02705],[-106.54608,32.02724],[-106.5302,32.02743],[-106.51432,32.02762],[-106.49844,32.02781],[-106.49822,32.01429],[-106.498,32.00076],[-106.48212,32.00094],[-106.46625,32.00113],[-106.45037,32.00131],[-106.4345,32.00149],[-106.41862,32.00167],[-106.40275,32.00185],[-106.38687,32.00202],[-106.37099,32.00219],[-106.37079,31.98866],[-106.37059,31.97514],[-106.37039,31.96161],[-106.37019,31.94808],[-106.36999,31.93455],[-106.36979,31.92102],[-106.36959,31.90749],[-106.36939,31.89396],[-106.36919,31.88043],[-106.35333,31.8806],[-106.33748,31.88077],[-106.32162,31.88094],[-106.30576,31.8811],[-106.28991,31.88126],[-106.27405,31.88142],[-106.2582,31.88158],[-106.24234,31.88174],[-106.22648,31.88189],[-106.21063,31.88204],[-106.19477,31.88219],[-106.17891,31.88234],[-106.16305,31.88249],[-106.1472,31.88263],[-106.13134,31.88277],[-106.11548,31.88291],[-106.11532,31.86938],[-106.11516,31.85585],[-106.11499,31.84232],[-106.11483,31.82879],[-106.11467,31.81526],[-106.11451,31.80173],[-106.11434,31.7882],[-106.11418,31.77467],[-106.11402,31.76114],[-106.11386,31.74761],[-106.1137,31.73408],[-106.11353,31.72055],[-106.11337,31.70701],[-106.11321,31.69348],[-106.11305,31.67995],[-106.11289,31.66642],[-106.11273,31.65289],[-106.11257,31.63936],[-106.1124,31.62583],[-106.11224,31.6123],[-106.11208,31.59877],[-106.11192,31.58524],[-106.11176,31.57171],[-106.1116,31.55817],[-106.11144,31.54464],[-106.11128,31.53111],[-106.11112,31.51758],[-106.11096,31.50405]]],"terms_url":"https://data.tnris.org/collection/8870dbdd-d3fb-4c06-a3d1-c4e407428218","terms_text":"Strategic Mapping Program (StratMap). City of El Paso Imagery, 2015-10-25"},{"id":"georgetown_2016_wms","name":"TX: City of Georgetown Imagery 2015","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap15_NCCIR_6in_Georgetown/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[-97.67051,30.56165],[-97.67095,30.54571],[-97.68656,30.54603],[-97.68657,30.54571],[-97.70219,30.54603],[-97.7022,30.54571],[-97.71782,30.54603],[-97.71783,30.54571],[-97.73345,30.54603],[-97.73345,30.54572],[-97.74907,30.54603],[-97.74908,30.54572],[-97.76702,30.54608],[-97.76661,30.56138],[-97.78032,30.56166],[-97.78033,30.56135],[-97.79826,30.5617],[-97.79785,30.57732],[-97.79826,30.57733],[-97.79786,30.59264],[-97.81157,30.59291],[-97.81158,30.5926],[-97.82719,30.59291],[-97.8272,30.5926],[-97.84513,30.59295],[-97.84473,30.60827],[-97.85844,30.60853],[-97.85845,30.60823],[-97.87407,30.60853],[-97.87408,30.60823],[-97.892,30.60858],[-97.89161,30.6239],[-97.90762,30.6242],[-97.90723,30.63952],[-97.92324,30.63983],[-97.92285,30.65544],[-97.92324,30.65545],[-97.92286,30.67078],[-97.93657,30.67103],[-97.93657,30.67074],[-97.95449,30.67107],[-97.95411,30.68641],[-97.97011,30.6867],[-97.96973,30.70203],[-97.98573,30.70232],[-97.98536,30.71766],[-98.00135,30.71795],[-98.00098,30.73357],[-98.00135,30.73357],[-98.00093,30.75113],[-97.98569,30.75085],[-97.98535,30.76482],[-97.98573,30.76482],[-97.9853,30.78238],[-97.97007,30.7821],[-97.96968,30.798],[-97.95445,30.79772],[-97.95405,30.81363],[-97.93883,30.81335],[-97.93848,30.82732],[-97.93887,30.82733],[-97.93848,30.84294],[-97.93887,30.84295],[-97.93848,30.85828],[-97.95449,30.85857],[-97.9541,30.87419],[-97.95449,30.8742],[-97.95405,30.89176],[-97.93883,30.89147],[-97.93843,30.90738],[-97.92281,30.90709],[-97.9228,30.90739],[-97.90758,30.9071],[-97.90718,30.92301],[-97.89156,30.92272],[-97.89155,30.92301],[-97.87634,30.92273],[-97.87598,30.93669],[-97.87638,30.9367],[-97.87598,30.95232],[-97.87638,30.95233],[-97.87598,30.96795],[-97.87638,30.96796],[-97.87598,30.98357],[-97.87638,30.98358],[-97.87598,30.99919],[-97.87638,30.9992],[-97.87593,31.01677],[-97.86072,31.01648],[-97.8603,31.03239],[-97.84469,31.03209],[-97.84468,31.03239],[-97.82906,31.03209],[-97.82905,31.0324],[-97.81344,31.03209],[-97.81343,31.0324],[-97.79548,31.03205],[-97.7959,31.01643],[-97.79548,31.01642],[-97.79595,30.99885],[-97.81115,30.99915],[-97.81151,30.98549],[-97.79781,30.98522],[-97.7978,30.98553],[-97.78218,30.98522],[-97.78218,30.98553],[-97.76423,30.98517],[-97.76464,30.96987],[-97.75093,30.9696],[-97.75093,30.96991],[-97.73531,30.9696],[-97.7353,30.96991],[-97.72011,30.96961],[-97.71968,30.98554],[-97.70449,30.98523],[-97.70405,31.00116],[-97.68843,31.00084],[-97.68842,31.00117],[-97.67281,31.00084],[-97.6728,31.00117],[-97.65718,31.00084],[-97.65717,31.00117],[-97.64156,31.00084],[-97.64155,31.00117],[-97.62358,31.0008],[-97.62401,30.98551],[-97.61031,30.98522],[-97.6103,30.98555],[-97.59232,30.98517],[-97.59277,30.96956],[-97.59232,30.96955],[-97.59276,30.95426],[-97.57906,30.95397],[-97.57905,30.9543],[-97.56343,30.95397],[-97.56342,30.95431],[-97.54544,30.95392],[-97.54588,30.93864],[-97.52981,30.93829],[-97.53027,30.92268],[-97.52981,30.92267],[-97.53033,30.90507],[-97.54549,30.9054],[-97.54595,30.88944],[-97.56112,30.88977],[-97.56158,30.87382],[-97.57719,30.87415],[-97.5772,30.87382],[-97.59282,30.87415],[-97.59283,30.87382],[-97.608,30.87415],[-97.60845,30.8582],[-97.62363,30.85852],[-97.62401,30.84488],[-97.60795,30.84455],[-97.60845,30.82695],[-97.62363,30.82727],[-97.62408,30.81133],[-97.63926,30.81165],[-97.63964,30.79801],[-97.62358,30.79767],[-97.62402,30.78205],[-97.62358,30.78205],[-97.62402,30.76643],[-97.62358,30.76642],[-97.62401,30.75113],[-97.61031,30.75085],[-97.6103,30.75118],[-97.59233,30.7508],[-97.59277,30.73518],[-97.59233,30.73517],[-97.59277,30.71955],[-97.59233,30.71954],[-97.59277,30.70393],[-97.59233,30.70392],[-97.59277,30.6883],[-97.59233,30.68829],[-97.59276,30.67301],[-97.5767,30.67267],[-97.57714,30.65739],[-97.56107,30.65704],[-97.56151,30.64177],[-97.54545,30.64142],[-97.5459,30.6258],[-97.54545,30.62579],[-97.5459,30.61018],[-97.54544,30.61017],[-97.54595,30.59257],[-97.56157,30.5929],[-97.56158,30.59257],[-97.57719,30.5929],[-97.5772,30.59257],[-97.59237,30.59289],[-97.59283,30.57695],[-97.60845,30.57728],[-97.60845,30.57695],[-97.62407,30.57728],[-97.62408,30.57695],[-97.6397,30.57728],[-97.6397,30.57695],[-97.65489,30.57727],[-97.65533,30.56133],[-97.67051,30.56165]]],"terms_url":"https://data.tnris.org/collection/a665d1fe-47f4-497c-b467-bb1535a02c9d","terms_text":"Texas Natural Resources Information System (TNRIS). City of Georgetown Imagery, 2015-03-06"},{"id":"lubbock_2016_wms","name":"TX: City of Lubbock Imagery 2015","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap15_NCCIR_12in_NGA_Lubbock/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[5,22],"polygon":[[[-101.73441,33.50842],[-101.73398,33.4949],[-101.75011,33.49455],[-101.76624,33.49419],[-101.78237,33.49383],[-101.7985,33.49346],[-101.81463,33.4931],[-101.83076,33.49273],[-101.84688,33.49236],[-101.86301,33.49199],[-101.87914,33.49161],[-101.89527,33.49124],[-101.91139,33.49086],[-101.92752,33.49048],[-101.94364,33.4901],[-101.95977,33.48971],[-101.97589,33.48933],[-101.99202,33.48894],[-102.00814,33.48855],[-102.02427,33.48815],[-102.04039,33.48776],[-102.05652,33.48736],[-102.07264,33.48696],[-102.08876,33.48656],[-102.10489,33.48616],[-102.10537,33.49967],[-102.12149,33.49926],[-102.13762,33.49885],[-102.13811,33.51236],[-102.13859,33.52587],[-102.13908,33.53938],[-102.13957,33.55289],[-102.14006,33.5664],[-102.14055,33.57991],[-102.14104,33.59342],[-102.14153,33.60693],[-102.12539,33.60734],[-102.12587,33.62084],[-102.12636,33.63435],[-102.11021,33.63476],[-102.09406,33.63517],[-102.07791,33.63557],[-102.06176,33.63597],[-102.04561,33.63637],[-102.02946,33.63677],[-102.01331,33.63716],[-101.99715,33.63756],[-101.981,33.63795],[-101.96485,33.63834],[-101.9487,33.63872],[-101.94823,33.62521],[-101.93208,33.62559],[-101.91593,33.62598],[-101.89978,33.62636],[-101.88363,33.62673],[-101.88408,33.64025],[-101.88453,33.65376],[-101.88498,33.66727],[-101.88543,33.68078],[-101.88589,33.69429],[-101.88634,33.70781],[-101.88679,33.72132],[-101.88724,33.73483],[-101.8877,33.74834],[-101.88815,33.76185],[-101.87197,33.76223],[-101.85579,33.76261],[-101.83962,33.76298],[-101.82344,33.76335],[-101.80726,33.76372],[-101.80682,33.75021],[-101.79064,33.75058],[-101.77447,33.75094],[-101.75829,33.7513],[-101.74211,33.75166],[-101.74168,33.73815],[-101.74125,33.72464],[-101.74082,33.71112],[-101.74039,33.69761],[-101.73996,33.6841],[-101.73953,33.67058],[-101.73911,33.65707],[-101.73868,33.64356],[-101.73825,33.63004],[-101.73782,33.61653],[-101.73739,33.60301],[-101.73697,33.5895],[-101.73654,33.57599],[-101.73611,33.56247],[-101.73569,33.54896],[-101.73526,33.53545],[-101.73483,33.52193],[-101.73441,33.50842]]],"terms_url":"https://data.tnris.org/collection/a5307ec2-8a8b-4647-9d02-87625aeb5cf9","terms_text":"Strategic Mapping Program (StratMap). City of Lubbock Imagery, 2015-03-22"},{"id":"dallas_fort_worth_2016_wms","name":"TX: Dallas and Fort Worth Imagery 2015","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap15_NCCIR_12in_NGA_Dallas_FtWorth/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[-96.7411,32.38179],[-96.74144,32.36827],[-96.75737,32.36856],[-96.7733,32.36884],[-96.78923,32.36912],[-96.80517,32.3694],[-96.8211,32.36967],[-96.83703,32.36995],[-96.85297,32.37022],[-96.8689,32.37049],[-96.88483,32.37076],[-96.88452,32.38428],[-96.8842,32.39781],[-96.88389,32.41133],[-96.88357,32.42485],[-96.88326,32.43837],[-96.88294,32.4519],[-96.88262,32.46542],[-96.88231,32.47894],[-96.88199,32.49246],[-96.89795,32.49273],[-96.9139,32.493],[-96.92986,32.49326],[-96.94581,32.49352],[-96.96177,32.49378],[-96.97773,32.49404],[-96.99368,32.49429],[-97.00964,32.49455],[-97.0256,32.4948],[-97.04156,32.49505],[-97.05751,32.4953],[-97.07347,32.49554],[-97.08943,32.49578],[-97.10539,32.49603],[-97.12135,32.49627],[-97.1373,32.4965],[-97.15326,32.49674],[-97.16922,32.49697],[-97.18518,32.4972],[-97.20114,32.49743],[-97.2171,32.49766],[-97.23306,32.49788],[-97.24902,32.49811],[-97.26498,32.49833],[-97.28094,32.49855],[-97.2969,32.49876],[-97.31286,32.49898],[-97.32882,32.49919],[-97.34478,32.4994],[-97.36074,32.49961],[-97.3767,32.49982],[-97.37646,32.51335],[-97.37622,32.52687],[-97.37597,32.5404],[-97.37573,32.55392],[-97.37549,32.56745],[-97.37524,32.58098],[-97.39122,32.58118],[-97.39098,32.59471],[-97.39074,32.60823],[-97.39049,32.62176],[-97.40648,32.62196],[-97.42246,32.62217],[-97.43844,32.62237],[-97.45443,32.62256],[-97.47041,32.62276],[-97.48639,32.62295],[-97.50238,32.62314],[-97.50215,32.63667],[-97.50193,32.6502],[-97.5017,32.66372],[-97.50148,32.67725],[-97.50125,32.69078],[-97.50102,32.7043],[-97.5008,32.71783],[-97.50057,32.73136],[-97.50035,32.74488],[-97.51635,32.74507],[-97.53236,32.74526],[-97.54836,32.74545],[-97.56437,32.74563],[-97.58038,32.74582],[-97.59638,32.746],[-97.61239,32.74617],[-97.6284,32.74635],[-97.62819,32.75988],[-97.62798,32.77341],[-97.62777,32.78693],[-97.62757,32.80046],[-97.62736,32.81399],[-97.62715,32.82751],[-97.62694,32.84104],[-97.62673,32.85457],[-97.62652,32.86809],[-97.62632,32.88162],[-97.62611,32.89515],[-97.6259,32.90868],[-97.62569,32.9222],[-97.62548,32.93573],[-97.62527,32.94926],[-97.62506,32.96278],[-97.64111,32.96296],[-97.6409,32.97648],[-97.64069,32.99001],[-97.64049,33.00354],[-97.62443,33.00336],[-97.60838,33.00318],[-97.59233,33.003],[-97.57627,33.00282],[-97.56022,33.00264],[-97.54417,33.00245],[-97.52812,33.00226],[-97.51206,33.00207],[-97.49601,33.00188],[-97.47996,33.00169],[-97.46391,33.00149],[-97.44786,33.00129],[-97.4318,33.00109],[-97.41575,33.00089],[-97.3997,33.00068],[-97.38365,33.00048],[-97.3676,33.00027],[-97.35155,33.00006],[-97.3513,33.01358],[-97.33524,33.01337],[-97.31919,33.01315],[-97.30314,33.01294],[-97.28709,33.01272],[-97.27103,33.0125],[-97.25498,33.01227],[-97.23893,33.01205],[-97.22288,33.01182],[-97.20683,33.01159],[-97.19078,33.01136],[-97.17472,33.01112],[-97.15867,33.01089],[-97.14262,33.01065],[-97.12657,33.01041],[-97.11052,33.01017],[-97.09447,33.00992],[-97.07842,33.00968],[-97.06237,33.00943],[-97.04632,33.00918],[-97.03027,33.00893],[-97.01422,33.00867],[-97.01392,33.02219],[-97.01362,33.03572],[-97.01331,33.04924],[-97.01301,33.06276],[-97.01271,33.07628],[-97.0124,33.08981],[-97.0121,33.10333],[-97.01179,33.11685],[-97.01149,33.13037],[-96.99542,33.13012],[-96.97935,33.12986],[-96.96327,33.12959],[-96.9472,33.12933],[-96.93113,33.12906],[-96.91506,33.1288],[-96.89899,33.12853],[-96.88292,33.12825],[-96.8826,33.14177],[-96.88227,33.1553],[-96.88195,33.16882],[-96.88162,33.18234],[-96.8813,33.19586],[-96.88097,33.20938],[-96.88065,33.2229],[-96.88032,33.23642],[-96.87999,33.24994],[-96.87967,33.26346],[-96.86357,33.26319],[-96.84748,33.26291],[-96.83139,33.26263],[-96.81529,33.26235],[-96.7992,33.26206],[-96.78311,33.26178],[-96.76701,33.26149],[-96.75092,33.2612],[-96.73483,33.26091],[-96.73518,33.24739],[-96.73553,33.23387],[-96.73587,33.22035],[-96.73622,33.20683],[-96.73657,33.19331],[-96.73692,33.17979],[-96.73727,33.16627],[-96.73761,33.15275],[-96.73796,33.13923],[-96.73831,33.12571],[-96.72224,33.12542],[-96.70617,33.12512],[-96.70582,33.13864],[-96.68975,33.13835],[-96.67368,33.13805],[-96.65761,33.13775],[-96.64155,33.13744],[-96.62548,33.13714],[-96.60941,33.13683],[-96.59334,33.13652],[-96.57727,33.13621],[-96.56121,33.13589],[-96.54514,33.13558],[-96.52907,33.13526],[-96.513,33.13494],[-96.49694,33.13462],[-96.49732,33.1211],[-96.49771,33.10758],[-96.49809,33.09407],[-96.49847,33.08055],[-96.49885,33.06703],[-96.49924,33.05351],[-96.49962,33.04],[-96.48357,33.03967],[-96.48395,33.02616],[-96.48434,33.01264],[-96.46829,33.01231],[-96.45225,33.01199],[-96.43621,33.01166],[-96.42016,33.01133],[-96.40412,33.011],[-96.38808,33.01066],[-96.37204,33.01032],[-96.37244,32.99681],[-96.37284,32.98329],[-96.37324,32.96977],[-96.37364,32.95626],[-96.37404,32.94274],[-96.37444,32.92923],[-96.37484,32.91571],[-96.35881,32.91537],[-96.35922,32.90186],[-96.35962,32.88834],[-96.36002,32.87482],[-96.36042,32.86131],[-96.36082,32.84779],[-96.36122,32.83427],[-96.36162,32.82076],[-96.36202,32.80724],[-96.36242,32.79372],[-96.36282,32.78021],[-96.36322,32.76669],[-96.36361,32.75317],[-96.36401,32.73966],[-96.38001,32.73999],[-96.396,32.74033],[-96.41199,32.74066],[-96.42799,32.74099],[-96.44398,32.74131],[-96.45998,32.74164],[-96.47597,32.74196],[-96.49197,32.74228],[-96.49235,32.72877],[-96.49273,32.71525],[-96.4931,32.70173],[-96.49348,32.68821],[-96.49386,32.67469],[-96.49424,32.66117],[-96.49461,32.64766],[-96.49499,32.63414],[-96.49537,32.62062],[-96.51134,32.62094],[-96.52732,32.62125],[-96.54329,32.62157],[-96.55927,32.62188],[-96.57524,32.62219],[-96.59122,32.6225],[-96.60719,32.6228],[-96.62317,32.6231],[-96.63914,32.62341],[-96.65512,32.62371],[-96.6711,32.624],[-96.68707,32.6243],[-96.70305,32.62459],[-96.71903,32.62488],[-96.71937,32.61136],[-96.73534,32.61165],[-96.73568,32.59813],[-96.73602,32.58461],[-96.73636,32.57109],[-96.7367,32.55757],[-96.73704,32.54405],[-96.73738,32.53053],[-96.73772,32.51701],[-96.73806,32.50348],[-96.7384,32.48996],[-96.73874,32.47644],[-96.73908,32.46292],[-96.73941,32.4494],[-96.73975,32.43588],[-96.74009,32.42236],[-96.74043,32.40884],[-96.74076,32.39531],[-96.7411,32.38179]]],"terms_url":"https://data.tnris.org/collection/1849447b-4f62-4318-81d3-9fef9c31482c","terms_text":"Strategic Mapping Program (StratMap). Dallas and Fort Worth Imagery, 2015-01-01"},{"id":"san_antonio_river_2016_wms","name":"TX: San Antonio River Authority Imagery 2016","type":"wms","template":"https://imagery.tnris.org/server/services/StratMap/StratMap16_NCCIR_12in_SARA/ImageServer/WMSServer?FORMAT=image/jpeg&TRANSPARENT=TRUE&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap&LAYERS=0&STYLES=&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[-97.06376,27.84293],[-97.06374,27.84373],[-97.06373,27.84453],[-97.06371,27.84532],[-97.0637,27.84612],[-97.06368,27.84692],[-97.06367,27.84772],[-97.06365,27.84851],[-97.06364,27.84931],[-97.06362,27.85011],[-97.06361,27.8509],[-97.06359,27.8517],[-97.06358,27.8525],[-97.06356,27.85329],[-97.06355,27.85409],[-97.06353,27.85489],[-97.06352,27.85568],[-97.0635,27.85648],[-97.06349,27.85728],[-97.06347,27.85807],[-97.06346,27.85887],[-97.06344,27.85967],[-97.06343,27.86046],[-97.06249,27.86045],[-97.06156,27.86044],[-97.06062,27.86042],[-97.05968,27.86041],[-97.05875,27.86039],[-97.05781,27.86038],[-97.05687,27.86037],[-97.05593,27.86035],[-97.055,27.86034],[-97.05406,27.86033],[-97.05312,27.86031],[-97.05219,27.8603],[-97.05125,27.86028],[-97.05031,27.86027],[-97.04938,27.86026],[-97.04844,27.86024],[-97.0481,27.86024],[-97.04809,27.86095],[-97.04807,27.86175],[-97.04806,27.86254],[-97.04804,27.86334],[-97.04803,27.86414],[-97.04801,27.86493],[-97.048,27.86573],[-97.04799,27.86653],[-97.04797,27.86733],[-97.04796,27.86812],[-97.04794,27.86892],[-97.04793,27.86972],[-97.04791,27.87051],[-97.0479,27.87131],[-97.04788,27.87211],[-97.04787,27.8729],[-97.04785,27.8737],[-97.04784,27.87418],[-97.04814,27.87418],[-97.04812,27.87498],[-97.04811,27.87578],[-97.04809,27.87657],[-97.04808,27.87737],[-97.04806,27.87817],[-97.04805,27.87897],[-97.04803,27.87976],[-97.04802,27.88056],[-97.048,27.88136],[-97.04799,27.88215],[-97.04797,27.88295],[-97.04796,27.88375],[-97.04794,27.88454],[-97.04793,27.88534],[-97.04791,27.88614],[-97.0479,27.88693],[-97.04788,27.88773],[-97.04787,27.88853],[-97.04785,27.88933],[-97.04784,27.8898],[-97.04814,27.88981],[-97.04812,27.89061],[-97.04811,27.8914],[-97.04809,27.8922],[-97.04808,27.893],[-97.04806,27.89379],[-97.04805,27.89459],[-97.04803,27.89539],[-97.04802,27.89618],[-97.048,27.89698],[-97.04799,27.89778],[-97.04797,27.89857],[-97.04796,27.89937],[-97.04794,27.90017],[-97.04793,27.90097],[-97.04791,27.90176],[-97.0479,27.90256],[-97.04788,27.90336],[-97.04787,27.90415],[-97.04785,27.90495],[-97.04784,27.90543],[-97.04814,27.90543],[-97.04812,27.90623],[-97.04811,27.90703],[-97.04809,27.90782],[-97.04808,27.90862],[-97.04806,27.90942],[-97.04805,27.91022],[-97.04803,27.91101],[-97.04802,27.91181],[-97.048,27.91261],[-97.04799,27.9134],[-97.04797,27.9142],[-97.04796,27.915],[-97.04794,27.91579],[-97.04793,27.91659],[-97.04791,27.91739],[-97.0479,27.91818],[-97.04788,27.91898],[-97.04787,27.91978],[-97.04785,27.92057],[-97.04784,27.92105],[-97.04814,27.92106],[-97.04812,27.92186],[-97.04811,27.92265],[-97.04809,27.92345],[-97.04808,27.92425],[-97.04806,27.92504],[-97.04805,27.92584],[-97.04803,27.92664],[-97.04802,27.92743],[-97.048,27.92823],[-97.04799,27.92903],[-97.04797,27.92982],[-97.04796,27.93062],[-97.04794,27.93142],[-97.04793,27.93222],[-97.04791,27.93301],[-97.0479,27.93381],[-97.04788,27.93461],[-97.04787,27.9354],[-97.04785,27.9362],[-97.04784,27.93668],[-97.04814,27.93668],[-97.04812,27.93748],[-97.04811,27.93828],[-97.04809,27.93907],[-97.04808,27.93987],[-97.04806,27.94067],[-97.04805,27.94147],[-97.04803,27.94226],[-97.04802,27.94306],[-97.048,27.94386],[-97.04799,27.94465],[-97.04797,27.94545],[-97.04796,27.94625],[-97.04794,27.94704],[-97.04793,27.94784],[-97.04791,27.94864],[-97.0479,27.94943],[-97.04788,27.95023],[-97.04787,27.95103],[-97.04785,27.95182],[-97.04784,27.95262],[-97.04782,27.95342],[-97.04781,27.95422],[-97.04687,27.9542],[-97.04593,27.95419],[-97.045,27.95417],[-97.04406,27.95416],[-97.04312,27.95415],[-97.04218,27.95413],[-97.04125,27.95412],[-97.04031,27.9541],[-97.03937,27.95409],[-97.03844,27.95408],[-97.0375,27.95406],[-97.03656,27.95405],[-97.03562,27.95403],[-97.03469,27.95402],[-97.03375,27.95401],[-97.03281,27.95399],[-97.03219,27.95398],[-97.03218,27.95422],[-97.03124,27.9542],[-97.03031,27.95419],[-97.02937,27.95417],[-97.02843,27.95416],[-97.02749,27.95415],[-97.02656,27.95413],[-97.02562,27.95412],[-97.02468,27.9541],[-97.02375,27.95409],[-97.02281,27.95408],[-97.02187,27.95406],[-97.02093,27.95405],[-97.02,27.95403],[-97.01906,27.95402],[-97.01812,27.95401],[-97.01718,27.95399],[-97.01656,27.95398],[-97.01655,27.95422],[-97.01562,27.9542],[-97.01468,27.95419],[-97.01374,27.95418],[-97.01281,27.95416],[-97.01187,27.95415],[-97.01093,27.95413],[-97.00999,27.95412],[-97.00906,27.95411],[-97.00812,27.95409],[-97.00718,27.95408],[-97.00624,27.95406],[-97.00531,27.95405],[-97.00437,27.95403],[-97.00343,27.95402],[-97.0025,27.95401],[-97.00156,27.95399],[-97.00124,27.95399],[-97.00122,27.9547],[-97.00121,27.9555],[-97.00119,27.9563],[-97.00118,27.95709],[-97.00116,27.95789],[-97.00115,27.95869],[-97.00113,27.95948],[-97.00111,27.96028],[-97.0011,27.96108],[-97.00108,27.96188],[-97.00107,27.96267],[-97.00105,27.96347],[-97.00104,27.96427],[-97.00102,27.96506],[-97.00101,27.96586],[-97.00099,27.96666],[-97.00098,27.96746],[-97.00097,27.96793],[-97.00127,27.96794],[-97.00125,27.96873],[-97.00124,27.96953],[-97.00122,27.97033],[-97.00121,27.97112],[-97.00119,27.97192],[-97.00118,27.97272],[-97.00116,27.97351],[-97.00115,27.97431],[-97.00113,27.97511],[-97.00111,27.97591],[-97.0011,27.9767],[-97.00108,27.9775],[-97.00107,27.9783],[-97.00105,27.97909],[-97.00104,27.97989],[-97.00102,27.98069],[-97.00101,27.98148],[-97.00099,27.98228],[-97.00098,27.98308],[-97.00097,27.98356],[-97.00127,27.98356],[-97.00125,27.98436],[-97.00124,27.98515],[-97.00122,27.98595],[-97.00121,27.98675],[-97.00119,27.98755],[-97.00118,27.98834],[-97.00116,27.98914],[-97.00115,27.98994],[-97.00113,27.99073],[-97.00111,27.99153],[-97.0011,27.99233],[-97.00108,27.99312],[-97.00107,27.99392],[-97.00105,27.99472],[-97.00104,27.99552],[-97.00102,27.99631],[-97.00101,27.99711],[-97.00099,27.99791],[-97.00098,27.9987],[-97.00096,27.9995],[-97.00095,28.0003],[-97.00093,28.0011],[-96.99999,28.00108],[-96.99906,28.00107],[-96.99812,28.00105],[-96.99718,28.00104],[-96.99624,28.00102],[-96.9953,28.00101],[-96.99437,28.001],[-96.99343,28.00098],[-96.99249,28.00097],[-96.99155,28.00095],[-96.99062,28.00094],[-96.98968,28.00092],[-96.98874,28.00091],[-96.9878,28.0009],[-96.98687,28.00088],[-96.98593,28.00087],[-96.98561,28.00086],[-96.9856,28.00158],[-96.98558,28.00237],[-96.98557,28.00317],[-96.98555,28.00397],[-96.98554,28.00476],[-96.98552,28.00556],[-96.98551,28.00636],[-96.98549,28.00716],[-96.98548,28.00795],[-96.98546,28.00875],[-96.98545,28.00955],[-96.98543,28.01034],[-96.98541,28.01114],[-96.9854,28.01194],[-96.98538,28.01274],[-96.98537,28.01353],[-96.98535,28.01433],[-96.98534,28.01481],[-96.98565,28.01481],[-96.98563,28.01561],[-96.98562,28.0164],[-96.9856,28.0172],[-96.98559,28.018],[-96.98557,28.0188],[-96.98555,28.01959],[-96.98554,28.02039],[-96.98552,28.02119],[-96.98551,28.02199],[-96.98549,28.02278],[-96.98548,28.02358],[-96.98546,28.02438],[-96.98545,28.02518],[-96.98543,28.02597],[-96.98541,28.02677],[-96.9854,28.02757],[-96.98538,28.02837],[-96.98537,28.02916],[-96.98535,28.02996],[-96.98534,28.03076],[-96.98532,28.03156],[-96.98531,28.03235],[-96.98437,28.03234],[-96.98343,28.03232],[-96.98249,28.03231],[-96.98156,28.0323],[-96.98062,28.03228],[-96.97968,28.03227],[-96.97874,28.03225],[-96.97781,28.03224],[-96.97687,28.03222],[-96.97593,28.03221],[-96.97499,28.03219],[-96.97405,28.03218],[-96.97312,28.03217],[-96.97218,28.03215],[-96.97124,28.03214],[-96.9703,28.03212],[-96.96999,28.03212],[-96.96998,28.03283],[-96.96996,28.03363],[-96.96995,28.03443],[-96.96993,28.03522],[-96.96992,28.03602],[-96.9699,28.03682],[-96.96988,28.03761],[-96.96987,28.03841],[-96.96985,28.03921],[-96.96984,28.04],[-96.96982,28.0408],[-96.96981,28.0416],[-96.96979,28.0424],[-96.96978,28.04319],[-96.96976,28.04399],[-96.96974,28.04479],[-96.96973,28.04558],[-96.96972,28.04606],[-96.97003,28.04606],[-96.97001,28.04686],[-96.96999,28.04766],[-96.96998,28.04845],[-96.96996,28.04925],[-96.96995,28.05005],[-96.96993,28.05084],[-96.96992,28.05164],[-96.9699,28.05244],[-96.96989,28.05324],[-96.96987,28.05403],[-96.96985,28.05483],[-96.96984,28.05563],[-96.96982,28.05643],[-96.96981,28.05722],[-96.96979,28.05802],[-96.96978,28.05882],[-96.96976,28.05961],[-96.96975,28.06041],[-96.96973,28.06121],[-96.96971,28.06201],[-96.9697,28.0628],[-96.96968,28.0636],[-96.96874,28.06359],[-96.96781,28.06357],[-96.96687,28.06356],[-96.96593,28.06354],[-96.96499,28.06353],[-96.96406,28.06351],[-96.96312,28.0635],[-96.96218,28.06349],[-96.96124,28.06347],[-96.9603,28.06346],[-96.95937,28.06344],[-96.95843,28.06343],[-96.95749,28.06341],[-96.95655,28.0634],[-96.95561,28.06338],[-96.95468,28.06337],[-96.95406,28.06336],[-96.95406,28.0636],[-96.95312,28.06359],[-96.95218,28.06357],[-96.95124,28.06356],[-96.9503,28.06354],[-96.94937,28.06353],[-96.94843,28.06351],[-96.94749,28.0635],[-96.94655,28.06348],[-96.94561,28.06347],[-96.94468,28.06346],[-96.94374,28.06344],[-96.9428,28.06343],[-96.94186,28.06341],[-96.94092,28.0634],[-96.93999,28.06338],[-96.93905,28.06337],[-96.93875,28.06336],[-96.93873,28.06408],[-96.93872,28.06488],[-96.9387,28.06567],[-96.93868,28.06647],[-96.93867,28.06727],[-96.93865,28.06806],[-96.93864,28.06886],[-96.93862,28.06966],[-96.9386,28.07046],[-96.93859,28.07125],[-96.93857,28.07205],[-96.93856,28.07285],[-96.93854,28.07365],[-96.93852,28.07444],[-96.93851,28.07524],[-96.93849,28.07604],[-96.93848,28.07684],[-96.93847,28.07731],[-96.93878,28.07731],[-96.93877,28.07811],[-96.93875,28.07891],[-96.93873,28.0797],[-96.93872,28.0805],[-96.9387,28.0813],[-96.93869,28.0821],[-96.93867,28.08289],[-96.93865,28.08369],[-96.93864,28.08449],[-96.93862,28.08529],[-96.93861,28.08608],[-96.93859,28.08688],[-96.93858,28.08768],[-96.93856,28.08848],[-96.93854,28.08927],[-96.93853,28.09007],[-96.93851,28.09087],[-96.9385,28.09166],[-96.93848,28.09246],[-96.93847,28.09293],[-96.93878,28.09293],[-96.93877,28.09373],[-96.93875,28.09453],[-96.93873,28.09533],[-96.93872,28.09612],[-96.9387,28.09692],[-96.93869,28.09772],[-96.93867,28.09852],[-96.93865,28.09931],[-96.93864,28.10011],[-96.93862,28.10091],[-96.93861,28.10171],[-96.93859,28.1025],[-96.93857,28.1033],[-96.93856,28.1041],[-96.93854,28.1049],[-96.93853,28.10569],[-96.93851,28.10649],[-96.9385,28.10729],[-96.93848,28.10809],[-96.93848,28.10831],[-96.9394,28.10833],[-96.94033,28.10834],[-96.94127,28.10836],[-96.94221,28.10837],[-96.94315,28.10839],[-96.94409,28.1084],[-96.94502,28.10842],[-96.94596,28.10843],[-96.9469,28.10844],[-96.94784,28.10846],[-96.94878,28.10847],[-96.94971,28.10849],[-96.95065,28.1085],[-96.95159,28.10852],[-96.9522,28.10853],[-96.95221,28.10829],[-96.95315,28.1083],[-96.95408,28.10831],[-96.95502,28.10833],[-96.95596,28.10834],[-96.9569,28.10836],[-96.95783,28.10837],[-96.95877,28.10839],[-96.95971,28.1084],[-96.96065,28.10842],[-96.96159,28.10843],[-96.96252,28.10845],[-96.96346,28.10846],[-96.9644,28.10847],[-96.96534,28.10849],[-96.96627,28.1085],[-96.96721,28.10852],[-96.96783,28.10853],[-96.96783,28.10829],[-96.96877,28.1083],[-96.96971,28.10832],[-96.97065,28.10833],[-96.97158,28.10835],[-96.97252,28.10836],[-96.97346,28.10837],[-96.9744,28.10839],[-96.97534,28.1084],[-96.97627,28.10842],[-96.97721,28.10843],[-96.97815,28.10845],[-96.97909,28.10846],[-96.98002,28.10848],[-96.98096,28.10849],[-96.9819,28.1085],[-96.98284,28.10852],[-96.98345,28.10853],[-96.98346,28.10829],[-96.9844,28.1083],[-96.98533,28.10832],[-96.98627,28.10833],[-96.98721,28.10835],[-96.98815,28.10836],[-96.98908,28.10837],[-96.99002,28.10839],[-96.99096,28.1084],[-96.9919,28.10842],[-96.99283,28.10843],[-96.99377,28.10845],[-96.99471,28.10846],[-96.99565,28.10847],[-96.99658,28.10849],[-96.99752,28.1085],[-96.99846,28.10852],[-96.99908,28.10853],[-96.99908,28.10829],[-97.00002,28.1083],[-97.00096,28.10832],[-97.0019,28.10833],[-97.00283,28.10835],[-97.00377,28.10836],[-97.00471,28.10838],[-97.00565,28.10839],[-97.00658,28.1084],[-97.00752,28.10842],[-97.00846,28.10843],[-97.00939,28.10845],[-97.01033,28.10846],[-97.01127,28.10847],[-97.01221,28.10849],[-97.01314,28.1085],[-97.01408,28.10852],[-97.01502,28.10853],[-97.01596,28.10854],[-97.01689,28.10856],[-97.01688,28.10936],[-97.01686,28.11015],[-97.01685,28.11095],[-97.01683,28.11175],[-97.01682,28.11254],[-97.0168,28.11334],[-97.01679,28.11414],[-97.01677,28.11494],[-97.01676,28.11573],[-97.01674,28.11653],[-97.01673,28.11733],[-97.01671,28.11812],[-97.0167,28.11892],[-97.01668,28.11972],[-97.01666,28.12051],[-97.01665,28.12131],[-97.01663,28.12211],[-97.01662,28.12291],[-97.0166,28.1237],[-97.01659,28.12418],[-97.01689,28.12418],[-97.01688,28.12498],[-97.01686,28.12578],[-97.01685,28.12658],[-97.01683,28.12737],[-97.01682,28.12817],[-97.0168,28.12897],[-97.01679,28.12976],[-97.01677,28.13056],[-97.01676,28.13136],[-97.01674,28.13216],[-97.01672,28.13295],[-97.01671,28.13375],[-97.01669,28.13455],[-97.01668,28.13534],[-97.01666,28.13614],[-97.01665,28.13694],[-97.01663,28.13773],[-97.01662,28.13853],[-97.0166,28.13933],[-97.0166,28.13957],[-97.01752,28.13959],[-97.01846,28.1396],[-97.01939,28.13961],[-97.02033,28.13963],[-97.02127,28.13964],[-97.0222,28.13966],[-97.02314,28.13967],[-97.02408,28.13968],[-97.02502,28.1397],[-97.02595,28.13971],[-97.02689,28.13973],[-97.02783,28.13974],[-97.02877,28.13975],[-97.0297,28.13977],[-97.03064,28.13978],[-97.03158,28.1398],[-97.03251,28.13981],[-97.0325,28.14061],[-97.03248,28.1414],[-97.03247,28.1422],[-97.03245,28.143],[-97.03244,28.14379],[-97.03242,28.14459],[-97.03241,28.14539],[-97.03239,28.14619],[-97.03238,28.14698],[-97.03236,28.14778],[-97.03235,28.14858],[-97.03233,28.14937],[-97.03232,28.15017],[-97.0323,28.15097],[-97.03229,28.15176],[-97.03227,28.15256],[-97.03226,28.15336],[-97.03224,28.15415],[-97.03223,28.15495],[-97.03222,28.15543],[-97.03252,28.15543],[-97.0325,28.15623],[-97.03249,28.15703],[-97.03247,28.15782],[-97.03246,28.15862],[-97.03244,28.15942],[-97.03243,28.16022],[-97.03241,28.16101],[-97.0324,28.16181],[-97.03238,28.16261],[-97.03237,28.1634],[-97.03235,28.1642],[-97.03233,28.165],[-97.03232,28.16579],[-97.0323,28.16659],[-97.03229,28.16739],[-97.03227,28.16818],[-97.03226,28.16898],[-97.03224,28.16978],[-97.03223,28.17058],[-97.03222,28.17082],[-97.03314,28.17084],[-97.03408,28.17085],[-97.03502,28.17087],[-97.03595,28.17088],[-97.03689,28.17089],[-97.03783,28.17091],[-97.03877,28.17092],[-97.0397,28.17094],[-97.04064,28.17095],[-97.04158,28.17096],[-97.04252,28.17098],[-97.04345,28.17099],[-97.04439,28.17101],[-97.04533,28.17102],[-97.04595,28.17103],[-97.04596,28.1708],[-97.04689,28.17081],[-97.04783,28.17082],[-97.04877,28.17084],[-97.0497,28.17085],[-97.05064,28.17087],[-97.05158,28.17088],[-97.05252,28.17089],[-97.05345,28.17091],[-97.05439,28.17092],[-97.05533,28.17094],[-97.05626,28.17095],[-97.0572,28.17096],[-97.05814,28.17098],[-97.05908,28.17099],[-97.06001,28.171],[-97.06095,28.17102],[-97.06158,28.17103],[-97.06158,28.1708],[-97.06252,28.17081],[-97.06346,28.17083],[-97.06439,28.17084],[-97.06533,28.17085],[-97.06627,28.17087],[-97.0672,28.17088],[-97.06814,28.1709],[-97.06908,28.17091],[-97.07001,28.17092],[-97.07095,28.17094],[-97.07189,28.17095],[-97.07282,28.17096],[-97.07376,28.17098],[-97.0747,28.17099],[-97.07564,28.17101],[-97.07657,28.17102],[-97.07691,28.17102],[-97.07692,28.17031],[-97.07694,28.16951],[-97.07695,28.16872],[-97.07697,28.16792],[-97.07698,28.16713],[-97.077,28.16633],[-97.07701,28.16553],[-97.07703,28.16474],[-97.07704,28.16394],[-97.07706,28.16314],[-97.07707,28.16235],[-97.07709,28.16155],[-97.0771,28.16075],[-97.07712,28.15996],[-97.07713,28.15916],[-97.07715,28.15836],[-97.07716,28.15757],[-97.07717,28.15677],[-97.07719,28.15597],[-97.0772,28.15518],[-97.07814,28.15519],[-97.07908,28.1552],[-97.08002,28.15522],[-97.08095,28.15523],[-97.08189,28.15524],[-97.08283,28.15526],[-97.08376,28.15527],[-97.0847,28.15529],[-97.08564,28.1553],[-97.08657,28.15531],[-97.08751,28.15533],[-97.08845,28.15534],[-97.08939,28.15535],[-97.09032,28.15537],[-97.09126,28.15538],[-97.0922,28.15539],[-97.09283,28.1554],[-97.09283,28.15518],[-97.09377,28.15519],[-97.0947,28.1552],[-97.09564,28.15522],[-97.09658,28.15523],[-97.09751,28.15525],[-97.09845,28.15526],[-97.09939,28.15527],[-97.10032,28.15529],[-97.10126,28.1553],[-97.1022,28.15531],[-97.10314,28.15533],[-97.10407,28.15534],[-97.10501,28.15535],[-97.10595,28.15537],[-97.10688,28.15538],[-97.10782,28.15539],[-97.10817,28.1554],[-97.10818,28.15469],[-97.10819,28.15389],[-97.10821,28.15309],[-97.10822,28.1523],[-97.10824,28.1515],[-97.10825,28.1507],[-97.10827,28.14991],[-97.10828,28.14911],[-97.1083,28.14832],[-97.10831,28.14752],[-97.10832,28.14672],[-97.10834,28.14593],[-97.10835,28.14513],[-97.10837,28.14433],[-97.10838,28.14354],[-97.1084,28.14274],[-97.10841,28.14194],[-97.10843,28.14115],[-97.10844,28.14035],[-97.10846,28.13955],[-97.10939,28.13957],[-97.11033,28.13958],[-97.11127,28.13959],[-97.1122,28.13961],[-97.11314,28.13962],[-97.11408,28.13963],[-97.11501,28.13965],[-97.11595,28.13966],[-97.11689,28.13967],[-97.11782,28.13969],[-97.11876,28.1397],[-97.1197,28.13971],[-97.12063,28.13973],[-97.12157,28.13974],[-97.12251,28.13975],[-97.12344,28.13977],[-97.12408,28.13978],[-97.12408,28.13956],[-97.12502,28.13957],[-97.12595,28.13958],[-97.12689,28.1396],[-97.12783,28.13961],[-97.12876,28.13962],[-97.1297,28.13964],[-97.13064,28.13965],[-97.13157,28.13966],[-97.13251,28.13968],[-97.13345,28.13969],[-97.13438,28.1397],[-97.13532,28.13972],[-97.13625,28.13973],[-97.13719,28.13974],[-97.13813,28.13976],[-97.13906,28.13977],[-97.13942,28.13977],[-97.13943,28.13906],[-97.13945,28.13827],[-97.13946,28.13747],[-97.13948,28.13667],[-97.13949,28.13588],[-97.13951,28.13508],[-97.13952,28.13429],[-97.13953,28.13349],[-97.13955,28.13269],[-97.13956,28.1319],[-97.13958,28.1311],[-97.13959,28.1303],[-97.13961,28.12951],[-97.13962,28.12871],[-97.13963,28.12791],[-97.13965,28.12712],[-97.13966,28.12632],[-97.13968,28.12553],[-97.13969,28.12473],[-97.13971,28.12393],[-97.14064,28.12395],[-97.14158,28.12396],[-97.14252,28.12397],[-97.14345,28.12399],[-97.14439,28.124],[-97.14532,28.12401],[-97.14626,28.12403],[-97.1472,28.12404],[-97.14813,28.12405],[-97.14907,28.12406],[-97.15001,28.12408],[-97.15094,28.12409],[-97.15188,28.1241],[-97.15282,28.12412],[-97.15375,28.12413],[-97.15469,28.12414],[-97.15505,28.12415],[-97.15506,28.12344],[-97.15508,28.12264],[-97.15509,28.12184],[-97.15511,28.12105],[-97.15512,28.12025],[-97.15513,28.11946],[-97.15515,28.11866],[-97.15516,28.11786],[-97.15518,28.11707],[-97.15519,28.11627],[-97.1552,28.11548],[-97.15522,28.11468],[-97.15523,28.11388],[-97.15525,28.11309],[-97.15526,28.11229],[-97.15528,28.11149],[-97.15529,28.1107],[-97.1553,28.1099],[-97.15532,28.10911],[-97.15533,28.10831],[-97.15627,28.10832],[-97.1572,28.10834],[-97.15814,28.10835],[-97.15908,28.10836],[-97.16001,28.10838],[-97.16095,28.10839],[-97.16188,28.1084],[-97.16282,28.10841],[-97.16376,28.10843],[-97.16469,28.10844],[-97.16563,28.10845],[-97.16656,28.10847],[-97.1675,28.10848],[-97.16844,28.10849],[-97.16937,28.10851],[-97.17031,28.10852],[-97.17095,28.10853],[-97.17096,28.10831],[-97.17189,28.10833],[-97.17283,28.10834],[-97.17376,28.10835],[-97.1747,28.10836],[-97.17564,28.10838],[-97.17657,28.10839],[-97.17751,28.1084],[-97.17845,28.10842],[-97.17938,28.10843],[-97.18032,28.10844],[-97.18125,28.10846],[-97.18219,28.10847],[-97.18313,28.10848],[-97.18406,28.10849],[-97.185,28.10851],[-97.18593,28.10852],[-97.1863,28.10852],[-97.18632,28.10781],[-97.18633,28.10702],[-97.18634,28.10622],[-97.18636,28.10543],[-97.18637,28.10463],[-97.18639,28.10383],[-97.1864,28.10304],[-97.18641,28.10224],[-97.18643,28.10145],[-97.18644,28.10065],[-97.18646,28.09985],[-97.18647,28.09906],[-97.18648,28.09826],[-97.1865,28.09746],[-97.18651,28.09667],[-97.18653,28.09587],[-97.18654,28.09508],[-97.18655,28.09428],[-97.18657,28.09348],[-97.18658,28.09269],[-97.18752,28.0927],[-97.18845,28.09271],[-97.18939,28.09273],[-97.19033,28.09274],[-97.19126,28.09275],[-97.1922,28.09277],[-97.19313,28.09278],[-97.19407,28.09279],[-97.195,28.0928],[-97.19594,28.09282],[-97.19688,28.09283],[-97.19781,28.09284],[-97.19875,28.09286],[-97.19968,28.09287],[-97.20062,28.09288],[-97.20156,28.09289],[-97.20193,28.0929],[-97.20194,28.09219],[-97.20196,28.09139],[-97.20197,28.0906],[-97.20198,28.0898],[-97.202,28.089],[-97.20201,28.08821],[-97.20203,28.08741],[-97.20204,28.08662],[-97.20205,28.08582],[-97.20207,28.08502],[-97.20208,28.08423],[-97.20209,28.08343],[-97.20211,28.08264],[-97.20212,28.08184],[-97.20214,28.08105],[-97.20215,28.08025],[-97.20216,28.07945],[-97.20218,28.07866],[-97.20219,28.07786],[-97.2022,28.07707],[-97.20314,28.07708],[-97.20408,28.07709],[-97.20501,28.0771],[-97.20595,28.07712],[-97.20688,28.07713],[-97.20782,28.07714],[-97.20876,28.07715],[-97.20969,28.07717],[-97.21063,28.07718],[-97.21156,28.07719],[-97.2125,28.07721],[-97.21343,28.07722],[-97.21437,28.07723],[-97.21531,28.07724],[-97.21624,28.07726],[-97.21718,28.07727],[-97.21756,28.07727],[-97.21757,28.07656],[-97.21758,28.07577],[-97.2176,28.07497],[-97.21761,28.07418],[-97.21762,28.07338],[-97.21764,28.07258],[-97.21765,28.07179],[-97.21767,28.07099],[-97.21768,28.0702],[-97.21769,28.0694],[-97.21771,28.06861],[-97.21772,28.06781],[-97.21773,28.06701],[-97.21775,28.06622],[-97.21776,28.06542],[-97.21777,28.06463],[-97.21779,28.06383],[-97.2178,28.06303],[-97.21782,28.06224],[-97.21783,28.06144],[-97.21876,28.06146],[-97.2197,28.06147],[-97.22064,28.06148],[-97.22157,28.06149],[-97.22251,28.06151],[-97.22344,28.06152],[-97.22438,28.06153],[-97.22531,28.06154],[-97.22625,28.06156],[-97.22719,28.06157],[-97.22812,28.06158],[-97.22906,28.06159],[-97.22999,28.06161],[-97.23093,28.06162],[-97.23186,28.06163],[-97.2328,28.06164],[-97.23319,28.06165],[-97.2332,28.06094],[-97.23321,28.06014],[-97.23323,28.05935],[-97.23324,28.05855],[-97.23325,28.05776],[-97.23327,28.05696],[-97.23328,28.05617],[-97.23329,28.05537],[-97.23331,28.05457],[-97.23332,28.05378],[-97.23333,28.05298],[-97.23335,28.05219],[-97.23336,28.05139],[-97.23337,28.05059],[-97.23339,28.0498],[-97.2334,28.049],[-97.23341,28.04821],[-97.23343,28.04741],[-97.23344,28.04662],[-97.23346,28.04582],[-97.23439,28.04583],[-97.23533,28.04584],[-97.23626,28.04586],[-97.2372,28.04587],[-97.23813,28.04588],[-97.23907,28.04589],[-97.24,28.04591],[-97.24094,28.04592],[-97.24188,28.04593],[-97.24281,28.04594],[-97.24375,28.04596],[-97.24468,28.04597],[-97.24562,28.04598],[-97.24655,28.04599],[-97.24749,28.04601],[-97.24842,28.04602],[-97.24936,28.04603],[-97.25029,28.04604],[-97.25123,28.04606],[-97.25122,28.04685],[-97.2512,28.04765],[-97.25119,28.04844],[-97.25118,28.04924],[-97.25116,28.05004],[-97.25115,28.05083],[-97.25114,28.05163],[-97.25112,28.05242],[-97.25111,28.05322],[-97.2511,28.05401],[-97.25108,28.05481],[-97.25107,28.05561],[-97.25106,28.0564],[-97.25104,28.0572],[-97.25103,28.05799],[-97.25102,28.05879],[-97.251,28.05959],[-97.25099,28.06038],[-97.25098,28.06118],[-97.25097,28.06147],[-97.25189,28.06148],[-97.25282,28.0615],[-97.25376,28.06151],[-97.25469,28.06152],[-97.25563,28.06153],[-97.25656,28.06155],[-97.2575,28.06156],[-97.25843,28.06157],[-97.25937,28.06158],[-97.26031,28.0616],[-97.26124,28.06161],[-97.26218,28.06162],[-97.26311,28.06163],[-97.26405,28.06164],[-97.26498,28.06166],[-97.26592,28.06167],[-97.26685,28.06168],[-97.26684,28.06248],[-97.26683,28.06327],[-97.26681,28.06407],[-97.2668,28.06486],[-97.26679,28.06566],[-97.26677,28.06646],[-97.26676,28.06725],[-97.26675,28.06805],[-97.26673,28.06884],[-97.26672,28.06964],[-97.26671,28.07043],[-97.26669,28.07123],[-97.26668,28.07203],[-97.26667,28.07282],[-97.26665,28.07362],[-97.26664,28.07441],[-97.26663,28.07521],[-97.26661,28.076],[-97.2666,28.0768],[-97.2666,28.0771],[-97.26751,28.07711],[-97.26845,28.07712],[-97.26938,28.07714],[-97.27032,28.07715],[-97.27125,28.07716],[-97.27219,28.07717],[-97.27312,28.07719],[-97.27406,28.0772],[-97.275,28.07721],[-97.27593,28.07722],[-97.27687,28.07723],[-97.2778,28.07725],[-97.27874,28.07726],[-97.27967,28.07727],[-97.28033,28.07728],[-97.28033,28.07708],[-97.28127,28.07709],[-97.2822,28.0771],[-97.28314,28.07711],[-97.28407,28.07712],[-97.28501,28.07714],[-97.28594,28.07715],[-97.28688,28.07716],[-97.28781,28.07717],[-97.28875,28.07719],[-97.28968,28.0772],[-97.29062,28.07721],[-97.29155,28.07722],[-97.29249,28.07723],[-97.29342,28.07725],[-97.29436,28.07726],[-97.29529,28.07727],[-97.29623,28.07728],[-97.29716,28.07729],[-97.2981,28.07731],[-97.29809,28.0781],[-97.29807,28.0789],[-97.29806,28.07969],[-97.29805,28.08049],[-97.29803,28.08128],[-97.29802,28.08208],[-97.29801,28.08288],[-97.29799,28.08367],[-97.29798,28.08447],[-97.29797,28.08526],[-97.29796,28.08606],[-97.29794,28.08685],[-97.29793,28.08765],[-97.29792,28.08844],[-97.2979,28.08924],[-97.29789,28.09004],[-97.29788,28.09083],[-97.29786,28.09163],[-97.29785,28.09242],[-97.29785,28.09273],[-97.29876,28.09274],[-97.2997,28.09275],[-97.30063,28.09276],[-97.30157,28.09278],[-97.3025,28.09279],[-97.30344,28.0928],[-97.30437,28.09281],[-97.30531,28.09282],[-97.30624,28.09284],[-97.30718,28.09285],[-97.30811,28.09286],[-97.30905,28.09287],[-97.30998,28.09288],[-97.31092,28.0929],[-97.31158,28.0929],[-97.31158,28.09271],[-97.31251,28.09272],[-97.31345,28.09273],[-97.31438,28.09274],[-97.31532,28.09275],[-97.31625,28.09277],[-97.31719,28.09278],[-97.31812,28.09279],[-97.31906,28.0928],[-97.31999,28.09281],[-97.32093,28.09283],[-97.32186,28.09284],[-97.3228,28.09285],[-97.32373,28.09286],[-97.32467,28.09287],[-97.3256,28.09289],[-97.32654,28.0929],[-97.32747,28.09291],[-97.32841,28.09292],[-97.32934,28.09293],[-97.32933,28.09373],[-97.32932,28.09452],[-97.32931,28.09532],[-97.32929,28.09611],[-97.32928,28.09691],[-97.32927,28.0977],[-97.32925,28.0985],[-97.32924,28.0993],[-97.32923,28.10009],[-97.32922,28.10089],[-97.3292,28.10168],[-97.32919,28.10248],[-97.32918,28.10327],[-97.32917,28.10407],[-97.32915,28.10486],[-97.32914,28.10566],[-97.32913,28.10645],[-97.32911,28.10725],[-97.3291,28.10804],[-97.3291,28.10836],[-97.33001,28.10837],[-97.33094,28.10838],[-97.33188,28.10839],[-97.33281,28.1084],[-97.33375,28.10842],[-97.33468,28.10843],[-97.33562,28.10844],[-97.33655,28.10845],[-97.33749,28.10846],[-97.33842,28.10847],[-97.33936,28.10849],[-97.34029,28.1085],[-97.34123,28.10851],[-97.34216,28.10852],[-97.34283,28.10853],[-97.34283,28.10833],[-97.34376,28.10835],[-97.3447,28.10836],[-97.34563,28.10837],[-97.34657,28.10838],[-97.3475,28.10839],[-97.34844,28.1084],[-97.34937,28.10842],[-97.35031,28.10843],[-97.35124,28.10844],[-97.35218,28.10845],[-97.35311,28.10846],[-97.35405,28.10847],[-97.35498,28.10849],[-97.35592,28.1085],[-97.35685,28.10851],[-97.35779,28.10852],[-97.35845,28.10853],[-97.35845,28.10833],[-97.35939,28.10835],[-97.36032,28.10836],[-97.36126,28.10837],[-97.36219,28.10838],[-97.36313,28.10839],[-97.36406,28.1084],[-97.365,28.10842],[-97.36593,28.10843],[-97.36686,28.10844],[-97.3678,28.10845],[-97.36873,28.10846],[-97.36967,28.10847],[-97.3706,28.10849],[-97.37154,28.1085],[-97.37247,28.10851],[-97.37341,28.10852],[-97.37407,28.10853],[-97.37408,28.10834],[-97.37501,28.10835],[-97.37595,28.10836],[-97.37688,28.10837],[-97.37782,28.10838],[-97.37875,28.1084],[-97.37968,28.10841],[-97.38062,28.10842],[-97.38155,28.10843],[-97.38249,28.10844],[-97.38342,28.10845],[-97.38436,28.10846],[-97.38529,28.10848],[-97.38623,28.10849],[-97.38716,28.1085],[-97.3881,28.10851],[-97.38903,28.10852],[-97.38946,28.10853],[-97.38947,28.10782],[-97.38948,28.10702],[-97.38949,28.10623],[-97.3895,28.10543],[-97.38952,28.10464],[-97.38953,28.10384],[-97.38954,28.10305],[-97.38955,28.10225],[-97.38957,28.10146],[-97.38958,28.10066],[-97.38959,28.09987],[-97.3896,28.09907],[-97.38962,28.09828],[-97.38963,28.09749],[-97.38964,28.09669],[-97.38965,28.0959],[-97.38966,28.0951],[-97.38968,28.09431],[-97.38969,28.09351],[-97.3897,28.09272],[-97.39064,28.09273],[-97.39157,28.09274],[-97.39251,28.09275],[-97.39344,28.09276],[-97.39437,28.09277],[-97.39531,28.09278],[-97.39624,28.09279],[-97.39718,28.09281],[-97.39811,28.09282],[-97.39905,28.09283],[-97.39998,28.09284],[-97.40092,28.09285],[-97.40185,28.09286],[-97.40278,28.09287],[-97.40372,28.09289],[-97.40465,28.0929],[-97.40559,28.09291],[-97.40652,28.09292],[-97.40746,28.09293],[-97.40745,28.09373],[-97.40743,28.09452],[-97.40742,28.09532],[-97.40741,28.09611],[-97.4074,28.09691],[-97.40738,28.0977],[-97.40737,28.0985],[-97.40736,28.09929],[-97.40735,28.10009],[-97.40734,28.10088],[-97.40732,28.10168],[-97.40731,28.10247],[-97.4073,28.10327],[-97.40729,28.10406],[-97.40727,28.10486],[-97.40726,28.10565],[-97.40725,28.10645],[-97.40724,28.10724],[-97.40723,28.10804],[-97.40722,28.10837],[-97.40813,28.10838],[-97.40907,28.10839],[-97.41,28.1084],[-97.41093,28.10841],[-97.41187,28.10842],[-97.4128,28.10843],[-97.41374,28.10844],[-97.41467,28.10846],[-97.41561,28.10847],[-97.41654,28.10848],[-97.41747,28.10849],[-97.41841,28.1085],[-97.41934,28.10851],[-97.42028,28.10852],[-97.42095,28.10853],[-97.42095,28.10834],[-97.42189,28.10836],[-97.42282,28.10837],[-97.42375,28.10838],[-97.42469,28.10839],[-97.42562,28.1084],[-97.42656,28.10841],[-97.42749,28.10842],[-97.42843,28.10843],[-97.42936,28.10844],[-97.43029,28.10846],[-97.43123,28.10847],[-97.43216,28.10848],[-97.4331,28.10849],[-97.43403,28.1085],[-97.43496,28.10851],[-97.4359,28.10852],[-97.43683,28.10853],[-97.43777,28.10854],[-97.4387,28.10856],[-97.43869,28.10935],[-97.43868,28.11015],[-97.43867,28.11094],[-97.43865,28.11173],[-97.43864,28.11253],[-97.43863,28.11332],[-97.43862,28.11412],[-97.43861,28.11491],[-97.43859,28.11571],[-97.43858,28.1165],[-97.43857,28.1173],[-97.43856,28.11809],[-97.43855,28.11889],[-97.43853,28.11968],[-97.43852,28.12048],[-97.43851,28.12127],[-97.4385,28.12207],[-97.43849,28.12286],[-97.43847,28.12366],[-97.43847,28.12399],[-97.43938,28.124],[-97.44031,28.12402],[-97.44125,28.12403],[-97.44218,28.12404],[-97.44312,28.12405],[-97.44405,28.12406],[-97.44498,28.12407],[-97.44592,28.12408],[-97.44685,28.12409],[-97.44779,28.1241],[-97.44872,28.12411],[-97.44965,28.12413],[-97.45059,28.12414],[-97.45152,28.12415],[-97.45246,28.12416],[-97.45339,28.12417],[-97.45433,28.12418],[-97.45431,28.12497],[-97.4543,28.12577],[-97.45429,28.12656],[-97.45428,28.12736],[-97.45427,28.12815],[-97.45425,28.12895],[-97.45424,28.12974],[-97.45423,28.13054],[-97.45422,28.13133],[-97.45421,28.13213],[-97.45419,28.13292],[-97.45418,28.13372],[-97.45417,28.13451],[-97.45416,28.13531],[-97.45415,28.1361],[-97.45414,28.1369],[-97.45412,28.13769],[-97.45411,28.13849],[-97.4541,28.13928],[-97.4541,28.13962],[-97.455,28.13963],[-97.45594,28.13964],[-97.45687,28.13965],[-97.45781,28.13966],[-97.45874,28.13968],[-97.45967,28.13969],[-97.46061,28.1397],[-97.46154,28.13971],[-97.46248,28.13972],[-97.46341,28.13973],[-97.46434,28.13974],[-97.46528,28.13975],[-97.46621,28.13976],[-97.46715,28.13977],[-97.46782,28.13978],[-97.46783,28.1396],[-97.46876,28.13961],[-97.46969,28.13962],[-97.47063,28.13963],[-97.47156,28.13964],[-97.47249,28.13965],[-97.47343,28.13966],[-97.47436,28.13968],[-97.4753,28.13969],[-97.47623,28.1397],[-97.47716,28.13971],[-97.4781,28.13972],[-97.47903,28.13973],[-97.47997,28.13974],[-97.4809,28.13975],[-97.48183,28.13976],[-97.48277,28.13977],[-97.4837,28.13978],[-97.48464,28.13979],[-97.48557,28.1398],[-97.48556,28.1406],[-97.48555,28.14139],[-97.48554,28.14219],[-97.48552,28.14298],[-97.48551,28.14378],[-97.4855,28.14457],[-97.48549,28.14537],[-97.48548,28.14616],[-97.48547,28.14696],[-97.48545,28.14775],[-97.48544,28.14854],[-97.48543,28.14934],[-97.48542,28.15013],[-97.48541,28.15093],[-97.4854,28.15172],[-97.48538,28.15252],[-97.48537,28.15331],[-97.48536,28.15411],[-97.48535,28.1549],[-97.48534,28.15525],[-97.48625,28.15526],[-97.48719,28.15527],[-97.48812,28.15528],[-97.48905,28.15529],[-97.48999,28.1553],[-97.49092,28.15531],[-97.49186,28.15532],[-97.49279,28.15533],[-97.49372,28.15534],[-97.49466,28.15535],[-97.49559,28.15537],[-97.49652,28.15538],[-97.49746,28.15539],[-97.49839,28.1554],[-97.49885,28.1554],[-97.49886,28.1547],[-97.49887,28.1539],[-97.49888,28.15311],[-97.49889,28.15231],[-97.4989,28.15152],[-97.49892,28.15072],[-97.49893,28.14993],[-97.49894,28.14914],[-97.49895,28.14834],[-97.49896,28.14755],[-97.49897,28.14675],[-97.49898,28.14596],[-97.499,28.14516],[-97.49901,28.14437],[-97.49902,28.14358],[-97.49903,28.14278],[-97.49904,28.14199],[-97.49905,28.14119],[-97.49907,28.1404],[-97.49908,28.1396],[-97.50001,28.13961],[-97.50094,28.13963],[-97.50188,28.13964],[-97.50281,28.13965],[-97.50374,28.13966],[-97.50468,28.13967],[-97.50561,28.13968],[-97.50655,28.13969],[-97.50748,28.1397],[-97.50841,28.13971],[-97.50935,28.13972],[-97.51028,28.13973],[-97.51121,28.13974],[-97.51215,28.13975],[-97.51308,28.13976],[-97.51401,28.13977],[-97.5147,28.13978],[-97.5147,28.1396],[-97.51564,28.13962],[-97.51657,28.13963],[-97.5175,28.13964],[-97.51844,28.13965],[-97.51937,28.13966],[-97.5203,28.13967],[-97.52124,28.13968],[-97.52217,28.13969],[-97.5231,28.1397],[-97.52404,28.13971],[-97.52497,28.13972],[-97.5259,28.13973],[-97.52684,28.13974],[-97.52777,28.13975],[-97.5287,28.13976],[-97.52964,28.13977],[-97.53057,28.13978],[-97.5315,28.13979],[-97.53244,28.1398],[-97.53243,28.1406],[-97.53242,28.14139],[-97.5324,28.14219],[-97.53239,28.14298],[-97.53238,28.14377],[-97.53237,28.14457],[-97.53236,28.14536],[-97.53235,28.14616],[-97.53234,28.14695],[-97.53233,28.14775],[-97.53231,28.14854],[-97.5323,28.14934],[-97.53229,28.15013],[-97.53228,28.15092],[-97.53227,28.15172],[-97.53226,28.15251],[-97.53225,28.15331],[-97.53224,28.1541],[-97.53222,28.1549],[-97.53222,28.15525],[-97.53313,28.15526],[-97.53406,28.15527],[-97.53499,28.15528],[-97.53593,28.15529],[-97.53686,28.1553],[-97.53779,28.15531],[-97.53873,28.15532],[-97.53966,28.15533],[-97.54059,28.15535],[-97.54153,28.15536],[-97.54246,28.15537],[-97.54339,28.15538],[-97.54433,28.15539],[-97.54526,28.1554],[-97.54619,28.15541],[-97.54713,28.15542],[-97.54806,28.15543],[-97.54805,28.15622],[-97.54804,28.15702],[-97.54803,28.15781],[-97.54801,28.1586],[-97.548,28.1594],[-97.54799,28.16019],[-97.54798,28.16099],[-97.54797,28.16178],[-97.54796,28.16258],[-97.54795,28.16337],[-97.54794,28.16416],[-97.54793,28.16496],[-97.54791,28.16575],[-97.5479,28.16655],[-97.54789,28.16734],[-97.54788,28.16814],[-97.54787,28.16893],[-97.54786,28.16972],[-97.54785,28.17052],[-97.54784,28.17105],[-97.54806,28.17106],[-97.54805,28.17185],[-97.54804,28.17264],[-97.54803,28.17344],[-97.54802,28.17423],[-97.548,28.17503],[-97.54799,28.17582],[-97.54798,28.17661],[-97.54797,28.17741],[-97.54796,28.1782],[-97.54795,28.179],[-97.54794,28.17979],[-97.54793,28.18058],[-97.54792,28.18138],[-97.5479,28.18217],[-97.54789,28.18297],[-97.54788,28.18376],[-97.54787,28.18456],[-97.54786,28.18535],[-97.54785,28.18614],[-97.54784,28.18694],[-97.54783,28.18773],[-97.54782,28.18853],[-97.54688,28.18852],[-97.54595,28.18851],[-97.54501,28.18849],[-97.54408,28.18848],[-97.54315,28.18847],[-97.54221,28.18846],[-97.54128,28.18845],[-97.54035,28.18844],[-97.53941,28.18843],[-97.53848,28.18842],[-97.53755,28.18841],[-97.53661,28.1884],[-97.53568,28.18839],[-97.53475,28.18838],[-97.53381,28.18837],[-97.53288,28.18836],[-97.53241,28.18836],[-97.5324,28.18906],[-97.53239,28.18986],[-97.53238,28.19065],[-97.53237,28.19144],[-97.53236,28.19224],[-97.53235,28.19303],[-97.53234,28.19383],[-97.53233,28.19462],[-97.53231,28.19542],[-97.5323,28.19621],[-97.53229,28.197],[-97.53228,28.1978],[-97.53227,28.19859],[-97.53226,28.19939],[-97.53225,28.20018],[-97.53224,28.20098],[-97.53222,28.20177],[-97.53221,28.20257],[-97.5322,28.20336],[-97.53219,28.20415],[-97.53126,28.20414],[-97.53032,28.20413],[-97.52939,28.20412],[-97.52846,28.20411],[-97.52752,28.2041],[-97.52659,28.20409],[-97.52565,28.20408],[-97.52472,28.20407],[-97.52379,28.20406],[-97.52285,28.20405],[-97.52192,28.20404],[-97.52099,28.20403],[-97.52005,28.20402],[-97.51912,28.20401],[-97.51819,28.204],[-97.51725,28.20399],[-97.51679,28.20398],[-97.51678,28.20469],[-97.51677,28.20548],[-97.51676,28.20628],[-97.51675,28.20707],[-97.51674,28.20786],[-97.51672,28.20866],[-97.51671,28.20945],[-97.5167,28.21025],[-97.51669,28.21104],[-97.51668,28.21184],[-97.51667,28.21263],[-97.51666,28.21343],[-97.51664,28.21422],[-97.51663,28.21501],[-97.51662,28.21581],[-97.51661,28.2166],[-97.5166,28.2174],[-97.51659,28.21793],[-97.51681,28.21793],[-97.5168,28.21872],[-97.51679,28.21952],[-97.51678,28.22031],[-97.51677,28.22111],[-97.51676,28.2219],[-97.51675,28.2227],[-97.51673,28.22349],[-97.51672,28.22428],[-97.51671,28.22508],[-97.5167,28.22587],[-97.51669,28.22667],[-97.51668,28.22746],[-97.51667,28.22826],[-97.51666,28.22905],[-97.51664,28.22984],[-97.51663,28.23064],[-97.51662,28.23143],[-97.51661,28.23223],[-97.5166,28.23302],[-97.51659,28.23382],[-97.51658,28.23461],[-97.51656,28.23541],[-97.51563,28.2354],[-97.5147,28.23538],[-97.51376,28.23537],[-97.51283,28.23536],[-97.5119,28.23535],[-97.51096,28.23534],[-97.51003,28.23533],[-97.50909,28.23532],[-97.50816,28.23531],[-97.50723,28.2353],[-97.50629,28.23529],[-97.50536,28.23528],[-97.50442,28.23527],[-97.50349,28.23526],[-97.50256,28.23525],[-97.50162,28.23524],[-97.50117,28.23523],[-97.50116,28.23594],[-97.50115,28.23673],[-97.50114,28.23753],[-97.50112,28.23832],[-97.50111,28.23912],[-97.5011,28.23991],[-97.50109,28.2407],[-97.50108,28.2415],[-97.50107,28.24229],[-97.50106,28.24309],[-97.50104,28.24388],[-97.50103,28.24468],[-97.50102,28.24547],[-97.50101,28.24627],[-97.501,28.24706],[-97.50099,28.24786],[-97.50097,28.24865],[-97.50096,28.24944],[-97.50095,28.25024],[-97.50094,28.25103],[-97.50001,28.25102],[-97.49907,28.25101],[-97.49814,28.251],[-97.4972,28.25099],[-97.49627,28.25098],[-97.49534,28.25097],[-97.4944,28.25096],[-97.49347,28.25095],[-97.49253,28.25094],[-97.4916,28.25093],[-97.49067,28.25092],[-97.48973,28.25091],[-97.4888,28.25089],[-97.48786,28.25088],[-97.48693,28.25087],[-97.486,28.25086],[-97.48555,28.25086],[-97.48554,28.25156],[-97.48552,28.25236],[-97.48551,28.25315],[-97.4855,28.25395],[-97.48549,28.25474],[-97.48548,28.25554],[-97.48547,28.25633],[-97.48545,28.25712],[-97.48544,28.25792],[-97.48543,28.25871],[-97.48542,28.25951],[-97.48541,28.2603],[-97.4854,28.2611],[-97.48538,28.26189],[-97.48537,28.26269],[-97.48536,28.26348],[-97.48535,28.26428],[-97.48534,28.26507],[-97.48533,28.26586],[-97.48531,28.26666],[-97.48438,28.26665],[-97.48345,28.26664],[-97.48251,28.26663],[-97.48158,28.26662],[-97.48064,28.26661],[-97.47971,28.26659],[-97.47878,28.26658],[-97.47784,28.26657],[-97.47691,28.26656],[-97.47597,28.26655],[-97.47504,28.26654],[-97.47411,28.26653],[-97.47317,28.26652],[-97.47224,28.26651],[-97.4713,28.2665],[-97.47037,28.26649],[-97.46992,28.26648],[-97.46991,28.26719],[-97.4699,28.26798],[-97.46989,28.26878],[-97.46988,28.26957],[-97.46987,28.27037],[-97.46985,28.27116],[-97.46984,28.27196],[-97.46983,28.27275],[-97.46982,28.27354],[-97.46981,28.27434],[-97.4698,28.27513],[-97.46978,28.27593],[-97.46977,28.27672],[-97.46976,28.27752],[-97.46975,28.27831],[-97.46974,28.27911],[-97.46973,28.2799],[-97.46972,28.28043],[-97.46995,28.28043],[-97.46994,28.28122],[-97.46992,28.28202],[-97.46991,28.28281],[-97.4699,28.28361],[-97.46989,28.2844],[-97.46988,28.2852],[-97.46987,28.28599],[-97.46985,28.28679],[-97.46984,28.28758],[-97.46983,28.28838],[-97.46982,28.28917],[-97.46981,28.28996],[-97.4698,28.29076],[-97.46978,28.29155],[-97.46977,28.29235],[-97.46976,28.29314],[-97.46975,28.29394],[-97.46974,28.29473],[-97.46972,28.29553],[-97.46971,28.29632],[-97.4697,28.29712],[-97.46969,28.29791],[-97.46876,28.2979],[-97.46782,28.29789],[-97.46689,28.29788],[-97.46595,28.29787],[-97.46502,28.29786],[-97.46408,28.29785],[-97.46315,28.29784],[-97.46222,28.29782],[-97.46128,28.29781],[-97.46035,28.2978],[-97.45941,28.29779],[-97.45848,28.29778],[-97.45754,28.29777],[-97.45661,28.29776],[-97.45568,28.29775],[-97.45474,28.29774],[-97.4543,28.29773],[-97.45429,28.29844],[-97.45428,28.29923],[-97.45427,28.30003],[-97.45425,28.30082],[-97.45424,28.30162],[-97.45423,28.30241],[-97.45422,28.30321],[-97.45421,28.304],[-97.45419,28.3048],[-97.45418,28.30559],[-97.45417,28.30639],[-97.45416,28.30718],[-97.45415,28.30798],[-97.45414,28.30877],[-97.45412,28.30957],[-97.45411,28.31036],[-97.4541,28.31115],[-97.45409,28.31195],[-97.45408,28.31274],[-97.45406,28.31354],[-97.45313,28.31353],[-97.4522,28.31352],[-97.45126,28.31351],[-97.45033,28.3135],[-97.44939,28.31348],[-97.44846,28.31347],[-97.44752,28.31346],[-97.44659,28.31345],[-97.44566,28.31344],[-97.44472,28.31343],[-97.44379,28.31342],[-97.44285,28.31341],[-97.44192,28.3134],[-97.44098,28.31339],[-97.44005,28.31337],[-97.43911,28.31336],[-97.43868,28.31336],[-97.43867,28.31406],[-97.43866,28.31486],[-97.43864,28.31565],[-97.43863,28.31645],[-97.43862,28.31724],[-97.43861,28.31804],[-97.4386,28.31883],[-97.43858,28.31963],[-97.43857,28.32042],[-97.43856,28.32122],[-97.43855,28.32201],[-97.43854,28.32281],[-97.43852,28.3236],[-97.43851,28.3244],[-97.4385,28.32519],[-97.43849,28.32599],[-97.43848,28.32678],[-97.43846,28.32758],[-97.43845,28.32837],[-97.43844,28.32917],[-97.43751,28.32915],[-97.43657,28.32914],[-97.43564,28.32913],[-97.4347,28.32912],[-97.43377,28.32911],[-97.43283,28.3291],[-97.4319,28.32909],[-97.43096,28.32908],[-97.43003,28.32907],[-97.42909,28.32905],[-97.42816,28.32904],[-97.42722,28.32903],[-97.42629,28.32902],[-97.42536,28.32901],[-97.42442,28.329],[-97.42349,28.32899],[-97.42306,28.32898],[-97.42305,28.32969],[-97.42303,28.33048],[-97.42302,28.33128],[-97.42301,28.33207],[-97.423,28.33287],[-97.42299,28.33366],[-97.42297,28.33446],[-97.42296,28.33525],[-97.42295,28.33605],[-97.42294,28.33684],[-97.42292,28.33764],[-97.42291,28.33843],[-97.4229,28.33923],[-97.42289,28.34002],[-97.42288,28.34082],[-97.42286,28.34161],[-97.42285,28.34241],[-97.42284,28.34293],[-97.42308,28.34293],[-97.42307,28.34373],[-97.42306,28.34452],[-97.42304,28.34532],[-97.42303,28.34611],[-97.42302,28.3469],[-97.42301,28.3477],[-97.423,28.34849],[-97.42298,28.34929],[-97.42297,28.35008],[-97.42296,28.35088],[-97.42295,28.35167],[-97.42293,28.35247],[-97.42292,28.35326],[-97.42291,28.35406],[-97.4229,28.35485],[-97.42289,28.35565],[-97.42287,28.35644],[-97.42286,28.35724],[-97.42285,28.35803],[-97.42284,28.35883],[-97.42283,28.35962],[-97.42281,28.36042],[-97.42188,28.36041],[-97.42094,28.3604],[-97.42001,28.36038],[-97.41908,28.36037],[-97.41814,28.36036],[-97.41721,28.36035],[-97.41627,28.36034],[-97.41534,28.36033],[-97.4144,28.36032],[-97.41347,28.36031],[-97.41253,28.36029],[-97.4116,28.36028],[-97.41066,28.36027],[-97.40973,28.36026],[-97.40879,28.36025],[-97.40786,28.36024],[-97.40743,28.36023],[-97.40742,28.36094],[-97.40741,28.36174],[-97.4074,28.36253],[-97.40739,28.36333],[-97.40737,28.36412],[-97.40736,28.36491],[-97.40735,28.36571],[-97.40734,28.3665],[-97.40733,28.3673],[-97.40731,28.36809],[-97.4073,28.36889],[-97.40729,28.36968],[-97.40728,28.37048],[-97.40726,28.37127],[-97.40725,28.37207],[-97.40724,28.37286],[-97.40723,28.37366],[-97.40722,28.37445],[-97.4072,28.37525],[-97.40719,28.37604],[-97.40626,28.37603],[-97.40532,28.37602],[-97.40439,28.37601],[-97.40345,28.376],[-97.40252,28.37599],[-97.40158,28.37598],[-97.40065,28.37596],[-97.39971,28.37595],[-97.39878,28.37594],[-97.39784,28.37593],[-97.39691,28.37592],[-97.39597,28.37591],[-97.39504,28.3759],[-97.3941,28.37588],[-97.39317,28.37587],[-97.39223,28.37586],[-97.39157,28.37585],[-97.39157,28.37605],[-97.39063,28.37604],[-97.3897,28.37602],[-97.38876,28.37601],[-97.38783,28.376],[-97.38689,28.37599],[-97.38596,28.37598],[-97.38502,28.37597],[-97.38409,28.37596],[-97.38315,28.37594],[-97.38222,28.37593],[-97.38128,28.37592],[-97.38035,28.37591],[-97.37941,28.3759],[-97.37848,28.37589],[-97.37754,28.37588],[-97.3766,28.37586],[-97.37594,28.37586],[-97.37594,28.37605],[-97.375,28.37604],[-97.37407,28.37603],[-97.37313,28.37601],[-97.3722,28.376],[-97.37126,28.37599],[-97.37033,28.37598],[-97.36939,28.37597],[-97.36846,28.37596],[-97.36752,28.37594],[-97.36659,28.37593],[-97.36565,28.37592],[-97.36472,28.37591],[-97.36378,28.3759],[-97.36285,28.37589],[-97.36191,28.37588],[-97.36098,28.37586],[-97.36057,28.37586],[-97.36056,28.37657],[-97.36054,28.37736],[-97.36053,28.37816],[-97.36052,28.37895],[-97.3605,28.37975],[-97.36049,28.38054],[-97.36048,28.38134],[-97.36047,28.38213],[-97.36045,28.38293],[-97.36044,28.38372],[-97.36043,28.38452],[-97.36042,28.38531],[-97.3604,28.38611],[-97.36039,28.3869],[-97.36038,28.3877],[-97.36037,28.3885],[-97.36035,28.38929],[-97.36034,28.39009],[-97.36033,28.39088],[-97.36032,28.39168],[-97.35938,28.39166],[-97.35845,28.39165],[-97.35751,28.39164],[-97.35657,28.39163],[-97.35564,28.39162],[-97.3547,28.39161],[-97.35377,28.3916],[-97.35283,28.39158],[-97.3519,28.39157],[-97.35096,28.39156],[-97.35003,28.39155],[-97.34909,28.39154],[-97.34816,28.39153],[-97.34722,28.39151],[-97.34629,28.3915],[-97.34535,28.39149],[-97.34494,28.39148],[-97.34493,28.39219],[-97.34492,28.39299],[-97.34491,28.39378],[-97.34489,28.39458],[-97.34488,28.39537],[-97.34487,28.39617],[-97.34486,28.39696],[-97.34484,28.39776],[-97.34483,28.39856],[-97.34482,28.39935],[-97.34481,28.40015],[-97.34479,28.40094],[-97.34478,28.40174],[-97.34477,28.40253],[-97.34475,28.40333],[-97.34474,28.40412],[-97.34473,28.40492],[-97.34472,28.40571],[-97.3447,28.40651],[-97.34469,28.4073],[-97.34376,28.40729],[-97.34282,28.40728],[-97.34188,28.40727],[-97.34095,28.40726],[-97.34001,28.40724],[-97.33908,28.40723],[-97.33814,28.40722],[-97.33721,28.40721],[-97.33627,28.4072],[-97.33534,28.40719],[-97.3344,28.40717],[-97.33347,28.40716],[-97.33253,28.40715],[-97.3316,28.40714],[-97.33066,28.40713],[-97.32972,28.40711],[-97.32932,28.40711],[-97.32931,28.40782],[-97.3293,28.40861],[-97.32928,28.40941],[-97.32927,28.4102],[-97.32926,28.411],[-97.32924,28.41179],[-97.32923,28.41259],[-97.32922,28.41338],[-97.32921,28.41418],[-97.32919,28.41498],[-97.32918,28.41577],[-97.32917,28.41657],[-97.32915,28.41736],[-97.32914,28.41816],[-97.32913,28.41895],[-97.32912,28.41975],[-97.3291,28.42054],[-97.32909,28.42134],[-97.32908,28.42213],[-97.32906,28.42293],[-97.32813,28.42292],[-97.32719,28.4229],[-97.32626,28.42289],[-97.32532,28.42288],[-97.32439,28.42287],[-97.32345,28.42286],[-97.32252,28.42284],[-97.32158,28.42283],[-97.32064,28.42282],[-97.31971,28.42281],[-97.31877,28.4228],[-97.31784,28.42279],[-97.3169,28.42277],[-97.31597,28.42276],[-97.31503,28.42275],[-97.3141,28.42274],[-97.31344,28.42273],[-97.31344,28.42293],[-97.3125,28.42292],[-97.31157,28.42291],[-97.31063,28.42289],[-97.3097,28.42288],[-97.30876,28.42287],[-97.30783,28.42286],[-97.30689,28.42285],[-97.30595,28.42283],[-97.30502,28.42282],[-97.30408,28.42281],[-97.30315,28.4228],[-97.30221,28.42279],[-97.30128,28.42277],[-97.30034,28.42276],[-97.2994,28.42275],[-97.29847,28.42274],[-97.29808,28.42273],[-97.29806,28.42344],[-97.29805,28.42424],[-97.29804,28.42503],[-97.29802,28.42583],[-97.29801,28.42662],[-97.298,28.42742],[-97.29799,28.42821],[-97.29797,28.42901],[-97.29796,28.4298],[-97.29795,28.4306],[-97.29793,28.43139],[-97.29792,28.43219],[-97.29791,28.43298],[-97.29789,28.43378],[-97.29788,28.43458],[-97.29787,28.43537],[-97.29785,28.43617],[-97.29784,28.43696],[-97.29783,28.43776],[-97.29781,28.43855],[-97.29688,28.43854],[-97.29594,28.43853],[-97.29501,28.43852],[-97.29407,28.4385],[-97.29314,28.43849],[-97.2922,28.43848],[-97.29127,28.43847],[-97.29033,28.43845],[-97.2894,28.43844],[-97.28846,28.43843],[-97.28753,28.43842],[-97.28659,28.43841],[-97.28566,28.43839],[-97.28472,28.43838],[-97.28379,28.43837],[-97.28285,28.43836],[-97.28246,28.43835],[-97.28244,28.43906],[-97.28243,28.43986],[-97.28242,28.44065],[-97.2824,28.44145],[-97.28239,28.44225],[-97.28238,28.44304],[-97.28236,28.44384],[-97.28235,28.44463],[-97.28234,28.44543],[-97.28232,28.44623],[-97.28231,28.44702],[-97.2823,28.44782],[-97.28228,28.44861],[-97.28227,28.44941],[-97.28226,28.45021],[-97.28224,28.451],[-97.28223,28.4518],[-97.28222,28.4526],[-97.28221,28.45339],[-97.28219,28.45419],[-97.28126,28.45418],[-97.28032,28.45416],[-97.27938,28.45415],[-97.27845,28.45414],[-97.27751,28.45413],[-97.27657,28.45411],[-97.27564,28.4541],[-97.2747,28.45409],[-97.27377,28.45408],[-97.27283,28.45407],[-97.27189,28.45405],[-97.27096,28.45404],[-97.27002,28.45403],[-97.26908,28.45402],[-97.26815,28.454],[-97.26721,28.45399],[-97.26657,28.45398],[-97.26657,28.45419],[-97.26563,28.45418],[-97.2647,28.45417],[-97.26376,28.45415],[-97.26282,28.45414],[-97.26189,28.45413],[-97.26095,28.45412],[-97.26001,28.4541],[-97.25908,28.45409],[-97.25814,28.45408],[-97.2572,28.45407],[-97.25627,28.45405],[-97.25533,28.45404],[-97.25439,28.45403],[-97.25346,28.45402],[-97.25252,28.45401],[-97.25159,28.45399],[-97.25121,28.45399],[-97.25119,28.45469],[-97.25118,28.45549],[-97.25117,28.45629],[-97.25115,28.45708],[-97.25114,28.45788],[-97.25113,28.45867],[-97.25111,28.45947],[-97.2511,28.46027],[-97.25109,28.46106],[-97.25107,28.46186],[-97.25106,28.46265],[-97.25105,28.46345],[-97.25103,28.46424],[-97.25102,28.46504],[-97.25101,28.46584],[-97.25099,28.46663],[-97.25098,28.46743],[-97.25097,28.46793],[-97.25123,28.46793],[-97.25122,28.46873],[-97.25121,28.46952],[-97.25119,28.47032],[-97.25118,28.47111],[-97.25117,28.47191],[-97.25115,28.47271],[-97.25114,28.4735],[-97.25113,28.4743],[-97.25111,28.47509],[-97.2511,28.47589],[-97.25109,28.47668],[-97.25107,28.47748],[-97.25106,28.47828],[-97.25105,28.47907],[-97.25103,28.47987],[-97.25102,28.48066],[-97.25101,28.48146],[-97.25099,28.48225],[-97.25098,28.48305],[-97.25097,28.48385],[-97.25095,28.48464],[-97.25094,28.48544],[-97.25,28.48543],[-97.24907,28.48541],[-97.24813,28.4854],[-97.24719,28.48539],[-97.24626,28.48538],[-97.24532,28.48536],[-97.24439,28.48535],[-97.24345,28.48534],[-97.24251,28.48533],[-97.24158,28.48531],[-97.24064,28.4853],[-97.23971,28.48529],[-97.23877,28.48528],[-97.23783,28.48526],[-97.2369,28.48525],[-97.23596,28.48524],[-97.23532,28.48523],[-97.23531,28.48544],[-97.23438,28.48543],[-97.23344,28.48542],[-97.2325,28.4854],[-97.23157,28.48539],[-97.23063,28.48538],[-97.2297,28.48537],[-97.22876,28.48535],[-97.22782,28.48534],[-97.22689,28.48533],[-97.22595,28.48532],[-97.22501,28.4853],[-97.22408,28.48529],[-97.22314,28.48528],[-97.22221,28.48527],[-97.22127,28.48525],[-97.22033,28.48524],[-97.21969,28.48523],[-97.21969,28.48544],[-97.21875,28.48543],[-97.21781,28.48542],[-97.21688,28.4854],[-97.21594,28.48539],[-97.21501,28.48538],[-97.21407,28.48537],[-97.21313,28.48535],[-97.2122,28.48534],[-97.21126,28.48533],[-97.21032,28.48532],[-97.20939,28.4853],[-97.20845,28.48529],[-97.20751,28.48528],[-97.20658,28.48526],[-97.20564,28.48525],[-97.20471,28.48524],[-97.20407,28.48523],[-97.20406,28.48545],[-97.20313,28.48543],[-97.20219,28.48542],[-97.20126,28.48541],[-97.20032,28.48539],[-97.19938,28.48538],[-97.19845,28.48537],[-97.19751,28.48536],[-97.19657,28.48534],[-97.19564,28.48533],[-97.1947,28.48532],[-97.19376,28.4853],[-97.19283,28.48529],[-97.19189,28.48528],[-97.19095,28.48527],[-97.19002,28.48525],[-97.18908,28.48524],[-97.18844,28.48523],[-97.18844,28.48545],[-97.1875,28.48543],[-97.18657,28.48542],[-97.18563,28.48541],[-97.18469,28.4854],[-97.18376,28.48538],[-97.18282,28.48537],[-97.18188,28.48536],[-97.18095,28.48534],[-97.18001,28.48533],[-97.17907,28.48532],[-97.17814,28.48531],[-97.1772,28.48529],[-97.17626,28.48528],[-97.17533,28.48527],[-97.17439,28.48525],[-97.17345,28.48524],[-97.17282,28.48523],[-97.17281,28.48545],[-97.17188,28.48544],[-97.17094,28.48542],[-97.17,28.48541],[-97.16907,28.4854],[-97.16813,28.48538],[-97.16719,28.48537],[-97.16626,28.48536],[-97.16532,28.48535],[-97.16438,28.48533],[-97.16344,28.48532],[-97.16251,28.48531],[-97.16157,28.48529],[-97.16063,28.48528],[-97.1597,28.48527],[-97.15876,28.48525],[-97.15782,28.48524],[-97.15719,28.48523],[-97.15719,28.48545],[-97.15625,28.48544],[-97.15531,28.48542],[-97.15438,28.48541],[-97.15344,28.4854],[-97.1525,28.48538],[-97.15157,28.48537],[-97.15063,28.48536],[-97.14969,28.48535],[-97.14876,28.48533],[-97.14782,28.48532],[-97.14688,28.48531],[-97.14595,28.48529],[-97.14501,28.48528],[-97.14407,28.48527],[-97.14313,28.48525],[-97.1422,28.48524],[-97.14157,28.48523],[-97.14156,28.48545],[-97.14062,28.48544],[-97.13969,28.48543],[-97.13875,28.48541],[-97.13781,28.4854],[-97.13688,28.48539],[-97.13594,28.48537],[-97.135,28.48536],[-97.13407,28.48535],[-97.13313,28.48533],[-97.13219,28.48532],[-97.13125,28.48531],[-97.13032,28.48529],[-97.12938,28.48528],[-97.12844,28.48527],[-97.12751,28.48525],[-97.12657,28.48524],[-97.12594,28.48523],[-97.12594,28.48545],[-97.125,28.48544],[-97.12406,28.48543],[-97.12313,28.48541],[-97.12219,28.4854],[-97.12125,28.48539],[-97.12031,28.48537],[-97.11938,28.48536],[-97.11844,28.48535],[-97.1175,28.48533],[-97.11657,28.48532],[-97.11563,28.48531],[-97.11469,28.48529],[-97.11375,28.48528],[-97.11282,28.48527],[-97.11188,28.48525],[-97.11094,28.48524],[-97.11032,28.48523],[-97.11031,28.48546],[-97.10938,28.48544],[-97.10844,28.48543],[-97.1075,28.48542],[-97.10656,28.4854],[-97.10563,28.48539],[-97.10469,28.48538],[-97.10375,28.48536],[-97.10281,28.48535],[-97.10188,28.48534],[-97.10094,28.48532],[-97.1,28.48531],[-97.09907,28.4853],[-97.09813,28.48528],[-97.09719,28.48527],[-97.09625,28.48526],[-97.09532,28.48524],[-97.09469,28.48523],[-97.09469,28.48546],[-97.09375,28.48545],[-97.09281,28.48543],[-97.09188,28.48542],[-97.09094,28.4854],[-97.09,28.48539],[-97.08906,28.48538],[-97.08813,28.48536],[-97.08719,28.48535],[-97.08625,28.48534],[-97.08531,28.48532],[-97.08438,28.48531],[-97.08344,28.4853],[-97.0825,28.48528],[-97.08156,28.48527],[-97.08063,28.48526],[-97.07969,28.48524],[-97.07875,28.48523],[-97.07782,28.48522],[-97.07688,28.4852],[-97.07689,28.4844],[-97.07691,28.48361],[-97.07692,28.48281],[-97.07694,28.48202],[-97.07695,28.48122],[-97.07697,28.48042],[-97.07698,28.47963],[-97.077,28.47883],[-97.07701,28.47803],[-97.07703,28.47724],[-97.07704,28.47644],[-97.07706,28.47564],[-97.07707,28.47485],[-97.07709,28.47405],[-97.0771,28.47325],[-97.07712,28.47246],[-97.07713,28.47166],[-97.07714,28.47086],[-97.07716,28.47007],[-97.07716,28.46981],[-97.07625,28.46979],[-97.07531,28.46978],[-97.07438,28.46977],[-97.07344,28.46975],[-97.0725,28.46974],[-97.07156,28.46973],[-97.07063,28.46971],[-97.06969,28.4697],[-97.06875,28.46968],[-97.06781,28.46967],[-97.06687,28.46966],[-97.06594,28.46964],[-97.065,28.46963],[-97.06406,28.46962],[-97.06344,28.46961],[-97.06344,28.46984],[-97.0625,28.46982],[-97.06156,28.46981],[-97.06062,28.4698],[-97.05969,28.46978],[-97.05875,28.46977],[-97.05781,28.46976],[-97.05687,28.46974],[-97.05594,28.46973],[-97.055,28.46971],[-97.05406,28.4697],[-97.05312,28.46969],[-97.05219,28.46967],[-97.05125,28.46966],[-97.05031,28.46965],[-97.04937,28.46963],[-97.04844,28.46962],[-97.04782,28.46961],[-97.04781,28.46984],[-97.04687,28.46983],[-97.04594,28.46981],[-97.045,28.4698],[-97.04406,28.46978],[-97.04312,28.46977],[-97.04219,28.46976],[-97.04125,28.46974],[-97.04031,28.46973],[-97.03937,28.46971],[-97.03843,28.4697],[-97.0375,28.46969],[-97.03656,28.46967],[-97.03562,28.46966],[-97.03468,28.46965],[-97.03374,28.46963],[-97.03281,28.46962],[-97.03187,28.4696],[-97.03093,28.46959],[-97.02999,28.46958],[-97.03001,28.46878],[-97.03002,28.46798],[-97.03004,28.46719],[-97.03005,28.46639],[-97.03007,28.46559],[-97.03008,28.46479],[-97.0301,28.464],[-97.03011,28.4632],[-97.03013,28.4624],[-97.03015,28.46161],[-97.03016,28.46081],[-97.03018,28.46001],[-97.03019,28.45922],[-97.03021,28.45842],[-97.03022,28.45762],[-97.03024,28.45683],[-97.03025,28.45603],[-97.03027,28.45523],[-97.03028,28.45444],[-97.03029,28.45419],[-97.02937,28.45417],[-97.02843,28.45416],[-97.0275,28.45415],[-97.02656,28.45413],[-97.02562,28.45412],[-97.02468,28.4541],[-97.02375,28.45409],[-97.02281,28.45408],[-97.02187,28.45406],[-97.02093,28.45405],[-97.01999,28.45403],[-97.01906,28.45402],[-97.01812,28.45401],[-97.01718,28.45399],[-97.01656,28.45398],[-97.01656,28.45422],[-97.01562,28.4542],[-97.01468,28.45419],[-97.01375,28.45418],[-97.01281,28.45416],[-97.01187,28.45415],[-97.01093,28.45413],[-97.01,28.45412],[-97.00906,28.45411],[-97.00812,28.45409],[-97.00718,28.45408],[-97.00624,28.45406],[-97.00531,28.45405],[-97.00437,28.45404],[-97.00343,28.45402],[-97.00249,28.45401],[-97.00155,28.45399],[-97.00094,28.45398],[-97.00094,28.45422],[-97,28.45421],[-96.99906,28.45419],[-96.99812,28.45418],[-96.99718,28.45416],[-96.99625,28.45415],[-96.99531,28.45413],[-96.99437,28.45412],[-96.99343,28.45411],[-96.99249,28.45409],[-96.99156,28.45408],[-96.99062,28.45406],[-96.98968,28.45405],[-96.98874,28.45404],[-96.9878,28.45402],[-96.98687,28.45401],[-96.98593,28.45399],[-96.98532,28.45398],[-96.98531,28.45422],[-96.98437,28.45421],[-96.98343,28.45419],[-96.9825,28.45418],[-96.98156,28.45417],[-96.98062,28.45415],[-96.97968,28.45414],[-96.97874,28.45412],[-96.97781,28.45411],[-96.97687,28.45409],[-96.97593,28.45408],[-96.97499,28.45406],[-96.97405,28.45405],[-96.97311,28.45404],[-96.97218,28.45402],[-96.97124,28.45401],[-96.9703,28.45399],[-96.96969,28.45398],[-96.96968,28.45422],[-96.96875,28.45421],[-96.96781,28.45419],[-96.96687,28.45418],[-96.96593,28.45417],[-96.96499,28.45415],[-96.96405,28.45414],[-96.96312,28.45412],[-96.96218,28.45411],[-96.96124,28.45409],[-96.9603,28.45408],[-96.95936,28.45406],[-96.95843,28.45405],[-96.95749,28.45404],[-96.95655,28.45402],[-96.95561,28.45401],[-96.95467,28.45399],[-96.95406,28.45398],[-96.95406,28.45423],[-96.95312,28.45421],[-96.95218,28.4542],[-96.95124,28.45418],[-96.95031,28.45417],[-96.94937,28.45415],[-96.94843,28.45414],[-96.94749,28.45413],[-96.94655,28.45411],[-96.94561,28.4541],[-96.94468,28.45408],[-96.94374,28.45407],[-96.9428,28.45405],[-96.94186,28.45404],[-96.94092,28.45402],[-96.93998,28.45401],[-96.93905,28.45399],[-96.93844,28.45398],[-96.93843,28.45423],[-96.9375,28.45421],[-96.93656,28.4542],[-96.93562,28.45418],[-96.93468,28.45417],[-96.93374,28.45415],[-96.9328,28.45414],[-96.93187,28.45412],[-96.93093,28.45411],[-96.92999,28.45409],[-96.92905,28.45408],[-96.92811,28.45407],[-96.92717,28.45405],[-96.92623,28.45404],[-96.9253,28.45402],[-96.92436,28.45401],[-96.92342,28.45399],[-96.92282,28.45398],[-96.92281,28.45423],[-96.92187,28.45422],[-96.92093,28.4542],[-96.91999,28.45419],[-96.91906,28.45417],[-96.91812,28.45416],[-96.91718,28.45414],[-96.91624,28.45413],[-96.9153,28.45411],[-96.91436,28.4541],[-96.91342,28.45408],[-96.91248,28.45407],[-96.91155,28.45405],[-96.91061,28.45404],[-96.90967,28.45402],[-96.90873,28.45401],[-96.90779,28.45399],[-96.90719,28.45398],[-96.90719,28.45423],[-96.90625,28.45422],[-96.90531,28.4542],[-96.90437,28.45419],[-96.90343,28.45417],[-96.90249,28.45416],[-96.90155,28.45414],[-96.90061,28.45413],[-96.89967,28.45411],[-96.89874,28.4541],[-96.8978,28.45408],[-96.89686,28.45407],[-96.89592,28.45405],[-96.89498,28.45404],[-96.89404,28.45402],[-96.8931,28.45401],[-96.89216,28.45399],[-96.89156,28.45398],[-96.89156,28.45423],[-96.89062,28.45422],[-96.88968,28.4542],[-96.88874,28.45419],[-96.8878,28.45417],[-96.88686,28.45416],[-96.88592,28.45414],[-96.88499,28.45413],[-96.88405,28.45411],[-96.88311,28.4541],[-96.88217,28.45408],[-96.88123,28.45407],[-96.88029,28.45405],[-96.87935,28.45404],[-96.87841,28.45402],[-96.87748,28.45401],[-96.87654,28.45399],[-96.87626,28.45399],[-96.87625,28.4547],[-96.87623,28.4555],[-96.87621,28.4563],[-96.8762,28.4571],[-96.87618,28.4579],[-96.87617,28.45869],[-96.87615,28.45949],[-96.87613,28.46029],[-96.87612,28.46109],[-96.8761,28.46188],[-96.87608,28.46268],[-96.87607,28.46348],[-96.87605,28.46428],[-96.87603,28.46507],[-96.87602,28.46587],[-96.876,28.46667],[-96.87598,28.46747],[-96.87598,28.46793],[-96.8763,28.46794],[-96.87628,28.46873],[-96.87626,28.46953],[-96.87625,28.47033],[-96.87623,28.47113],[-96.87621,28.47192],[-96.8762,28.47272],[-96.87618,28.47352],[-96.87616,28.47432],[-96.87615,28.47511],[-96.87613,28.47591],[-96.87612,28.47671],[-96.8761,28.47751],[-96.87608,28.47831],[-96.87607,28.4791],[-96.87605,28.4799],[-96.87603,28.4807],[-96.87602,28.4815],[-96.876,28.48229],[-96.87598,28.48309],[-96.87597,28.48356],[-96.8763,28.48356],[-96.87628,28.48436],[-96.87626,28.48516],[-96.87625,28.48596],[-96.87623,28.48675],[-96.87621,28.48755],[-96.8762,28.48835],[-96.87618,28.48915],[-96.87616,28.48994],[-96.87615,28.49074],[-96.87613,28.49154],[-96.87611,28.49234],[-96.8761,28.49313],[-96.87608,28.49393],[-96.87607,28.49473],[-96.87605,28.49553],[-96.87603,28.49632],[-96.87602,28.49712],[-96.876,28.49792],[-96.87598,28.49872],[-96.87597,28.49918],[-96.87629,28.49919],[-96.87628,28.49998],[-96.87626,28.50078],[-96.87625,28.50158],[-96.87623,28.50238],[-96.87621,28.50318],[-96.8762,28.50397],[-96.87618,28.50477],[-96.87616,28.50557],[-96.87615,28.50637],[-96.87613,28.50716],[-96.87611,28.50796],[-96.8761,28.50876],[-96.87608,28.50956],[-96.87607,28.51035],[-96.87605,28.51115],[-96.87603,28.51195],[-96.87602,28.51275],[-96.876,28.51355],[-96.87598,28.51434],[-96.87597,28.51481],[-96.87629,28.51481],[-96.87628,28.51561],[-96.87626,28.51641],[-96.87625,28.5172],[-96.87623,28.518],[-96.87621,28.5188],[-96.8762,28.5196],[-96.87618,28.5204],[-96.87616,28.52119],[-96.87615,28.52199],[-96.87613,28.52279],[-96.87611,28.52359],[-96.8761,28.52438],[-96.87608,28.52518],[-96.87606,28.52598],[-96.87605,28.52678],[-96.87603,28.52757],[-96.87602,28.52837],[-96.876,28.52917],[-96.87598,28.52997],[-96.87597,28.53043],[-96.8763,28.53044],[-96.87628,28.53123],[-96.87626,28.53203],[-96.87625,28.53283],[-96.87623,28.53363],[-96.87621,28.53442],[-96.8762,28.53522],[-96.87618,28.53602],[-96.87617,28.53682],[-96.87615,28.53762],[-96.87613,28.53841],[-96.87612,28.53921],[-96.8761,28.54001],[-96.87608,28.54081],[-96.87607,28.5416],[-96.87605,28.5424],[-96.87603,28.5432],[-96.87602,28.544],[-96.876,28.54479],[-96.87599,28.54559],[-96.87598,28.54606],[-96.8763,28.54606],[-96.87628,28.54686],[-96.87626,28.54766],[-96.87625,28.54846],[-96.87623,28.54925],[-96.87621,28.55005],[-96.8762,28.55085],[-96.87618,28.55165],[-96.87617,28.55244],[-96.87615,28.55324],[-96.87613,28.55404],[-96.87612,28.55484],[-96.8761,28.55563],[-96.87608,28.55643],[-96.87607,28.55723],[-96.87605,28.55803],[-96.87603,28.55882],[-96.87602,28.55962],[-96.876,28.56042],[-96.87598,28.56122],[-96.87597,28.56201],[-96.87595,28.56281],[-96.87594,28.56361],[-96.875,28.56359],[-96.87406,28.56358],[-96.87312,28.56356],[-96.87218,28.56355],[-96.87124,28.56353],[-96.8703,28.56352],[-96.86936,28.5635],[-96.86842,28.56349],[-96.86748,28.56347],[-96.86654,28.56346],[-96.8656,28.56344],[-96.86467,28.56343],[-96.86373,28.56341],[-96.86279,28.5634],[-96.86185,28.56338],[-96.86091,28.56337],[-96.86031,28.56336],[-96.86031,28.56361],[-96.85937,28.5636],[-96.85843,28.56358],[-96.85749,28.56357],[-96.85655,28.56355],[-96.85561,28.56354],[-96.85467,28.56352],[-96.85373,28.5635],[-96.85279,28.56349],[-96.85186,28.56347],[-96.85092,28.56346],[-96.84998,28.56344],[-96.84904,28.56343],[-96.8481,28.56341],[-96.84716,28.5634],[-96.84622,28.56338],[-96.84528,28.56337],[-96.84469,28.56336],[-96.84468,28.56361],[-96.84374,28.5636],[-96.84281,28.56358],[-96.84187,28.56357],[-96.84093,28.56355],[-96.83999,28.56354],[-96.83905,28.56352],[-96.83811,28.56351],[-96.83717,28.56349],[-96.83623,28.56348],[-96.83529,28.56346],[-96.83435,28.56345],[-96.83341,28.56343],[-96.83247,28.56341],[-96.83153,28.5634],[-96.83059,28.56338],[-96.82965,28.56337],[-96.82906,28.56336],[-96.82906,28.56362],[-96.82812,28.5636],[-96.82718,28.56359],[-96.82624,28.56357],[-96.8253,28.56356],[-96.82436,28.56354],[-96.82342,28.56352],[-96.82248,28.56351],[-96.82154,28.56349],[-96.8206,28.56348],[-96.81966,28.56346],[-96.81872,28.56345],[-96.81778,28.56343],[-96.81684,28.56342],[-96.8159,28.5634],[-96.81497,28.56339],[-96.81403,28.56337],[-96.81344,28.56336],[-96.81344,28.56362],[-96.8125,28.5636],[-96.81156,28.56359],[-96.81062,28.56357],[-96.80968,28.56356],[-96.80874,28.56354],[-96.8078,28.56353],[-96.80686,28.56351],[-96.80592,28.56349],[-96.80498,28.56348],[-96.80404,28.56346],[-96.8031,28.56345],[-96.80216,28.56343],[-96.80122,28.56342],[-96.80028,28.5634],[-96.79934,28.56339],[-96.7984,28.56337],[-96.79746,28.56335],[-96.79652,28.56334],[-96.79558,28.56332],[-96.7956,28.56252],[-96.79562,28.56173],[-96.79563,28.56093],[-96.79565,28.56013],[-96.79567,28.55933],[-96.79568,28.55853],[-96.7957,28.55774],[-96.79572,28.55694],[-96.79574,28.55614],[-96.79575,28.55534],[-96.79577,28.55454],[-96.79579,28.55375],[-96.7958,28.55295],[-96.79582,28.55215],[-96.79584,28.55135],[-96.79585,28.55055],[-96.79587,28.54976],[-96.79589,28.54896],[-96.79591,28.54816],[-96.79592,28.5477],[-96.79558,28.5477],[-96.7956,28.5469],[-96.79562,28.5461],[-96.79563,28.5453],[-96.79565,28.54451],[-96.79567,28.54371],[-96.79568,28.54291],[-96.7957,28.54211],[-96.79572,28.54131],[-96.79574,28.54052],[-96.79575,28.53972],[-96.79577,28.53892],[-96.79579,28.53812],[-96.7958,28.53732],[-96.79582,28.53653],[-96.79584,28.53573],[-96.79585,28.53493],[-96.79587,28.53413],[-96.79589,28.53333],[-96.79591,28.53253],[-96.79592,28.53208],[-96.79558,28.53207],[-96.7956,28.53127],[-96.79562,28.53047],[-96.79563,28.52968],[-96.79565,28.52888],[-96.79567,28.52808],[-96.79568,28.52728],[-96.7957,28.52649],[-96.79572,28.52569],[-96.79574,28.52489],[-96.79575,28.52409],[-96.79577,28.52329],[-96.79579,28.5225],[-96.7958,28.5217],[-96.79582,28.5209],[-96.79584,28.5201],[-96.79585,28.5193],[-96.79587,28.51851],[-96.79589,28.51771],[-96.79591,28.51691],[-96.79591,28.51671],[-96.79499,28.5167],[-96.79405,28.51668],[-96.79311,28.51667],[-96.79217,28.51665],[-96.79123,28.51664],[-96.79029,28.51662],[-96.78935,28.5166],[-96.78841,28.51659],[-96.78747,28.51657],[-96.78653,28.51656],[-96.78559,28.51654],[-96.78465,28.51653],[-96.78371,28.51651],[-96.78277,28.51649],[-96.78183,28.51648],[-96.78089,28.51646],[-96.77995,28.51645],[-96.77997,28.51565],[-96.77999,28.51485],[-96.78001,28.51405],[-96.78002,28.51325],[-96.78004,28.51246],[-96.78006,28.51166],[-96.78007,28.51086],[-96.78009,28.51006],[-96.78011,28.50926],[-96.78013,28.50847],[-96.78014,28.50767],[-96.78016,28.50687],[-96.78018,28.50607],[-96.78019,28.50527],[-96.78021,28.50448],[-96.78023,28.50368],[-96.78025,28.50288],[-96.78026,28.50208],[-96.78028,28.50128],[-96.78028,28.50109],[-96.77936,28.50108],[-96.77842,28.50106],[-96.77748,28.50104],[-96.77654,28.50103],[-96.7756,28.50101],[-96.77467,28.501],[-96.77373,28.50098],[-96.77279,28.50097],[-96.77185,28.50095],[-96.77091,28.50093],[-96.76997,28.50092],[-96.76903,28.5009],[-96.76809,28.50089],[-96.76715,28.50087],[-96.76621,28.50085],[-96.76527,28.50084],[-96.76433,28.50082],[-96.76435,28.50002],[-96.76436,28.49923],[-96.76438,28.49843],[-96.7644,28.49763],[-96.76441,28.49683],[-96.76443,28.49603],[-96.76445,28.49524],[-96.76447,28.49444],[-96.76448,28.49364],[-96.7645,28.49284],[-96.76452,28.49204],[-96.76454,28.49124],[-96.76455,28.49045],[-96.76457,28.48965],[-96.76459,28.48885],[-96.7646,28.48805],[-96.76462,28.48725],[-96.76464,28.48646],[-96.76466,28.48566],[-96.76467,28.4852],[-96.76433,28.4852],[-96.76434,28.4844],[-96.76436,28.4836],[-96.76438,28.4828],[-96.7644,28.482],[-96.76441,28.48121],[-96.76443,28.48041],[-96.76445,28.47961],[-96.76447,28.47881],[-96.76448,28.47801],[-96.7645,28.47721],[-96.76452,28.47642],[-96.76453,28.47562],[-96.76455,28.47482],[-96.76457,28.47402],[-96.76459,28.47322],[-96.7646,28.47243],[-96.76462,28.47163],[-96.76464,28.47083],[-96.76465,28.47003],[-96.76466,28.46984],[-96.76374,28.46983],[-96.7628,28.46981],[-96.76186,28.4698],[-96.76092,28.46978],[-96.75998,28.46976],[-96.75904,28.46975],[-96.7581,28.46973],[-96.75716,28.46972],[-96.75622,28.4697],[-96.75528,28.46968],[-96.75434,28.46967],[-96.7534,28.46965],[-96.75246,28.46964],[-96.75152,28.46962],[-96.75094,28.46961],[-96.75093,28.46987],[-96.74999,28.46986],[-96.74905,28.46984],[-96.74811,28.46983],[-96.74717,28.46981],[-96.74623,28.4698],[-96.74529,28.46978],[-96.74435,28.46976],[-96.74341,28.46975],[-96.74247,28.46973],[-96.74153,28.46971],[-96.74059,28.4697],[-96.73965,28.46968],[-96.73871,28.46967],[-96.73777,28.46965],[-96.73683,28.46963],[-96.73589,28.46962],[-96.73495,28.4696],[-96.73401,28.46959],[-96.73307,28.46957],[-96.73309,28.46877],[-96.73311,28.46797],[-96.73312,28.46718],[-96.73314,28.46638],[-96.73316,28.46558],[-96.73318,28.46478],[-96.73319,28.46398],[-96.73321,28.46318],[-96.73323,28.46239],[-96.73325,28.46159],[-96.73326,28.46079],[-96.73328,28.45999],[-96.7333,28.45919],[-96.73332,28.45839],[-96.73333,28.4576],[-96.73335,28.4568],[-96.73337,28.456],[-96.73339,28.4552],[-96.7334,28.4544],[-96.73341,28.45395],[-96.73307,28.45395],[-96.73309,28.45315],[-96.73311,28.45235],[-96.73312,28.45155],[-96.73314,28.45075],[-96.73316,28.44995],[-96.73318,28.44915],[-96.73319,28.44836],[-96.73321,28.44756],[-96.73323,28.44676],[-96.73325,28.44596],[-96.73326,28.44516],[-96.73328,28.44436],[-96.7333,28.44356],[-96.73332,28.44277],[-96.73333,28.44197],[-96.73335,28.44117],[-96.73337,28.44037],[-96.73339,28.43957],[-96.7334,28.43877],[-96.73341,28.43859],[-96.73249,28.43858],[-96.73155,28.43856],[-96.73061,28.43854],[-96.72967,28.43853],[-96.72873,28.43851],[-96.72779,28.43849],[-96.72685,28.43848],[-96.72591,28.43846],[-96.72497,28.43845],[-96.72403,28.43843],[-96.72309,28.43841],[-96.72215,28.4384],[-96.72121,28.43838],[-96.72027,28.43837],[-96.71933,28.43835],[-96.71839,28.43833],[-96.71745,28.43832],[-96.71746,28.43752],[-96.71748,28.43672],[-96.7175,28.43592],[-96.71752,28.43512],[-96.71753,28.43433],[-96.71755,28.43353],[-96.71757,28.43273],[-96.71759,28.43193],[-96.7176,28.43113],[-96.71762,28.43033],[-96.71764,28.42954],[-96.71766,28.42874],[-96.71768,28.42794],[-96.71769,28.42714],[-96.71771,28.42634],[-96.71773,28.42555],[-96.71775,28.42475],[-96.71776,28.42395],[-96.71778,28.42315],[-96.71778,28.42297],[-96.71686,28.42296],[-96.71592,28.42294],[-96.71498,28.42292],[-96.71404,28.42291],[-96.7131,28.42289],[-96.71216,28.42288],[-96.71122,28.42286],[-96.71028,28.42284],[-96.70934,28.42283],[-96.7084,28.42281],[-96.70746,28.42279],[-96.70652,28.42278],[-96.70558,28.42276],[-96.70464,28.42275],[-96.70406,28.42274],[-96.70406,28.42301],[-96.70312,28.42299],[-96.70217,28.42297],[-96.70123,28.42296],[-96.70029,28.42294],[-96.69935,28.42293],[-96.69841,28.42291],[-96.69747,28.42289],[-96.69653,28.42288],[-96.69559,28.42286],[-96.69465,28.42284],[-96.69371,28.42283],[-96.69277,28.42281],[-96.69183,28.42279],[-96.69089,28.42278],[-96.68995,28.42276],[-96.68901,28.42275],[-96.68807,28.42273],[-96.68713,28.42271],[-96.68619,28.4227],[-96.68621,28.4219],[-96.68622,28.4211],[-96.68624,28.4203],[-96.68626,28.4195],[-96.68628,28.4187],[-96.6863,28.4179],[-96.68631,28.41711],[-96.68633,28.41631],[-96.68635,28.41551],[-96.68637,28.41471],[-96.68639,28.41391],[-96.6864,28.41311],[-96.68642,28.41231],[-96.68644,28.41152],[-96.68646,28.41072],[-96.68648,28.40992],[-96.68649,28.40912],[-96.68651,28.40832],[-96.68653,28.40752],[-96.68653,28.40735],[-96.68561,28.40733],[-96.68467,28.40732],[-96.68373,28.4073],[-96.68279,28.40728],[-96.68185,28.40727],[-96.68091,28.40725],[-96.67997,28.40723],[-96.67903,28.40722],[-96.67809,28.4072],[-96.67715,28.40719],[-96.67621,28.40717],[-96.67526,28.40715],[-96.67432,28.40714],[-96.67338,28.40712],[-96.67244,28.4071],[-96.6715,28.40709],[-96.67056,28.40707],[-96.67058,28.40627],[-96.6706,28.40547],[-96.67062,28.40467],[-96.67063,28.40388],[-96.67065,28.40308],[-96.67067,28.40228],[-96.67069,28.40148],[-96.67071,28.40068],[-96.67072,28.39988],[-96.67074,28.39908],[-96.67076,28.39829],[-96.67078,28.39749],[-96.6708,28.39669],[-96.67081,28.39589],[-96.67083,28.39509],[-96.67085,28.39429],[-96.67087,28.39349],[-96.67089,28.3927],[-96.6709,28.3919],[-96.67091,28.39145],[-96.67056,28.39144],[-96.67058,28.39065],[-96.6706,28.38985],[-96.67062,28.38905],[-96.67064,28.38825],[-96.67065,28.38745],[-96.67067,28.38665],[-96.67069,28.38585],[-96.67071,28.38506],[-96.67073,28.38426],[-96.67074,28.38346],[-96.67076,28.38266],[-96.67078,28.38186],[-96.6708,28.38106],[-96.67082,28.38026],[-96.67083,28.37946],[-96.67085,28.37867],[-96.67087,28.37787],[-96.67089,28.37707],[-96.67091,28.37627],[-96.67091,28.3761],[-96.66998,28.37609],[-96.66904,28.37607],[-96.6681,28.37605],[-96.66716,28.37604],[-96.66622,28.37602],[-96.66528,28.376],[-96.66434,28.37599],[-96.6634,28.37597],[-96.66246,28.37595],[-96.66152,28.37594],[-96.66058,28.37592],[-96.65964,28.37591],[-96.6587,28.37589],[-96.65776,28.37587],[-96.65719,28.37586],[-96.65718,28.37614],[-96.65624,28.37612],[-96.6553,28.37611],[-96.65436,28.37609],[-96.65342,28.37607],[-96.65248,28.37606],[-96.65154,28.37604],[-96.6506,28.37602],[-96.64966,28.37601],[-96.64871,28.37599],[-96.64777,28.37597],[-96.64683,28.37596],[-96.64589,28.37594],[-96.64495,28.37592],[-96.64401,28.37591],[-96.64307,28.37589],[-96.64213,28.37587],[-96.64156,28.37586],[-96.64155,28.37614],[-96.64061,28.37612],[-96.63967,28.37611],[-96.63873,28.37609],[-96.63779,28.37607],[-96.63685,28.37606],[-96.63591,28.37604],[-96.63497,28.37602],[-96.63403,28.376],[-96.63308,28.37599],[-96.63214,28.37597],[-96.6312,28.37595],[-96.63026,28.37594],[-96.62932,28.37592],[-96.62838,28.3759],[-96.62744,28.37589],[-96.6265,28.37587],[-96.62593,28.37586],[-96.62592,28.37614],[-96.62498,28.37613],[-96.62404,28.37611],[-96.6231,28.37609],[-96.62216,28.37608],[-96.62122,28.37606],[-96.62028,28.37604],[-96.61934,28.37602],[-96.6184,28.37601],[-96.61746,28.37599],[-96.61652,28.37597],[-96.61558,28.37596],[-96.61464,28.37594],[-96.6137,28.37592],[-96.61276,28.37591],[-96.61182,28.37589],[-96.61088,28.37587],[-96.61031,28.37586],[-96.6103,28.37614],[-96.60936,28.37613],[-96.60842,28.37611],[-96.60748,28.37609],[-96.60654,28.37608],[-96.6056,28.37606],[-96.60466,28.37604],[-96.60372,28.37603],[-96.60278,28.37601],[-96.60184,28.37599],[-96.60089,28.37597],[-96.59995,28.37596],[-96.59901,28.37594],[-96.59807,28.37592],[-96.59713,28.37591],[-96.59619,28.37589],[-96.59525,28.37587],[-96.59469,28.37586],[-96.59468,28.37614],[-96.59374,28.37613],[-96.5928,28.37611],[-96.59186,28.37609],[-96.59091,28.37608],[-96.58997,28.37606],[-96.58903,28.37604],[-96.58809,28.37602],[-96.58715,28.37601],[-96.58621,28.37599],[-96.58527,28.37597],[-96.58433,28.37596],[-96.58339,28.37594],[-96.58245,28.37592],[-96.5815,28.3759],[-96.58056,28.37589],[-96.57962,28.37587],[-96.57943,28.37587],[-96.57941,28.37659],[-96.57939,28.37739],[-96.57937,28.37819],[-96.57935,28.37898],[-96.57933,28.37978],[-96.57932,28.38058],[-96.5793,28.38138],[-96.57928,28.38218],[-96.57926,28.38298],[-96.57924,28.38378],[-96.57922,28.38458],[-96.5792,28.38538],[-96.57918,28.38618],[-96.57917,28.38698],[-96.57915,28.38778],[-96.57913,28.38858],[-96.57911,28.38938],[-96.57909,28.39017],[-96.57907,28.39097],[-96.57905,28.39177],[-96.57811,28.39176],[-96.57717,28.39174],[-96.57623,28.39172],[-96.57529,28.3917],[-96.57435,28.39169],[-96.57341,28.39167],[-96.57247,28.39165],[-96.57152,28.39164],[-96.57058,28.39162],[-96.56964,28.3916],[-96.5687,28.39158],[-96.56776,28.39157],[-96.56682,28.39155],[-96.56588,28.39153],[-96.56494,28.39151],[-96.56399,28.3915],[-96.56344,28.39149],[-96.56343,28.39178],[-96.56249,28.39176],[-96.56155,28.39174],[-96.5606,28.39172],[-96.55966,28.39171],[-96.55872,28.39169],[-96.55778,28.39167],[-96.55684,28.39165],[-96.5559,28.39164],[-96.55496,28.39162],[-96.55401,28.3916],[-96.55307,28.39158],[-96.55213,28.39157],[-96.55119,28.39155],[-96.55025,28.39153],[-96.54931,28.39151],[-96.54837,28.3915],[-96.54818,28.39149],[-96.54816,28.39221],[-96.54814,28.39301],[-96.54812,28.39381],[-96.54811,28.39461],[-96.54809,28.39541],[-96.54807,28.39621],[-96.54805,28.39701],[-96.54803,28.39781],[-96.54801,28.39861],[-96.54799,28.39941],[-96.54797,28.40021],[-96.54795,28.40101],[-96.54794,28.40181],[-96.54792,28.40261],[-96.5479,28.40341],[-96.54788,28.40421],[-96.54786,28.405],[-96.54784,28.4058],[-96.54782,28.4066],[-96.5478,28.4074],[-96.54686,28.40739],[-96.54592,28.40737],[-96.54498,28.40735],[-96.54404,28.40733],[-96.5431,28.40732],[-96.54215,28.4073],[-96.54121,28.40728],[-96.54027,28.40726],[-96.53933,28.40725],[-96.53839,28.40723],[-96.53745,28.40721],[-96.5365,28.40719],[-96.53556,28.40718],[-96.53462,28.40716],[-96.53368,28.40714],[-96.53274,28.40712],[-96.53218,28.40711],[-96.53218,28.4074],[-96.53124,28.40739],[-96.53029,28.40737],[-96.52935,28.40735],[-96.52841,28.40733],[-96.52747,28.40732],[-96.52653,28.4073],[-96.52559,28.40728],[-96.52465,28.40726],[-96.5237,28.40725],[-96.52276,28.40723],[-96.52182,28.40721],[-96.52088,28.40719],[-96.51994,28.40718],[-96.519,28.40716],[-96.51806,28.40714],[-96.51711,28.40712],[-96.51694,28.40712],[-96.51692,28.40784],[-96.5169,28.40864],[-96.51688,28.40944],[-96.51686,28.41024],[-96.51684,28.41104],[-96.51682,28.41184],[-96.5168,28.41264],[-96.51678,28.41344],[-96.51677,28.41424],[-96.51675,28.41504],[-96.51673,28.41584],[-96.51671,28.41663],[-96.51669,28.41743],[-96.51667,28.41823],[-96.51665,28.41903],[-96.51663,28.41983],[-96.51661,28.42063],[-96.51659,28.42143],[-96.51657,28.42223],[-96.51655,28.42303],[-96.51561,28.42301],[-96.51467,28.423],[-96.51373,28.42298],[-96.51279,28.42296],[-96.51185,28.42294],[-96.5109,28.42292],[-96.50996,28.42291],[-96.50902,28.42289],[-96.50808,28.42287],[-96.50714,28.42285],[-96.50619,28.42284],[-96.50525,28.42282],[-96.50431,28.4228],[-96.50337,28.42278],[-96.50243,28.42277],[-96.50149,28.42275],[-96.50093,28.42274],[-96.50092,28.42323],[-96.49998,28.42322],[-96.49903,28.4232],[-96.49809,28.42318],[-96.49714,28.42316],[-96.49619,28.42315],[-96.49525,28.42313],[-96.4943,28.42311],[-96.49336,28.42309],[-96.49241,28.42307],[-96.49147,28.42306],[-96.49052,28.42304],[-96.48958,28.42302],[-96.48863,28.423],[-96.48768,28.42298],[-96.48674,28.42297],[-96.48579,28.42295],[-96.48568,28.42295],[-96.48567,28.42347],[-96.48565,28.42427],[-96.48563,28.42506],[-96.48561,28.42586],[-96.48559,28.42666],[-96.48557,28.42746],[-96.48556,28.42826],[-96.48554,28.42906],[-96.48552,28.42986],[-96.4855,28.43066],[-96.48548,28.43146],[-96.48546,28.43226],[-96.48544,28.43306],[-96.48542,28.43386],[-96.4854,28.43466],[-96.48538,28.43546],[-96.48536,28.43626],[-96.48534,28.43706],[-96.48532,28.43786],[-96.4853,28.43865],[-96.48436,28.43864],[-96.48342,28.43862],[-96.48248,28.4386],[-96.48153,28.43858],[-96.48059,28.43856],[-96.47965,28.43855],[-96.47871,28.43853],[-96.47777,28.43851],[-96.47683,28.43849],[-96.47588,28.43848],[-96.47494,28.43846],[-96.474,28.43844],[-96.47306,28.43842],[-96.47212,28.4384],[-96.47117,28.43839],[-96.47023,28.43837],[-96.46969,28.43836],[-96.46968,28.43865],[-96.46874,28.43864],[-96.46779,28.43862],[-96.46685,28.4386],[-96.46591,28.43858],[-96.46497,28.43856],[-96.46403,28.43855],[-96.46308,28.43853],[-96.46214,28.43851],[-96.4612,28.43849],[-96.46026,28.43847],[-96.45932,28.43846],[-96.45837,28.43844],[-96.45743,28.43842],[-96.45649,28.4384],[-96.45555,28.43838],[-96.45461,28.43836],[-96.45445,28.43836],[-96.45443,28.43908],[-96.45441,28.43988],[-96.45439,28.44068],[-96.45437,28.44149],[-96.45435,28.44229],[-96.45433,28.44309],[-96.45431,28.44389],[-96.45429,28.44469],[-96.45427,28.44549],[-96.45425,28.44629],[-96.45423,28.44709],[-96.45421,28.44789],[-96.45419,28.44869],[-96.45417,28.44949],[-96.45415,28.45029],[-96.45413,28.45109],[-96.45411,28.45189],[-96.45409,28.45269],[-96.45407,28.45349],[-96.45405,28.45429],[-96.45311,28.45427],[-96.45217,28.45425],[-96.45123,28.45423],[-96.45028,28.45421],[-96.44934,28.4542],[-96.4484,28.45418],[-96.44746,28.45416],[-96.44652,28.45414],[-96.44557,28.45412],[-96.44463,28.45411],[-96.44369,28.45409],[-96.44275,28.45407],[-96.4418,28.45405],[-96.44086,28.45403],[-96.43992,28.45401],[-96.43898,28.454],[-96.43843,28.45399],[-96.43843,28.45429],[-96.43748,28.45427],[-96.43654,28.45425],[-96.4356,28.45424],[-96.43466,28.45422],[-96.43372,28.4542],[-96.43277,28.45418],[-96.43183,28.45416],[-96.43089,28.45414],[-96.42995,28.45413],[-96.429,28.45411],[-96.42806,28.45409],[-96.42712,28.45407],[-96.42618,28.45405],[-96.42523,28.45404],[-96.42429,28.45402],[-96.42335,28.454],[-96.4232,28.454],[-96.42318,28.45472],[-96.42316,28.45552],[-96.42314,28.45632],[-96.42312,28.45712],[-96.4231,28.45792],[-96.42308,28.45872],[-96.42306,28.45952],[-96.42304,28.46032],[-96.42302,28.46112],[-96.423,28.46192],[-96.42298,28.46272],[-96.42296,28.46352],[-96.42294,28.46432],[-96.42292,28.46512],[-96.4229,28.46592],[-96.42288,28.46672],[-96.42286,28.46752],[-96.42284,28.46832],[-96.42282,28.46912],[-96.4228,28.46992],[-96.42186,28.4699],[-96.42092,28.46988],[-96.41998,28.46986],[-96.41903,28.46985],[-96.41809,28.46983],[-96.41715,28.46981],[-96.41621,28.46979],[-96.41526,28.46977],[-96.41432,28.46975],[-96.41338,28.46973],[-96.41244,28.46972],[-96.41149,28.4697],[-96.41055,28.46968],[-96.40961,28.46966],[-96.40867,28.46964],[-96.40772,28.46962],[-96.40719,28.46961],[-96.40718,28.46992],[-96.40624,28.4699],[-96.40529,28.46988],[-96.40435,28.46986],[-96.40341,28.46984],[-96.40247,28.46983],[-96.40152,28.46981],[-96.40058,28.46979],[-96.39964,28.46977],[-96.39869,28.46975],[-96.39775,28.46973],[-96.39681,28.46972],[-96.39587,28.4697],[-96.39492,28.46968],[-96.39398,28.46966],[-96.39304,28.46964],[-96.3921,28.46962],[-96.39115,28.4696],[-96.39021,28.46959],[-96.38927,28.46957],[-96.38929,28.46877],[-96.38931,28.46797],[-96.38933,28.46717],[-96.38935,28.46637],[-96.38937,28.46557],[-96.38939,28.46477],[-96.38941,28.46397],[-96.38943,28.46317],[-96.38945,28.46237],[-96.38947,28.46157],[-96.38949,28.46077],[-96.38951,28.45997],[-96.38953,28.45917],[-96.38955,28.45837],[-96.38957,28.45757],[-96.38959,28.45677],[-96.38961,28.45597],[-96.38963,28.45517],[-96.38965,28.45437],[-96.38966,28.45395],[-96.38927,28.45394],[-96.38929,28.45314],[-96.38931,28.45234],[-96.38933,28.45154],[-96.38935,28.45074],[-96.38937,28.44994],[-96.38939,28.44914],[-96.38941,28.44834],[-96.38943,28.44754],[-96.38945,28.44674],[-96.38947,28.44594],[-96.38949,28.44514],[-96.38951,28.44434],[-96.38953,28.44354],[-96.38955,28.44274],[-96.38957,28.44194],[-96.38959,28.44114],[-96.38961,28.44034],[-96.38963,28.43954],[-96.38965,28.43874],[-96.38966,28.43832],[-96.38927,28.43831],[-96.38929,28.43751],[-96.38931,28.43671],[-96.38933,28.43591],[-96.38935,28.43511],[-96.38937,28.43431],[-96.38939,28.43351],[-96.38941,28.43271],[-96.38943,28.43191],[-96.38945,28.43111],[-96.38947,28.43031],[-96.38949,28.42951],[-96.38951,28.42871],[-96.38953,28.42791],[-96.38955,28.42711],[-96.38957,28.42631],[-96.38959,28.42551],[-96.38961,28.42471],[-96.38963,28.42391],[-96.38965,28.42311],[-96.38966,28.4227],[-96.38927,28.42269],[-96.38929,28.42189],[-96.38931,28.42109],[-96.38933,28.42029],[-96.38935,28.41949],[-96.38937,28.41869],[-96.38939,28.41789],[-96.38941,28.41709],[-96.38943,28.41629],[-96.38945,28.41549],[-96.38947,28.41469],[-96.38949,28.41389],[-96.38951,28.41309],[-96.38953,28.41229],[-96.38955,28.41149],[-96.38957,28.41069],[-96.38959,28.40989],[-96.38961,28.40909],[-96.38963,28.40829],[-96.38965,28.40749],[-96.38966,28.40707],[-96.38927,28.40707],[-96.38929,28.40627],[-96.38931,28.40547],[-96.38933,28.40467],[-96.38935,28.40387],[-96.38937,28.40307],[-96.38939,28.40227],[-96.38941,28.40147],[-96.38943,28.40067],[-96.38945,28.39987],[-96.38947,28.39907],[-96.38949,28.39827],[-96.38951,28.39747],[-96.38953,28.39667],[-96.38955,28.39587],[-96.38957,28.39507],[-96.38959,28.39427],[-96.38961,28.39346],[-96.38963,28.39266],[-96.38965,28.39186],[-96.38966,28.39176],[-96.38872,28.39174],[-96.38778,28.39172],[-96.38684,28.3917],[-96.3859,28.39169],[-96.38495,28.39167],[-96.38401,28.39165],[-96.38307,28.39163],[-96.38213,28.39161],[-96.38118,28.39159],[-96.38024,28.39157],[-96.3793,28.39156],[-96.37836,28.39154],[-96.37741,28.39152],[-96.37647,28.3915],[-96.37553,28.39148],[-96.37458,28.39146],[-96.37364,28.39144],[-96.37366,28.39064],[-96.37368,28.38984],[-96.3737,28.38904],[-96.37372,28.38824],[-96.37374,28.38744],[-96.37376,28.38664],[-96.37378,28.38584],[-96.3738,28.38504],[-96.37383,28.38424],[-96.37385,28.38344],[-96.37387,28.38264],[-96.37389,28.38184],[-96.37391,28.38104],[-96.37393,28.38024],[-96.37395,28.37944],[-96.37397,28.37864],[-96.37399,28.37784],[-96.37401,28.37704],[-96.37403,28.37624],[-96.37404,28.37583],[-96.37364,28.37582],[-96.37366,28.37502],[-96.37368,28.37422],[-96.3737,28.37342],[-96.37372,28.37262],[-96.37374,28.37182],[-96.37376,28.37102],[-96.37378,28.37022],[-96.3738,28.36942],[-96.37382,28.36862],[-96.37384,28.36782],[-96.37386,28.36701],[-96.37388,28.36621],[-96.3739,28.36541],[-96.37393,28.36461],[-96.37395,28.36381],[-96.37397,28.36301],[-96.37399,28.36221],[-96.37401,28.36141],[-96.37403,28.36061],[-96.37405,28.35981],[-96.37407,28.35901],[-96.37409,28.35821],[-96.37503,28.35823],[-96.37597,28.35825],[-96.37692,28.35827],[-96.37786,28.35829],[-96.3788,28.35831],[-96.37974,28.35832],[-96.38069,28.35834],[-96.38163,28.35836],[-96.38257,28.35838],[-96.38351,28.3584],[-96.38446,28.35842],[-96.3854,28.35844],[-96.38634,28.35845],[-96.38728,28.35847],[-96.38822,28.35849],[-96.38917,28.35851],[-96.38931,28.35851],[-96.38933,28.35779],[-96.38935,28.35699],[-96.38937,28.35619],[-96.38939,28.35539],[-96.38941,28.35459],[-96.38943,28.35379],[-96.38945,28.35299],[-96.38947,28.35219],[-96.38949,28.35139],[-96.38951,28.35059],[-96.38953,28.34979],[-96.38955,28.34899],[-96.38957,28.34819],[-96.38959,28.34739],[-96.38961,28.34659],[-96.38963,28.34579],[-96.38965,28.34499],[-96.38966,28.34458],[-96.38927,28.34457],[-96.38929,28.34377],[-96.38931,28.34297],[-96.38933,28.34217],[-96.38935,28.34137],[-96.38937,28.34057],[-96.38939,28.33977],[-96.38941,28.33897],[-96.38943,28.33817],[-96.38945,28.33737],[-96.38947,28.33657],[-96.38949,28.33577],[-96.38951,28.33497],[-96.38953,28.33417],[-96.38955,28.33337],[-96.38957,28.33257],[-96.38959,28.33177],[-96.38961,28.33097],[-96.38963,28.33017],[-96.38965,28.32937],[-96.38967,28.32857],[-96.38969,28.32777],[-96.38971,28.32697],[-96.39066,28.32698],[-96.3916,28.327],[-96.39254,28.32702],[-96.39348,28.32704],[-96.39443,28.32706],[-96.39537,28.32708],[-96.39631,28.3271],[-96.39725,28.32711],[-96.39819,28.32713],[-96.39914,28.32715],[-96.40008,28.32717],[-96.40102,28.32719],[-96.40196,28.32721],[-96.40291,28.32723],[-96.40385,28.32724],[-96.40479,28.32726],[-96.40494,28.32727],[-96.40496,28.32654],[-96.40498,28.32574],[-96.405,28.32494],[-96.40502,28.32414],[-96.40504,28.32334],[-96.40506,28.32254],[-96.40508,28.32174],[-96.4051,28.32094],[-96.40512,28.32014],[-96.40514,28.31934],[-96.40516,28.31854],[-96.40518,28.31774],[-96.4052,28.31694],[-96.40522,28.31614],[-96.40524,28.31534],[-96.40526,28.31454],[-96.40528,28.31374],[-96.4053,28.31294],[-96.40532,28.31214],[-96.40534,28.31134],[-96.40628,28.31136],[-96.40722,28.31138],[-96.40817,28.3114],[-96.40911,28.31142],[-96.41005,28.31144],[-96.41099,28.31145],[-96.41193,28.31147],[-96.41288,28.31149],[-96.41382,28.31151],[-96.41476,28.31153],[-96.4157,28.31155],[-96.41665,28.31156],[-96.41759,28.31158],[-96.41853,28.3116],[-96.41947,28.31162],[-96.42041,28.31164],[-96.42095,28.31165],[-96.42096,28.31134],[-96.4219,28.31136],[-96.42285,28.31138],[-96.42379,28.3114],[-96.42473,28.31142],[-96.42567,28.31143],[-96.42661,28.31145],[-96.42756,28.31147],[-96.4285,28.31149],[-96.42944,28.31151],[-96.43038,28.31153],[-96.43132,28.31155],[-96.43227,28.31156],[-96.43321,28.31158],[-96.43415,28.3116],[-96.43509,28.31162],[-96.43603,28.31164],[-96.43658,28.31165],[-96.43659,28.31134],[-96.43753,28.31136],[-96.43847,28.31138],[-96.43941,28.3114],[-96.44036,28.31142],[-96.4413,28.31144],[-96.44224,28.31145],[-96.44318,28.31147],[-96.44412,28.31149],[-96.44507,28.31151],[-96.44601,28.31153],[-96.44695,28.31155],[-96.44789,28.31156],[-96.44883,28.31158],[-96.44977,28.3116],[-96.45072,28.31162],[-96.45166,28.31164],[-96.45182,28.31164],[-96.45184,28.31092],[-96.45186,28.31012],[-96.45188,28.30932],[-96.4519,28.30852],[-96.45192,28.30772],[-96.45194,28.30692],[-96.45196,28.30612],[-96.45198,28.30532],[-96.452,28.30452],[-96.45202,28.30372],[-96.45204,28.30292],[-96.45206,28.30212],[-96.45208,28.30132],[-96.4521,28.30052],[-96.45211,28.29972],[-96.45213,28.29892],[-96.45215,28.29812],[-96.45217,28.29732],[-96.45219,28.29652],[-96.45221,28.29572],[-96.45316,28.29574],[-96.4541,28.29576],[-96.45504,28.29578],[-96.45598,28.29579],[-96.45692,28.29581],[-96.45786,28.29583],[-96.45881,28.29585],[-96.45975,28.29587],[-96.46069,28.29589],[-96.46163,28.2959],[-96.46257,28.29592],[-96.46351,28.29594],[-96.46446,28.29596],[-96.4654,28.29598],[-96.46634,28.29599],[-96.46728,28.29601],[-96.46783,28.29602],[-96.46784,28.29573],[-96.46878,28.29574],[-96.46972,28.29576],[-96.47066,28.29578],[-96.4716,28.2958],[-96.47255,28.29582],[-96.47349,28.29583],[-96.47443,28.29585],[-96.47537,28.29587],[-96.47631,28.29589],[-96.47725,28.29591],[-96.4782,28.29592],[-96.47914,28.29594],[-96.48008,28.29596],[-96.48102,28.29598],[-96.48196,28.296],[-96.4829,28.29601],[-96.48307,28.29602],[-96.48309,28.29529],[-96.48311,28.2945],[-96.48313,28.2937],[-96.48315,28.2929],[-96.48317,28.2921],[-96.48319,28.2913],[-96.48321,28.2905],[-96.48323,28.2897],[-96.48325,28.2889],[-96.48327,28.2881],[-96.48329,28.2873],[-96.48331,28.2865],[-96.48333,28.2857],[-96.48334,28.2849],[-96.48336,28.2841],[-96.48338,28.2833],[-96.4834,28.2825],[-96.48342,28.2817],[-96.48344,28.2809],[-96.48346,28.2801],[-96.4844,28.28012],[-96.48534,28.28014],[-96.48629,28.28016],[-96.48723,28.28017],[-96.48817,28.28019],[-96.48911,28.28021],[-96.49005,28.28023],[-96.49099,28.28025],[-96.49194,28.28026],[-96.49288,28.28028],[-96.49382,28.2803],[-96.49476,28.28032],[-96.4957,28.28033],[-96.49664,28.28035],[-96.49759,28.28037],[-96.49853,28.28039],[-96.49908,28.2804],[-96.49909,28.2801],[-96.50003,28.28012],[-96.50097,28.28014],[-96.50191,28.28016],[-96.50285,28.28018],[-96.50379,28.28019],[-96.50474,28.28021],[-96.50568,28.28023],[-96.50662,28.28025],[-96.50756,28.28026],[-96.5085,28.28028],[-96.50944,28.2803],[-96.51038,28.28032],[-96.51133,28.28034],[-96.51227,28.28035],[-96.51321,28.28037],[-96.51415,28.28039],[-96.51471,28.2804],[-96.51471,28.2801],[-96.51565,28.28012],[-96.5166,28.28014],[-96.51754,28.28016],[-96.51848,28.28018],[-96.51942,28.28019],[-96.52036,28.28021],[-96.5213,28.28023],[-96.52224,28.28025],[-96.52318,28.28026],[-96.52413,28.28028],[-96.52507,28.2803],[-96.52601,28.28032],[-96.52695,28.28033],[-96.52789,28.28035],[-96.52883,28.28037],[-96.52977,28.28039],[-96.52996,28.28039],[-96.52997,28.27967],[-96.52999,28.27887],[-96.53001,28.27807],[-96.53003,28.27727],[-96.53005,28.27647],[-96.53007,28.27567],[-96.53009,28.27487],[-96.53011,28.27407],[-96.53013,28.27327],[-96.53015,28.27248],[-96.53017,28.27168],[-96.53018,28.27088],[-96.5302,28.27008],[-96.53022,28.26928],[-96.53024,28.26848],[-96.53026,28.26768],[-96.53028,28.26688],[-96.5303,28.26608],[-96.53032,28.26528],[-96.53034,28.26448],[-96.53128,28.2645],[-96.53222,28.26452],[-96.53316,28.26453],[-96.5341,28.26455],[-96.53504,28.26457],[-96.53598,28.26459],[-96.53692,28.2646],[-96.53787,28.26462],[-96.53881,28.26464],[-96.53975,28.26466],[-96.54069,28.26467],[-96.54163,28.26469],[-96.54257,28.26471],[-96.54351,28.26473],[-96.54445,28.26474],[-96.5454,28.26476],[-96.54595,28.26477],[-96.54596,28.26448],[-96.5469,28.2645],[-96.54784,28.26452],[-96.54878,28.26454],[-96.54973,28.26455],[-96.55067,28.26457],[-96.55161,28.26459],[-96.55255,28.26461],[-96.55349,28.26462],[-96.55443,28.26464],[-96.55537,28.26466],[-96.55631,28.26468],[-96.55725,28.26469],[-96.55819,28.26471],[-96.55914,28.26473],[-96.56008,28.26475],[-96.56102,28.26476],[-96.56121,28.26477],[-96.56123,28.26405],[-96.56125,28.26325],[-96.56127,28.26245],[-96.56129,28.26165],[-96.56131,28.26085],[-96.56132,28.26005],[-96.56134,28.25925],[-96.56136,28.25845],[-96.56138,28.25765],[-96.5614,28.25685],[-96.56142,28.25605],[-96.56144,28.25526],[-96.56146,28.25446],[-96.56147,28.25366],[-96.56149,28.25286],[-96.56151,28.25206],[-96.56153,28.25126],[-96.56155,28.25046],[-96.56157,28.24966],[-96.56159,28.24886],[-96.56253,28.24888],[-96.56347,28.2489],[-96.56441,28.24891],[-96.56535,28.24893],[-96.56629,28.24895],[-96.56723,28.24897],[-96.56817,28.24898],[-96.56911,28.249],[-96.57006,28.24902],[-96.571,28.24904],[-96.57194,28.24905],[-96.57288,28.24907],[-96.57382,28.24909],[-96.57476,28.24911],[-96.5757,28.24912],[-96.57664,28.24914],[-96.57684,28.24914],[-96.57686,28.24842],[-96.57688,28.24762],[-96.57689,28.24682],[-96.57691,28.24603],[-96.57693,28.24523],[-96.57695,28.24443],[-96.57697,28.24363],[-96.57699,28.24283],[-96.57701,28.24203],[-96.57703,28.24123],[-96.57704,28.24043],[-96.57706,28.23963],[-96.57708,28.23883],[-96.5771,28.23803],[-96.57712,28.23724],[-96.57714,28.23644],[-96.57716,28.23564],[-96.57717,28.23484],[-96.57719,28.23404],[-96.57721,28.23324],[-96.57815,28.23326],[-96.57909,28.23327],[-96.58003,28.23329],[-96.58098,28.23331],[-96.58192,28.23333],[-96.58286,28.23334],[-96.5838,28.23336],[-96.58474,28.23338],[-96.58568,28.23339],[-96.58662,28.23341],[-96.58756,28.23343],[-96.5885,28.23345],[-96.58944,28.23346],[-96.59038,28.23348],[-96.59132,28.2335],[-96.59226,28.23351],[-96.59283,28.23353],[-96.59284,28.23324],[-96.59378,28.23326],[-96.59472,28.23327],[-96.59566,28.23329],[-96.5966,28.23331],[-96.59754,28.23332],[-96.59848,28.23334],[-96.59942,28.23336],[-96.60036,28.23338],[-96.6013,28.23339],[-96.60224,28.23341],[-96.60318,28.23343],[-96.60412,28.23344],[-96.60506,28.23346],[-96.60601,28.23348],[-96.60695,28.2335],[-96.60789,28.23351],[-96.6081,28.23352],[-96.60811,28.2328],[-96.60813,28.232],[-96.60815,28.2312],[-96.60817,28.2304],[-96.60819,28.2296],[-96.6082,28.2288],[-96.60822,28.228],[-96.60824,28.2272],[-96.60826,28.22641],[-96.60828,28.22561],[-96.6083,28.22481],[-96.60831,28.22401],[-96.60833,28.22321],[-96.60835,28.22241],[-96.60837,28.22161],[-96.60839,28.22081],[-96.60841,28.22001],[-96.60843,28.21922],[-96.60844,28.21842],[-96.60846,28.21762],[-96.6094,28.21764],[-96.61034,28.21765],[-96.61128,28.21767],[-96.61222,28.21769],[-96.61316,28.2177],[-96.6141,28.21772],[-96.61504,28.21774],[-96.61598,28.21775],[-96.61692,28.21777],[-96.61786,28.21779],[-96.6188,28.21781],[-96.61974,28.21782],[-96.62068,28.21784],[-96.62162,28.21786],[-96.62256,28.21787],[-96.6235,28.21789],[-96.62408,28.2179],[-96.62408,28.21762],[-96.62502,28.21764],[-96.62596,28.21765],[-96.6269,28.21767],[-96.62785,28.21769],[-96.62879,28.2177],[-96.62973,28.21772],[-96.63067,28.21774],[-96.63161,28.21775],[-96.63255,28.21777],[-96.63349,28.21779],[-96.63443,28.21781],[-96.63537,28.21782],[-96.63631,28.21784],[-96.63725,28.21786],[-96.63819,28.21787],[-96.63913,28.21789],[-96.63935,28.21789],[-96.63937,28.21717],[-96.63938,28.21638],[-96.6394,28.21558],[-96.63942,28.21478],[-96.63944,28.21398],[-96.63946,28.21318],[-96.63948,28.21238],[-96.63949,28.21158],[-96.63951,28.21078],[-96.63953,28.20998],[-96.63955,28.20919],[-96.63957,28.20839],[-96.63958,28.20759],[-96.6396,28.20679],[-96.63962,28.20599],[-96.63964,28.20519],[-96.63966,28.20439],[-96.63968,28.20359],[-96.63969,28.20279],[-96.63971,28.202],[-96.64065,28.20201],[-96.64159,28.20203],[-96.64253,28.20205],[-96.64347,28.20206],[-96.64441,28.20208],[-96.64535,28.2021],[-96.64629,28.20211],[-96.64723,28.20213],[-96.64817,28.20215],[-96.64911,28.20216],[-96.65005,28.20218],[-96.651,28.2022],[-96.65194,28.20221],[-96.65288,28.20223],[-96.65382,28.20225],[-96.65476,28.20226],[-96.65498,28.20227],[-96.65499,28.20155],[-96.65501,28.20075],[-96.65503,28.19995],[-96.65505,28.19915],[-96.65506,28.19835],[-96.65508,28.19755],[-96.6551,28.19676],[-96.65512,28.19596],[-96.65514,28.19516],[-96.65516,28.19436],[-96.65517,28.19356],[-96.65519,28.19276],[-96.65521,28.19196],[-96.65523,28.19116],[-96.65525,28.19037],[-96.65526,28.18957],[-96.65528,28.18877],[-96.6553,28.18797],[-96.65532,28.18717],[-96.65534,28.18637],[-96.65628,28.18639],[-96.65722,28.18641],[-96.65816,28.18642],[-96.6591,28.18644],[-96.66004,28.18646],[-96.66098,28.18647],[-96.66192,28.18649],[-96.66286,28.18651],[-96.6638,28.18652],[-96.66474,28.18654],[-96.66568,28.18655],[-96.66662,28.18657],[-96.66756,28.18659],[-96.6685,28.1866],[-96.66944,28.18662],[-96.67038,28.18664],[-96.6706,28.18664],[-96.67062,28.18592],[-96.67064,28.18512],[-96.67066,28.18433],[-96.67067,28.18353],[-96.67069,28.18273],[-96.67071,28.18193],[-96.67073,28.18113],[-96.67075,28.18033],[-96.67076,28.17953],[-96.67078,28.17874],[-96.6708,28.17794],[-96.67082,28.17714],[-96.67084,28.17634],[-96.67085,28.17554],[-96.67087,28.17474],[-96.67089,28.17394],[-96.67091,28.17315],[-96.67093,28.17235],[-96.67094,28.17155],[-96.67096,28.17075],[-96.6719,28.17077],[-96.67284,28.17078],[-96.67378,28.1708],[-96.67472,28.17082],[-96.67566,28.17083],[-96.6766,28.17085],[-96.67754,28.17087],[-96.67848,28.17088],[-96.67942,28.1709],[-96.68036,28.17091],[-96.6813,28.17093],[-96.68224,28.17095],[-96.68318,28.17096],[-96.68412,28.17098],[-96.68506,28.171],[-96.686,28.17101],[-96.68658,28.17102],[-96.68658,28.17075],[-96.68752,28.17077],[-96.68846,28.17078],[-96.6894,28.1708],[-96.69034,28.17082],[-96.69128,28.17083],[-96.69222,28.17085],[-96.69316,28.17087],[-96.6941,28.17088],[-96.69504,28.1709],[-96.69598,28.17092],[-96.69692,28.17093],[-96.69786,28.17095],[-96.6988,28.17097],[-96.69974,28.17098],[-96.70068,28.171],[-96.70162,28.17101],[-96.70186,28.17102],[-96.70188,28.1703],[-96.70189,28.1695],[-96.70191,28.1687],[-96.70193,28.1679],[-96.70195,28.16711],[-96.70196,28.16631],[-96.70198,28.16551],[-96.702,28.16471],[-96.70202,28.16391],[-96.70204,28.16311],[-96.70205,28.16232],[-96.70207,28.16152],[-96.70209,28.16072],[-96.70211,28.15992],[-96.70212,28.15912],[-96.70214,28.15832],[-96.70216,28.15752],[-96.70218,28.15673],[-96.70219,28.15593],[-96.70221,28.15513],[-96.70315,28.15514],[-96.70409,28.15516],[-96.70503,28.15518],[-96.70597,28.15519],[-96.70691,28.15521],[-96.70785,28.15523],[-96.70879,28.15524],[-96.70973,28.15526],[-96.71067,28.15528],[-96.71161,28.15529],[-96.71255,28.15531],[-96.71349,28.15532],[-96.71443,28.15534],[-96.71537,28.15536],[-96.71631,28.15537],[-96.71725,28.15539],[-96.71783,28.1554],[-96.71784,28.15513],[-96.71878,28.15515],[-96.71971,28.15516],[-96.72065,28.15518],[-96.72159,28.15519],[-96.72253,28.15521],[-96.72347,28.15523],[-96.72441,28.15524],[-96.72535,28.15526],[-96.72629,28.15528],[-96.72723,28.15529],[-96.72817,28.15531],[-96.72911,28.15532],[-96.73005,28.15534],[-96.73099,28.15536],[-96.73193,28.15537],[-96.73287,28.15539],[-96.73311,28.15539],[-96.73313,28.15468],[-96.73314,28.15388],[-96.73316,28.15308],[-96.73318,28.15228],[-96.7332,28.15148],[-96.73321,28.15068],[-96.73323,28.14989],[-96.73325,28.14909],[-96.73327,28.14829],[-96.73328,28.14749],[-96.7333,28.14669],[-96.73332,28.14589],[-96.73334,28.1451],[-96.73335,28.1443],[-96.73337,28.1435],[-96.73339,28.1427],[-96.73341,28.1419],[-96.73342,28.14145],[-96.73308,28.14145],[-96.73309,28.14065],[-96.73311,28.13985],[-96.73313,28.13905],[-96.73315,28.13825],[-96.73316,28.13745],[-96.73318,28.13666],[-96.7332,28.13586],[-96.73322,28.13506],[-96.73323,28.13426],[-96.73325,28.13346],[-96.73327,28.13266],[-96.73328,28.13187],[-96.7333,28.13107],[-96.73332,28.13027],[-96.73334,28.12947],[-96.73335,28.12867],[-96.73337,28.12787],[-96.73339,28.12708],[-96.73341,28.12628],[-96.73342,28.12548],[-96.73344,28.12468],[-96.73346,28.12388],[-96.7344,28.1239],[-96.73534,28.12391],[-96.73628,28.12393],[-96.73722,28.12395],[-96.73816,28.12396],[-96.7391,28.12398],[-96.74004,28.124],[-96.74098,28.12401],[-96.74192,28.12403],[-96.74286,28.12404],[-96.7438,28.12406],[-96.74473,28.12408],[-96.74567,28.12409],[-96.74661,28.12411],[-96.74755,28.12412],[-96.74849,28.12414],[-96.74908,28.12415],[-96.74908,28.12389],[-96.75002,28.1239],[-96.75096,28.12392],[-96.7519,28.12393],[-96.75284,28.12395],[-96.75378,28.12397],[-96.75472,28.12398],[-96.75566,28.124],[-96.7566,28.12401],[-96.75754,28.12403],[-96.75848,28.12405],[-96.75942,28.12406],[-96.76036,28.12408],[-96.7613,28.12409],[-96.76224,28.12411],[-96.76318,28.12413],[-96.76412,28.12414],[-96.76437,28.12415],[-96.76438,28.12343],[-96.7644,28.12263],[-96.76442,28.12183],[-96.76444,28.12103],[-96.76445,28.12024],[-96.76447,28.11944],[-96.76449,28.11864],[-96.7645,28.11784],[-96.76452,28.11704],[-96.76454,28.11624],[-96.76456,28.11545],[-96.76457,28.11465],[-96.76459,28.11385],[-96.76461,28.11305],[-96.76462,28.11225],[-96.76464,28.11145],[-96.76466,28.11066],[-96.76468,28.10986],[-96.76469,28.10906],[-96.76471,28.10826],[-96.76565,28.10828],[-96.76659,28.10829],[-96.76753,28.10831],[-96.76847,28.10832],[-96.76941,28.10834],[-96.77035,28.10836],[-96.77128,28.10837],[-96.77222,28.10839],[-96.77316,28.1084],[-96.7741,28.10842],[-96.77504,28.10844],[-96.77598,28.10845],[-96.77692,28.10847],[-96.77786,28.10848],[-96.7788,28.1085],[-96.77974,28.10851],[-96.78033,28.10852],[-96.78034,28.10826],[-96.78128,28.10828],[-96.78221,28.1083],[-96.78315,28.10831],[-96.78409,28.10833],[-96.78503,28.10834],[-96.78597,28.10836],[-96.78691,28.10837],[-96.78785,28.10839],[-96.78879,28.10841],[-96.78973,28.10842],[-96.79067,28.10844],[-96.7916,28.10845],[-96.79254,28.10847],[-96.79348,28.10848],[-96.79442,28.1085],[-96.79536,28.10852],[-96.79562,28.10852],[-96.79564,28.1078],[-96.79565,28.10701],[-96.79567,28.10621],[-96.79569,28.10541],[-96.7957,28.10461],[-96.79572,28.10381],[-96.79574,28.10302],[-96.79576,28.10222],[-96.79577,28.10142],[-96.79579,28.10062],[-96.79581,28.09982],[-96.79582,28.09902],[-96.79584,28.09823],[-96.79586,28.09743],[-96.79587,28.09663],[-96.79589,28.09583],[-96.79591,28.09503],[-96.79592,28.09458],[-96.79559,28.09457],[-96.7956,28.09377],[-96.79562,28.09297],[-96.79564,28.09218],[-96.79565,28.09138],[-96.79567,28.09058],[-96.79569,28.08978],[-96.7957,28.08898],[-96.79572,28.08819],[-96.79574,28.08739],[-96.79576,28.08659],[-96.79577,28.08579],[-96.79579,28.08499],[-96.79581,28.0842],[-96.79582,28.0834],[-96.79584,28.0826],[-96.79586,28.0818],[-96.79587,28.081],[-96.79589,28.08021],[-96.79591,28.07941],[-96.79593,28.07861],[-96.79594,28.07781],[-96.79596,28.07701],[-96.7969,28.07703],[-96.79784,28.07705],[-96.79878,28.07706],[-96.79972,28.07708],[-96.80065,28.07709],[-96.80159,28.07711],[-96.80253,28.07712],[-96.80347,28.07714],[-96.80441,28.07716],[-96.80535,28.07717],[-96.80629,28.07719],[-96.80723,28.0772],[-96.80817,28.07722],[-96.80911,28.07723],[-96.81004,28.07725],[-96.81098,28.07726],[-96.81158,28.07727],[-96.81159,28.07702],[-96.81252,28.07703],[-96.81346,28.07705],[-96.8144,28.07706],[-96.81534,28.07708],[-96.81628,28.07709],[-96.81722,28.07711],[-96.81816,28.07713],[-96.8191,28.07714],[-96.82003,28.07716],[-96.82097,28.07717],[-96.82191,28.07719],[-96.82285,28.0772],[-96.82379,28.07722],[-96.82473,28.07723],[-96.82567,28.07725],[-96.82661,28.07726],[-96.82688,28.07727],[-96.82689,28.07655],[-96.82691,28.07575],[-96.82692,28.07496],[-96.82694,28.07416],[-96.82696,28.07336],[-96.82697,28.07256],[-96.82699,28.07177],[-96.82701,28.07097],[-96.82702,28.07017],[-96.82704,28.06937],[-96.82706,28.06857],[-96.82708,28.06778],[-96.82709,28.06698],[-96.82711,28.06618],[-96.82713,28.06538],[-96.82714,28.06458],[-96.82716,28.06379],[-96.82718,28.06299],[-96.82719,28.06219],[-96.82721,28.06139],[-96.82815,28.06141],[-96.82909,28.06142],[-96.83002,28.06144],[-96.83096,28.06145],[-96.8319,28.06147],[-96.83284,28.06149],[-96.83378,28.0615],[-96.83472,28.06152],[-96.83566,28.06153],[-96.8366,28.06155],[-96.83753,28.06156],[-96.83847,28.06158],[-96.83941,28.06159],[-96.84035,28.06161],[-96.84129,28.06162],[-96.84223,28.06164],[-96.84251,28.06164],[-96.84252,28.06093],[-96.84254,28.06013],[-96.84255,28.05933],[-96.84257,28.05853],[-96.84259,28.05774],[-96.8426,28.05694],[-96.84262,28.05614],[-96.84264,28.05534],[-96.84265,28.05455],[-96.84267,28.05375],[-96.84269,28.05295],[-96.8427,28.05215],[-96.84272,28.05135],[-96.84274,28.05056],[-96.84275,28.04976],[-96.84277,28.04896],[-96.84279,28.04816],[-96.8428,28.04737],[-96.84282,28.04657],[-96.84284,28.04577],[-96.84377,28.04579],[-96.84471,28.0458],[-96.84565,28.04582],[-96.84659,28.04583],[-96.84753,28.04585],[-96.84847,28.04586],[-96.84941,28.04588],[-96.85034,28.04589],[-96.85128,28.04591],[-96.85222,28.04592],[-96.85316,28.04594],[-96.8541,28.04595],[-96.85504,28.04597],[-96.85598,28.04598],[-96.85691,28.046],[-96.85785,28.04602],[-96.85813,28.04602],[-96.85815,28.0453],[-96.85816,28.04451],[-96.85818,28.04371],[-96.8582,28.04291],[-96.85821,28.04211],[-96.85823,28.04132],[-96.85825,28.04052],[-96.85826,28.03972],[-96.85828,28.03892],[-96.8583,28.03813],[-96.85831,28.03733],[-96.85833,28.03653],[-96.85835,28.03573],[-96.85836,28.03494],[-96.85838,28.03414],[-96.8584,28.03334],[-96.85841,28.03254],[-96.85843,28.03175],[-96.85844,28.03095],[-96.85846,28.03015],[-96.8594,28.03017],[-96.86034,28.03018],[-96.86128,28.0302],[-96.86221,28.03021],[-96.86315,28.03023],[-96.86409,28.03024],[-96.86503,28.03026],[-96.86597,28.03027],[-96.86691,28.03029],[-96.86784,28.0303],[-96.86878,28.03032],[-96.86972,28.03033],[-96.87066,28.03035],[-96.8716,28.03036],[-96.87253,28.03038],[-96.87347,28.03039],[-96.87408,28.0304],[-96.87408,28.03016],[-96.87502,28.03017],[-96.87596,28.03019],[-96.8769,28.0302],[-96.87784,28.03022],[-96.87878,28.03023],[-96.87971,28.03025],[-96.88065,28.03026],[-96.88159,28.03028],[-96.88253,28.03029],[-96.88347,28.03031],[-96.8844,28.03032],[-96.88534,28.03034],[-96.88628,28.03035],[-96.88722,28.03037],[-96.88816,28.03038],[-96.8891,28.0304],[-96.88939,28.0304],[-96.8894,28.02969],[-96.88942,28.02889],[-96.88943,28.02809],[-96.88945,28.02729],[-96.88946,28.0265],[-96.88948,28.0257],[-96.8895,28.0249],[-96.88951,28.0241],[-96.88953,28.0233],[-96.88955,28.02251],[-96.88956,28.02171],[-96.88958,28.02091],[-96.88959,28.02011],[-96.88961,28.01931],[-96.88963,28.01852],[-96.88964,28.01772],[-96.88966,28.01692],[-96.88967,28.01645],[-96.88935,28.01645],[-96.88937,28.01565],[-96.88939,28.01485],[-96.8894,28.01406],[-96.88942,28.01326],[-96.88943,28.01246],[-96.88945,28.01166],[-96.88947,28.01087],[-96.88948,28.01007],[-96.8895,28.00927],[-96.88952,28.00847],[-96.88953,28.00768],[-96.88955,28.00688],[-96.88956,28.00608],[-96.88958,28.00528],[-96.8896,28.00448],[-96.88961,28.00369],[-96.88963,28.00289],[-96.88964,28.00209],[-96.88966,28.00129],[-96.88968,28.0005],[-96.88969,27.9997],[-96.88971,27.9989],[-96.89065,27.99892],[-96.89159,27.99893],[-96.89252,27.99895],[-96.89346,27.99896],[-96.8944,27.99898],[-96.89534,27.99899],[-96.89628,27.99901],[-96.89722,27.99902],[-96.89815,27.99904],[-96.89909,27.99905],[-96.90003,27.99907],[-96.90097,27.99908],[-96.90191,27.9991],[-96.90284,27.99911],[-96.90378,27.99913],[-96.90472,27.99914],[-96.90501,27.99915],[-96.90503,27.99843],[-96.90504,27.99763],[-96.90506,27.99684],[-96.90508,27.99604],[-96.90509,27.99524],[-96.90511,27.99444],[-96.90512,27.99365],[-96.90514,27.99285],[-96.90516,27.99205],[-96.90517,27.99125],[-96.90519,27.99046],[-96.9052,27.98966],[-96.90522,27.98886],[-96.90524,27.98806],[-96.90525,27.98727],[-96.90527,27.98647],[-96.90529,27.98567],[-96.9053,27.98487],[-96.90532,27.98408],[-96.90533,27.98328],[-96.90627,27.9833],[-96.90721,27.98331],[-96.90815,27.98332],[-96.90909,27.98334],[-96.91002,27.98335],[-96.91096,27.98337],[-96.9119,27.98338],[-96.91284,27.9834],[-96.91378,27.98341],[-96.91471,27.98343],[-96.91565,27.98344],[-96.91659,27.98346],[-96.91753,27.98347],[-96.91847,27.98349],[-96.9194,27.9835],[-96.92034,27.98352],[-96.92064,27.98352],[-96.92065,27.98281],[-96.92067,27.98201],[-96.92069,27.98121],[-96.9207,27.98041],[-96.92072,27.97962],[-96.92073,27.97882],[-96.92075,27.97802],[-96.92077,27.97722],[-96.92078,27.97643],[-96.9208,27.97563],[-96.92081,27.97483],[-96.92083,27.97403],[-96.92085,27.97324],[-96.92086,27.97244],[-96.92088,27.97164],[-96.92089,27.97084],[-96.92091,27.97005],[-96.92093,27.96925],[-96.92094,27.96845],[-96.92096,27.96765],[-96.9219,27.96767],[-96.92283,27.96768],[-96.92377,27.9677],[-96.92471,27.96771],[-96.92565,27.96773],[-96.92659,27.96774],[-96.92752,27.96776],[-96.92846,27.96777],[-96.9294,27.96779],[-96.93034,27.9678],[-96.93127,27.96782],[-96.93221,27.96783],[-96.93315,27.96785],[-96.93409,27.96786],[-96.93503,27.96788],[-96.93596,27.96789],[-96.93658,27.9679],[-96.93658,27.96766],[-96.93752,27.96767],[-96.93846,27.96769],[-96.9394,27.9677],[-96.94033,27.96772],[-96.94127,27.96773],[-96.94221,27.96775],[-96.94315,27.96776],[-96.94409,27.96778],[-96.94502,27.96779],[-96.94596,27.9678],[-96.9469,27.96782],[-96.94784,27.96783],[-96.94877,27.96785],[-96.94971,27.96786],[-96.95065,27.96788],[-96.95159,27.96789],[-96.9519,27.9679],[-96.95191,27.96718],[-96.95192,27.96639],[-96.95194,27.96559],[-96.95196,27.96479],[-96.95197,27.96399],[-96.95199,27.9632],[-96.952,27.9624],[-96.95202,27.9616],[-96.95203,27.9608],[-96.95205,27.96001],[-96.95207,27.95921],[-96.95208,27.95841],[-96.9521,27.95762],[-96.95211,27.95682],[-96.95213,27.95602],[-96.95215,27.95522],[-96.95216,27.95443],[-96.95217,27.95395],[-96.95186,27.95395],[-96.95188,27.95315],[-96.95189,27.95235],[-96.95191,27.95156],[-96.95193,27.95076],[-96.95194,27.94996],[-96.95196,27.94917],[-96.95197,27.94837],[-96.95199,27.94757],[-96.95201,27.94677],[-96.95202,27.94598],[-96.95204,27.94518],[-96.95205,27.94438],[-96.95207,27.94358],[-96.95208,27.94279],[-96.9521,27.94199],[-96.95212,27.94119],[-96.95213,27.9404],[-96.95215,27.9396],[-96.95216,27.9388],[-96.95218,27.938],[-96.95219,27.93721],[-96.95221,27.93641],[-96.95315,27.93642],[-96.95408,27.93644],[-96.95502,27.93645],[-96.95596,27.93647],[-96.9569,27.93648],[-96.95784,27.9365],[-96.95877,27.93651],[-96.95971,27.93653],[-96.96065,27.93654],[-96.96159,27.93656],[-96.96252,27.93657],[-96.96346,27.93658],[-96.9644,27.9366],[-96.96534,27.93661],[-96.96627,27.93663],[-96.96721,27.93664],[-96.96753,27.93665],[-96.96754,27.93593],[-96.96755,27.93514],[-96.96757,27.93434],[-96.96759,27.93354],[-96.9676,27.93274],[-96.96762,27.93195],[-96.96763,27.93115],[-96.96765,27.93035],[-96.96766,27.92956],[-96.96768,27.92876],[-96.9677,27.92796],[-96.96771,27.92716],[-96.96773,27.92637],[-96.96774,27.92557],[-96.96776,27.92477],[-96.96777,27.92398],[-96.96779,27.92318],[-96.9678,27.92238],[-96.96782,27.92158],[-96.96784,27.92079],[-96.96877,27.9208],[-96.96971,27.92082],[-96.97065,27.92083],[-96.97159,27.92085],[-96.97252,27.92086],[-96.97346,27.92087],[-96.9744,27.92089],[-96.97534,27.9209],[-96.97627,27.92092],[-96.97721,27.92093],[-96.97815,27.92095],[-96.97909,27.92096],[-96.98002,27.92097],[-96.98096,27.92099],[-96.9819,27.921],[-96.98284,27.92102],[-96.98315,27.92102],[-96.98317,27.92031],[-96.98318,27.91951],[-96.9832,27.91871],[-96.98321,27.91792],[-96.98323,27.91712],[-96.98324,27.91632],[-96.98326,27.91553],[-96.98327,27.91473],[-96.98329,27.91393],[-96.98331,27.91313],[-96.98332,27.91234],[-96.98334,27.91154],[-96.98335,27.91074],[-96.98337,27.90995],[-96.98338,27.90915],[-96.9834,27.90835],[-96.98341,27.90755],[-96.98343,27.90676],[-96.98344,27.90596],[-96.98346,27.90516],[-96.9844,27.90518],[-96.98533,27.90519],[-96.98627,27.90521],[-96.98721,27.90522],[-96.98815,27.90523],[-96.98908,27.90525],[-96.99002,27.90526],[-96.99096,27.90528],[-96.9919,27.90529],[-96.99283,27.90531],[-96.99377,27.90532],[-96.99471,27.90533],[-96.99565,27.90535],[-96.99658,27.90536],[-96.99752,27.90538],[-96.99846,27.90539],[-96.99878,27.9054],[-96.99879,27.90468],[-96.99881,27.90389],[-96.99882,27.90309],[-96.99884,27.90229],[-96.99885,27.9015],[-96.99887,27.9007],[-96.99888,27.8999],[-96.9989,27.8991],[-96.99891,27.89831],[-96.99893,27.89751],[-96.99895,27.89671],[-96.99896,27.89592],[-96.99898,27.89512],[-96.99899,27.89432],[-96.99901,27.89353],[-96.99902,27.89273],[-96.99904,27.89193],[-96.99905,27.89113],[-96.99907,27.89034],[-96.99908,27.88954],[-97.00002,27.88955],[-97.00096,27.88957],[-97.00189,27.88958],[-97.00283,27.8896],[-97.00377,27.88961],[-97.00471,27.88963],[-97.00564,27.88964],[-97.00658,27.88965],[-97.00752,27.88967],[-97.00846,27.88968],[-97.00939,27.8897],[-97.01033,27.88971],[-97.01127,27.88972],[-97.0122,27.88974],[-97.01314,27.88975],[-97.01408,27.88977],[-97.0144,27.88977],[-97.01442,27.88906],[-97.01443,27.88826],[-97.01445,27.88746],[-97.01446,27.88667],[-97.01448,27.88587],[-97.01449,27.88507],[-97.01451,27.88428],[-97.01452,27.88348],[-97.01454,27.88268],[-97.01456,27.88189],[-97.01457,27.88109],[-97.01459,27.88029],[-97.0146,27.8795],[-97.01462,27.8787],[-97.01463,27.8779],[-97.01465,27.87711],[-97.01466,27.87631],[-97.01467,27.87583],[-97.01437,27.87582],[-97.01439,27.87503],[-97.0144,27.87423],[-97.01442,27.87343],[-97.01443,27.87264],[-97.01445,27.87184],[-97.01447,27.87104],[-97.01448,27.87025],[-97.0145,27.86945],[-97.01451,27.86865],[-97.01453,27.86786],[-97.01454,27.86706],[-97.01456,27.86626],[-97.01457,27.86547],[-97.01459,27.86467],[-97.0146,27.86387],[-97.01462,27.86307],[-97.01463,27.86228],[-97.01465,27.86148],[-97.01466,27.86068],[-97.01468,27.85989],[-97.01469,27.85909],[-97.01471,27.85829],[-97.01565,27.85831],[-97.01658,27.85832],[-97.01752,27.85834],[-97.01846,27.85835],[-97.01939,27.85836],[-97.02033,27.85838],[-97.02127,27.85839],[-97.02221,27.85841],[-97.02314,27.85842],[-97.02408,27.85843],[-97.02502,27.85845],[-97.02595,27.85846],[-97.02689,27.85848],[-97.02783,27.85849],[-97.02876,27.8585],[-97.0297,27.85852],[-97.03004,27.85852],[-97.03005,27.85781],[-97.03006,27.85701],[-97.03008,27.85622],[-97.03009,27.85542],[-97.03011,27.85462],[-97.03012,27.85383],[-97.03014,27.85303],[-97.03015,27.85223],[-97.03017,27.85144],[-97.03018,27.85064],[-97.0302,27.84984],[-97.03021,27.84904],[-97.03023,27.84825],[-97.03025,27.84745],[-97.03026,27.84665],[-97.03028,27.84586],[-97.03029,27.84506],[-97.03031,27.84426],[-97.03032,27.84347],[-97.03034,27.84267],[-97.03127,27.84268],[-97.03221,27.8427],[-97.03315,27.84271],[-97.03408,27.84273],[-97.03502,27.84274],[-97.03596,27.84275],[-97.03689,27.84277],[-97.03783,27.84278],[-97.03877,27.8428],[-97.0397,27.84281],[-97.04064,27.84282],[-97.04158,27.84284],[-97.04251,27.84285],[-97.04345,27.84287],[-97.04439,27.84288],[-97.04532,27.84289],[-97.04595,27.8429],[-97.04596,27.84267],[-97.04689,27.84269],[-97.04783,27.8427],[-97.04877,27.84271],[-97.0497,27.84273],[-97.05064,27.84274],[-97.05158,27.84275],[-97.05252,27.84277],[-97.05345,27.84278],[-97.05439,27.8428],[-97.05533,27.84281],[-97.05626,27.84282],[-97.0572,27.84284],[-97.05814,27.84285],[-97.05907,27.84287],[-97.06001,27.84288],[-97.06095,27.84289],[-97.06188,27.84291],[-97.06282,27.84292],[-97.06376,27.84293]]],"terms_url":"https://data.tnris.org/collection/bfdb7a76-a36c-4e9b-ba18-e8c8b259ed91","terms_text":"Strategic Mapping Program (StratMap). San Antonio River Authority Imagery, 2016-08-01"},{"id":"smith_county_2019_wms","name":"TX: Smith County Imagery 2019","type":"wms","template":"https://imagery.tnris.org/server/services/Smith_County/SmithCo_2020_NCCIR_6in/ImageServer/WMSServer?LAYERS=0&STYLES=default&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","zoomExtent":[3,22],"polygon":[[[-94.98,32.19],[-94.98,32.13],[-95.49,32.13],[-95.49,32.28],[-95.46,32.28],[-95.46,32.34],[-95.49,32.34],[-95.49,32.37],[-95.52,32.37],[-95.52,32.4],[-95.55,32.4],[-95.55,32.43],[-95.58,32.43],[-95.58,32.46],[-95.61,32.46],[-95.61,32.7],[-95.55,32.7],[-95.55,32.67],[-95.52,32.67],[-95.52,32.64],[-95.43,32.64],[-95.43,32.61],[-95.28,32.61],[-95.28,32.58],[-95.07,32.58],[-95.07,32.55],[-94.98,32.55],[-94.98,32.19]]],"terms_url":"https://data.tnris.org/collection/38f1b2e7-6fc7-4357-80a4-1ee33d7abaaf","terms_text":"Smith County (Smith). Smith County Imagery, 2019-12-11","best":true},{"id":"US_Forest_Service_roads_overlay","name":"U.S. Forest Roads Overlay","type":"tms","template":"https://{switch:a,b,c,d}.tiles.mapbox.com/styles/v1/glassman/cjf4qjmps0tgv2qpahj977mvz/tiles/256/{zoom}/{x}/{y}?access_token=pk.eyJ1IjoiZ2xhc3NtYW4iLCJhIjoiY2thbDk2M29tMHlrcjJ6cXUxZ2J5bW5nayJ9.DnGP0FnpEhkrfx-TX0pXxQ","zoomExtent":[0,20],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197]]],"description":"Highway: Green casing = unclassified. Brown casing = track. Surface: gravel = light brown fill, Asphalt = black, paved = gray, ground =white, concrete = blue, grass = green. Seasonal = white bars","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USForestService-overlay.png","overlay":true},{"id":"US_Forest_Service_roads","name":"U.S. Forest Service roads","type":"tms","template":"https://osm.cycle.travel/forest/{zoom}/{x}/{y}.png","zoomExtent":[0,19],"polygon":[[[-124.76179,48.41301],[-124.60595,45.90245],[-124.99343,40.05576],[-122.53697,36.85661],[-119.97759,33.00641],[-117.67593,32.46302],[-114.86123,32.47999],[-111.00893,31.33601],[-108.19927,31.326],[-108.18711,31.77551],[-106.53072,31.78209],[-106.48421,31.74645],[-106.42932,31.75206],[-106.28689,31.56133],[-106.20525,31.4467],[-105.02053,30.5361],[-104.58819,29.69979],[-103.25189,28.89087],[-102.71736,29.39206],[-102.1514,29.74757],[-101.25529,29.48105],[-100.00624,28.00822],[-99.23511,26.4476],[-98.01091,25.9928],[-97.43502,25.8266],[-96.95553,25.98216],[-96.80617,27.79782],[-95.55633,28.58761],[-93.74053,29.47421],[-90.90285,28.85645],[-88.01567,28.99443],[-88.01625,30.00389],[-86.02775,30.00475],[-84.01879,28.99618],[-81.9972,25.98268],[-81.99666,25.01349],[-84.01656,25.01258],[-84.01601,24.00527],[-80.02,24.0071],[-79.89011,26.85507],[-80.02453,32.01613],[-75.41474,35.05319],[-74.02112,39.57279],[-72.00202,40.99125],[-69.87974,40.99205],[-69.84893,43.26199],[-66.94528,44.71049],[-67.75966,47.099],[-69.25051,47.51223],[-70.46149,46.21766],[-71.41227,45.25488],[-72.02225,45.00598],[-75.07988,44.98029],[-76.90231,43.80246],[-78.76239,43.62496],[-79.15798,43.44626],[-79.00601,42.80053],[-82.66248,41.68895],[-82.17616,43.58854],[-83.2814,46.13885],[-87.50645,48.01427],[-88.34922,48.29633],[-89.43531,47.98378],[-93.99811,49.00671],[-95.11054,49.412],[-96.01312,49.00605],[-123.32289,49.00429],[-123.22752,48.18499],[-124.76179,48.41301]],[[-160.57876,22.50629],[-160.57822,21.49846],[-158.74706,21.24398],[-157.50832,20.9958],[-155.99619,18.77902],[-154.62178,18.7587],[-154.68902,19.88057],[-156.29276,21.22259],[-157.50474,21.9985],[-159.00937,22.50702],[-160.57876,22.50629]],[[-167.15715,68.72197],[-164.8554,67.02551],[-168.0022,66.00175],[-169.00874,66.00155],[-169.00754,64.99877],[-172.51433,63.87673],[-173.8197,59.74014],[-162.50181,58.00058],[-160.0159,58.00124],[-160.01497,57.00003],[-160.50548,56.9999],[-165.80926,54.82485],[-178.0001,52.24465],[-177.9993,51.25543],[-171.46891,51.82153],[-162.40251,53.95666],[-159.00757,55.0025],[-158.01907,55.00278],[-151.99632,55.99919],[-151.50034,57.99879],[-151.50129,58.99198],[-138.516,58.99532],[-138.51505,57.99864],[-133.99482,54.00317],[-130.00444,54.00434],[-130.00708,57.00005],[-131.97588,56.99952],[-135.12299,59.7566],[-138.00718,59.9918],[-139.17159,60.41272],[-140.9874,61.01186],[-140.9684,69.95351],[-156.17689,71.56333],[-160.41363,70.73977],[-163.02183,69.97074],[-164.9717,68.99469],[-167.15715,68.72197]]]},{"id":"UkraineDonAndriivskaOTG2020","name":"Ukraine - Andriivska OTG 2020","type":"tms","template":"https://otgportal.com.ua//arcgis/rest/services/don_andriivska/%D0%90%D0%BD%D0%B4%D1%80%D1%96%D1%97%D0%B2%D1%81%D1%8C%D0%BA%D0%B0_%D0%BE%D1%80%D1%82%D0%BE/MapServer/tile/{zoom}/{y}/{x}","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[11,19],"polygon":[[[37.3003,48.7113],[37.4479,48.7115],[37.4455,48.6653],[37.4197,48.612],[37.3847,48.5866],[37.2577,48.5629],[37.2467,48.5959],[37.2003,48.599],[37.1894,48.6174],[37.2165,48.6639],[37.2642,48.6533],[37.3003,48.7113]]],"terms_url":"http://andriivska.gromada.org.ua/","terms_text":"Геопортал Андріївської громади","best":true},{"id":"UkraineKyiv2014DZK","name":"Ukraine - Kyiv 2014 (DZK)","type":"tms","template":"https://map.land.gov.ua/map/ortho_kiev/{zoom}/{x}/{-y}.jpg","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[30.30752,50.57184],[30.33155,50.57402],[30.37687,50.57925],[30.42288,50.58143],[30.4318,50.58579],[30.44416,50.58797],[30.45515,50.58754],[30.46545,50.58449],[30.46819,50.57751],[30.49085,50.57489],[30.51351,50.57489],[30.52519,50.57402],[30.55608,50.55221],[30.58424,50.53869],[30.5966,50.53781],[30.60896,50.5365],[30.64329,50.5352],[30.65496,50.53563],[30.65496,50.54305],[30.66045,50.54916],[30.66801,50.55439],[30.67762,50.55876],[30.68792,50.56137],[30.70783,50.55614],[30.71127,50.56356],[30.71127,50.57838],[30.72157,50.58231],[30.71882,50.58972],[30.72981,50.59103],[30.74011,50.58841],[30.76208,50.58536],[30.77306,50.58274],[30.78336,50.57795],[30.80259,50.57141],[30.81014,50.56617],[30.82182,50.55439],[30.82525,50.53956],[30.81701,50.53432],[30.79504,50.52909],[30.78474,50.52559],[30.76276,50.51992],[30.76208,50.5125],[30.75315,50.50769],[30.74354,50.50376],[30.73805,50.49721],[30.74629,50.49197],[30.75521,50.48847],[30.74835,50.48236],[30.75178,50.47537],[30.75315,50.46794],[30.74835,50.46138],[30.75178,50.45439],[30.78886,50.43646],[30.7971,50.43165],[30.80328,50.41765],[30.8225,50.40846],[30.82044,50.40102],[30.82319,50.39358],[30.81289,50.39095],[30.80122,50.39139],[30.78954,50.39314],[30.77787,50.3927],[30.77856,50.3857],[30.77169,50.38001],[30.76208,50.37519],[30.75109,50.37256],[30.73873,50.37256],[30.72775,50.37475],[30.71813,50.37957],[30.71539,50.36512],[30.71127,50.35855],[30.70577,50.35241],[30.69753,50.34716],[30.68586,50.34453],[30.65084,50.34058],[30.63848,50.34014],[30.62681,50.33795],[30.62887,50.3305],[30.64947,50.29279],[30.66663,50.28314],[30.67144,50.27656],[30.6632,50.27085],[30.65153,50.26997],[30.64535,50.27612],[30.63368,50.27787],[30.62132,50.27656],[30.61857,50.2691],[30.62956,50.25637],[30.6378,50.25154],[30.64535,50.23792],[30.64398,50.2309],[30.63917,50.22387],[30.62956,50.21992],[30.6069,50.2164],[30.59591,50.2186],[30.59042,50.23353],[30.5863,50.241],[30.57531,50.25505],[30.56501,50.25944],[30.5657,50.2669],[30.56432,50.29718],[30.56638,50.30463],[30.5657,50.31209],[30.55677,50.31691],[30.54441,50.31735],[30.52587,50.32699],[30.51489,50.3305],[30.50253,50.33182],[30.48055,50.33664],[30.47163,50.34146],[30.46957,50.34935],[30.47025,50.35679],[30.46201,50.36205],[30.4524,50.35679],[30.44004,50.35548],[30.43661,50.36512],[30.43111,50.37212],[30.43661,50.37826],[30.43455,50.3857],[30.40914,50.39883],[30.39678,50.40014],[30.3906,50.40671],[30.37069,50.41546],[30.36314,50.42159],[30.3597,50.42902],[30.3597,50.43646],[30.35696,50.44389],[30.3446,50.44477],[30.32056,50.44258],[30.29585,50.44477],[30.28349,50.44477],[30.27799,50.43864],[30.27525,50.43165],[30.26563,50.42771],[30.25396,50.42902],[30.24572,50.42377],[30.23542,50.42771],[30.2416,50.43427],[30.2416,50.44214],[30.23679,50.4487],[30.23885,50.45613],[30.24297,50.46313],[30.24915,50.46968],[30.25671,50.47493],[30.26083,50.48192],[30.26563,50.48847],[30.26907,50.49983],[30.26151,50.50595],[30.26357,50.51381],[30.26975,50.51992],[30.28898,50.52821],[30.29722,50.53345],[30.30271,50.54],[30.30203,50.54741],[30.30477,50.55483],[30.32743,50.55221],[30.33086,50.55919],[30.32262,50.56486],[30.31233,50.56835],[30.30752,50.57184]]],"description":"Works only from within Ukraine or with an Ukrainian proxy server."},{"id":"UkraineLubetskaOTG2020","name":"Ukraine - Lubetska OTG 2020","type":"tms","template":"https://otgportal.com.ua/arcgis/rest/services/chern_lubecka/Lubecka_ortho1000_2020/MapServer/WMTS/tile/1.0.0/chern_lubecka_Lubecka_ortho1000_2020/default/GoogleMapsCompatible/{zoom}/{y}/{x}","endDate":"2020-01-01T00:00:00.000Z","startDate":"2020-01-01T00:00:00.000Z","zoomExtent":[11,20],"polygon":[[[30.9471,51.6608],[30.8925,51.592],[30.8372,51.5811],[30.8142,51.5834],[30.7517,51.6135],[30.669,51.681],[30.5945,51.6642],[30.5577,51.7027],[30.6686,51.761],[30.6985,51.8016],[30.7452,51.7905],[30.7342,51.7703],[30.8135,51.7425],[30.85856,51.68214],[30.9261,51.67366],[30.9471,51.6608]]],"terms_text":"Map data: © Геоінформаційна система Любецької громади","best":true,"icon":"https://gromada.org.ua/favicon-32x32.png"},{"id":"UkraineMykolaiv2018","name":"Ukraine - Mykolaiv 2018","type":"tms","template":"http://mbk.mkrada.gov.ua/map/rtile/carto_2013928517078615452/ua/{zoom}/{x}/{y}.png","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","zoomExtent":[11,21],"polygon":[[[31.88301,47.01397],[31.87752,46.97838],[31.91391,46.98447],[31.91666,46.97932],[31.89468,46.95823],[31.8782,46.95026],[31.88988,46.93339],[31.90018,46.92307],[31.93176,46.91697],[31.9558,46.91228],[31.98257,46.90665],[31.99699,46.90008],[31.98532,46.87568],[31.9558,46.85127],[31.93108,46.83389],[31.91391,46.81792],[31.9455,46.81275],[32.00661,46.81322],[32.04025,46.83812],[32.08214,46.87662],[32.11235,46.90478],[32.12814,46.92917],[32.13844,46.95167],[32.13776,46.97744],[32.11647,46.99384],[32.04918,47.01163],[32.02446,47.02614],[32.03476,47.02848],[32.03957,47.03831],[32.03064,47.05328],[31.96404,47.04533],[31.88301,47.01397]]],"terms_text":"Map data: © Геоінформаційна система містобудівного кадастру Миколаївської міської ради","best":true,"icon":"https://mkrada.gov.ua/favicon.ico"},{"id":"Ukraine-orto10000-2012","name":"Ukraine - Orthophotomaps 2012","type":"tms","template":"http://212.26.144.110/tile2/orto_10000/{zoom}/{x}/{-y}.jpg","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","zoomExtent":[0,16],"polygon":[[[23.6193,51.65491],[24.09803,51.64047],[24.39723,51.89353],[25.19178,51.95913],[26.12263,51.92224],[26.49829,51.80933],[27.09005,51.77026],[27.62861,51.62603],[28.02422,51.59093],[28.28021,51.68172],[28.37662,51.5806],[28.82542,51.5682],[29.19111,51.64253],[29.41718,51.4399],[29.67316,51.51238],[29.82276,51.47512],[30.21837,51.50824],[30.54417,51.30709],[30.63726,51.38599],[30.51425,51.63634],[30.983,52.09005],[31.2822,52.07984],[31.48832,52.13497],[32.11,52.05531],[32.31279,52.11864],[32.43912,52.32434],[32.93114,52.28368],[33.29683,52.39337],[33.75561,52.35277],[34.35734,51.78055],[34.14457,51.76409],[34.05813,51.67965],[34.22103,51.47098],[34.25095,51.30085],[34.7197,51.19056],[35.11199,51.21139],[35.1818,51.08626],[35.38792,51.03402],[35.40787,50.62878],[35.62063,50.38563],[36.06944,50.4513],[36.21571,50.41106],[36.31212,50.28802],[36.4717,50.32624],[36.59138,50.2519],[37.46571,50.45977],[37.735,50.11353],[38.05747,49.9384],[38.19377,49.95765],[38.19045,50.07514],[38.35002,50.08154],[38.41651,49.98972],[38.73899,49.97476],[39.00827,49.83344],[39.14457,49.89987],[39.27755,49.78195],[39.54018,49.74544],[39.79949,49.58406],[40.18845,49.6013],[40.0588,49.50424],[40.20508,49.24666],[39.93247,49.06185],[39.71638,49.01608],[40.08872,48.85448],[39.79617,48.78443],[39.69311,48.65283],[39.86266,48.5693],[39.99231,48.31348],[39.83274,47.92287],[39.74297,47.83144],[39.57675,47.81135],[38.86532,47.85153],[38.77555,47.68618],[38.38327,47.60106],[38.30348,47.52704],[38.30016,47.23891],[38.13393,47.05577],[37.5455,47.05124],[37.31279,46.87654],[37.20973,46.92651],[36.96039,46.83107],[36.7443,46.61685],[36.72436,46.7719],[36.4451,46.72407],[36.10601,46.4728],[36.20574,46.66022],[35.92316,46.64424],[35.43114,46.39948],[35.10202,45.97138],[35.0455,45.75145],[35.47436,45.33],[35.86,45.53297],[35.9963,45.43274],[36.11598,45.51899],[36.66452,45.4514],[36.65454,45.34168],[36.50494,45.31363],[36.47502,45.24111],[36.48832,45.04884],[35.81013,44.98539],[35.5076,45.11222],[35.42782,44.93364],[35.12196,44.76394],[34.67649,44.75686],[33.985,44.37078],[33.68912,44.38504],[33.38327,44.50608],[33.35002,44.589],[33.55282,44.93128],[33.42981,45.1263],[33.19377,45.14271],[32.83141,45.33935],[32.60534,45.30896],[32.44577,45.3557],[32.50893,45.47005],[32.87795,45.68181],[33.57941,45.90665],[33.58938,46.02681],[33.25694,46.07065],[33.02422,45.97138],[31.61133,46.19506],[31.27555,46.61457],[30.87662,46.56887],[30.43446,45.98756],[29.69643,45.55159],[29.79284,45.46306],[29.73965,45.15913],[29.47369,45.41407],[29.18114,45.38373],[28.74896,45.22004],[28.56611,45.23409],[28.29018,45.33],[28.23367,45.49103],[28.31678,45.56789],[28.483,45.54228],[28.47303,45.73753],[28.95175,46.03143],[29.02489,46.18125],[28.9318,46.49569],[29.18779,46.57116],[29.59337,46.45448],[29.81944,46.46593],[29.95574,46.68759],[29.8959,46.8197],[29.56013,46.96963],[29.54683,47.29982],[29.14789,47.50234],[29.23101,47.77562],[29.17117,47.934],[28.86864,47.99411],[28.63593,48.16513],[28.44311,48.06525],[28.36332,48.17178],[28.25694,48.15404],[27.735,48.43494],[27.55547,48.45258],[26.92383,48.34884],[26.36532,48.17178],[26.1193,47.97408],[25.3846,47.91618],[24.91585,47.70408],[24.52024,47.94291],[24.18446,47.90058],[23.58274,48.00523],[23.43646,47.96963],[23.15388,48.10522],[23.07077,47.98743],[22.858,47.9585],[22.76824,48.09856],[22.58539,48.103],[22.51558,48.2161],[22.11332,48.4217],[22.49896,49.06621],[22.58872,49.11193],[22.87795,49.04006],[22.7217,49.18151],[22.71837,49.64652],[23.24364,50.105],[24.04484,50.49785],[24.05813,50.68779],[23.9451,50.81399],[24.10135,50.85388],[23.62928,51.29462],[23.6193,51.65491]]],"description":"Works only from within Ukraine or with an Ukrainian proxy server."},{"id":"UkraineRivne2011","name":"Ukraine - Rivne 2011","type":"tms","template":"http://geo.rv.ua/map/rtile/carto_1850678323655476854/ua/{zoom}/{x}/{y}.png","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[14,19],"polygon":[[[26.3431,50.612],[26.3421,50.6178],[26.3228,50.6407],[26.168,50.6644],[26.1447,50.6035],[26.144,50.5871],[26.1924,50.5603],[26.3053,50.5727],[26.339,50.5932],[26.3431,50.612]]],"terms_url":"https://geo.rv.ua/","terms_text":"© Містобудівний кадастр Рівненської міської ради","best":true,"icon":"https://geo.rv.ua/tpl/icons/favicon.ico"},{"id":"UkraineVinnytsia2020","name":"Ukraine - Vinnytsia 2020","type":"tms","template":"http://maps2.vmr.gov.ua/OpenData/ofp/2020-03/GoogleMapsCompatible/{zoom}/{y}/{x}.png?ver=01032020","endDate":"2020-03-01T00:00:00.000Z","startDate":"2020-03-01T00:00:00.000Z","zoomExtent":[14,20],"polygon":[[[28.46755,49.28259],[28.34945,49.2278],[28.38189,49.19354],[28.51587,49.18198],[28.57965,49.22511],[28.57853,49.25867],[28.54136,49.2818],[28.46755,49.28259]]],"terms_url":"https://www.vmr.gov.ua/","terms_text":"© Вінницька міська рада","best":true,"icon":"https://www.vmr.gov.ua/_catalogs/masterpage/images/favicon.ico"},{"id":"URBIS2009","name":"URBIS 2009 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2009&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2009-01-01T00:00:00.000Z","startDate":"2009-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBIS2012","name":"URBIS 2012 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2012&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBIS2014","name":"URBIS 2014 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2014&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2014-01-01T00:00:00.000Z","startDate":"2014-01-01T00:00:00.000Z","polygon":[[[4.4001,50.76373],[4.43093,50.77254],[4.43586,50.77237],[4.46549,50.78373],[4.48189,50.78835],[4.48269,50.79849],[4.46363,50.80686],[4.46407,50.81546],[4.48204,50.81699],[4.48103,50.82343],[4.47465,50.83505],[4.47403,50.84587],[4.46712,50.85447],[4.45257,50.85797],[4.45017,50.86151],[4.42968,50.86764],[4.43423,50.87384],[4.44147,50.87513],[4.44381,50.88004],[4.43534,50.88977],[4.43968,50.89475],[4.43287,50.90363],[4.42096,50.90917],[4.42023,50.91387],[4.38315,50.91381],[4.37879,50.90637],[4.37334,50.90289],[4.36241,50.906],[4.34824,50.90611],[4.33955,50.90685],[4.32771,50.90515],[4.31471,50.89842],[4.30413,50.89498],[4.2871,50.89192],[4.28725,50.88532],[4.29293,50.88265],[4.27948,50.8736],[4.27347,50.86822],[4.27364,50.85871],[4.27688,50.85575],[4.27644,50.84376],[4.26664,50.8405],[4.25488,50.83992],[4.24755,50.83453],[4.24799,50.82866],[4.24357,50.82599],[4.24376,50.81356],[4.25233,50.81268],[4.25649,50.80711],[4.27025,50.8073],[4.27222,50.80537],[4.28414,50.80241],[4.28885,50.80434],[4.29544,50.8043],[4.30046,50.79506],[4.31076,50.79299],[4.31444,50.78372],[4.32628,50.77221],[4.34194,50.76891],[4.34474,50.77029],[4.37535,50.76577],[4.3755,50.76381],[4.4001,50.76373]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBIS2015","name":"URBIS 2015 aerial imagery","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2015&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2016","name":"UrbIS-Ortho 2016","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2016&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2016-01-01T00:00:00.000Z","startDate":"2016-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2017","name":"UrbIS-Ortho 2017","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2017&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2017-01-01T00:00:00.000Z","startDate":"2017-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2018","name":"UrbIS-Ortho 2018","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2018&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbISOrtho2019","name":"UrbIS-Ortho 2019","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=Urbis:Ortho2019&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","endDate":"2019-01-01T00:00:00.000Z","startDate":"2019-01-01T00:00:00.000Z","polygon":[[[4.37973,50.76382],[4.38917,50.76377],[4.43028,50.77517],[4.435,50.775],[4.46427,50.78645],[4.4817,50.79134],[4.48238,50.79617],[4.45921,50.80626],[4.45947,50.81661],[4.47972,50.82036],[4.46959,50.83537],[4.46899,50.84573],[4.46238,50.85396],[4.44968,50.85591],[4.44599,50.85992],[4.4253,50.86615],[4.43183,50.87628],[4.44007,50.87845],[4.43106,50.89014],[4.43595,50.89502],[4.4296,50.90103],[4.41655,50.90757],[4.41543,50.91342],[4.39578,50.91407],[4.38462,50.91093],[4.38119,50.90319],[4.3726,50.90032],[4.36213,50.9033],[4.34857,50.90341],[4.34025,50.90411],[4.32892,50.90249],[4.31647,50.89605],[4.30634,50.89274],[4.29004,50.88982],[4.29149,50.88495],[4.29553,50.88262],[4.29561,50.88094],[4.28274,50.87227],[4.27699,50.86713],[4.27802,50.85911],[4.28042,50.85721],[4.28094,50.84215],[4.27193,50.84036],[4.25467,50.83695],[4.25107,50.83288],[4.25227,50.82697],[4.24343,50.82182],[4.24403,50.81548],[4.25519,50.8151],[4.25802,50.80935],[4.27218,50.81011],[4.27579,50.80696],[4.2854,50.80506],[4.28901,50.80691],[4.29802,50.80593],[4.30282,50.79709],[4.31458,50.79454],[4.31621,50.78624],[4.32952,50.77381],[4.34205,50.77164],[4.34522,50.77337],[4.37853,50.76811],[4.37973,50.76382]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","best":true,"icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbisAdmFR","name":"UrbisAdm FR","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisFR&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"UrbisAdmNL","name":"UrbisAdm NL","type":"wms","template":"https://geoservices-urbis.irisnet.be/geoserver/ows?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true&LAYERS=urbisNL&WIDTH={width}&HEIGHT={height}&CRS={proj}&STYLES=&BBOX={bbox}","projection":"EPSG:3857","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBISfr2013","name":"URBISfr numerical imagery (2013)","type":"wms","template":"https://gis.irisnet.be/arcgis/rest/services/basemap/urbisFR/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"URBISnl2013","name":"URBISnl numerical imagery (2013)","type":"wms","template":"https://gis.irisnet.be/arcgis/rest/services/basemap/urbisNL/MapServer/export?f=image&format=png8&transparent=False&SRS={proj}&bboxSR=3857&imageSR=3857&bbox={bbox}&size={width},{height}","projection":"EPSG:3857","endDate":"2013-01-01T00:00:00.000Z","startDate":"2013-01-01T00:00:00.000Z","polygon":[[[4.4347,50.77647],[4.45427,50.78367],[4.4635,50.78798],[4.48273,50.79313],[4.44715,50.80821],[4.44831,50.81147],[4.45788,50.81646],[4.45466,50.81838],[4.4768,50.82036],[4.46552,50.83549],[4.46835,50.83744],[4.46037,50.85218],[4.44578,50.85522],[4.44466,50.85809],[4.43891,50.86042],[4.43719,50.85868],[4.42612,50.86296],[4.42037,50.86789],[4.42973,50.87764],[4.43736,50.87867],[4.42681,50.89026],[4.43307,50.89464],[4.42277,50.90298],[4.41187,50.90753],[4.41376,50.91159],[4.4032,50.91381],[4.38758,50.9098],[4.37771,50.89713],[4.36303,50.90119],[4.34183,50.9026],[4.33093,50.90119],[4.31651,50.89389],[4.3057,50.8908],[4.29334,50.88847],[4.29428,50.88658],[4.29737,50.8849],[4.29918,50.87975],[4.28587,50.87201],[4.27858,50.86556],[4.28064,50.85944],[4.28999,50.85625],[4.28304,50.85354],[4.28793,50.84833],[4.28291,50.8479],[4.28158,50.83785],[4.27399,50.8392],[4.27184,50.8363],[4.25793,50.83571],[4.2545,50.83289],[4.25523,50.82839],[4.2509,50.82419],[4.24382,50.81928],[4.2566,50.81743],[4.25995,50.81106],[4.27274,50.81212],[4.2757,50.81087],[4.27708,50.80835],[4.28454,50.80732],[4.29274,50.80911],[4.2951,50.80881],[4.30162,50.81299],[4.3066,50.81239],[4.30205,50.80445],[4.30501,50.7987],[4.31527,50.79661],[4.31845,50.79403],[4.3193,50.78722],[4.32201,50.7832],[4.33089,50.7758],[4.3408,50.77354],[4.34677,50.77574],[4.3551,50.77354],[4.36527,50.77284],[4.38243,50.76917],[4.38303,50.76375],[4.43312,50.77802],[4.4347,50.77647]]],"terms_text":"Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/be/UrbIS.png"},{"id":"USGS-Imagery","name":"USGS Imagery","type":"tms","template":"https://basemap.nationalmap.gov/arcgis/rest/services/USGSImageryOnly/MapServer/tile/{zoom}/{y}/{x}","zoomExtent":[9,20],"polygon":[[[-79.12989,43.31497],[-79.12989,43.24293],[-79.06696,43.24293],[-79.06696,43.13],[-79.12989,43.13],[-79.12989,43.05773],[-79.07126,43.05773],[-79.07126,42.92949],[-78.94326,42.92949],[-78.94326,42.75422],[-82.67886,41.67159],[-82.88391,41.75369],[-83.12077,41.99609],[-83.12077,42.24648],[-83.05892,42.24648],[-83.05892,42.30896],[-82.86853,42.30896],[-82.86853,42.37177],[-82.5599,42.49549],[-82.5599,42.55855],[-82.49678,42.55855],[-82.49678,42.68336],[-82.43289,42.68336],[-82.43289,42.93422],[-82.37006,42.93422],[-82.37006,43.06481],[-82.51953,45.33698],[-83.49681,45.87251],[-83.49681,45.93371],[-83.43381,45.93371],[-83.43381,46.00169],[-83.56,46.12616],[-83.99546,46.12616],[-83.99546,46.19317],[-84.05918,46.19317],[-84.05918,46.3815],[-84.11526,46.3815],[-84.11526,46.49536],[-84.05918,46.49536],[-84.05918,46.56827],[-84.25795,46.56827],[-84.25795,46.50512],[-84.30719,46.50512],[-84.30719,46.56827],[-84.44154,46.56827],[-84.44154,46.50453],[-84.60983,46.50453],[-84.76227,46.63341],[-84.86115,46.88929],[-88.3882,48.30154],[-89.42847,48.06564],[-89.99327,48.06564],[-89.99327,48.1283],[-90.74559,48.1283],[-90.74559,48.18931],[-90.80873,48.18931],[-90.80873,48.25221],[-91.06776,48.25221],[-91.06776,48.19167],[-91.19462,48.19167],[-91.19462,48.1279],[-91.68142,48.1279],[-91.68142,48.2526],[-91.93219,48.2526],[-91.93219,48.31425],[-91.99297,48.31425],[-91.99297,48.37808],[-92.31894,48.37808],[-92.31894,48.25291],[-92.37322,48.25291],[-92.37322,48.31534],[-92.43223,48.31534],[-92.43223,48.44114],[-92.49772,48.44114],[-92.49772,48.50178],[-92.56794,48.50178],[-92.56794,48.43958],[-92.62105,48.43958],[-92.62105,48.56508],[-92.80868,48.56508],[-92.80868,48.62674],[-92.93318,48.62674],[-92.93318,48.69221],[-93.00517,48.69221],[-93.00517,48.6283],[-93.12259,48.6283],[-93.12259,48.69221],[-93.31908,48.69221],[-93.31908,48.62674],[-93.50495,48.62674],[-93.50495,48.56352],[-93.74746,48.56352],[-93.74746,48.62674],[-93.81355,48.62674],[-93.81355,48.68988],[-94.24531,48.68988],[-94.24531,48.75543],[-94.61832,48.75543],[-94.61832,48.94104],[-94.6809,48.94104],[-94.6809,49.00297],[-94.74415,49.00297],[-94.74415,49.25361],[-94.80841,49.25361],[-94.80841,49.37841],[-95.11924,49.37841],[-95.11924,49.44253],[-95.19343,49.44253],[-95.19343,49.00353],[-96.87069,49.00353],[-96.87069,49.06561],[-99.00493,49.06561],[-99.00493,49.00507],[-109.36993,49.00507],[-109.36993,49.06682],[-109.50587,49.06682],[-109.50587,49.00507],[-114.183,49.00507],[-114.183,49.06873],[-114.75787,49.06873],[-114.75787,49.00507],[-115.43373,49.00507],[-115.43373,49.06714],[-116.50627,49.06714],[-116.50627,49.00507],[-117.30895,49.00507],[-117.30895,49.06598],[-119.88295,49.06598],[-119.88295,49.00507],[-120.12086,49.00507],[-120.12086,49.06784],[-121.44516,49.06784],[-121.44516,49.00507],[-121.93118,49.00507],[-121.93118,49.06561],[-123.12915,49.06451],[-123.12915,48.93432],[-123.00554,48.75295],[-123.12969,48.75295],[-123.12969,48.69022],[-123.18382,48.69022],[-123.18382,48.7529],[-123.25493,48.7529],[-123.25493,48.55923],[-123.19222,48.55923],[-123.19222,48.43484],[-123.25411,48.19051],[-124.05826,48.19084],[-124.05826,48.25344],[-124.18152,48.25344],[-124.18152,48.31647],[-124.43191,48.31647],[-124.43191,48.37826],[-124.55646,48.37826],[-124.55646,48.44083],[-124.75551,48.44083],[-139,48.45],[-139,32.5],[-117.18748,32.5],[-116.7465,32.49746],[-116.7465,32.56092],[-115.99701,32.56092],[-115.99701,32.62649],[-115.12495,32.62474],[-115.12495,32.68749],[-114.81241,32.68749],[-114.81261,32.62524],[-114.87531,32.62557],[-114.88081,32.43408],[-114.62945,32.43408],[-114.62945,32.37316],[-114.44474,32.37316],[-114.44474,32.30754],[-114.25576,32.30754],[-114.25576,32.24446],[-114.06803,32.24446],[-114.06803,32.18291],[-113.81665,32.18291],[-113.81665,32.12076],[-113.63074,32.12076],[-113.63074,32.05651],[-113.44175,32.05651],[-113.44175,31.99844],[-113.2546,31.99844],[-113.2546,31.93254],[-113.06807,31.93254],[-113.06807,31.87181],[-112.81611,31.87181],[-112.81611,31.81042],[-112.63088,31.81042],[-112.63088,31.74647],[-112.44189,31.74647],[-112.44189,31.6856],[-112.25719,31.6856],[-112.25719,31.62104],[-112.00338,31.62104],[-112.00338,31.55958],[-111.81562,31.55958],[-111.81562,31.49702],[-111.62786,31.49702],[-111.62786,31.434],[-111.4419,31.434],[-111.4419,31.37339],[-111.25597,31.37339],[-111.25597,31.31132],[-108.18458,31.31132],[-108.18458,31.74595],[-106.50651,31.74595],[-106.50651,31.68423],[-106.37973,31.68423],[-106.37973,31.62175],[-106.31743,31.62175],[-106.31743,31.49682],[-106.25518,31.49682],[-106.25518,31.43449],[-106.19247,31.43449],[-106.19247,31.37213],[-106.00392,31.37213],[-106.00392,31.30933],[-105.94166,31.30933],[-105.94166,31.24575],[-105.87982,31.24575],[-105.87982,31.18362],[-105.81623,31.18362],[-105.81623,31.12072],[-105.69212,31.12072],[-105.69212,31.05848],[-105.63029,31.05848],[-105.63029,30.93283],[-105.50444,30.93283],[-105.50444,30.87159],[-105.4413,30.87159],[-105.4413,30.80846],[-105.37815,30.80846],[-105.37815,30.74718],[-105.19047,30.74718],[-105.19047,30.68432],[-105.12862,30.68432],[-105.12862,30.61997],[-105.00365,30.61997],[-105.00365,30.55891],[-104.9418,30.55891],[-104.9418,30.49632],[-104.8782,30.49632],[-104.8782,30.30983],[-104.81553,30.30983],[-104.81553,30.24783],[-104.75361,30.24783],[-104.75361,29.93539],[-104.69095,29.93539],[-104.69095,29.80902],[-104.62913,29.80902],[-104.62913,29.68436],[-104.56599,29.68436],[-104.56599,29.62235],[-104.50372,29.62235],[-104.50372,29.55954],[-104.44101,29.55954],[-104.44101,29.49748],[-104.25376,29.49748],[-104.25376,29.37167],[-104.1292,29.37167],[-104.1292,29.30916],[-104.06887,29.30916],[-104.06887,29.24673],[-103.81873,29.24673],[-103.81873,29.18431],[-103.75574,29.18431],[-103.75574,29.12232],[-103.56675,29.12232],[-103.56675,29.05981],[-103.50498,29.05981],[-103.50498,28.99675],[-103.31658,28.99675],[-103.31658,28.93469],[-103.05976,28.93469],[-103.05976,29.0593],[-102.99797,29.0593],[-102.99797,29.12129],[-102.93314,29.12129],[-102.93314,29.18486],[-102.8096,29.18486],[-102.8096,29.25262],[-102.87013,29.25262],[-102.87013,29.3081],[-102.80967,29.3081],[-102.80967,29.37155],[-102.74757,29.37155],[-102.74757,29.55819],[-102.68455,29.55819],[-102.68455,29.68477],[-102.49678,29.68477],[-102.49678,29.74577],[-102.30866,29.74577],[-102.30866,29.80866],[-102.19093,29.80866],[-102.19093,29.74601],[-101.50499,29.74601],[-101.50499,29.68468],[-101.38058,29.68468],[-101.38058,29.55945],[-101.31751,29.55945],[-101.31751,29.49589],[-101.19101,29.49589],[-101.19101,29.43261],[-101.0675,29.43261],[-101.0675,29.30881],[-100.94189,29.30881],[-100.94189,29.24562],[-100.81673,29.24562],[-100.81673,29.11904],[-100.75227,29.11904],[-100.75227,29.05782],[-100.69254,29.05782],[-100.69254,28.87204],[-100.62902,28.87204],[-100.62902,28.80954],[-100.56799,28.80954],[-100.56799,28.62255],[-100.50404,28.62255],[-100.50404,28.55838],[-100.44218,28.55838],[-100.44218,28.49683],[-100.37943,28.49683],[-100.37943,28.30929],[-100.31719,28.30929],[-100.31719,28.18357],[-100.25448,28.18357],[-100.25448,28.12139],[-100.12823,28.12139],[-100.12823,28.05921],[-100.06595,28.05921],[-100.06595,27.99661],[-100.00239,27.99661],[-100.00239,27.93322],[-99.94265,27.93322],[-99.94265,27.74547],[-99.81685,27.74547],[-99.81685,27.68343],[-99.75413,27.68343],[-99.75413,27.62215],[-99.62916,27.62215],[-99.62916,27.5589],[-99.56728,27.5589],[-99.56728,27.43538],[-99.50418,27.43538],[-99.50418,27.3774],[-99.56718,27.3774],[-99.56718,27.24637],[-99.50498,27.24637],[-99.50498,26.99656],[-99.44274,26.99656],[-99.44274,26.8728],[-99.38006,26.8728],[-99.38006,26.80682],[-99.31907,26.80682],[-99.31907,26.74736],[-99.25375,26.74736],[-99.25375,26.62101],[-99.19106,26.62101],[-99.19106,26.49567],[-99.13006,26.49567],[-99.13006,26.37138],[-99.00295,26.37138],[-99.00295,26.30938],[-98.81657,26.30938],[-98.81657,26.24578],[-98.69201,26.24578],[-98.69201,26.18371],[-98.44409,26.18371],[-98.44409,26.12172],[-98.38232,26.12172],[-98.38232,26.05965],[-98.25327,26.05965],[-98.25327,25.99869],[-98.01091,25.99869],[-98.01091,25.99323],[-97.69323,25.99323],[-97.69323,25.93341],[-97.63139,25.93341],[-97.63139,25.86959],[-97.50468,25.86959],[-97.50468,25.80735],[-97.30834,25.80735],[-97.30834,25.87312],[-97.24563,25.87312],[-97.24563,25.93537],[-97.11389,25.93537],[-80.7,24],[-79.314,27.108],[-66.93111,44.74737],[-66.93111,44.94066],[-66.99468,44.94066],[-66.99468,45.00245],[-67.05958,45.00245],[-67.05958,45.12734],[-67.1202,45.12734],[-67.1202,45.19101],[-67.24698,45.19101],[-67.24698,45.25344],[-67.31775,45.25344],[-67.31775,45.18984],[-67.37075,45.18984],[-67.37075,45.2534],[-67.43269,45.2534],[-67.43269,45.30834],[-67.37086,45.30834],[-67.37086,45.4397],[-67.43056,45.4397],[-67.43056,45.49501],[-67.37099,45.49501],[-67.37099,45.62645],[-67.6215,45.62645],[-67.6215,45.68961],[-67.68383,45.68961],[-67.68383,45.75326],[-67.74621,45.75326],[-67.74621,47.12682],[-67.87001,47.12682],[-67.87001,47.19003],[-67.93238,47.19003],[-67.93238,47.25397],[-67.99594,47.25397],[-67.99594,47.31497],[-68.12067,47.31497],[-68.12067,47.37808],[-68.44232,47.37808],[-68.44232,47.31661],[-68.63143,47.31661],[-68.63143,47.25447],[-68.9978,47.25447],[-68.9978,47.43989],[-69.06072,47.43989],[-69.06072,47.50476],[-69.25381,47.50476],[-69.25381,47.43981],[-69.31793,47.43981],[-69.31793,47.3786],[-69.44385,47.3786],[-69.44385,47.31563],[-69.50382,47.31563],[-69.50382,47.25258],[-69.56678,47.25258],[-69.56678,47.19109],[-69.63035,47.19109],[-69.63035,47.1287],[-69.69331,47.1287],[-69.69331,47.06543],[-69.75571,47.06543],[-69.75571,47.00428],[-69.81804,47.00428],[-69.81804,46.94153],[-69.8804,46.94153],[-69.8804,46.87925],[-69.94217,46.87925],[-69.94217,46.81774],[-70.00631,46.81774],[-70.00631,46.69203],[-70.07043,46.69203],[-70.07043,46.44259],[-70.19459,46.44259],[-70.19459,46.37859],[-70.2562,46.37859],[-70.2562,46.31526],[-70.32037,46.31526],[-70.32037,46.06512],[-70.3815,46.06512],[-70.3815,45.93552],[-70.32016,45.93552],[-70.32016,45.87948],[-70.44931,45.87948],[-70.44931,45.75387],[-70.507,45.75387],[-70.507,45.69169],[-70.63166,45.69169],[-70.63166,45.62916],[-70.75755,45.62916],[-70.75755,45.44147],[-70.88099,45.44147],[-70.88099,45.37806],[-71.13328,45.37806],[-71.13328,45.31515],[-71.38303,45.31515],[-71.38303,45.25342],[-71.50764,45.25342],[-71.50764,45.06557],[-73.94189,45.06557],[-73.94189,45.00312],[-74.74697,45.00312],[-74.74697,45.0649],[-74.8801,45.0649],[-74.8801,45.0029],[-75.06625,45.0029],[-75.06625,44.94152],[-75.25394,44.94152],[-75.25394,44.8776],[-75.37896,44.8776],[-75.37896,44.81535],[-75.44313,44.81535],[-75.44313,44.75361],[-75.56666,44.75361],[-75.56666,44.691],[-75.62902,44.691],[-75.62902,44.6285],[-75.75405,44.6285],[-75.75405,44.56638],[-75.81731,44.56638],[-75.81731,44.50289],[-75.87995,44.50289],[-75.87995,44.37849],[-76.13003,44.37849],[-76.13003,44.31592],[-76.1927,44.31592],[-76.1927,44.25344],[-76.31826,44.25344],[-76.31826,44.19167],[-76.3793,44.19167],[-76.3793,44.06537],[-76.80375,43.64253],[-79.12989,43.31497]]],"description":"Public domain aerial imagery, mostly NAIP","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png"},{"id":"USGS-Scanned_Topographic","name":"USGS Topographic Maps","type":"tms","template":"https://caltopo.s3.amazonaws.com/topo/{zoom}/{x}/{y}.png","zoomExtent":[0,16],"polygon":[[[-55.99594,52.00107],[-112.02896,52.00107],[-112.03995,56.01308],[-120.00494,56.00592],[-120.01712,60.01202],[-132.00197,60.00239],[-132.01208,63.00193],[-133.96883,63.0005],[-133.9724,63.99225],[-141.04429,63.98726],[-141.06879,69.92046],[-156.24893,71.51583],[-160.44571,70.83527],[-167.08145,68.42906],[-164.08218,67.03914],[-169.01504,65.68269],[-166.57608,64.50778],[-161.82999,64.05006],[-165.08194,63.2603],[-168.02628,59.78623],[-162.53311,59.73089],[-162.35733,58.55905],[-157.83096,58.31753],[-158.00674,57.52404],[-168.22403,53.51022],[-166.55411,53.14277],[-158.77579,54.88541],[-158.6824,55.74964],[-156.55106,56.00848],[-156.15555,56.77466],[-154.70535,56.14337],[-152.07413,57.37035],[-151.62918,58.22653],[-152.00821,58.98056],[-145.9877,60.24741],[-140.38467,59.48634],[-136.53946,57.8061],[-133.79288,54.83483],[-133.33145,53.14277],[-131.46378,51.69838],[-128.52493,51.74602],[-129.79385,50.90159],[-124.56436,47.49786],[-124.03702,45.48627],[-124.6962,42.90428],[-124.49844,40.34146],[-122.80655,37.53929],[-119.99405,33.37085],[-117.24747,32.5412],[-111.13907,31.1977],[-106.70059,31.23529],[-103.20694,28.64618],[-101.84463,29.8158],[-99.20792,26.28744],[-96.79092,25.75432],[-96.92276,27.96911],[-93.47305,29.68226],[-88.94669,28.87732],[-88.6171,30.17736],[-86.2001,30.36713],[-84.96963,29.43379],[-84.09073,30.06333],[-82.97012,28.95426],[-82.97012,27.26824],[-81.25626,25.07956],[-82.09122,24.56105],[-80.06973,24.76073],[-79.85001,27.11188],[-81.27823,30.70777],[-78.99307,33.20554],[-75.03799,35.5983],[-75.85098,37.24252],[-73.74161,40.4586],[-69.89639,41.60224],[-70.68741,43.17629],[-66.93008,44.69516],[-66.53458,43.08007],[-64.20547,43.35229],[-59.50333,45.73221],[-59.51431,46.24762],[-60.0032,46.25901],[-59.99222,47.24506],[-59.00894,47.2376],[-58.99796,47.50267],[-56.51504,47.50267],[-56.52603,46.7477],[-53.99918,46.7477],[-53.9772,46.48358],[-52.49405,46.46354],[-52.50504,48.75361],[-52.99667,48.75451],[-53.01315,49.99551],[-55.00168,50.0061],[-55.03738,53.74721],[-56.00418,53.73421],[-55.99594,52.00107]],[[-59.50127,43.74954],[-60.5024,43.74954],[-60.5024,44],[-59.9984,44],[-59.9984,44.2494],[-59.50127,44.2494],[-59.50127,43.74954]],[[-155.95024,20.49523],[-157.32675,20.49153],[-157.32903,21.23181],[-155.95251,21.23549],[-155.95024,20.49523]],[[-157.64488,21.24845],[-158.28534,21.24674],[-158.2869,21.74996],[-157.64643,21.75167],[-157.64488,21.24845]],[[-156.12602,20.3247],[-154.74617,20.32841],[-154.74174,18.87578],[-156.1216,18.87203],[-156.12602,20.3247]],[[-159.29077,22.24504],[-159.2893,21.76857],[-160.28917,21.76591],[-160.29064,22.24239],[-159.29077,22.24504]]],"terms_url":"https://caltopo.com","terms_text":"© Caltopo","icon":"https://osmlab.github.io/editor-layer-index/sources/north-america/us/USGSTopographicMaps.png"},{"id":"USSR-Latvia","name":"USSR - Latvia","type":"wms","template":"http://www.gisnet.lv/cgi-bin/topo?LAYERS=DTO,DTC,DIVDPTC,PD,VS,DS,PS,M&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[26.63086,57.56889],[25.16968,58.04882],[22.54395,57.76866],[21.54419,57.53352],[21.01685,56.81892],[21.01685,56.03523],[22.03857,56.38958],[24.71924,56.33481],[26.75171,55.66519],[28.19092,56.13943],[27.78442,57.40946],[26.63086,57.56889]]]},{"id":"fr.dpt.84.2010","name":"Vaucluse 2010","type":"tms","template":"https://wms.openstreetmap.fr/tms/1.0.0/paca84_2010/{zoom}/{x}/{y}","endDate":"2010-01-01T00:00:00.000Z","startDate":"2010-01-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[5.39429,44.21568],[5.36957,44.2147],[5.36957,44.22552],[5.34073,44.22651],[5.3421,44.21568],[5.3215,44.21765],[5.27756,44.23635],[5.21713,44.23635],[5.20202,44.24717],[5.16907,44.24717],[5.16632,44.28061],[5.18143,44.28061],[5.1828,44.31894],[5.14297,44.32188],[5.14023,44.30125],[5.12237,44.30321],[5.08118,44.33957],[5.08392,44.3916],[5.05508,44.39258],[5.03448,44.41907],[5.01114,44.42005],[4.98642,44.43966],[4.96307,44.44064],[4.91913,44.42397],[4.89715,44.40337],[4.87244,44.36117],[4.85596,44.36019],[4.85458,44.30714],[4.81888,44.30813],[4.76669,44.33662],[4.64172,44.33662],[4.63623,44.24717],[4.66369,44.23635],[4.66369,44.19894],[4.69803,44.19008],[4.69665,44.09153],[4.72137,44.06292],[4.76669,44.06391],[4.76944,44.04812],[4.80514,44.02047],[4.80377,44.00171],[4.78454,44.00072],[4.75845,43.98491],[4.73373,43.98491],[4.73373,44.00269],[4.6431,44.02344],[4.60739,44.02245],[4.60602,43.9859],[4.62936,43.98392],[4.63211,43.96712],[4.65408,43.93054],[4.66781,43.92164],[4.71863,43.91076],[4.79141,43.90086],[4.86282,43.89789],[4.88067,43.88008],[4.91089,43.87909],[5.03448,43.80282],[5.03448,43.77903],[5.19653,43.71653],[5.20065,43.72943],[5.29266,43.72844],[5.4808,43.65098],[5.63324,43.648],[5.6868,43.68079],[5.73624,43.68575],[5.79666,43.74927],[5.79391,43.76316],[5.74722,43.76614],[5.73761,43.85929],[5.61813,43.86127],[5.64422,43.89888],[5.67993,43.89987],[5.68405,43.94933],[5.62088,43.95131],[5.62225,43.99479],[5.57007,43.99776],[5.57556,44.08561],[5.56045,44.08759],[5.5632,44.13097],[5.52887,44.13196],[5.52887,44.1428],[5.51376,44.14378],[5.49042,44.12407],[5.46707,44.12407],[5.4657,44.14181],[5.44922,44.1428],[5.45059,44.15856],[5.39566,44.16152],[5.40665,44.1763],[5.40665,44.18811],[5.39154,44.19008],[5.39429,44.21568]]],"terms_url":"http://www.crige-paca.org/geoportail/geocatalogue.html?id_lot_donnee_carto=209","terms_text":"ORTHO 2010 © PACA-04-05-84"},{"id":"wien.gv.at-labels","name":"Vienna: Beschriftungen (annotations)","type":"tms","template":"https://maps.wien.gv.at/wmts/beschriftung/normal/google3857/{zoom}/{y}/{x}.png","zoomExtent":[12,19],"polygon":[[[16.54475,48.17286],[16.54103,48.17657],[16.54978,48.17675],[16.54665,48.17162],[16.55629,48.16171],[16.55567,48.16446],[16.56161,48.16037],[16.57306,48.16319],[16.57603,48.13522],[16.54301,48.14333],[16.51377,48.15893],[16.4777,48.15744],[16.45536,48.13951],[16.43313,48.13788],[16.43701,48.11994],[16.42291,48.12306],[16.4083,48.11791],[16.40511,48.12198],[16.3246,48.13779],[16.31181,48.11945],[16.29806,48.12896],[16.2711,48.13385],[16.23607,48.13001],[16.2189,48.12377],[16.2181,48.12807],[16.23861,48.13205],[16.23843,48.13716],[16.22081,48.13555],[16.20986,48.14762],[16.22321,48.15318],[16.19798,48.15454],[16.19619,48.16396],[16.18183,48.17112],[16.19981,48.18616],[16.20739,48.20235],[16.20194,48.20479],[16.20962,48.20963],[16.1976,48.21479],[16.19778,48.22288],[16.18517,48.2232],[16.19911,48.22858],[16.19251,48.23671],[16.20677,48.26483],[16.24105,48.24837],[16.24154,48.23832],[16.25662,48.23988],[16.27043,48.25193],[16.26406,48.25492],[16.28556,48.25832],[16.29412,48.26395],[16.28617,48.2667],[16.28901,48.27051],[16.32741,48.27721],[16.34813,48.29048],[16.35351,48.28369],[16.3706,48.2817],[16.36714,48.28685],[16.37787,48.28832],[16.37557,48.29592],[16.37982,48.30201],[16.38536,48.30146],[16.38043,48.31507],[16.39518,48.32257],[16.39412,48.31926],[16.40287,48.31676],[16.41682,48.32253],[16.43803,48.31628],[16.44041,48.29192],[16.47547,48.27501],[16.48123,48.27343],[16.4835,48.27971],[16.48132,48.29351],[16.49645,48.29249],[16.51491,48.28554],[16.5067,48.2736],[16.51285,48.26784],[16.53263,48.2621],[16.54697,48.263],[16.53941,48.24284],[16.55274,48.239],[16.53627,48.20044],[16.54184,48.18206],[16.53631,48.17755],[16.54475,48.17286]]],"terms_url":"https://data.wien.gv.at","terms_text":"Stadt Wien","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif","overlay":true},{"id":"wien.gv.at-gp","name":"Vienna: Mehrzweckkarte (general purpose)","type":"tms","template":"https://maps.wien.gv.at/wmts/fmzk/pastell/google3857/{zoom}/{y}/{x}.jpeg","zoomExtent":[10,19],"polygon":[[[16.54475,48.17286],[16.54103,48.17657],[16.54978,48.17675],[16.54665,48.17162],[16.55629,48.16171],[16.55567,48.16446],[16.56161,48.16037],[16.57306,48.16319],[16.57603,48.13522],[16.54301,48.14333],[16.51377,48.15893],[16.4777,48.15744],[16.45536,48.13951],[16.43313,48.13788],[16.43701,48.11994],[16.42291,48.12306],[16.4083,48.11791],[16.40511,48.12198],[16.3246,48.13779],[16.31181,48.11945],[16.29806,48.12896],[16.2711,48.13385],[16.23607,48.13001],[16.2189,48.12377],[16.2181,48.12807],[16.23861,48.13205],[16.23843,48.13716],[16.22081,48.13555],[16.20986,48.14762],[16.22321,48.15318],[16.19798,48.15454],[16.19619,48.16396],[16.18183,48.17112],[16.19981,48.18616],[16.20739,48.20235],[16.20194,48.20479],[16.20962,48.20963],[16.1976,48.21479],[16.19778,48.22288],[16.18517,48.2232],[16.19911,48.22858],[16.19251,48.23671],[16.20677,48.26483],[16.24105,48.24837],[16.24154,48.23832],[16.25662,48.23988],[16.27043,48.25193],[16.26406,48.25492],[16.28556,48.25832],[16.29412,48.26395],[16.28617,48.2667],[16.28901,48.27051],[16.32741,48.27721],[16.34813,48.29048],[16.35351,48.28369],[16.3706,48.2817],[16.36714,48.28685],[16.37787,48.28832],[16.37557,48.29592],[16.37982,48.30201],[16.38536,48.30146],[16.38043,48.31507],[16.39518,48.32257],[16.39412,48.31926],[16.40287,48.31676],[16.41682,48.32253],[16.43803,48.31628],[16.44041,48.29192],[16.47547,48.27501],[16.48123,48.27343],[16.4835,48.27971],[16.48132,48.29351],[16.49645,48.29249],[16.51491,48.28554],[16.5067,48.2736],[16.51285,48.26784],[16.53263,48.2621],[16.54697,48.263],[16.53941,48.24284],[16.55274,48.239],[16.53627,48.20044],[16.54184,48.18206],[16.53631,48.17755],[16.54475,48.17286]]],"terms_url":"https://data.wien.gv.at","terms_text":"Stadt Wien","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"},{"id":"wien.gv.at-aerial_image","name":"Vienna: Orthofoto (aerial image)","type":"tms","template":"https://maps.wien.gv.at/wmts/lb/farbe/google3857/{zoom}/{y}/{x}.jpeg","zoomExtent":[10,19],"polygon":[[[16.14995,48.10832],[16.14989,48.33315],[16.61873,48.33296],[16.61749,48.10813],[16.46644,48.10819],[16.46644,48.10744],[16.18104,48.10756],[16.18104,48.10831],[16.14995,48.10832]]],"terms_url":"https://data.wien.gv.at","terms_text":"Stadt Wien","icon":"https://www.wien.gv.at/layout-a/logo/wappen-klein.gif"},{"id":"Ville_de_Nyon-HD-2016","name":"Ville de Nyon - Orthophoto 2016 HD 5cm/pi","type":"tms","template":"http://osmdata.asitvd.ch/tiles/nyon2016/{zoom}/{x}/{y}.png","endDate":"2016-03-10T00:00:00.000Z","startDate":"2016-03-10T00:00:00.000Z","zoomExtent":[10,20],"polygon":[[[6.18068,46.38878],[6.21445,46.41522],[6.25774,46.3887],[6.22398,46.36228],[6.18068,46.38878]]],"terms_url":"http://www.nyon.ch/fr/officiel/services-offices/informatique-et-population-776-3911","terms_text":"Ville de Nyon"},{"id":"VGIN-BuildingFootprints_WM","name":"Virginia Building Footprints","type":"tms","template":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Building_Footprints%2FMapServer&transparent=true&layers=show%3A20","endDate":"2018-06-01T00:00:00.000Z","startDate":"2015-05-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"terms_url":"https://vgin.maps.arcgis.com/home/item.html?id=bcd049dfcdc342a7a08ec81644eeb339","terms_text":"Virginia Geographic Information Network (VGIN)","description":"Virginia Building Footprint Map Service","overlay":true},{"id":"VGIN-Imagery_WM","name":"Virginia Imagery Service - Most Recent","type":"tms","template":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=https%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FMostRecentImagery%2FMostRecentImagery_WGS%2FMapServer&transparent=true&layers=show%3A0","endDate":"2018-08-01T00:00:00.000Z","startDate":"2013-04-01T00:00:00.000Z","zoomExtent":[2,20],"polygon":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"terms_url":"https://vgin.maps.arcgis.com/home/item.html?id=36386a7e7dae4032a33cb0b83a1711f1","terms_text":"Virginia Geographic Information Network (VGIN)","description":"The most recently available VBMP orthoimagery for all of Virginia."},{"id":"VGIN-PropertyLines_WM","name":"Virginia Property Lines","type":"tms","template":"https://tileify-ags.herokuapp.com/tiles/{zoom}/{x}/{y}?url=http%3A%2F%2Fgismaps.vita.virginia.gov%2Farcgis%2Frest%2Fservices%2FVA_Base_layers%2FVA_Parcels%2FMapServer&transparent=true","endDate":"2018-06-01T00:00:00.000Z","startDate":"2015-05-01T00:00:00.000Z","zoomExtent":[1,20],"polygon":[[[-83.64853,36.6023],[-79.9118,36.55819],[-75.90179,36.56701],[-75.8606,36.985],[-75.19867,38.0178],[-76.15448,37.99183],[-76.25336,37.92253],[-76.62689,38.1648],[-76.90704,38.22524],[-77.05536,38.42132],[-77.19818,38.37396],[-77.28333,38.3675],[-77.31628,38.45789],[-77.25586,38.58253],[-77.15698,38.61043],[-77.11853,38.68337],[-77.0636,38.69409],[-77.05811,38.82259],[-77.07458,38.88462],[-77.20367,38.99357],[-77.3822,39.07038],[-77.47833,39.09809],[-77.53876,39.16627],[-77.4646,39.23651],[-77.59918,39.30455],[-77.74475,39.33005],[-77.84637,39.14284],[-78.36273,39.45528],[-78.3847,39.36616],[-78.36548,39.32792],[-78.4671,39.19182],[-78.60168,39.03199],[-78.69232,38.94659],[-78.89282,38.76479],[-78.99719,38.8504],[-79.13727,38.68551],[-79.31854,38.42993],[-79.5108,38.46004],[-79.56299,38.54817],[-79.65637,38.58253],[-79.71954,38.50519],[-79.70856,38.44068],[-79.94476,38.16911],[-80.00519,38.0243],[-80.21942,37.83148],[-80.32379,37.67513],[-80.22766,37.62511],[-80.36224,37.56417],[-80.32928,37.52498],[-80.49408,37.42907],[-80.53253,37.48794],[-80.78522,37.37889],[-80.86487,37.43561],[-80.9198,37.39635],[-80.88135,37.36143],[-81.02692,37.28935],[-81.26038,37.25219],[-81.37024,37.34396],[-81.47736,37.26312],[-81.55426,37.22595],[-81.71906,37.20189],[-81.98273,37.42689],[-81.96899,37.55329],[-82.40845,37.26531],[-82.74078,37.13186],[-82.73529,37.05299],[-82.90283,36.985],[-82.87811,36.90818],[-83.02643,36.85765],[-83.07587,36.85765],[-83.16101,36.74989],[-83.44666,36.69265],[-83.61145,36.64418],[-83.63892,36.63592],[-83.69385,36.61222],[-83.70003,36.6023],[-83.64853,36.6023]]],"terms_url":"https://vgin.maps.arcgis.com/home/item.html?id=f1dccaf1f42e40cbba791feae2e23690","terms_text":"Virginia Geographic Information Network (VGIN)","description":"A statewide Parcel service showing property ownership outlines where available","overlay":true},{"id":"vogis.cnv.at-DGM","name":"VoGIS: DGM (Terrain model)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_hoehen_und_gelaende_r_wms.map&LAYERS=schummerung_50cm_terrain&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-DOM","name":"VoGIS: DOM (Surface model)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_hoehen_und_gelaende_r_wms.map&LAYERS=schummerung_50cm_surface&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","polygon":[[[9.96805,47.54631],[9.96809,47.54627],[9.97125,47.54425],[9.96484,47.53803],[9.9684,47.52802],[9.96526,47.52089],[9.99569,47.50278],[9.98736,47.49847],[10.00076,47.48211],[10.02301,47.48411],[10.03743,47.48918],[10.04477,47.48762],[10.05413,47.47589],[10.05347,47.46686],[10.06468,47.46364],[10.06999,47.45595],[10.08057,47.45536],[10.08857,47.46029],[10.09164,47.45893],[10.09385,47.44046],[10.10559,47.42872],[10.09374,47.41688],[10.07418,47.41472],[10.06914,47.41018],[10.08624,47.39952],[10.08284,47.39381],[10.09984,47.35476],[10.11934,47.37561],[10.14169,47.36718],[10.16587,47.36887],[10.16958,47.3713],[10.1694,47.38583],[10.1813,47.38725],[10.18185,47.39243],[10.19508,47.38935],[10.19988,47.38334],[10.21259,47.38039],[10.22705,47.38889],[10.23619,47.38192],[10.23168,47.37897],[10.23716,47.37357],[10.21699,47.35436],[10.2171,47.34988],[10.20424,47.33675],[10.20742,47.33232],[10.19951,47.32646],[10.21113,47.31898],[10.21597,47.31106],[10.21236,47.31122],[10.19913,47.29754],[10.18964,47.29394],[10.17961,47.29603],[10.17208,47.27908],[10.17404,47.27025],[10.17834,47.27011],[10.17449,47.2637],[10.21884,47.25533],[10.22343,47.24983],[10.21087,47.2478],[10.19776,47.23666],[10.20791,47.2328],[10.21428,47.21684],[10.21269,47.20432],[10.19963,47.19539],[10.19951,47.18525],[10.21151,47.17124],[10.2092,47.16537],[10.20851,47.15948],[10.21321,47.1577],[10.2222,47.15323],[10.22166,47.14925],[10.21481,47.14352],[10.20333,47.14215],[10.20887,47.13164],[10.18629,47.12886],[10.18652,47.11946],[10.17288,47.12033],[10.16299,47.11361],[10.15766,47.11426],[10.15442,47.10578],[10.13243,47.08122],[10.13459,47.06392],[10.15085,47.06184],[10.15693,47.04883],[10.14418,47.03355],[10.12326,47.02209],[10.13284,47.01204],[10.15447,47.00545],[10.15961,46.99882],[10.15442,46.99299],[10.16001,46.984],[10.14463,46.98301],[10.13492,46.96584],[10.13501,46.95483],[10.12684,46.9435],[10.09772,46.92676],[10.09954,46.91712],[10.10921,46.90834],[10.10908,46.89431],[10.12497,46.88014],[10.14147,46.87468],[10.13967,46.86217],[10.14506,46.8511],[10.13941,46.84738],[10.12309,46.84848],[10.11912,46.84417],[10.10518,46.8409],[10.09195,46.85143],[10.09265,46.85818],[10.08712,46.86128],[10.05488,46.8617],[10.0509,46.86442],[10.05192,46.87405],[10.03891,46.88611],[10.03221,46.88802],[10.01782,46.90161],[10.00494,46.89889],[9.98243,46.9062],[9.97793,46.91603],[9.96657,46.91222],[9.95907,46.91602],[9.94612,46.91235],[9.93758,46.91324],[9.92153,46.91882],[9.91231,46.92606],[9.90632,46.9253],[9.89449,46.93164],[9.87613,46.93463],[9.88071,46.94011],[9.87657,46.94071],[9.87488,46.95039],[9.87872,46.95707],[9.87073,46.96321],[9.88482,46.98546],[9.8923,46.99036],[9.88878,47.00072],[9.8707,47.00965],[9.87115,47.01306],[9.88035,47.01722],[9.87779,47.02055],[9.85974,47.02321],[9.85273,47.01641],[9.83612,47.01253],[9.82353,47.01986],[9.80756,47.02356],[9.78491,47.03849],[9.74808,47.03692],[9.74185,47.04268],[9.71821,47.04337],[9.70701,47.04805],[9.7076,47.05381],[9.69756,47.05239],[9.68392,47.05765],[9.68184,47.0621],[9.67743,47.06141],[9.65821,47.05818],[9.64506,47.05978],[9.64158,47.05598],[9.63654,47.0517],[9.62633,47.05133],[9.60705,47.06077],[9.6134,47.0695],[9.61153,47.0794],[9.61869,47.07817],[9.62339,47.08258],[9.63346,47.08344],[9.63564,47.09553],[9.62858,47.10756],[9.62083,47.11032],[9.63503,47.12813],[9.62467,47.13265],[9.62258,47.14135],[9.62587,47.1459],[9.62059,47.15164],[9.6089,47.14775],[9.59679,47.16294],[9.57946,47.17116],[9.56456,47.17029],[9.57302,47.1756],[9.57259,47.19079],[9.58032,47.19578],[9.58477,47.20532],[9.5687,47.21968],[9.55851,47.22416],[9.55176,47.22377],[9.56679,47.24288],[9.53073,47.27058],[9.54619,47.28005],[9.55634,47.29829],[9.58805,47.3173],[9.59966,47.3455],[9.61073,47.35571],[9.62446,47.36615],[9.65876,47.36946],[9.67255,47.38021],[9.67311,47.39194],[9.65162,47.40463],[9.64551,47.4312],[9.64512,47.4378],[9.65799,47.44779],[9.65898,47.4522],[9.62234,47.45747],[9.60904,47.47054],[9.60292,47.46198],[9.59514,47.46331],[9.58217,47.48276],[9.5622,47.49592],[9.55057,47.53718],[9.5827,47.53592],[9.60465,47.52952],[9.73478,47.53396],[9.73517,47.54661],[9.74164,47.55499],[9.7471,47.55569],[9.74337,47.55867],[9.75207,47.56747],[9.74806,47.57052],[9.75632,47.57262],[9.75633,47.57963],[9.76197,47.58096],[9.76553,47.58912],[9.76933,47.58739],[9.77697,47.59544],[9.79151,47.59352],[9.79999,47.59611],[9.81414,47.58807],[9.82381,47.5871],[9.82728,47.57997],[9.82079,47.57076],[9.82562,47.55922],[9.8171,47.55333],[9.81579,47.54767],[9.85023,47.54164],[9.85839,47.53388],[9.87451,47.52854],[9.87804,47.53876],[9.87515,47.54343],[9.88125,47.54814],[9.8891,47.54399],[9.89935,47.54475],[9.90666,47.54217],[9.91358,47.53255],[9.92189,47.52964],[9.93352,47.53265],[9.94108,47.53822],[9.9637,47.53472],[9.95883,47.54313],[9.96318,47.54229],[9.96805,47.54631]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-ef2012_12cm","name":"VoGIS: Echtfarbenbild 2012 (12cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=ef2012_12cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2012-01-01T00:00:00.000Z","startDate":"2012-01-01T00:00:00.000Z","polygon":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-ef2015_10cm","name":"VoGIS: Echtfarbenbild 2015 (10cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=ef2015_10cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-ef2018_10cm","name":"VoGIS: Echtfarbenbild 2018 (10cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=ef2018_10cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-01-01T00:00:00.000Z","startDate":"2018-01-01T00:00:00.000Z","polygon":[[[9.54367,47.48479],[9.61451,47.45058],[9.61359,47.38272],[9.44246,47.24798],[9.44614,47.096],[9.42866,47.08911],[9.42498,47.01513],[9.85281,47.00196],[9.85741,46.89896],[9.9669,46.88952],[10.04511,46.8499],[10.15828,46.83353],[10.1592,46.89204],[10.14718,46.89248],[10.15115,46.94331],[10.16317,46.94287],[10.1647,46.96238],[10.17852,46.96681],[10.17576,47.10351],[10.22912,47.10226],[10.22084,47.24361],[10.26133,47.41261],[10.12423,47.40576],[10.09387,47.47795],[10.00462,47.50717],[9.98622,47.56121],[9.84361,47.56245],[9.84085,47.60714],[9.53999,47.60652],[9.54367,47.48479]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"vogis.cnv.at-wi2015_20cm","name":"VoGIS: Echtfarbenbild Winter 2015 (20cm)","type":"wms","template":"https://vogis.cnv.at/mapserver/mapserv?MAP=i_luftbilder_r_wms.map&LAYERS=wi2015_20cm&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","polygon":[[[10.17039,46.82979],[10.17108,46.93644],[10.18413,46.94113],[10.1855,47.10157],[10.23906,47.10437],[10.24283,47.15611],[10.25691,47.18704],[10.24558,47.27597],[10.25313,47.32347],[10.26893,47.32626],[10.26446,47.41102],[10.13194,47.4087],[10.13434,47.46107],[10.11752,47.46153],[10.11889,47.47337],[10.08731,47.47429],[10.08491,47.50724],[10.06843,47.507],[10.0674,47.5215],[10.02345,47.52428],[10.00079,47.57943],[9.84904,47.57757],[9.85042,47.61462],[9.72751,47.61277],[9.7203,47.59089],[9.70347,47.58915],[9.70313,47.54491],[9.68219,47.54491],[9.68047,47.55348],[9.56391,47.54931],[9.56202,47.53958],[9.55172,47.53958],[9.55172,47.53402],[9.52168,47.53471],[9.52701,47.30497],[9.50503,47.30264],[9.50091,47.23368],[9.52357,47.23228],[9.52426,47.16557],[9.54486,47.16405],[9.54383,47.15448],[9.57232,47.15401],[9.57026,47.12809],[9.59018,47.12867],[9.59189,47.10029],[9.57232,47.10017],[9.57713,47.02861],[9.72407,47.03048],[9.72304,47.01749],[9.77454,47.01562],[9.77626,47.00555],[9.79274,47.00391],[9.7948,46.99127],[9.83874,46.99314],[9.84012,46.90349],[9.89024,46.90725],[9.88543,46.88707],[9.95925,46.89141],[9.962,46.87675],[10.0001,46.87862],[9.99667,46.85715],[10.01864,46.85656],[10.02345,46.83073],[10.17039,46.82979]]],"terms_url":"https://www.vorarlberg.at/vorarlberg/bauen_wohnen/bauen/vermessung_geoinformation/weitereinformationen/services/wmsdienste.htm","terms_text":"Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at","icon":"https://osmlab.github.io/editor-layer-index/sources/europe/at/VoGISFlchenwidmungsplan.png"},{"id":"wroclaw-orto2015","name":"Wrocław: Orthophotomap 2015 (aerial image)","type":"wms","template":"https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2015/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2015-01-01T00:00:00.000Z","startDate":"2015-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[17.14217,51.12846],[17.15659,51.1499],[17.15933,51.16056],[17.15899,51.17886],[17.14371,51.18155],[17.13024,51.18128],[17.12466,51.17396],[17.11436,51.17746],[17.0778,51.17746],[17.07642,51.1766],[17.07548,51.16825],[17.06698,51.16745],[17.04698,51.17493],[17.03376,51.17729],[17.02741,51.17729],[17.02733,51.18246],[17.02252,51.18816],[17.01299,51.18816],[17.0093,51.18499],[17.00312,51.18504],[17.00261,51.20016],[16.99162,51.20559],[16.97008,51.20763],[16.96424,51.20989],[16.95394,51.20968],[16.94656,51.20586],[16.9233,51.2001],[16.90811,51.21043],[16.89927,51.21027],[16.89292,51.2071],[16.88322,51.2071],[16.88073,51.20489],[16.88047,51.19666],[16.88322,51.19048],[16.87403,51.18719],[16.87026,51.18203],[16.85455,51.18031],[16.8421,51.18488],[16.82434,51.18467],[16.82056,51.17875],[16.82099,51.16373],[16.82502,51.15647],[16.80915,51.15194],[16.80657,51.14613],[16.80648,51.1366],[16.80769,51.13595],[16.81687,51.13601],[16.8161,51.13337],[16.81636,51.12459],[16.82932,51.12329],[16.83266,51.11834],[16.82923,51.11386],[16.82923,51.10993],[16.83215,51.10869],[16.84949,51.10826],[16.85661,51.09899],[16.87901,51.09252],[16.88862,51.09258],[16.89197,51.09667],[16.92107,51.09662],[16.9209,51.09263],[16.91661,51.0812],[16.91686,51.07942],[16.93514,51.07948],[16.93849,51.0736],[16.95248,51.06686],[16.95068,51.05806],[16.95454,51.05369],[16.96188,51.0473],[16.96879,51.04568],[16.98072,51.04584],[16.98424,51.05197],[16.99969,51.04668],[17.00776,51.04422],[17.01973,51.04169],[17.03286,51.0419],[17.03415,51.04673],[17.04509,51.04339],[17.06363,51.04339],[17.07037,51.05286],[17.08363,51.04428],[17.095,51.04368],[17.10633,51.04376],[17.10835,51.04684],[17.10822,51.05377],[17.10226,51.05868],[17.11136,51.0716],[17.12341,51.07179],[17.12299,51.07856],[17.15088,51.07861],[17.17277,51.09344],[17.17277,51.09956],[17.17697,51.10303],[17.17676,51.1092],[17.16363,51.1203],[17.14217,51.12846]]],"terms_text":"Urząd Miasta Wrocław","icon":"https://i.imgur.com/PRqROXB.png"},{"id":"wroclaw-orto2018","name":"Wrocław: Orthophotomap 2018 (aerial image)","type":"wms","template":"https://gis1.um.wroc.pl/arcgis/services/ogc/OGC_ortofoto_2018/MapServer/WmsServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:3857","endDate":"2018-04-07T00:00:00.000Z","startDate":"2018-04-06T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[17.14217,51.12846],[17.15659,51.1499],[17.15933,51.16056],[17.15899,51.17886],[17.14371,51.18155],[17.13024,51.18128],[17.12466,51.17396],[17.11436,51.17746],[17.0778,51.17746],[17.07642,51.1766],[17.07548,51.16825],[17.06698,51.16745],[17.04698,51.17493],[17.03376,51.17729],[17.02741,51.17729],[17.02733,51.18246],[17.02252,51.18816],[17.01299,51.18816],[17.0093,51.18499],[17.00312,51.18504],[17.00261,51.20016],[16.99162,51.20559],[16.97008,51.20763],[16.96424,51.20989],[16.95394,51.20968],[16.94656,51.20586],[16.9233,51.2001],[16.90811,51.21043],[16.89927,51.21027],[16.89292,51.2071],[16.88322,51.2071],[16.88073,51.20489],[16.88047,51.19666],[16.88322,51.19048],[16.87403,51.18719],[16.87026,51.18203],[16.85455,51.18031],[16.8421,51.18488],[16.82434,51.18467],[16.82056,51.17875],[16.82099,51.16373],[16.82502,51.15647],[16.80915,51.15194],[16.80657,51.14613],[16.80648,51.1366],[16.80769,51.13595],[16.81687,51.13601],[16.8161,51.13337],[16.81636,51.12459],[16.82932,51.12329],[16.83266,51.11834],[16.82923,51.11386],[16.82923,51.10993],[16.83215,51.10869],[16.84949,51.10826],[16.85661,51.09899],[16.87901,51.09252],[16.88862,51.09258],[16.89197,51.09667],[16.92107,51.09662],[16.9209,51.09263],[16.91661,51.0812],[16.91686,51.07942],[16.93514,51.07948],[16.93849,51.0736],[16.95248,51.06686],[16.95068,51.05806],[16.95454,51.05369],[16.96188,51.0473],[16.96879,51.04568],[16.98072,51.04584],[16.98424,51.05197],[16.99969,51.04668],[17.00776,51.04422],[17.01973,51.04169],[17.03286,51.0419],[17.03415,51.04673],[17.04509,51.04339],[17.06363,51.04339],[17.07037,51.05286],[17.08363,51.04428],[17.095,51.04368],[17.10633,51.04376],[17.10835,51.04684],[17.10822,51.05377],[17.10226,51.05868],[17.11136,51.0716],[17.12341,51.07179],[17.12299,51.07856],[17.15088,51.07861],[17.17277,51.09344],[17.17277,51.09956],[17.17697,51.10303],[17.17676,51.1092],[17.16363,51.1203],[17.14217,51.12846]]],"terms_text":"Urząd Miasta Wrocław","best":true,"icon":"https://i.imgur.com/PRqROXB.png"},{"id":"Zabrze-2011","name":"Zabrze: Orthophotomap 2011 (aerial image)","type":"wms","template":"http://siot.um.zabrze.pl/arcgis/services/UMZ_Ortofoto_2011/MapServer/WMSServer?LAYERS=0&STYLES=&FORMAT=image/jpeg&CRS={proj}&WIDTH={width}&HEIGHT={height}&BBOX={bbox}&VERSION=1.3.0&SERVICE=WMS&REQUEST=GetMap","projection":"EPSG:4326","endDate":"2011-01-01T00:00:00.000Z","startDate":"2011-01-01T00:00:00.000Z","zoomExtent":[0,23],"polygon":[[[18.74396,50.2753],[18.75586,50.27523],[18.75578,50.27633],[18.74516,50.28105],[18.74609,50.28886],[18.75084,50.28948],[18.74832,50.2957],[18.73379,50.29618],[18.73208,50.31571],[18.73613,50.31646],[18.73882,50.32763],[18.73725,50.33016],[18.73121,50.33169],[18.73054,50.3344],[18.73422,50.3371],[18.73428,50.34097],[18.73866,50.34308],[18.75419,50.34182],[18.75982,50.34624],[18.75438,50.34744],[18.75119,50.34979],[18.74603,50.36876],[18.75705,50.3692],[18.7639,50.36754],[18.77263,50.37628],[18.78436,50.37077],[18.78713,50.37295],[18.79821,50.37048],[18.80466,50.37561],[18.80165,50.37718],[18.80164,50.38222],[18.80509,50.38317],[18.81527,50.38167],[18.81446,50.37515],[18.82183,50.36883],[18.81737,50.36802],[18.82104,50.35843],[18.8159,50.35336],[18.81687,50.35076],[18.82294,50.35156],[18.83281,50.34962],[18.83474,50.3443],[18.84615,50.34448],[18.86293,50.32852],[18.8607,50.32776],[18.85088,50.33191],[18.84578,50.32923],[18.84891,50.32352],[18.83179,50.32028],[18.83192,50.30483],[18.84451,50.30286],[18.84429,50.29627],[18.82282,50.28615],[18.82845,50.28482],[18.82745,50.27972],[18.82322,50.27994],[18.8214,50.27414],[18.81392,50.27309],[18.79981,50.27351],[18.7987,50.2613],[18.7923,50.24641],[18.78261,50.24583],[18.76416,50.25145],[18.75396,50.25669],[18.75004,50.26402],[18.73991,50.26738],[18.73421,50.27084],[18.74396,50.2753]]],"terms_text":"Urząd Miasta Zabrza"}] \ No newline at end of file diff --git a/vendor/assets/iD/iD/locales/en.json b/vendor/assets/iD/iD/locales/en.json index 8e1e19044..d3259be0d 100644 --- a/vendor/assets/iD/iD/locales/en.json +++ b/vendor/assets/iD/iD/locales/en.json @@ -10780,6 +10780,41 @@ "description": "Esri archive imagery that may be clearer and more accurate than the default layer.", "name": "Esri World Imagery (Clarity) Beta" }, + "Geoportal2-PL-HighResolution-aerial_image_WMS": { + "attribution": { + "text": "Główny Urząd Geodezji i Kartografii" + }, + "description": "Ortofotomapa o rozdzielczości 10 cm lub większej. Dane posortowane są wg rozdzielczości a następnie wg aktualności, np. arkusz z 2012 roku o rozdzielczości 8 cm przysłania arkusz z 2019 roku o rozdzielczości 10 cm.", + "name": "Geoportal 2: High Resolution Orthophotomap (aerial image)" + }, + "Geoportal2-PL-Streets_WMS": { + "attribution": { + "text": "Główny Urząd Geodezji i Kartografii" + }, + "description": "Usługa przeglądania WMS Krajowa Integracja Numeracji Adresowej umożliwiająca pobieranie obrazów mapowych utworzonych na podstawie danych przestrzennych z Państwowego Rejestru Granic w zakresie ewidencji ulic i adresów.", + "name": "Geoportal 2 Nazwy ulic" + }, + "Geoportal2-PL-addres_points_WMS": { + "attribution": { + "text": "Główny Urząd Geodezji i Kartografii" + }, + "description": "Usługa przeglądania WMS Krajowa Integracja Numeracji Adresowej umożliwiająca pobieranie obrazów mapowych utworzonych na podstawie danych przestrzennych z Państwowego Rejestru Granic w zakresie ewidencji ulic i adresów.", + "name": "Geoportal 2: Punkty adresowe" + }, + "Geoportal2-PL-aerial_image_WMS": { + "attribution": { + "text": "Główny Urząd Geodezji i Kartografii" + }, + "description": "Usługa przeglądania (Web Map Service,WMS) umożliwiająca przeglądanie ortofotomap dla obszaru Polski. Dane udostępniane za pomocą tej usługi stanowią ortofotomapę wykonaną ze zdjęć lotniczych. Usługa oferuje wsparcie dla interfejsu WMS 1.3.0.", + "name": "Geoportal 2: Orthophotomap (aerial image)" + }, + "Geoportal2-PL-buildings_WMS": { + "attribution": { + "text": "Główny Urząd Geodezji i Kartografii" + }, + "description": "Usługa Krajowa Integracja Ewidencji Gruntów jest usługą zbiorczą prezentacji danych ewidencyjnych pochodzących bezpośrednio z jednostek szczebla powiatowego. Usługa zawiera jedynie dane tych jednostek, które dysponują usługą WMS o odpowiednich parametrach i zdecydowały się włączyć swoją usługę WMS do usługi zbiorczej KrajowaIntegracjaEwidencjiGruntow.", + "name": "Geoportal 2: Ewidencja budynków WMS" + }, "MAPNIK": { "attribution": { "text": "© OpenStreetMap contributors, CC-BY-SA 2.0" @@ -10794,6 +10829,13 @@ "description": "Satellite and aerial imagery.", "name": "Mapbox Satellite" }, + "OSMUK-Cadastral-Parcels": { + "attribution": { + "text": "Contains public sector information licensed under the Open Government Licence v3.0." + }, + "description": "Perfectly aligned cadastral (land registry) parcels in Great Britain", + "name": "OSMUK Cadastral Parcels" + }, "OSM_Inspector-Addresses": { "attribution": { "text": "© Geofabrik GmbH, OpenStreetMap contributors, CC-BY-SA" @@ -10842,10 +10884,6 @@ "SPW_PICC": { "name": "SPW(allonie) PICC numerical imagery" }, - "US-TIGER-Roads-2014": { - "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap", - "name": "TIGER Roads 2014" - }, "US-TIGER-Roads-2017": { "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap", "name": "TIGER Roads 2017" @@ -10858,6 +10896,10 @@ "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap", "name": "TIGER Roads 2019" }, + "US-TIGER-Roads-2020": { + "description": "Yellow = Public domain map data from the US Census. Red = Data not found in OpenStreetMap", + "name": "TIGER Roads 2020" + }, "USDA-NAIP": { "description": "The most recent year of DOQQs from the National Agriculture Imagery Program (NAIP) for each state in the contiguous United States.", "name": "National Agriculture Imagery Program" @@ -10974,12 +11016,33 @@ "description": "The city map is an overview map that describes Gothenburg. It contains general information about land, communications, hydrography, buildings, address numbers and street names, administrative division and other orientation text.", "name": "Gothenburg City map" }, + "gothenburg-dtm-2017": { + "attribution": { + "text": "© Gothenburg municipality, CC0" + }, + "description": "Web map service presenting hillshade and slope based on the 2017 elevation model for City of Gothenburg. Resolution 0.5 meters per pixel.", + "name": "Gothenburg Hillshade" + }, "gothenburg-ortho": { "attribution": { "text": "© Gothenburg municipality, CC0" }, "description": "Orthophoto for Gothenburg municipality", - "name": "Gothenburg Orthophoto" + "name": "Gothenburg Orthophoto 2015" + }, + "gothenburg-ortho_2017": { + "attribution": { + "text": "© Gothenburg municipality, CC0" + }, + "description": "Orthophoto for Gothenburg municipality", + "name": "Gothenburg Orthophoto 2017" + }, + "gothenburg-ortho_2019": { + "attribution": { + "text": "© Gothenburg municipality, CC0" + }, + "description": "Orthophoto for Gothenburg municipality", + "name": "Gothenburg Orthophoto 2019" }, "gsi.go.jp_airphoto": { "attribution": { @@ -11030,6 +11093,13 @@ "description": "Orthophotos for urban areas of the municipality of Kalmar 2018", "name": "Kalmar Urban Orthophoto 2018" }, + "kalmar-orto-2020": { + "attribution": { + "text": "© Kalmar municipality" + }, + "description": "Orthophotos for urban areas of the municipality of Kalmar 2020", + "name": "Kalmar Urban Orthophoto 2020" + }, "kelkkareitit": { "attribution": { "text": "© Kelkkareitit.fi" diff --git a/yarn.lock b/yarn.lock index efc404b6b..299fec4d7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -23,10 +23,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@eslint/eslintrc@^0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz#d736d6963d7003b6514e6324bec9c602ac340318" - integrity sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg== +"@eslint/eslintrc@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" + integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== dependencies: ajv "^6.12.4" debug "^4.1.1" @@ -35,7 +35,6 @@ ignore "^4.0.6" import-fresh "^3.2.1" js-yaml "^3.13.1" - lodash "^4.17.20" minimatch "^3.0.4" strip-json-comments "^3.1.1" @@ -126,6 +125,14 @@ bs-custom-file-input@^1.3.4: resolved "https://registry.yarnpkg.com/bs-custom-file-input/-/bs-custom-file-input-1.3.4.tgz#c275cb8d4f1c02ba026324292509fa9a747dbda8" integrity sha512-NBsQzTnef3OW1MvdKBbMHAYHssCd613MSeJV7z2McXznWtVMnJCy7Ckyc+PwxV6Pk16cu6YBcYWh/ZE0XWNKCA== +call-bind@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -248,12 +255,12 @@ eslint-visitor-keys@^2.0.0: integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== eslint@^7.3.1: - version "7.20.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.20.0.tgz#db07c4ca4eda2e2316e7aa57ac7fc91ec550bdc7" - integrity sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw== + version "7.25.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.25.0.tgz#1309e4404d94e676e3e831b3a3ad2b050031eb67" + integrity sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw== dependencies: "@babel/code-frame" "7.12.11" - "@eslint/eslintrc" "^0.3.0" + "@eslint/eslintrc" "^0.4.0" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" @@ -266,10 +273,10 @@ eslint@^7.3.1: espree "^7.3.1" esquery "^1.4.0" esutils "^2.0.2" - file-entry-cache "^6.0.0" + file-entry-cache "^6.0.1" functional-red-black-tree "^1.0.1" glob-parent "^5.0.0" - globals "^12.1.0" + globals "^13.6.0" ignore "^4.0.6" import-fresh "^3.0.0" imurmurhash "^0.1.4" @@ -277,7 +284,7 @@ eslint@^7.3.1: js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" - lodash "^4.17.20" + lodash "^4.17.21" minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" @@ -353,10 +360,10 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= -file-entry-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz#7921a89c391c6d93efec2169ac6bf300c527ea0a" - integrity sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA== +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" @@ -378,11 +385,25 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= +get-intrinsic@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + glob-parent@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" @@ -409,6 +430,13 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" +globals@^13.6.0: + version "13.6.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.6.0.tgz#d77138e53738567bb96a3916ff6f6b487af20ef7" + integrity sha512-YFKCX0SiPg7l5oKYCJ2zZGxcXprVXHcSnVuvzrT3oSENQonVLqM5pf9fN5dLGZGyCjhw8TN8Btwe/jKnZ0pjvQ== + dependencies: + type-fest "^0.20.2" + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -419,6 +447,18 @@ 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-symbols@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + html5shiv@^3.7.3: version "3.7.3" resolved "https://registry.yarnpkg.com/html5shiv/-/html5shiv-3.7.3.tgz#d78a84a367bcb9a710100d57802c387b084631d2" @@ -515,10 +555,10 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= -leaflet.locatecontrol@^0.72.0: - version "0.72.2" - resolved "https://registry.yarnpkg.com/leaflet.locatecontrol/-/leaflet.locatecontrol-0.72.2.tgz#513787f983bce029c100a79aedc9eb98383100e0" - integrity sha512-MNi7m+TlQFwiz5jq5W9vcGjwBHsh1PGxjKjONYd0NezuSLdj9dNjRsupLXtF2fNnX+s+tPNzP7V+Nmg6TKvhHA== +leaflet.locatecontrol@^0.73.0: + version "0.73.0" + resolved "https://registry.yarnpkg.com/leaflet.locatecontrol/-/leaflet.locatecontrol-0.73.0.tgz#768d9edb0470f86c913ea6c2a70ec62380fd45c5" + integrity sha512-e6v6SyDU2nzG5AiH80eH7qhXw5J+EfgmEFHkuzTRC9jqCSbfAm/3HlZDuoa9WYsaZbn5ovvqNeaLW/JSMsgg5g== leaflet@^1.6.0: version "1.7.1" @@ -533,10 +573,10 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" -lodash@^4.17.20: - version "4.17.20" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== +lodash@^4.17.20, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== minimatch@^3.0.4: version "3.0.4" @@ -555,6 +595,11 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= +object-inspect@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" + integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== + ohauth@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/ohauth/-/ohauth-1.0.0.tgz#c2e8bff3bef0ae491447922243e1ba705117de4b" @@ -615,9 +660,11 @@ punycode@^2.1.0: integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== qs@^6.9.4: - version "6.9.6" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" - integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== + version "6.10.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a" + integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg== + dependencies: + side-channel "^1.0.4" regexpp@^3.1.0: version "3.1.0" @@ -653,6 +700,15 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + slice-ansi@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" @@ -724,6 +780,11 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + type-fest@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"