geoblacklight 4.0.0.pre.alpha.1 → 4.0.0.pre.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +1 -1
- data/.github/workflows/ruby.yml +32 -64
- data/.gitignore +1 -0
- data/.rubocop.yml +6 -6
- data/.rubocop_todo.yml +0 -3
- data/.solr_wrapper +1 -0
- data/README.md +1 -4
- data/Rakefile +0 -1
- data/app/assets/images/blacklight/child-item.svg +3 -0
- data/app/assets/images/blacklight/collections.svg +4 -0
- data/app/assets/images/blacklight/datasets.svg +7 -0
- data/app/assets/images/blacklight/geoblacklight-icons.json +363 -332
- data/app/assets/images/blacklight/imagery.svg +4 -0
- data/app/assets/images/blacklight/maps.svg +4 -0
- data/app/assets/images/blacklight/michigan-state-university.svg +0 -1
- data/app/assets/images/blacklight/parent-item.svg +3 -0
- data/app/assets/images/blacklight/pennsylvania-state-university.svg +0 -1
- data/app/assets/images/blacklight/purdue-university.svg +0 -1
- data/app/assets/images/blacklight/the-ohio-state-university.svg +0 -1
- data/app/assets/images/blacklight/university-of-chicago.svg +0 -1
- data/app/assets/images/blacklight/university-of-colorado-boulder.svg +6 -0
- data/app/assets/images/blacklight/university-of-illinois-urbana-champaign.svg +0 -1
- data/app/assets/images/blacklight/university-of-iowa.svg +0 -1
- data/app/assets/images/blacklight/university-of-maryland.svg +0 -1
- data/app/assets/images/blacklight/university-of-michigan.svg +0 -1
- data/app/assets/images/blacklight/university-of-minnesota.svg +0 -1
- data/app/assets/images/blacklight/university-of-nebraska-lincoln.svg +0 -1
- data/app/assets/images/blacklight/university-of-wisconsin-madison.svg +0 -1
- data/app/assets/images/blacklight/websites.svg +4 -0
- data/app/assets/javascripts/geoblacklight/controls/fullscreen.js +8 -0
- data/app/assets/javascripts/geoblacklight/geoblacklight.js +2 -1
- data/app/assets/javascripts/geoblacklight/viewers/esri.js +1 -0
- data/app/assets/javascripts/geoblacklight/viewers/index_map.js +1 -0
- data/app/assets/javascripts/geoblacklight/viewers/tilejson.js +33 -0
- data/app/assets/javascripts/geoblacklight/viewers/tms.js +2 -2
- data/app/assets/javascripts/geoblacklight/viewers/viewer.js +3 -0
- data/app/assets/javascripts/geoblacklight/viewers/wms.js +2 -2
- data/app/assets/javascripts/geoblacklight/viewers/wmts.js +85 -0
- data/app/assets/javascripts/geoblacklight/viewers/xyz.js +10 -0
- data/app/assets/stylesheets/geoblacklight/geoblacklight.scss +1 -0
- data/app/assets/stylesheets/geoblacklight/modules/_base.scss +0 -1
- data/app/assets/stylesheets/geoblacklight/modules/_styles.scss +5 -1
- data/app/assets/stylesheets/geoblacklight/modules/downloads.scss +20 -47
- data/app/assets/stylesheets/geoblacklight/modules/index_maps.scss +68 -0
- data/app/assets/stylesheets/geoblacklight/modules/item.scss +16 -0
- data/app/assets/stylesheets/geoblacklight/modules/modal.scss +6 -0
- data/app/assets/stylesheets/geoblacklight/modules/sidebar.scss +4 -0
- data/app/components/geoblacklight/icon_facet_item_component.rb +33 -0
- data/app/helpers/geoblacklight_helper.rb +6 -45
- data/app/models/concerns/geoblacklight/bbox_filter_field.rb +45 -0
- data/app/models/concerns/geoblacklight/bbox_filter_query.rb +50 -0
- data/app/models/concerns/geoblacklight/solr_document.rb +1 -1
- data/app/models/concerns/geoblacklight/suppressed_records_search_behavior.rb +26 -0
- data/app/presenters/geoblacklight/bbox_item_presenter.rb +9 -0
- data/app/views/catalog/_downloads_collapse.html.erb +27 -0
- data/app/views/catalog/_header_icons.html.erb +2 -2
- data/app/views/catalog/_index_split_default.html.erb +2 -2
- data/app/views/catalog/_show_default_viewer_container.html.erb +17 -0
- data/app/views/catalog/_show_downloads.html.erb +10 -21
- data/app/views/catalog/_show_sidebar.html.erb +3 -0
- data/app/views/catalog/_show_web_services.html.erb +11 -0
- data/app/views/catalog/_web_services.html.erb +3 -2
- data/app/views/catalog/web_services.html.erb +1 -1
- data/app/views/relation/_relations.html.erb +1 -1
- data/app/views/relation/index.html.erb +1 -1
- data/config/locales/geoblacklight.en.yml +4 -1
- data/geoblacklight.gemspec +6 -6
- data/lib/generators/geoblacklight/install_generator.rb +1 -1
- data/lib/generators/geoblacklight/templates/assets/_customizations.scss +5 -4
- data/lib/generators/geoblacklight/templates/assets/application.scss +0 -3
- data/lib/generators/geoblacklight/templates/catalog_controller.rb +74 -56
- data/lib/generators/geoblacklight/templates/settings.gbl_v1.yml +5 -5
- data/lib/generators/geoblacklight/templates/settings.yml +36 -23
- data/lib/geoblacklight/bounding_box.rb +4 -0
- data/lib/geoblacklight/constants.rb +3 -0
- data/lib/geoblacklight/engine.rb +3 -2
- data/lib/geoblacklight/faraday_middleware/follow_redirects.rb +176 -0
- data/lib/geoblacklight/item_viewer.rb +13 -1
- data/lib/geoblacklight/metadata/base.rb +2 -1
- data/lib/geoblacklight/version.rb +1 -1
- data/lib/geoblacklight/view_helper_override.rb +2 -28
- data/lib/geoblacklight.rb +0 -10
- data/lib/tasks/geoblacklight.rake +1 -1
- data/schema/geoblacklight-schema-aardvark.json +3 -23
- data/solr/conf/schema.xml +37 -43
- data/solr/conf/solrconfig.xml +17 -17
- data/spec/components/geoblacklight/icon_facet_item_component_spec.rb +17 -0
- data/spec/controllers/catalog_controller_spec.rb +1 -1
- data/spec/features/download_layer_spec.rb +31 -14
- data/spec/features/esri_viewer_spec.rb +5 -1
- data/spec/features/full_screen_controll_spec.rb +15 -0
- data/spec/features/home_page_spec.rb +2 -2
- data/spec/features/index_map_spec.rb +2 -2
- data/spec/features/missing_metadata_spec.rb +1 -1
- data/spec/features/multiple_downloads_spec.rb +2 -1
- data/spec/features/relations_spec.rb +1 -1
- data/spec/features/saved_searches_spec.rb +1 -1
- data/spec/features/search_results_complex_geometry_spec.rb +24 -0
- data/spec/features/search_results_icons_spec.rb +16 -0
- data/spec/features/search_results_map_spec.rb +2 -2
- data/spec/features/search_spec.rb +22 -0
- data/spec/features/show_page_download_spec.rb +29 -0
- data/spec/features/show_page_metadata_spec.rb +2 -2
- data/spec/features/split_view.html.erb_spec.rb +12 -1
- data/spec/features/tilejson_spec.rb +22 -0
- data/spec/features/tms_spec.rb +2 -2
- data/spec/features/web_services_modal_spec.rb +35 -2
- data/spec/features/wmts_spec.rb +34 -0
- data/spec/features/xyz_spec.rb +10 -0
- data/spec/fixtures/manifests/tilejson.json +21 -0
- data/spec/fixtures/manifests/wmts-multiple.xml +813 -0
- data/spec/fixtures/manifests/wmts-single.xml +126 -0
- data/spec/fixtures/solr_documents/README.md +46 -43
- data/spec/fixtures/solr_documents/actual-papermap1.json +2 -1
- data/spec/fixtures/solr_documents/actual-point1.json +2 -1
- data/spec/fixtures/solr_documents/actual-polygon1.json +2 -1
- data/spec/fixtures/solr_documents/actual-raster1.json +3 -2
- data/spec/fixtures/solr_documents/baruch_ancestor1.json +2 -1
- data/spec/fixtures/solr_documents/baruch_ancestor2.json +2 -1
- data/spec/fixtures/solr_documents/baruch_documentation_download.json +1 -1
- data/spec/fixtures/solr_documents/bbox-spans-180.json +2 -1
- data/spec/fixtures/solr_documents/cornell_html_metadata.json +4 -3
- data/spec/fixtures/solr_documents/esri-dynamic-layer-all-layers.json +3 -2
- data/spec/fixtures/solr_documents/esri-dynamic-layer-single-layer.json +3 -2
- data/spec/fixtures/solr_documents/esri-feature-layer.json +2 -1
- data/spec/fixtures/solr_documents/esri-image-map-layer.json +3 -2
- data/spec/fixtures/solr_documents/esri-tiled_map_layer.json +2 -1
- data/spec/fixtures/solr_documents/esri-wms-layer.json +2 -1
- data/spec/fixtures/solr_documents/harvard_raster.json +3 -2
- data/spec/fixtures/solr_documents/iiif-eastern-hemisphere.json +3 -2
- data/spec/fixtures/solr_documents/index-map-polygon-no-downloadurl.json +2 -1
- data/spec/fixtures/solr_documents/index-map-polygon.json +2 -1
- data/spec/fixtures/solr_documents/index-map-stanford.json +2 -1
- data/spec/fixtures/solr_documents/index_map_point.json +3 -2
- data/spec/fixtures/solr_documents/metadata_no_provider.json +2 -1
- data/spec/fixtures/solr_documents/multiple-downloads.json +3 -2
- data/spec/fixtures/solr_documents/no_spatial.json +1 -4
- data/spec/fixtures/solr_documents/oembed.json +2 -1
- data/spec/fixtures/solr_documents/princeton-child1.json +3 -2
- data/spec/fixtures/solr_documents/princeton-child2.json +3 -2
- data/spec/fixtures/solr_documents/princeton-child3.json +2 -1
- data/spec/fixtures/solr_documents/princeton-child4.json +3 -2
- data/spec/fixtures/solr_documents/princeton-parent.json +5 -3
- data/spec/fixtures/solr_documents/public_direct_download.json +2 -1
- data/spec/fixtures/solr_documents/public_iiif_princeton.json +3 -2
- data/spec/fixtures/solr_documents/public_polygon_mit.json +2 -1
- data/spec/fixtures/solr_documents/restricted-line.json +2 -1
- data/spec/fixtures/solr_documents/tilejson.json +48 -0
- data/spec/fixtures/solr_documents/tms.json +15 -18
- data/spec/fixtures/solr_documents/umn_metro_result1.json +5 -3
- data/spec/fixtures/solr_documents/umn_state_result1.json +3 -2
- data/spec/fixtures/solr_documents/umn_state_result2.json +3 -5
- data/spec/fixtures/solr_documents/uva_slug_colon.json +2 -1
- data/spec/fixtures/solr_documents/wmts-multiple.json +41 -0
- data/spec/fixtures/solr_documents/wmts-single-layer.json +48 -0
- data/spec/fixtures/solr_documents/xyz.json +46 -0
- data/spec/helpers/geoblacklight_helper_spec.rb +12 -35
- data/spec/lib/geoblacklight/document_presenter_spec.rb +3 -3
- data/spec/lib/geoblacklight/download/geojson_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download/geotiff_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download/kmz_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download/shapefile_download_spec.rb +1 -1
- data/spec/lib/geoblacklight/download_spec.rb +2 -2
- data/spec/lib/geoblacklight/metadata/base_spec.rb +19 -1
- data/spec/lib/geoblacklight/references_spec.rb +1 -1
- data/spec/lib/geoblacklight/relation/relation_response_spec.rb +5 -0
- data/spec/lib/geoblacklight/view_helper_override_spec.rb +0 -10
- data/spec/models/concerns/geoblacklight/bbox_filter_field_spec.rb +77 -0
- data/spec/models/concerns/geoblacklight/bbox_filter_query_spec.rb +105 -0
- data/spec/models/concerns/geoblacklight/solr_document/inspection_spec.rb +2 -1
- data/spec/models/concerns/geoblacklight/suppressed_records_search_behavior_spec.rb +31 -0
- data/spec/presenters/geoblacklight/bbox_item_presenter_spec.rb +36 -0
- data/spec/spec_helper.rb +6 -1
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -4
- data/spec/views/catalog/_show_downloads.html.erb_spec.rb +5 -5
- data/template.rb +2 -4
- data/vendor/assets/images/fullscreen.png +0 -0
- data/vendor/assets/images/fullscreen@2x.png +0 -0
- data/vendor/assets/javascripts/Leaflet.fullscreen.js +152 -0
- data/vendor/assets/javascripts/esri-leaflet.js +10 -3
- data/vendor/assets/javascripts/esri-leaflet.js.map +1 -1
- data/vendor/assets/javascripts/leaflet-iiif.js +39 -18
- data/vendor/assets/javascripts/leaflet-src.js.erb +14062 -0
- data/vendor/assets/javascripts/leaflet-src.js.map +1 -1
- data/vendor/assets/stylesheets/leaflet.css +640 -634
- data/vendor/assets/stylesheets/leaflet.fullscreen.css +40 -0
- metadata +91 -46
- data/app/models/concerns/geoblacklight/spatial_search_behavior.rb +0 -71
- data/app/views/catalog/_download_generated_link.html.erb +0 -4
- data/app/views/catalog/_download_link.html.erb +0 -3
- data/app/views/catalog/_downloads_generated.html.erb +0 -6
- data/app/views/catalog/_downloads_primary.html.erb +0 -21
- data/app/views/catalog/_downloads_secondary.html.erb +0 -39
- data/app/views/catalog/_icon_facet.html.erb +0 -16
- data/bin/coverage.rb +0 -36
- data/lib/generators/geoblacklight/templates/Procfile +0 -3
- data/lib/generators/geoblacklight/templates/package.json +0 -14
- data/lib/generators/geoblacklight/templates/webpacker.yml +0 -67
- data/lib/generators/geoblacklight/webpacker_generator.rb +0 -36
- data/lib/geoblacklight/catalog_helper_override.rb +0 -14
- data/spec/models/concerns/geoblacklight/spatial_search_behavior_spec.rb +0 -97
- data/vendor/assets/javascripts/leaflet.js.erb +0 -13922
- data/vendor/assets/stylesheets/leaflet-label.css +0 -54
@@ -0,0 +1,813 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Capabilities xmlns="http://www.opengis.net/wmts/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd" version="1.0.0">
|
3
|
+
<ows:ServiceIdentification>
|
4
|
+
<ows:Title>Web Map Tile Service</ows:Title>
|
5
|
+
<ows:ServiceType>OGC WMTS</ows:ServiceType>
|
6
|
+
<ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion>
|
7
|
+
<ows:Fees>none</ows:Fees>
|
8
|
+
<ows:AccessConstraints>http://data.wien.gv.at/nutzungsbedingungen</ows:AccessConstraints>
|
9
|
+
</ows:ServiceIdentification>
|
10
|
+
<ows:ServiceProvider>
|
11
|
+
<ows:ProviderName>Magistrat Wien</ows:ProviderName>
|
12
|
+
<ows:ProviderSite xlink:href="http://www.wien.gv.at"/>
|
13
|
+
<ows:ServiceContact>
|
14
|
+
<ows:IndividualName>MA01-ViennaGIS</ows:IndividualName>
|
15
|
+
</ows:ServiceContact>
|
16
|
+
</ows:ServiceProvider>
|
17
|
+
<ows:OperationsMetadata>
|
18
|
+
<ows:Operation name="GetCapabilities">
|
19
|
+
<ows:DCP>
|
20
|
+
<ows:HTTP>
|
21
|
+
<ows:Get xlink:href="http://maps.wien.gv.at/wmts">
|
22
|
+
<ows:Constraint name="GetEncoding">
|
23
|
+
<ows:AllowedValues>
|
24
|
+
<ows:Value>RESTful</ows:Value>
|
25
|
+
</ows:AllowedValues>
|
26
|
+
</ows:Constraint>
|
27
|
+
</ows:Get>
|
28
|
+
<ows:Get xlink:href="http://maps1.wien.gv.at/wmts">
|
29
|
+
<ows:Constraint name="GetEncoding">
|
30
|
+
<ows:AllowedValues>
|
31
|
+
<ows:Value>RESTful</ows:Value>
|
32
|
+
</ows:AllowedValues>
|
33
|
+
</ows:Constraint>
|
34
|
+
</ows:Get>
|
35
|
+
<ows:Get xlink:href="http://maps2.wien.gv.at/wmts">
|
36
|
+
<ows:Constraint name="GetEncoding">
|
37
|
+
<ows:AllowedValues>
|
38
|
+
<ows:Value>RESTful</ows:Value>
|
39
|
+
</ows:AllowedValues>
|
40
|
+
</ows:Constraint>
|
41
|
+
</ows:Get>
|
42
|
+
<ows:Get xlink:href="http://maps3.wien.gv.at/wmts">
|
43
|
+
<ows:Constraint name="GetEncoding">
|
44
|
+
<ows:AllowedValues>
|
45
|
+
<ows:Value>RESTful</ows:Value>
|
46
|
+
</ows:AllowedValues>
|
47
|
+
</ows:Constraint>
|
48
|
+
</ows:Get>
|
49
|
+
<ows:Get xlink:href="http://maps4.wien.gv.at/wmts">
|
50
|
+
<ows:Constraint name="GetEncoding">
|
51
|
+
<ows:AllowedValues>
|
52
|
+
<ows:Value>RESTful</ows:Value>
|
53
|
+
</ows:AllowedValues>
|
54
|
+
</ows:Constraint>
|
55
|
+
</ows:Get>
|
56
|
+
</ows:HTTP>
|
57
|
+
</ows:DCP>
|
58
|
+
</ows:Operation>
|
59
|
+
<ows:Operation name="GetTile">
|
60
|
+
<ows:DCP>
|
61
|
+
<ows:HTTP>
|
62
|
+
<ows:Get xlink:href="http://maps.wien.gv.at/wmts">
|
63
|
+
<ows:Constraint name="GetEncoding">
|
64
|
+
<ows:AllowedValues>
|
65
|
+
<ows:Value>RESTful</ows:Value>
|
66
|
+
</ows:AllowedValues>
|
67
|
+
</ows:Constraint>
|
68
|
+
</ows:Get>
|
69
|
+
<ows:Get xlink:href="http://maps1.wien.gv.at/wmts">
|
70
|
+
<ows:Constraint name="GetEncoding">
|
71
|
+
<ows:AllowedValues>
|
72
|
+
<ows:Value>RESTful</ows:Value>
|
73
|
+
</ows:AllowedValues>
|
74
|
+
</ows:Constraint>
|
75
|
+
</ows:Get>
|
76
|
+
<ows:Get xlink:href="http://maps2.wien.gv.at/wmts">
|
77
|
+
<ows:Constraint name="GetEncoding">
|
78
|
+
<ows:AllowedValues>
|
79
|
+
<ows:Value>RESTful</ows:Value>
|
80
|
+
</ows:AllowedValues>
|
81
|
+
</ows:Constraint>
|
82
|
+
</ows:Get>
|
83
|
+
<ows:Get xlink:href="http://maps3.wien.gv.at/wmts">
|
84
|
+
<ows:Constraint name="GetEncoding">
|
85
|
+
<ows:AllowedValues>
|
86
|
+
<ows:Value>RESTful</ows:Value>
|
87
|
+
</ows:AllowedValues>
|
88
|
+
</ows:Constraint>
|
89
|
+
</ows:Get>
|
90
|
+
<ows:Get xlink:href="http://maps4.wien.gv.at/wmts">
|
91
|
+
<ows:Constraint name="GetEncoding">
|
92
|
+
<ows:AllowedValues>
|
93
|
+
<ows:Value>RESTful</ows:Value>
|
94
|
+
</ows:AllowedValues>
|
95
|
+
</ows:Constraint>
|
96
|
+
</ows:Get>
|
97
|
+
</ows:HTTP>
|
98
|
+
</ows:DCP>
|
99
|
+
</ows:Operation>
|
100
|
+
</ows:OperationsMetadata>
|
101
|
+
<Contents>
|
102
|
+
<Layer>
|
103
|
+
<ows:Title>Stadtplan3D Grundkarte</ows:Title>
|
104
|
+
<ows:Abstract>Visualisierung der Flächen-Mehrzweckkarte von Wien (FMZK) optimiert und vereinfacht für die Darstellung als Hintergrundkarte im 3D WebViewer der MA41. Darstellung ohne Brücken (!), Straßenbeschriftung stammt von der MA41</ows:Abstract>
|
105
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
106
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
107
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
108
|
+
</ows:WGS84BoundingBox>
|
109
|
+
<ows:Identifier>fmzk3dviewer</ows:Identifier>
|
110
|
+
<Style isDefault="true">
|
111
|
+
<ows:Identifier>pastell</ows:Identifier>
|
112
|
+
</Style>
|
113
|
+
<Format>image/png</Format>
|
114
|
+
<TileMatrixSetLink>
|
115
|
+
<TileMatrixSet>google3857_0-20</TileMatrixSet>
|
116
|
+
</TileMatrixSetLink>
|
117
|
+
<ResourceURL format="image/png" template="http://maps1.wien.gv.at/wmts/fmzk3dviewer/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
118
|
+
<ResourceURL format="image/png" template="http://maps2.wien.gv.at/wmts/fmzk3dviewer/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
119
|
+
<ResourceURL format="image/png" template="http://maps3.wien.gv.at/wmts/fmzk3dviewer/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
120
|
+
<ResourceURL format="image/png" template="http://maps4.wien.gv.at/wmts/fmzk3dviewer/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
121
|
+
<ResourceURL format="image/png" template="http://maps.wien.gv.at/wmts/fmzk3dviewer/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
122
|
+
</Layer>
|
123
|
+
<Layer>
|
124
|
+
<ows:Title>Orthofoto 2021</ows:Title>
|
125
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
126
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
127
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
128
|
+
</ows:WGS84BoundingBox>
|
129
|
+
<ows:Identifier>lb</ows:Identifier>
|
130
|
+
<Style isDefault="true">
|
131
|
+
<ows:Identifier>farbe</ows:Identifier>
|
132
|
+
</Style>
|
133
|
+
<Format>image/jpeg</Format>
|
134
|
+
<TileMatrixSetLink>
|
135
|
+
<TileMatrixSet>google3857_0-20</TileMatrixSet>
|
136
|
+
</TileMatrixSetLink>
|
137
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
138
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
139
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
140
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
141
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
142
|
+
</Layer>
|
143
|
+
<Layer>
|
144
|
+
<ows:Title>Orthofoto 2020</ows:Title>
|
145
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
146
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
147
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
148
|
+
</ows:WGS84BoundingBox>
|
149
|
+
<ows:Identifier>lb2020</ows:Identifier>
|
150
|
+
<Style isDefault="true">
|
151
|
+
<ows:Identifier>farbe</ows:Identifier>
|
152
|
+
</Style>
|
153
|
+
<Format>image/jpeg</Format>
|
154
|
+
<TileMatrixSetLink>
|
155
|
+
<TileMatrixSet>google3857_0-20</TileMatrixSet>
|
156
|
+
</TileMatrixSetLink>
|
157
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2020/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
158
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2020/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
159
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2020/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
160
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2020/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
161
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2020/{Style}/google3857/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
162
|
+
</Layer>
|
163
|
+
<Layer>
|
164
|
+
<ows:Title>Orthofoto 2019</ows:Title>
|
165
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
166
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
167
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
168
|
+
</ows:WGS84BoundingBox>
|
169
|
+
<ows:Identifier>lb2019</ows:Identifier>
|
170
|
+
<Style isDefault="true">
|
171
|
+
<ows:Identifier>farbe</ows:Identifier>
|
172
|
+
</Style>
|
173
|
+
<Format>image/jpeg</Format>
|
174
|
+
<TileMatrixSetLink>
|
175
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
176
|
+
</TileMatrixSetLink>
|
177
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2019/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
178
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2019/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
179
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2019/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
180
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2019/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
181
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2019/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
182
|
+
</Layer>
|
183
|
+
<Layer>
|
184
|
+
<ows:Title>Orthofoto 2018</ows:Title>
|
185
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
186
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
187
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
188
|
+
</ows:WGS84BoundingBox>
|
189
|
+
<ows:Identifier>lb2018</ows:Identifier>
|
190
|
+
<Style isDefault="true">
|
191
|
+
<ows:Identifier>farbe</ows:Identifier>
|
192
|
+
</Style>
|
193
|
+
<Format>image/jpeg</Format>
|
194
|
+
<TileMatrixSetLink>
|
195
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
196
|
+
</TileMatrixSetLink>
|
197
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2018/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
198
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2018/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
199
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2018/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
200
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2018/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
201
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2018/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
202
|
+
</Layer>
|
203
|
+
<Layer>
|
204
|
+
<ows:Title>Orthofoto 2017</ows:Title>
|
205
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
206
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
207
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
208
|
+
</ows:WGS84BoundingBox>
|
209
|
+
<ows:Identifier>lb2017</ows:Identifier>
|
210
|
+
<Style isDefault="true">
|
211
|
+
<ows:Identifier>farbe</ows:Identifier>
|
212
|
+
</Style>
|
213
|
+
<Format>image/jpeg</Format>
|
214
|
+
<TileMatrixSetLink>
|
215
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
216
|
+
</TileMatrixSetLink>
|
217
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2017/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
218
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2017/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
219
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2017/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
220
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2017/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
221
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2017/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
222
|
+
</Layer>
|
223
|
+
<Layer>
|
224
|
+
<ows:Title>Orthofoto 2016</ows:Title>
|
225
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
226
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
227
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
228
|
+
</ows:WGS84BoundingBox>
|
229
|
+
<ows:Identifier>lb2016</ows:Identifier>
|
230
|
+
<Style isDefault="true">
|
231
|
+
<ows:Identifier>farbe</ows:Identifier>
|
232
|
+
</Style>
|
233
|
+
<Format>image/jpeg</Format>
|
234
|
+
<TileMatrixSetLink>
|
235
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
236
|
+
</TileMatrixSetLink>
|
237
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2016/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
238
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2016/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
239
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2016/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
240
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2016/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
241
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2016/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
242
|
+
</Layer>
|
243
|
+
<Layer>
|
244
|
+
<ows:Title>Orthofoto 2015</ows:Title>
|
245
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
246
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
247
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
248
|
+
</ows:WGS84BoundingBox>
|
249
|
+
<ows:Identifier>lb2015</ows:Identifier>
|
250
|
+
<Style isDefault="true">
|
251
|
+
<ows:Identifier>farbe</ows:Identifier>
|
252
|
+
</Style>
|
253
|
+
<Format>image/jpeg</Format>
|
254
|
+
<TileMatrixSetLink>
|
255
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
256
|
+
</TileMatrixSetLink>
|
257
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2015/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
258
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2015/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
259
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2015/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
260
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2015/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
261
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2015/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
262
|
+
</Layer>
|
263
|
+
<Layer>
|
264
|
+
<ows:Title>Orthofoto 2014</ows:Title>
|
265
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
266
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
267
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
268
|
+
</ows:WGS84BoundingBox>
|
269
|
+
<ows:Identifier>lb2014</ows:Identifier>
|
270
|
+
<Style isDefault="true">
|
271
|
+
<ows:Identifier>farbe</ows:Identifier>
|
272
|
+
</Style>
|
273
|
+
<Format>image/jpeg</Format>
|
274
|
+
<TileMatrixSetLink>
|
275
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
276
|
+
</TileMatrixSetLink>
|
277
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb2014/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
278
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb2014/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
279
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb2014/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
280
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb2014/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
281
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb2014/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
282
|
+
</Layer>
|
283
|
+
<Layer>
|
284
|
+
<ows:Title>Luftbildplan 1992</ows:Title>
|
285
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
286
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
287
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
288
|
+
</ows:WGS84BoundingBox>
|
289
|
+
<ows:Identifier>lb1992</ows:Identifier>
|
290
|
+
<Style isDefault="true">
|
291
|
+
<ows:Identifier>grau</ows:Identifier>
|
292
|
+
</Style>
|
293
|
+
<Format>image/jpeg</Format>
|
294
|
+
<TileMatrixSetLink>
|
295
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
296
|
+
</TileMatrixSetLink>
|
297
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb1992/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
298
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb1992/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
299
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb1992/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
300
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb1992/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
301
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb1992/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
302
|
+
</Layer>
|
303
|
+
<Layer>
|
304
|
+
<ows:Title>Luftbildplan 1976</ows:Title>
|
305
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
306
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
307
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
308
|
+
</ows:WGS84BoundingBox>
|
309
|
+
<ows:Identifier>lb1976</ows:Identifier>
|
310
|
+
<Style isDefault="true">
|
311
|
+
<ows:Identifier>grau</ows:Identifier>
|
312
|
+
</Style>
|
313
|
+
<Format>image/jpeg</Format>
|
314
|
+
<TileMatrixSetLink>
|
315
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
316
|
+
</TileMatrixSetLink>
|
317
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb1976/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
318
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb1976/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
319
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb1976/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
320
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb1976/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
321
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb1976/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
322
|
+
</Layer>
|
323
|
+
<Layer>
|
324
|
+
<ows:Title>Luftbildplan 1956</ows:Title>
|
325
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
326
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
327
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
328
|
+
</ows:WGS84BoundingBox>
|
329
|
+
<ows:Identifier>lb1956</ows:Identifier>
|
330
|
+
<Style isDefault="true">
|
331
|
+
<ows:Identifier>grau</ows:Identifier>
|
332
|
+
</Style>
|
333
|
+
<Format>image/jpeg</Format>
|
334
|
+
<TileMatrixSetLink>
|
335
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
336
|
+
</TileMatrixSetLink>
|
337
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb1956/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
338
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb1956/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
339
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb1956/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
340
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb1956/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
341
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb1956/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
342
|
+
</Layer>
|
343
|
+
<Layer>
|
344
|
+
<ows:Title>Luftbildplan 1938</ows:Title>
|
345
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
346
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
347
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
348
|
+
</ows:WGS84BoundingBox>
|
349
|
+
<ows:Identifier>lb1938</ows:Identifier>
|
350
|
+
<Style isDefault="true">
|
351
|
+
<ows:Identifier>grau</ows:Identifier>
|
352
|
+
</Style>
|
353
|
+
<Format>image/jpeg</Format>
|
354
|
+
<TileMatrixSetLink>
|
355
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
356
|
+
</TileMatrixSetLink>
|
357
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/lb1938/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
358
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/lb1938/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
359
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/lb1938/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
360
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/lb1938/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
361
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/lb1938/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
362
|
+
</Layer>
|
363
|
+
<Layer>
|
364
|
+
<ows:Title>Stadtplan Grundkarte</ows:Title>
|
365
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
366
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
367
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
368
|
+
</ows:WGS84BoundingBox>
|
369
|
+
<ows:Identifier>fmzk</ows:Identifier>
|
370
|
+
<Style isDefault="true">
|
371
|
+
<ows:Identifier>pastell</ows:Identifier>
|
372
|
+
</Style>
|
373
|
+
<Format>image/jpeg</Format>
|
374
|
+
<TileMatrixSetLink>
|
375
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
376
|
+
</TileMatrixSetLink>
|
377
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/fmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
378
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/fmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
379
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/fmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
380
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/fmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
381
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/fmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
382
|
+
</Layer>
|
383
|
+
<Layer>
|
384
|
+
<ows:Title>Flächenwidmungs- und Bebauungsplan</ows:Title>
|
385
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
386
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
387
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
388
|
+
</ows:WGS84BoundingBox>
|
389
|
+
<ows:Identifier>flwbplmzk</ows:Identifier>
|
390
|
+
<Style isDefault="true">
|
391
|
+
<ows:Identifier>rot</ows:Identifier>
|
392
|
+
</Style>
|
393
|
+
<Format>image/jpeg</Format>
|
394
|
+
<TileMatrixSetLink>
|
395
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
396
|
+
</TileMatrixSetLink>
|
397
|
+
<ResourceURL format="image/jpeg" template="http://maps1.wien.gv.at/wmts/flwbplmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
398
|
+
<ResourceURL format="image/jpeg" template="http://maps2.wien.gv.at/wmts/flwbplmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
399
|
+
<ResourceURL format="image/jpeg" template="http://maps3.wien.gv.at/wmts/flwbplmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
400
|
+
<ResourceURL format="image/jpeg" template="http://maps4.wien.gv.at/wmts/flwbplmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
401
|
+
<ResourceURL format="image/jpeg" template="http://maps.wien.gv.at/wmts/flwbplmzk/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.jpeg" resourceType="tile"/>
|
402
|
+
</Layer>
|
403
|
+
<Layer>
|
404
|
+
<ows:Title>Stadtplan Beschriftung</ows:Title>
|
405
|
+
<ows:WGS84BoundingBox crs="urn:ogc:def:crs:OGC:2:84">
|
406
|
+
<ows:LowerCorner>16.17 48.10</ows:LowerCorner>
|
407
|
+
<ows:UpperCorner>16.58 48.33</ows:UpperCorner>
|
408
|
+
</ows:WGS84BoundingBox>
|
409
|
+
<ows:Identifier>beschriftung</ows:Identifier>
|
410
|
+
<Style isDefault="true">
|
411
|
+
<ows:Identifier>normal</ows:Identifier>
|
412
|
+
</Style>
|
413
|
+
<Format>image/png</Format>
|
414
|
+
<TileMatrixSetLink>
|
415
|
+
<TileMatrixSet>google3857</TileMatrixSet>
|
416
|
+
</TileMatrixSetLink>
|
417
|
+
<ResourceURL format="image/png" template="http://maps1.wien.gv.at/wmts/beschriftung/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
418
|
+
<ResourceURL format="image/png" template="http://maps2.wien.gv.at/wmts/beschriftung/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
419
|
+
<ResourceURL format="image/png" template="http://maps3.wien.gv.at/wmts/beschriftung/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
420
|
+
<ResourceURL format="image/png" template="http://maps4.wien.gv.at/wmts/beschriftung/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
421
|
+
<ResourceURL format="image/png" template="http://maps.wien.gv.at/wmts/beschriftung/{Style}/{TileMatrixSet}/{TileMatrix}/{TileRow}/{TileCol}.png" resourceType="tile"/>
|
422
|
+
</Layer>
|
423
|
+
<TileMatrixSet>
|
424
|
+
<!-- -180 85.05112878 -->
|
425
|
+
<ows:Identifier>google3857</ows:Identifier>
|
426
|
+
<ows:BoundingBox crs="urn:ogc:def:crs:EPSG:6.18.3:3857">
|
427
|
+
<ows:LowerCorner>1799448.394855 6124949.747770</ows:LowerCorner>
|
428
|
+
<ows:UpperCorner>1848250.442089 6162571.828177</ows:UpperCorner>
|
429
|
+
</ows:BoundingBox>
|
430
|
+
<ows:SupportedCRS>urn:ogc:def:crs:EPSG:6.18.3:3857</ows:SupportedCRS>
|
431
|
+
<WellKnownScaleSet>urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible</WellKnownScaleSet>
|
432
|
+
<TileMatrix>
|
433
|
+
<ows:Identifier>0</ows:Identifier>
|
434
|
+
<ScaleDenominator>559082264.029</ScaleDenominator>
|
435
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
436
|
+
<TileWidth>256</TileWidth>
|
437
|
+
<TileHeight>256</TileHeight>
|
438
|
+
<MatrixWidth>1</MatrixWidth>
|
439
|
+
<MatrixHeight>1</MatrixHeight>
|
440
|
+
</TileMatrix>
|
441
|
+
<TileMatrix>
|
442
|
+
<ows:Identifier>1</ows:Identifier>
|
443
|
+
<ScaleDenominator>279541132.015</ScaleDenominator>
|
444
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
445
|
+
<TileWidth>256</TileWidth>
|
446
|
+
<TileHeight>256</TileHeight>
|
447
|
+
<MatrixWidth>2</MatrixWidth>
|
448
|
+
<MatrixHeight>2</MatrixHeight>
|
449
|
+
</TileMatrix>
|
450
|
+
<TileMatrix>
|
451
|
+
<ows:Identifier>2</ows:Identifier>
|
452
|
+
<ScaleDenominator>139770566.007</ScaleDenominator>
|
453
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
454
|
+
<TileWidth>256</TileWidth>
|
455
|
+
<TileHeight>256</TileHeight>
|
456
|
+
<MatrixWidth>4</MatrixWidth>
|
457
|
+
<MatrixHeight>4</MatrixHeight>
|
458
|
+
</TileMatrix>
|
459
|
+
<TileMatrix>
|
460
|
+
<ows:Identifier>3</ows:Identifier>
|
461
|
+
<ScaleDenominator>69885283.0036</ScaleDenominator>
|
462
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
463
|
+
<TileWidth>256</TileWidth>
|
464
|
+
<TileHeight>256</TileHeight>
|
465
|
+
<MatrixWidth>8</MatrixWidth>
|
466
|
+
<MatrixHeight>8</MatrixHeight>
|
467
|
+
</TileMatrix>
|
468
|
+
<TileMatrix>
|
469
|
+
<ows:Identifier>4</ows:Identifier>
|
470
|
+
<ScaleDenominator>34942641.5018</ScaleDenominator>
|
471
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
472
|
+
<TileWidth>256</TileWidth>
|
473
|
+
<TileHeight>256</TileHeight>
|
474
|
+
<MatrixWidth>16</MatrixWidth>
|
475
|
+
<MatrixHeight>16</MatrixHeight>
|
476
|
+
</TileMatrix>
|
477
|
+
<TileMatrix>
|
478
|
+
<ows:Identifier>5</ows:Identifier>
|
479
|
+
<ScaleDenominator>17471320.7509</ScaleDenominator>
|
480
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
481
|
+
<TileWidth>256</TileWidth>
|
482
|
+
<TileHeight>256</TileHeight>
|
483
|
+
<MatrixWidth>32</MatrixWidth>
|
484
|
+
<MatrixHeight>32</MatrixHeight>
|
485
|
+
</TileMatrix>
|
486
|
+
<TileMatrix>
|
487
|
+
<ows:Identifier>6</ows:Identifier>
|
488
|
+
<ScaleDenominator>8735660.37545</ScaleDenominator>
|
489
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
490
|
+
<TileWidth>256</TileWidth>
|
491
|
+
<TileHeight>256</TileHeight>
|
492
|
+
<MatrixWidth>64</MatrixWidth>
|
493
|
+
<MatrixHeight>64</MatrixHeight>
|
494
|
+
</TileMatrix>
|
495
|
+
<TileMatrix>
|
496
|
+
<ows:Identifier>7</ows:Identifier>
|
497
|
+
<ScaleDenominator>4367830.18773</ScaleDenominator>
|
498
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
499
|
+
<TileWidth>256</TileWidth>
|
500
|
+
<TileHeight>256</TileHeight>
|
501
|
+
<MatrixWidth>128</MatrixWidth>
|
502
|
+
<MatrixHeight>128</MatrixHeight>
|
503
|
+
</TileMatrix>
|
504
|
+
<TileMatrix>
|
505
|
+
<ows:Identifier>8</ows:Identifier>
|
506
|
+
<ScaleDenominator>2183915.09386</ScaleDenominator>
|
507
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
508
|
+
<TileWidth>256</TileWidth>
|
509
|
+
<TileHeight>256</TileHeight>
|
510
|
+
<MatrixWidth>256</MatrixWidth>
|
511
|
+
<MatrixHeight>256</MatrixHeight>
|
512
|
+
</TileMatrix>
|
513
|
+
<TileMatrix>
|
514
|
+
<ows:Identifier>9</ows:Identifier>
|
515
|
+
<ScaleDenominator>1091957.54693</ScaleDenominator>
|
516
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
517
|
+
<TileWidth>256</TileWidth>
|
518
|
+
<TileHeight>256</TileHeight>
|
519
|
+
<MatrixWidth>512</MatrixWidth>
|
520
|
+
<MatrixHeight>512</MatrixHeight>
|
521
|
+
</TileMatrix>
|
522
|
+
<TileMatrix>
|
523
|
+
<ows:Identifier>10</ows:Identifier>
|
524
|
+
<ScaleDenominator>545978.773466</ScaleDenominator>
|
525
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
526
|
+
<TileWidth>256</TileWidth>
|
527
|
+
<TileHeight>256</TileHeight>
|
528
|
+
<MatrixWidth>1024</MatrixWidth>
|
529
|
+
<MatrixHeight>1024</MatrixHeight>
|
530
|
+
</TileMatrix>
|
531
|
+
<TileMatrix>
|
532
|
+
<ows:Identifier>11</ows:Identifier>
|
533
|
+
<ScaleDenominator>272989.386733</ScaleDenominator>
|
534
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
535
|
+
<TileWidth>256</TileWidth>
|
536
|
+
<TileHeight>256</TileHeight>
|
537
|
+
<MatrixWidth>2048</MatrixWidth>
|
538
|
+
<MatrixHeight>2048</MatrixHeight>
|
539
|
+
</TileMatrix>
|
540
|
+
<TileMatrix>
|
541
|
+
<ows:Identifier>12</ows:Identifier>
|
542
|
+
<ScaleDenominator>136494.693366</ScaleDenominator>
|
543
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
544
|
+
<TileWidth>256</TileWidth>
|
545
|
+
<TileHeight>256</TileHeight>
|
546
|
+
<MatrixWidth>4096</MatrixWidth>
|
547
|
+
<MatrixHeight>4096</MatrixHeight>
|
548
|
+
</TileMatrix>
|
549
|
+
<TileMatrix>
|
550
|
+
<ows:Identifier>13</ows:Identifier>
|
551
|
+
<ScaleDenominator>68247.3466832</ScaleDenominator>
|
552
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
553
|
+
<TileWidth>256</TileWidth>
|
554
|
+
<TileHeight>256</TileHeight>
|
555
|
+
<MatrixWidth>8192</MatrixWidth>
|
556
|
+
<MatrixHeight>8192</MatrixHeight>
|
557
|
+
</TileMatrix>
|
558
|
+
<TileMatrix>
|
559
|
+
<ows:Identifier>14</ows:Identifier>
|
560
|
+
<ScaleDenominator>34123.6733416</ScaleDenominator>
|
561
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
562
|
+
<TileWidth>256</TileWidth>
|
563
|
+
<TileHeight>256</TileHeight>
|
564
|
+
<MatrixWidth>16384</MatrixWidth>
|
565
|
+
<MatrixHeight>16384</MatrixHeight>
|
566
|
+
</TileMatrix>
|
567
|
+
<TileMatrix>
|
568
|
+
<ows:Identifier>15</ows:Identifier>
|
569
|
+
<ScaleDenominator>17061.8366708</ScaleDenominator>
|
570
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
571
|
+
<TileWidth>256</TileWidth>
|
572
|
+
<TileHeight>256</TileHeight>
|
573
|
+
<MatrixWidth>32768</MatrixWidth>
|
574
|
+
<MatrixHeight>32768</MatrixHeight>
|
575
|
+
</TileMatrix>
|
576
|
+
<TileMatrix>
|
577
|
+
<ows:Identifier>16</ows:Identifier>
|
578
|
+
<ScaleDenominator>8530.91833540</ScaleDenominator>
|
579
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
580
|
+
<TileWidth>256</TileWidth>
|
581
|
+
<TileHeight>256</TileHeight>
|
582
|
+
<MatrixWidth>65536</MatrixWidth>
|
583
|
+
<MatrixHeight>65536</MatrixHeight>
|
584
|
+
</TileMatrix>
|
585
|
+
<TileMatrix>
|
586
|
+
<ows:Identifier>17</ows:Identifier>
|
587
|
+
<ScaleDenominator>4265.45916770</ScaleDenominator>
|
588
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
589
|
+
<TileWidth>256</TileWidth>
|
590
|
+
<TileHeight>256</TileHeight>
|
591
|
+
<MatrixWidth>131072</MatrixWidth>
|
592
|
+
<MatrixHeight>131072</MatrixHeight>
|
593
|
+
</TileMatrix>
|
594
|
+
<TileMatrix>
|
595
|
+
<ows:Identifier>18</ows:Identifier>
|
596
|
+
<ScaleDenominator>2132.72958385</ScaleDenominator>
|
597
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
598
|
+
<TileWidth>256</TileWidth>
|
599
|
+
<TileHeight>256</TileHeight>
|
600
|
+
<MatrixWidth>262144</MatrixWidth>
|
601
|
+
<MatrixHeight>262144</MatrixHeight>
|
602
|
+
</TileMatrix>
|
603
|
+
<TileMatrix>
|
604
|
+
<ows:Identifier>19</ows:Identifier>
|
605
|
+
<ScaleDenominator>1066.36479193</ScaleDenominator>
|
606
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
607
|
+
<TileWidth>256</TileWidth>
|
608
|
+
<TileHeight>256</TileHeight>
|
609
|
+
<MatrixWidth>524288</MatrixWidth>
|
610
|
+
<MatrixHeight>524288</MatrixHeight>
|
611
|
+
</TileMatrix>
|
612
|
+
</TileMatrixSet>
|
613
|
+
<TileMatrixSet>
|
614
|
+
<ows:Identifier>google3857_0-20</ows:Identifier>
|
615
|
+
<ows:BoundingBox crs="urn:ogc:def:crs:EPSG:6.18.3:3857">
|
616
|
+
<ows:LowerCorner>1799448.394855 6124949.747770</ows:LowerCorner>
|
617
|
+
<ows:UpperCorner>1848250.442089 6162571.828177</ows:UpperCorner>
|
618
|
+
</ows:BoundingBox>
|
619
|
+
<ows:SupportedCRS>urn:ogc:def:crs:EPSG:6.18.3:3857</ows:SupportedCRS>
|
620
|
+
<WellKnownScaleSet>urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible</WellKnownScaleSet>
|
621
|
+
<TileMatrix>
|
622
|
+
<ows:Identifier>0</ows:Identifier>
|
623
|
+
<ScaleDenominator>559082264.029</ScaleDenominator>
|
624
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
625
|
+
<TileWidth>256</TileWidth>
|
626
|
+
<TileHeight>256</TileHeight>
|
627
|
+
<MatrixWidth>1</MatrixWidth>
|
628
|
+
<MatrixHeight>1</MatrixHeight>
|
629
|
+
</TileMatrix>
|
630
|
+
<TileMatrix>
|
631
|
+
<ows:Identifier>1</ows:Identifier>
|
632
|
+
<ScaleDenominator>279541132.015</ScaleDenominator>
|
633
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
634
|
+
<TileWidth>256</TileWidth>
|
635
|
+
<TileHeight>256</TileHeight>
|
636
|
+
<MatrixWidth>2</MatrixWidth>
|
637
|
+
<MatrixHeight>2</MatrixHeight>
|
638
|
+
</TileMatrix>
|
639
|
+
<TileMatrix>
|
640
|
+
<ows:Identifier>2</ows:Identifier>
|
641
|
+
<ScaleDenominator>139770566.007</ScaleDenominator>
|
642
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
643
|
+
<TileWidth>256</TileWidth>
|
644
|
+
<TileHeight>256</TileHeight>
|
645
|
+
<MatrixWidth>4</MatrixWidth>
|
646
|
+
<MatrixHeight>4</MatrixHeight>
|
647
|
+
</TileMatrix>
|
648
|
+
<TileMatrix>
|
649
|
+
<ows:Identifier>3</ows:Identifier>
|
650
|
+
<ScaleDenominator>69885283.0036</ScaleDenominator>
|
651
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
652
|
+
<TileWidth>256</TileWidth>
|
653
|
+
<TileHeight>256</TileHeight>
|
654
|
+
<MatrixWidth>8</MatrixWidth>
|
655
|
+
<MatrixHeight>8</MatrixHeight>
|
656
|
+
</TileMatrix>
|
657
|
+
<TileMatrix>
|
658
|
+
<ows:Identifier>4</ows:Identifier>
|
659
|
+
<ScaleDenominator>34942641.5018</ScaleDenominator>
|
660
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
661
|
+
<TileWidth>256</TileWidth>
|
662
|
+
<TileHeight>256</TileHeight>
|
663
|
+
<MatrixWidth>16</MatrixWidth>
|
664
|
+
<MatrixHeight>16</MatrixHeight>
|
665
|
+
</TileMatrix>
|
666
|
+
<TileMatrix>
|
667
|
+
<ows:Identifier>5</ows:Identifier>
|
668
|
+
<ScaleDenominator>17471320.7509</ScaleDenominator>
|
669
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
670
|
+
<TileWidth>256</TileWidth>
|
671
|
+
<TileHeight>256</TileHeight>
|
672
|
+
<MatrixWidth>32</MatrixWidth>
|
673
|
+
<MatrixHeight>32</MatrixHeight>
|
674
|
+
</TileMatrix>
|
675
|
+
<TileMatrix>
|
676
|
+
<ows:Identifier>6</ows:Identifier>
|
677
|
+
<ScaleDenominator>8735660.37545</ScaleDenominator>
|
678
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
679
|
+
<TileWidth>256</TileWidth>
|
680
|
+
<TileHeight>256</TileHeight>
|
681
|
+
<MatrixWidth>64</MatrixWidth>
|
682
|
+
<MatrixHeight>64</MatrixHeight>
|
683
|
+
</TileMatrix>
|
684
|
+
<TileMatrix>
|
685
|
+
<ows:Identifier>7</ows:Identifier>
|
686
|
+
<ScaleDenominator>4367830.18773</ScaleDenominator>
|
687
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
688
|
+
<TileWidth>256</TileWidth>
|
689
|
+
<TileHeight>256</TileHeight>
|
690
|
+
<MatrixWidth>128</MatrixWidth>
|
691
|
+
<MatrixHeight>128</MatrixHeight>
|
692
|
+
</TileMatrix>
|
693
|
+
<TileMatrix>
|
694
|
+
<ows:Identifier>8</ows:Identifier>
|
695
|
+
<ScaleDenominator>2183915.09386</ScaleDenominator>
|
696
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
697
|
+
<TileWidth>256</TileWidth>
|
698
|
+
<TileHeight>256</TileHeight>
|
699
|
+
<MatrixWidth>256</MatrixWidth>
|
700
|
+
<MatrixHeight>256</MatrixHeight>
|
701
|
+
</TileMatrix>
|
702
|
+
<TileMatrix>
|
703
|
+
<ows:Identifier>9</ows:Identifier>
|
704
|
+
<ScaleDenominator>1091957.54693</ScaleDenominator>
|
705
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
706
|
+
<TileWidth>256</TileWidth>
|
707
|
+
<TileHeight>256</TileHeight>
|
708
|
+
<MatrixWidth>512</MatrixWidth>
|
709
|
+
<MatrixHeight>512</MatrixHeight>
|
710
|
+
</TileMatrix>
|
711
|
+
<TileMatrix>
|
712
|
+
<ows:Identifier>10</ows:Identifier>
|
713
|
+
<ScaleDenominator>545978.773466</ScaleDenominator>
|
714
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
715
|
+
<TileWidth>256</TileWidth>
|
716
|
+
<TileHeight>256</TileHeight>
|
717
|
+
<MatrixWidth>1024</MatrixWidth>
|
718
|
+
<MatrixHeight>1024</MatrixHeight>
|
719
|
+
</TileMatrix>
|
720
|
+
<TileMatrix>
|
721
|
+
<ows:Identifier>11</ows:Identifier>
|
722
|
+
<ScaleDenominator>272989.386733</ScaleDenominator>
|
723
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
724
|
+
<TileWidth>256</TileWidth>
|
725
|
+
<TileHeight>256</TileHeight>
|
726
|
+
<MatrixWidth>2048</MatrixWidth>
|
727
|
+
<MatrixHeight>2048</MatrixHeight>
|
728
|
+
</TileMatrix>
|
729
|
+
<TileMatrix>
|
730
|
+
<ows:Identifier>12</ows:Identifier>
|
731
|
+
<ScaleDenominator>136494.693366</ScaleDenominator>
|
732
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
733
|
+
<TileWidth>256</TileWidth>
|
734
|
+
<TileHeight>256</TileHeight>
|
735
|
+
<MatrixWidth>4096</MatrixWidth>
|
736
|
+
<MatrixHeight>4096</MatrixHeight>
|
737
|
+
</TileMatrix>
|
738
|
+
<TileMatrix>
|
739
|
+
<ows:Identifier>13</ows:Identifier>
|
740
|
+
<ScaleDenominator>68247.3466832</ScaleDenominator>
|
741
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
742
|
+
<TileWidth>256</TileWidth>
|
743
|
+
<TileHeight>256</TileHeight>
|
744
|
+
<MatrixWidth>8192</MatrixWidth>
|
745
|
+
<MatrixHeight>8192</MatrixHeight>
|
746
|
+
</TileMatrix>
|
747
|
+
<TileMatrix>
|
748
|
+
<ows:Identifier>14</ows:Identifier>
|
749
|
+
<ScaleDenominator>34123.6733416</ScaleDenominator>
|
750
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
751
|
+
<TileWidth>256</TileWidth>
|
752
|
+
<TileHeight>256</TileHeight>
|
753
|
+
<MatrixWidth>16384</MatrixWidth>
|
754
|
+
<MatrixHeight>16384</MatrixHeight>
|
755
|
+
</TileMatrix>
|
756
|
+
<TileMatrix>
|
757
|
+
<ows:Identifier>15</ows:Identifier>
|
758
|
+
<ScaleDenominator>17061.8366708</ScaleDenominator>
|
759
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
760
|
+
<TileWidth>256</TileWidth>
|
761
|
+
<TileHeight>256</TileHeight>
|
762
|
+
<MatrixWidth>32768</MatrixWidth>
|
763
|
+
<MatrixHeight>32768</MatrixHeight>
|
764
|
+
</TileMatrix>
|
765
|
+
<TileMatrix>
|
766
|
+
<ows:Identifier>16</ows:Identifier>
|
767
|
+
<ScaleDenominator>8530.91833540</ScaleDenominator>
|
768
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
769
|
+
<TileWidth>256</TileWidth>
|
770
|
+
<TileHeight>256</TileHeight>
|
771
|
+
<MatrixWidth>65536</MatrixWidth>
|
772
|
+
<MatrixHeight>65536</MatrixHeight>
|
773
|
+
</TileMatrix>
|
774
|
+
<TileMatrix>
|
775
|
+
<ows:Identifier>17</ows:Identifier>
|
776
|
+
<ScaleDenominator>4265.45916770</ScaleDenominator>
|
777
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
778
|
+
<TileWidth>256</TileWidth>
|
779
|
+
<TileHeight>256</TileHeight>
|
780
|
+
<MatrixWidth>131072</MatrixWidth>
|
781
|
+
<MatrixHeight>131072</MatrixHeight>
|
782
|
+
</TileMatrix>
|
783
|
+
<TileMatrix>
|
784
|
+
<ows:Identifier>18</ows:Identifier>
|
785
|
+
<ScaleDenominator>2132.72958385</ScaleDenominator>
|
786
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
787
|
+
<TileWidth>256</TileWidth>
|
788
|
+
<TileHeight>256</TileHeight>
|
789
|
+
<MatrixWidth>262144</MatrixWidth>
|
790
|
+
<MatrixHeight>262144</MatrixHeight>
|
791
|
+
</TileMatrix>
|
792
|
+
<TileMatrix>
|
793
|
+
<ows:Identifier>19</ows:Identifier>
|
794
|
+
<ScaleDenominator>1066.36479193</ScaleDenominator>
|
795
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
796
|
+
<TileWidth>256</TileWidth>
|
797
|
+
<TileHeight>256</TileHeight>
|
798
|
+
<MatrixWidth>524288</MatrixWidth>
|
799
|
+
<MatrixHeight>524288</MatrixHeight>
|
800
|
+
</TileMatrix>
|
801
|
+
<TileMatrix>
|
802
|
+
<ows:Identifier>20</ows:Identifier>
|
803
|
+
<ScaleDenominator>533.18239597</ScaleDenominator>
|
804
|
+
<TopLeftCorner>-20037508.3428 20037508.3428</TopLeftCorner>
|
805
|
+
<TileWidth>256</TileWidth>
|
806
|
+
<TileHeight>256</TileHeight>
|
807
|
+
<MatrixWidth>1048576</MatrixWidth>
|
808
|
+
<MatrixHeight>1048576</MatrixHeight>
|
809
|
+
</TileMatrix>
|
810
|
+
</TileMatrixSet>
|
811
|
+
</Contents>
|
812
|
+
<ServiceMetadataURL xlink:href="http://maps.wien.gv.at/wmts/1.0.0/WMTSCapabilities.xml"/>
|
813
|
+
</Capabilities>
|