MapProxy 2.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (459) hide show
  1. MapProxy-2.1.0.dist-info/AUTHORS.txt +33 -0
  2. MapProxy-2.1.0.dist-info/COPYING.txt +60 -0
  3. MapProxy-2.1.0.dist-info/LICENSE.txt +202 -0
  4. MapProxy-2.1.0.dist-info/METADATA +165 -0
  5. MapProxy-2.1.0.dist-info/RECORD +459 -0
  6. MapProxy-2.1.0.dist-info/WHEEL +5 -0
  7. MapProxy-2.1.0.dist-info/entry_points.txt +4 -0
  8. MapProxy-2.1.0.dist-info/top_level.txt +1 -0
  9. mapproxy/__init__.py +0 -0
  10. mapproxy/cache/__init__.py +36 -0
  11. mapproxy/cache/azureblob.py +145 -0
  12. mapproxy/cache/base.py +120 -0
  13. mapproxy/cache/compact.py +665 -0
  14. mapproxy/cache/couchdb.py +301 -0
  15. mapproxy/cache/dummy.py +36 -0
  16. mapproxy/cache/file.py +200 -0
  17. mapproxy/cache/geopackage.py +647 -0
  18. mapproxy/cache/legend.py +87 -0
  19. mapproxy/cache/mbtiles.py +411 -0
  20. mapproxy/cache/meta.py +80 -0
  21. mapproxy/cache/path.py +261 -0
  22. mapproxy/cache/redis.py +152 -0
  23. mapproxy/cache/renderd.py +100 -0
  24. mapproxy/cache/riak.py +206 -0
  25. mapproxy/cache/s3.py +209 -0
  26. mapproxy/cache/tile.py +736 -0
  27. mapproxy/client/__init__.py +0 -0
  28. mapproxy/client/arcgis.py +82 -0
  29. mapproxy/client/cgi.py +141 -0
  30. mapproxy/client/http.py +295 -0
  31. mapproxy/client/log.py +33 -0
  32. mapproxy/client/tile.py +158 -0
  33. mapproxy/client/wms.py +255 -0
  34. mapproxy/compat/__init__.py +0 -0
  35. mapproxy/compat/image.py +86 -0
  36. mapproxy/config/__init__.py +22 -0
  37. mapproxy/config/config-schema.json +813 -0
  38. mapproxy/config/config.py +213 -0
  39. mapproxy/config/coverage.py +108 -0
  40. mapproxy/config/defaults.py +102 -0
  41. mapproxy/config/loader.py +2399 -0
  42. mapproxy/config/spec.py +657 -0
  43. mapproxy/config/validator.py +242 -0
  44. mapproxy/config_template/__init__.py +0 -0
  45. mapproxy/config_template/base_config/config.wsgi +10 -0
  46. mapproxy/config_template/base_config/full_example.yaml +598 -0
  47. mapproxy/config_template/base_config/full_seed_example.yaml +79 -0
  48. mapproxy/config_template/base_config/log.ini +35 -0
  49. mapproxy/config_template/base_config/mapproxy.yaml +60 -0
  50. mapproxy/config_template/base_config/seed.yaml +27 -0
  51. mapproxy/exception.py +149 -0
  52. mapproxy/featureinfo.py +251 -0
  53. mapproxy/grid.py +1199 -0
  54. mapproxy/image/__init__.py +549 -0
  55. mapproxy/image/fonts/DejaVuSans.ttf +0 -0
  56. mapproxy/image/fonts/DejaVuSansMono.ttf +0 -0
  57. mapproxy/image/fonts/LICENSE +99 -0
  58. mapproxy/image/fonts/__init__.py +0 -0
  59. mapproxy/image/mask.py +79 -0
  60. mapproxy/image/merge.py +323 -0
  61. mapproxy/image/message.py +357 -0
  62. mapproxy/image/opts.py +185 -0
  63. mapproxy/image/tile.py +171 -0
  64. mapproxy/image/transform.py +350 -0
  65. mapproxy/layer.py +489 -0
  66. mapproxy/multiapp.py +230 -0
  67. mapproxy/proj.py +309 -0
  68. mapproxy/request/__init__.py +18 -0
  69. mapproxy/request/arcgis.py +268 -0
  70. mapproxy/request/base.py +466 -0
  71. mapproxy/request/tile.py +131 -0
  72. mapproxy/request/wms/__init__.py +829 -0
  73. mapproxy/request/wms/exception.py +107 -0
  74. mapproxy/request/wmts.py +442 -0
  75. mapproxy/response.py +237 -0
  76. mapproxy/script/__init__.py +0 -0
  77. mapproxy/script/conf/__init__.py +0 -0
  78. mapproxy/script/conf/app.py +222 -0
  79. mapproxy/script/conf/caches.py +44 -0
  80. mapproxy/script/conf/geopackage.py +136 -0
  81. mapproxy/script/conf/layers.py +54 -0
  82. mapproxy/script/conf/seeds.py +36 -0
  83. mapproxy/script/conf/sources.py +88 -0
  84. mapproxy/script/conf/utils.py +148 -0
  85. mapproxy/script/defrag.py +187 -0
  86. mapproxy/script/export.py +337 -0
  87. mapproxy/script/grids.py +198 -0
  88. mapproxy/script/scales.py +134 -0
  89. mapproxy/script/util.py +410 -0
  90. mapproxy/script/wms_capabilities.py +160 -0
  91. mapproxy/seed/__init__.py +0 -0
  92. mapproxy/seed/cachelock.py +127 -0
  93. mapproxy/seed/cleanup.py +191 -0
  94. mapproxy/seed/config.py +481 -0
  95. mapproxy/seed/script.py +391 -0
  96. mapproxy/seed/seeder.py +551 -0
  97. mapproxy/seed/spec.py +66 -0
  98. mapproxy/seed/util.py +266 -0
  99. mapproxy/service/__init__.py +14 -0
  100. mapproxy/service/base.py +45 -0
  101. mapproxy/service/demo.py +364 -0
  102. mapproxy/service/kml.py +333 -0
  103. mapproxy/service/ows.py +39 -0
  104. mapproxy/service/template_helper.py +55 -0
  105. mapproxy/service/templates/demo/capabilities_demo.html +18 -0
  106. mapproxy/service/templates/demo/demo.html +181 -0
  107. mapproxy/service/templates/demo/openlayers-demo.cfg +16 -0
  108. mapproxy/service/templates/demo/static/img/blank.gif +0 -0
  109. mapproxy/service/templates/demo/static/img/east-mini.png +0 -0
  110. mapproxy/service/templates/demo/static/img/north-mini.png +0 -0
  111. mapproxy/service/templates/demo/static/img/south-mini.png +0 -0
  112. mapproxy/service/templates/demo/static/img/west-mini.png +0 -0
  113. mapproxy/service/templates/demo/static/img/zoom-minus-mini.png +0 -0
  114. mapproxy/service/templates/demo/static/img/zoom-plus-mini.png +0 -0
  115. mapproxy/service/templates/demo/static/img/zoom-world-mini.png +0 -0
  116. mapproxy/service/templates/demo/static/logo.png +0 -0
  117. mapproxy/service/templates/demo/static/ol.css +345 -0
  118. mapproxy/service/templates/demo/static/ol.js +4 -0
  119. mapproxy/service/templates/demo/static/proj4.min.js +1 -0
  120. mapproxy/service/templates/demo/static/proj4defs.js +1 -0
  121. mapproxy/service/templates/demo/static/site.css +137 -0
  122. mapproxy/service/templates/demo/static/theme/default/framedCloud.css +0 -0
  123. mapproxy/service/templates/demo/static/theme/default/google.css +17 -0
  124. mapproxy/service/templates/demo/static/theme/default/ie6-style.css +10 -0
  125. mapproxy/service/templates/demo/static/theme/default/style.css +482 -0
  126. mapproxy/service/templates/demo/static.html +34 -0
  127. mapproxy/service/templates/demo/tms_demo.html +117 -0
  128. mapproxy/service/templates/demo/wms_demo.html +144 -0
  129. mapproxy/service/templates/demo/wmts_demo.html +118 -0
  130. mapproxy/service/templates/tms_capabilities.xml +13 -0
  131. mapproxy/service/templates/tms_exception.xml +4 -0
  132. mapproxy/service/templates/tms_root_resource.xml +7 -0
  133. mapproxy/service/templates/tms_tilemap_capabilities.xml +14 -0
  134. mapproxy/service/templates/wms100capabilities.xml +112 -0
  135. mapproxy/service/templates/wms100exception.xml +4 -0
  136. mapproxy/service/templates/wms110capabilities.xml +152 -0
  137. mapproxy/service/templates/wms110exception.xml +5 -0
  138. mapproxy/service/templates/wms111capabilities.xml +183 -0
  139. mapproxy/service/templates/wms111exception.xml +5 -0
  140. mapproxy/service/templates/wms130capabilities.xml +326 -0
  141. mapproxy/service/templates/wms130exception.xml +8 -0
  142. mapproxy/service/templates/wmts100capabilities.xml +155 -0
  143. mapproxy/service/templates/wmts100exception.xml +9 -0
  144. mapproxy/service/tile.py +540 -0
  145. mapproxy/service/wms.py +868 -0
  146. mapproxy/service/wmts.py +387 -0
  147. mapproxy/source/__init__.py +83 -0
  148. mapproxy/source/arcgis.py +39 -0
  149. mapproxy/source/error.py +40 -0
  150. mapproxy/source/mapnik.py +262 -0
  151. mapproxy/source/tile.py +97 -0
  152. mapproxy/source/wms.py +273 -0
  153. mapproxy/srs.py +734 -0
  154. mapproxy/template.py +54 -0
  155. mapproxy/test/__init__.py +0 -0
  156. mapproxy/test/conftest.py +8 -0
  157. mapproxy/test/helper.py +255 -0
  158. mapproxy/test/http.py +511 -0
  159. mapproxy/test/image.py +219 -0
  160. mapproxy/test/mocker.py +2291 -0
  161. mapproxy/test/schemas/inspire/common/1.0/common.xsd +1461 -0
  162. mapproxy/test/schemas/inspire/common/1.0/enums/enum_bul.xsd +108 -0
  163. mapproxy/test/schemas/inspire/common/1.0/enums/enum_cze.xsd +108 -0
  164. mapproxy/test/schemas/inspire/common/1.0/enums/enum_dan.xsd +108 -0
  165. mapproxy/test/schemas/inspire/common/1.0/enums/enum_dut.xsd +108 -0
  166. mapproxy/test/schemas/inspire/common/1.0/enums/enum_eng.xsd +155 -0
  167. mapproxy/test/schemas/inspire/common/1.0/enums/enum_est.xsd +108 -0
  168. mapproxy/test/schemas/inspire/common/1.0/enums/enum_fin.xsd +108 -0
  169. mapproxy/test/schemas/inspire/common/1.0/enums/enum_fre.xsd +108 -0
  170. mapproxy/test/schemas/inspire/common/1.0/enums/enum_ger.xsd +108 -0
  171. mapproxy/test/schemas/inspire/common/1.0/enums/enum_gle.xsd +109 -0
  172. mapproxy/test/schemas/inspire/common/1.0/enums/enum_gre.xsd +108 -0
  173. mapproxy/test/schemas/inspire/common/1.0/enums/enum_hun.xsd +108 -0
  174. mapproxy/test/schemas/inspire/common/1.0/enums/enum_ita.xsd +108 -0
  175. mapproxy/test/schemas/inspire/common/1.0/enums/enum_lav.xsd +108 -0
  176. mapproxy/test/schemas/inspire/common/1.0/enums/enum_lit.xsd +108 -0
  177. mapproxy/test/schemas/inspire/common/1.0/enums/enum_mlt.xsd +108 -0
  178. mapproxy/test/schemas/inspire/common/1.0/enums/enum_pol.xsd +108 -0
  179. mapproxy/test/schemas/inspire/common/1.0/enums/enum_por.xsd +108 -0
  180. mapproxy/test/schemas/inspire/common/1.0/enums/enum_rum.xsd +108 -0
  181. mapproxy/test/schemas/inspire/common/1.0/enums/enum_slo.xsd +108 -0
  182. mapproxy/test/schemas/inspire/common/1.0/enums/enum_slv.xsd +108 -0
  183. mapproxy/test/schemas/inspire/common/1.0/enums/enum_spa.xsd +108 -0
  184. mapproxy/test/schemas/inspire/common/1.0/enums/enum_swe.xsd +108 -0
  185. mapproxy/test/schemas/inspire/common/1.0/network.xsd +521 -0
  186. mapproxy/test/schemas/inspire/inspire_vs/1.0/inspire_vs.xsd +19 -0
  187. mapproxy/test/schemas/kml/2.2.0/ReadMe.txt +14 -0
  188. mapproxy/test/schemas/kml/2.2.0/atom-author-link.xsd +66 -0
  189. mapproxy/test/schemas/kml/2.2.0/ogckml22.xsd +1646 -0
  190. mapproxy/test/schemas/kml/2.2.0/xAL.xsd +1680 -0
  191. mapproxy/test/schemas/ows/1.1.0/ReadMe.txt +87 -0
  192. mapproxy/test/schemas/ows/1.1.0/ows19115subset.xsd +235 -0
  193. mapproxy/test/schemas/ows/1.1.0/owsAll.xsd +23 -0
  194. mapproxy/test/schemas/ows/1.1.0/owsCommon.xsd +157 -0
  195. mapproxy/test/schemas/ows/1.1.0/owsContents.xsd +86 -0
  196. mapproxy/test/schemas/ows/1.1.0/owsDataIdentification.xsd +127 -0
  197. mapproxy/test/schemas/ows/1.1.0/owsDomainType.xsd +279 -0
  198. mapproxy/test/schemas/ows/1.1.0/owsExceptionReport.xsd +76 -0
  199. mapproxy/test/schemas/ows/1.1.0/owsGetCapabilities.xsd +112 -0
  200. mapproxy/test/schemas/ows/1.1.0/owsGetResourceByID.xsd +51 -0
  201. mapproxy/test/schemas/ows/1.1.0/owsInputOutputData.xsd +59 -0
  202. mapproxy/test/schemas/ows/1.1.0/owsManifest.xsd +125 -0
  203. mapproxy/test/schemas/ows/1.1.0/owsOperationsMetadata.xsd +140 -0
  204. mapproxy/test/schemas/ows/1.1.0/owsServiceIdentification.xsd +60 -0
  205. mapproxy/test/schemas/ows/1.1.0/owsServiceProvider.xsd +47 -0
  206. mapproxy/test/schemas/sld/1.1.0/sld_capabilities.xsd +27 -0
  207. mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.dtd +353 -0
  208. mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.xml +188 -0
  209. mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.dtd +524 -0
  210. mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.xml +260 -0
  211. mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.dtd +273 -0
  212. mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.xml +303 -0
  213. mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.dtd +6 -0
  214. mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.xml +33 -0
  215. mapproxy/test/schemas/wms/1.1.1/OGC-exception.xsd +68 -0
  216. mapproxy/test/schemas/wms/1.1.1/WMS_DescribeLayerResponse.dtd +22 -0
  217. mapproxy/test/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd +274 -0
  218. mapproxy/test/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd +5 -0
  219. mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.dtd +276 -0
  220. mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.xml +303 -0
  221. mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.dtd +6 -0
  222. mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.xml +33 -0
  223. mapproxy/test/schemas/wms/1.3.0/ReadMe.txt +8 -0
  224. mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xml +277 -0
  225. mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xsd +611 -0
  226. mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xml +34 -0
  227. mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xsd +28 -0
  228. mapproxy/test/schemas/wmsc/1.1.1/OGC-exception.xsd +68 -0
  229. mapproxy/test/schemas/wmsc/1.1.1/WMS_DescribeLayerResponse.dtd +22 -0
  230. mapproxy/test/schemas/wmsc/1.1.1/WMS_MS_Capabilities.dtd +283 -0
  231. mapproxy/test/schemas/wmsc/1.1.1/WMS_exception_1_1_1.dtd +5 -0
  232. mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.dtd +276 -0
  233. mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.xml +303 -0
  234. mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.dtd +6 -0
  235. mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.xml +33 -0
  236. mapproxy/test/schemas/wmts/1.0/ReadMe.txt +32 -0
  237. mapproxy/test/schemas/wmts/1.0/wmts.xsd +28 -0
  238. mapproxy/test/schemas/wmts/1.0/wmtsAbstract.wsdl +151 -0
  239. mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_request.xsd +38 -0
  240. mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_response.xsd +564 -0
  241. mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_request.xsd +57 -0
  242. mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_response.xsd +72 -0
  243. mapproxy/test/schemas/wmts/1.0/wmtsGetTile_request.xsd +91 -0
  244. mapproxy/test/schemas/wmts/1.0/wmtsKVP.xsd +76 -0
  245. mapproxy/test/schemas/wmts/1.0/wmtsPayload_response.xsd +70 -0
  246. mapproxy/test/schemas/xlink/1.0.0/ReadMe.txt +6 -0
  247. mapproxy/test/schemas/xlink/1.0.0/xlinks.xsd +122 -0
  248. mapproxy/test/schemas/xml.xsd +287 -0
  249. mapproxy/test/system/__init__.py +98 -0
  250. mapproxy/test/system/fixture/arcgis.yaml +57 -0
  251. mapproxy/test/system/fixture/auth.yaml +70 -0
  252. mapproxy/test/system/fixture/cache.mbtiles +0 -0
  253. mapproxy/test/system/fixture/cache_azureblob.yaml +59 -0
  254. mapproxy/test/system/fixture/cache_band_merge.yaml +73 -0
  255. mapproxy/test/system/fixture/cache_bulk_meta_tiles.yaml +24 -0
  256. mapproxy/test/system/fixture/cache_coverage.yaml +84 -0
  257. mapproxy/test/system/fixture/cache_data/dop_cache_EPSG3857/00/000/000/000/000/000/000.png +0 -0
  258. mapproxy/test/system/fixture/cache_data/wms_cache_EPSG900913/01/000/000/000/000/000/001.jpeg +0 -0
  259. mapproxy/test/system/fixture/cache_data/wms_cache_transparent_EPSG900913/01/000/000/000/000/000/001.png +0 -0
  260. mapproxy/test/system/fixture/cache_geopackage.yaml +56 -0
  261. mapproxy/test/system/fixture/cache_grid_names.yaml +50 -0
  262. mapproxy/test/system/fixture/cache_mbtiles.yaml +28 -0
  263. mapproxy/test/system/fixture/cache_s3.yaml +58 -0
  264. mapproxy/test/system/fixture/cache_source.yaml +81 -0
  265. mapproxy/test/system/fixture/combined_sources.yaml +130 -0
  266. mapproxy/test/system/fixture/coverage.yaml +77 -0
  267. mapproxy/test/system/fixture/demo.yaml +135 -0
  268. mapproxy/test/system/fixture/dimension.yaml +59 -0
  269. mapproxy/test/system/fixture/disable_storage.yaml +25 -0
  270. mapproxy/test/system/fixture/empty_ogrdata.geojson +1 -0
  271. mapproxy/test/system/fixture/formats.yaml +72 -0
  272. mapproxy/test/system/fixture/inspire.yaml +101 -0
  273. mapproxy/test/system/fixture/inspire_full.yaml +124 -0
  274. mapproxy/test/system/fixture/kml_layer.yaml +66 -0
  275. mapproxy/test/system/fixture/layer.yaml +260 -0
  276. mapproxy/test/system/fixture/layergroups.yaml +57 -0
  277. mapproxy/test/system/fixture/layergroups_root.yaml +106 -0
  278. mapproxy/test/system/fixture/legendgraphic.yaml +93 -0
  279. mapproxy/test/system/fixture/mapnik_source.yaml +66 -0
  280. mapproxy/test/system/fixture/mapproxy_export.yaml +12 -0
  281. mapproxy/test/system/fixture/mapserver.yaml +23 -0
  282. mapproxy/test/system/fixture/minimal_cgi.py +16 -0
  283. mapproxy/test/system/fixture/mixed_mode.yaml +49 -0
  284. mapproxy/test/system/fixture/multi_cache_layers.yaml +111 -0
  285. mapproxy/test/system/fixture/multiapp1.yaml +20 -0
  286. mapproxy/test/system/fixture/multiapp2.yaml +19 -0
  287. mapproxy/test/system/fixture/renderd_client.yaml +55 -0
  288. mapproxy/test/system/fixture/scalehints.yaml +70 -0
  289. mapproxy/test/system/fixture/seed.yaml +94 -0
  290. mapproxy/test/system/fixture/seed_mapproxy.yaml +39 -0
  291. mapproxy/test/system/fixture/seed_old.yaml +12 -0
  292. mapproxy/test/system/fixture/seed_timeouts.yaml +12 -0
  293. mapproxy/test/system/fixture/seed_timeouts_mapproxy.yaml +27 -0
  294. mapproxy/test/system/fixture/seedonly.yaml +51 -0
  295. mapproxy/test/system/fixture/sld.yaml +35 -0
  296. mapproxy/test/system/fixture/source_errors.yaml +84 -0
  297. mapproxy/test/system/fixture/source_errors_raise.yaml +82 -0
  298. mapproxy/test/system/fixture/tileservice_origin.yaml +26 -0
  299. mapproxy/test/system/fixture/tileservice_refresh.yaml +59 -0
  300. mapproxy/test/system/fixture/tilesource_minmax_res.yaml +22 -0
  301. mapproxy/test/system/fixture/util-conf-base-grids.yaml +5 -0
  302. mapproxy/test/system/fixture/util-conf-overwrite.yaml +13 -0
  303. mapproxy/test/system/fixture/util-conf-wms-111-cap.xml +90 -0
  304. mapproxy/test/system/fixture/util_grids.yaml +29 -0
  305. mapproxy/test/system/fixture/util_wms_capabilities111.xml +130 -0
  306. mapproxy/test/system/fixture/util_wms_capabilities130.xml +100 -0
  307. mapproxy/test/system/fixture/util_wms_capabilities_service_exception.xml +5 -0
  308. mapproxy/test/system/fixture/watermark.yaml +50 -0
  309. mapproxy/test/system/fixture/wms_srs_extent.yaml +39 -0
  310. mapproxy/test/system/fixture/wms_versions.yaml +38 -0
  311. mapproxy/test/system/fixture/wmts.yaml +134 -0
  312. mapproxy/test/system/fixture/wmts_dimensions.yaml +57 -0
  313. mapproxy/test/system/fixture/xslt_featureinfo.yaml +54 -0
  314. mapproxy/test/system/fixture/xslt_featureinfo_input.yaml +51 -0
  315. mapproxy/test/system/test_arcgis.py +156 -0
  316. mapproxy/test/system/test_auth.py +1133 -0
  317. mapproxy/test/system/test_behind_proxy.py +75 -0
  318. mapproxy/test/system/test_bulk_meta_tiles.py +106 -0
  319. mapproxy/test/system/test_cache_azureblob.py +127 -0
  320. mapproxy/test/system/test_cache_band_merge.py +103 -0
  321. mapproxy/test/system/test_cache_coverage.py +168 -0
  322. mapproxy/test/system/test_cache_geopackage.py +144 -0
  323. mapproxy/test/system/test_cache_grid_names.py +89 -0
  324. mapproxy/test/system/test_cache_mbtiles.py +85 -0
  325. mapproxy/test/system/test_cache_s3.py +115 -0
  326. mapproxy/test/system/test_cache_source.py +146 -0
  327. mapproxy/test/system/test_combined_sources.py +335 -0
  328. mapproxy/test/system/test_coverage.py +140 -0
  329. mapproxy/test/system/test_decorate_img.py +214 -0
  330. mapproxy/test/system/test_demo.py +56 -0
  331. mapproxy/test/system/test_demo_with_extra_service.py +57 -0
  332. mapproxy/test/system/test_dimensions.py +279 -0
  333. mapproxy/test/system/test_disable_storage.py +42 -0
  334. mapproxy/test/system/test_formats.py +219 -0
  335. mapproxy/test/system/test_inspire_vs.py +173 -0
  336. mapproxy/test/system/test_kml.py +264 -0
  337. mapproxy/test/system/test_layergroups.py +160 -0
  338. mapproxy/test/system/test_legendgraphic.py +308 -0
  339. mapproxy/test/system/test_mapnik.py +162 -0
  340. mapproxy/test/system/test_mapserver.py +83 -0
  341. mapproxy/test/system/test_mixed_mode_format.py +201 -0
  342. mapproxy/test/system/test_multi_cache_layers.py +169 -0
  343. mapproxy/test/system/test_multiapp.py +92 -0
  344. mapproxy/test/system/test_refresh.py +206 -0
  345. mapproxy/test/system/test_renderd_client.py +304 -0
  346. mapproxy/test/system/test_response_headers.py +54 -0
  347. mapproxy/test/system/test_scalehints.py +140 -0
  348. mapproxy/test/system/test_seed.py +425 -0
  349. mapproxy/test/system/test_seed_only.py +93 -0
  350. mapproxy/test/system/test_sld.py +120 -0
  351. mapproxy/test/system/test_source_errors.py +377 -0
  352. mapproxy/test/system/test_tilesource_minmax_res.py +54 -0
  353. mapproxy/test/system/test_tms.py +277 -0
  354. mapproxy/test/system/test_tms_origin.py +46 -0
  355. mapproxy/test/system/test_util_conf.py +434 -0
  356. mapproxy/test/system/test_util_export.py +210 -0
  357. mapproxy/test/system/test_util_grids.py +88 -0
  358. mapproxy/test/system/test_util_wms_capabilities.py +182 -0
  359. mapproxy/test/system/test_watermark.py +91 -0
  360. mapproxy/test/system/test_wms.py +1616 -0
  361. mapproxy/test/system/test_wms_srs_extent.py +165 -0
  362. mapproxy/test/system/test_wms_version.py +85 -0
  363. mapproxy/test/system/test_wmsc.py +116 -0
  364. mapproxy/test/system/test_wmts.py +334 -0
  365. mapproxy/test/system/test_wmts_dimensions.py +206 -0
  366. mapproxy/test/system/test_wmts_restful.py +198 -0
  367. mapproxy/test/system/test_xslt_featureinfo.py +423 -0
  368. mapproxy/test/test_http_helper.py +217 -0
  369. mapproxy/test/unit/__init__.py +0 -0
  370. mapproxy/test/unit/epsg +2 -0
  371. mapproxy/test/unit/polygons/polygons.dbf +0 -0
  372. mapproxy/test/unit/polygons/polygons.shp +0 -0
  373. mapproxy/test/unit/polygons/polygons.shx +0 -0
  374. mapproxy/test/unit/test_async.py +242 -0
  375. mapproxy/test/unit/test_auth.py +430 -0
  376. mapproxy/test/unit/test_cache.py +1356 -0
  377. mapproxy/test/unit/test_cache_azureblob.py +97 -0
  378. mapproxy/test/unit/test_cache_compact.py +324 -0
  379. mapproxy/test/unit/test_cache_couchdb.py +118 -0
  380. mapproxy/test/unit/test_cache_geopackage.py +256 -0
  381. mapproxy/test/unit/test_cache_redis.py +123 -0
  382. mapproxy/test/unit/test_cache_riak.py +80 -0
  383. mapproxy/test/unit/test_cache_s3.py +93 -0
  384. mapproxy/test/unit/test_cache_tile.py +477 -0
  385. mapproxy/test/unit/test_client.py +488 -0
  386. mapproxy/test/unit/test_client_arcgis.py +74 -0
  387. mapproxy/test/unit/test_client_cgi.py +140 -0
  388. mapproxy/test/unit/test_collections.py +116 -0
  389. mapproxy/test/unit/test_concat_legends.py +37 -0
  390. mapproxy/test/unit/test_conf_loader.py +1267 -0
  391. mapproxy/test/unit/test_conf_validator.py +427 -0
  392. mapproxy/test/unit/test_config.py +118 -0
  393. mapproxy/test/unit/test_decorate_img.py +185 -0
  394. mapproxy/test/unit/test_exceptions.py +270 -0
  395. mapproxy/test/unit/test_featureinfo.py +313 -0
  396. mapproxy/test/unit/test_file_lock_load.py +49 -0
  397. mapproxy/test/unit/test_geom.py +512 -0
  398. mapproxy/test/unit/test_grid.py +1279 -0
  399. mapproxy/test/unit/test_image.py +1051 -0
  400. mapproxy/test/unit/test_image_mask.py +181 -0
  401. mapproxy/test/unit/test_image_messages.py +209 -0
  402. mapproxy/test/unit/test_image_options.py +160 -0
  403. mapproxy/test/unit/test_isodate.py +118 -0
  404. mapproxy/test/unit/test_multiapp.py +163 -0
  405. mapproxy/test/unit/test_ogr_reader.py +51 -0
  406. mapproxy/test/unit/test_request.py +745 -0
  407. mapproxy/test/unit/test_request_wmts.py +178 -0
  408. mapproxy/test/unit/test_response.py +78 -0
  409. mapproxy/test/unit/test_seed.py +365 -0
  410. mapproxy/test/unit/test_seed_cachelock.py +91 -0
  411. mapproxy/test/unit/test_srs.py +215 -0
  412. mapproxy/test/unit/test_tiled_source.py +122 -0
  413. mapproxy/test/unit/test_tilefilter.py +31 -0
  414. mapproxy/test/unit/test_times.py +25 -0
  415. mapproxy/test/unit/test_timeutils.py +50 -0
  416. mapproxy/test/unit/test_util_conf_utils.py +75 -0
  417. mapproxy/test/unit/test_utils.py +476 -0
  418. mapproxy/test/unit/test_wms_capabilities.py +44 -0
  419. mapproxy/test/unit/test_wms_layer.py +113 -0
  420. mapproxy/test/unit/test_yaml.py +68 -0
  421. mapproxy/tilefilter.py +61 -0
  422. mapproxy/util/__init__.py +0 -0
  423. mapproxy/util/async_.py +229 -0
  424. mapproxy/util/collections.py +134 -0
  425. mapproxy/util/coverage.py +337 -0
  426. mapproxy/util/ext/__init__.py +14 -0
  427. mapproxy/util/ext/dictspec/__init__.py +1 -0
  428. mapproxy/util/ext/dictspec/spec.py +131 -0
  429. mapproxy/util/ext/dictspec/test/__init__.py +0 -0
  430. mapproxy/util/ext/dictspec/test/test_validator.py +278 -0
  431. mapproxy/util/ext/dictspec/validator.py +194 -0
  432. mapproxy/util/ext/local.py +198 -0
  433. mapproxy/util/ext/lockfile.py +140 -0
  434. mapproxy/util/ext/odict.py +321 -0
  435. mapproxy/util/ext/serving.py +491 -0
  436. mapproxy/util/ext/tempita/__init__.py +1093 -0
  437. mapproxy/util/ext/tempita/_looper.py +163 -0
  438. mapproxy/util/ext/tempita/string_utils.py +24 -0
  439. mapproxy/util/ext/wmsparse/__init__.py +3 -0
  440. mapproxy/util/ext/wmsparse/duration.py +600 -0
  441. mapproxy/util/ext/wmsparse/parse.py +307 -0
  442. mapproxy/util/ext/wmsparse/test/__init__.py +0 -0
  443. mapproxy/util/ext/wmsparse/test/test_parse.py +111 -0
  444. mapproxy/util/ext/wmsparse/test/test_util.py +23 -0
  445. mapproxy/util/ext/wmsparse/test/wms-example-111.xml +90 -0
  446. mapproxy/util/ext/wmsparse/test/wms-example-130.xml +120 -0
  447. mapproxy/util/ext/wmsparse/test/wms-large-111.xml +2114 -0
  448. mapproxy/util/ext/wmsparse/test/wms_nasa_cap.xml +386 -0
  449. mapproxy/util/ext/wmsparse/util.py +189 -0
  450. mapproxy/util/fs.py +164 -0
  451. mapproxy/util/geom.py +307 -0
  452. mapproxy/util/lib.py +117 -0
  453. mapproxy/util/lock.py +171 -0
  454. mapproxy/util/ogr.py +247 -0
  455. mapproxy/util/py.py +75 -0
  456. mapproxy/util/times.py +78 -0
  457. mapproxy/util/yaml.py +58 -0
  458. mapproxy/version.py +33 -0
  459. mapproxy/wsgiapp.py +167 -0
@@ -0,0 +1,2114 @@
1
+ <?xml version='1.0' encoding="UTF-8" standalone="no" ?>
2
+ <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd"
3
+ [
4
+ <!ELEMENT VendorSpecificCapabilities EMPTY>
5
+ ]> <!-- end of DOCTYPE declaration -->
6
+
7
+ <WMT_MS_Capabilities version="1.1.1">
8
+
9
+ <!-- MapServer version 5.2.0 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG OUTPUT=WBMP OUTPUT=SVG SUPPORTS=PROJ SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=ICONV SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=GEOS INPUT=TIFF INPUT=EPPL7 INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE -->
10
+
11
+ <Service>
12
+ <Name>OGC:WMS</Name>
13
+ <Title>OSM</Title>
14
+ <Abstract>Open Street Map</Abstract>
15
+ <KeywordList>
16
+ <Keyword>osm</Keyword>
17
+ <Keyword> OpenStreetMap</Keyword>
18
+ </KeywordList>
19
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/>
20
+ <ContactInformation>
21
+ <ContactPersonPrimary>
22
+ <ContactPerson>Name</ContactPerson>
23
+ <ContactOrganization>Organization</ContactOrganization>
24
+ </ContactPersonPrimary>
25
+ <ContactPosition>Development</ContactPosition>
26
+ <ContactAddress>
27
+ <AddressType>postal</AddressType>
28
+ <Address>Fakestreet 23</Address>
29
+ <City>Somewhere</City>
30
+ <StateOrProvince></StateOrProvince>
31
+ <PostCode>12345</PostCode>
32
+ <Country>Germany</Country>
33
+ </ContactAddress>
34
+ <ContactVoiceTelephone></ContactVoiceTelephone>
35
+ <ContactFacsimileTelephone>0</ContactFacsimileTelephone>
36
+ <ContactElectronicMailAddress>info@example.org</ContactElectronicMailAddress>
37
+ </ContactInformation>
38
+ <Fees>none</Fees>
39
+ <AccessConstraints>none</AccessConstraints>
40
+ </Service>
41
+
42
+ <Capability>
43
+ <Request>
44
+ <GetCapabilities>
45
+ <Format>application/vnd.ogc.wms_xml</Format>
46
+ <DCPType>
47
+ <HTTP>
48
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Get>
49
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Post>
50
+ </HTTP>
51
+ </DCPType>
52
+ </GetCapabilities>
53
+ <GetMap>
54
+ <Format>image/gif</Format>
55
+ <Format>image/png</Format>
56
+ <Format>image/png; mode=24bit</Format>
57
+ <Format>image/jpeg</Format>
58
+ <Format>image/vnd.wap.wbmp</Format>
59
+ <Format>image/tiff</Format>
60
+ <Format>image/svg+xml</Format>
61
+ <DCPType>
62
+ <HTTP>
63
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Get>
64
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Post>
65
+ </HTTP>
66
+ </DCPType>
67
+ </GetMap>
68
+ <GetFeatureInfo>
69
+ <Format>text/plain</Format>
70
+ <Format>text/html</Format>
71
+ <Format>application/vnd.ogc.gml</Format>
72
+ <DCPType>
73
+ <HTTP>
74
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Get>
75
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Post>
76
+ </HTTP>
77
+ </DCPType>
78
+ </GetFeatureInfo>
79
+ <DescribeLayer>
80
+ <Format>text/xml</Format>
81
+ <DCPType>
82
+ <HTTP>
83
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Get>
84
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Post>
85
+ </HTTP>
86
+ </DCPType>
87
+ </DescribeLayer>
88
+ <GetLegendGraphic>
89
+ <Format>image/gif</Format>
90
+ <Format>image/png</Format>
91
+ <Format>image/png; mode=24bit</Format>
92
+ <Format>image/jpeg</Format>
93
+ <Format>image/vnd.wap.wbmp</Format>
94
+ <DCPType>
95
+ <HTTP>
96
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Get>
97
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Post>
98
+ </HTTP>
99
+ </DCPType>
100
+ </GetLegendGraphic>
101
+ <GetStyles>
102
+ <Format>text/xml</Format>
103
+ <DCPType>
104
+ <HTTP>
105
+ <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Get>
106
+ <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://example.org/service?SERVICE=WMS&amp;"/></Post>
107
+ </HTTP>
108
+ </DCPType>
109
+ </GetStyles>
110
+ </Request>
111
+ <Exception>
112
+ <Format>application/vnd.ogc.se_xml</Format>
113
+ <Format>application/vnd.ogc.se_inimage</Format>
114
+ <Format>application/vnd.ogc.se_blank</Format>
115
+ </Exception>
116
+ <VendorSpecificCapabilities />
117
+ <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0"/>
118
+ <Layer>
119
+ <Name>OSM</Name>
120
+ <Title>OSM</Title>
121
+ <SRS>EPSG:31467</SRS>
122
+ <SRS>EPSG:31466</SRS>
123
+ <SRS>EPSG:31468</SRS>
124
+ <SRS>EPSG:31469</SRS>
125
+ <SRS>EPSG:31492</SRS>
126
+ <SRS>EPSG:31493</SRS>
127
+ <SRS>EPSG:31494</SRS>
128
+ <SRS>EPSG:31495</SRS>
129
+ <SRS>EPSG:31462</SRS>
130
+ <SRS>EPSG:31463</SRS>
131
+ <SRS>EPSG:31464</SRS>
132
+ <SRS>EPSG:31465</SRS>
133
+ <SRS>EPSG:4326</SRS>
134
+ <SRS>EPSG:25832</SRS>
135
+ <SRS>EPSG:25833</SRS>
136
+ <SRS>EPSG:31257</SRS>
137
+ <SRS>EPSG:31258</SRS>
138
+ <SRS>EPSG:31259</SRS>
139
+ <SRS>EPSG:31284</SRS>
140
+ <SRS>EPSG:31285</SRS>
141
+ <SRS>EPSG:31286</SRS>
142
+ <SRS>EPSG:31287</SRS>
143
+ <SRS>EPSG:28992</SRS>
144
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
145
+ <BoundingBox SRS="EPSG:4326"
146
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
147
+ <Layer queryable="0" opaque="0" cascaded="0">
148
+ <Name>Grenzen</Name>
149
+ <Title>Europa</Title>
150
+ <SRS>EPSG:4326</SRS>
151
+ <SRS>EPSG:31467</SRS>
152
+ <SRS>EPSG:31466</SRS>
153
+ <SRS>EPSG:31468</SRS>
154
+ <SRS>EPSG:31469</SRS>
155
+ <SRS>EPSG:31492</SRS>
156
+ <SRS>EPSG:31493</SRS>
157
+ <SRS>EPSG:31494</SRS>
158
+ <SRS>EPSG:31495</SRS>
159
+ <SRS>EPSG:31462</SRS>
160
+ <SRS>EPSG:31463</SRS>
161
+ <SRS>EPSG:31464</SRS>
162
+ <SRS>EPSG:31465</SRS>
163
+ <SRS>EPSG:25832</SRS>
164
+ <SRS>EPSG:25833</SRS>
165
+ <SRS>EPSG:31257</SRS>
166
+ <SRS>EPSG:31258</SRS>
167
+ <SRS>EPSG:31259</SRS>
168
+ <SRS>EPSG:31284</SRS>
169
+ <SRS>EPSG:31285</SRS>
170
+ <SRS>EPSG:31286</SRS>
171
+ <SRS>EPSG:31287</SRS>
172
+ <SRS>EPSG:28992</SRS>
173
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
174
+ <BoundingBox SRS="EPSG:4326"
175
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
176
+ <Style>
177
+ <Name>default</Name>
178
+ <Title>default</Title>
179
+ <LegendURL width="66" height="32">
180
+ <Format>image/png</Format>
181
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Grenzen&amp;format=image/png&amp;STYLE=default"/>
182
+ </LegendURL>
183
+ </Style>
184
+ </Layer>
185
+ <Layer queryable="0" opaque="0" cascaded="0">
186
+ <Name>Landwirtschaft</Name>
187
+ <Title>Landwirtschaft</Title>
188
+ <KeywordList>
189
+ <Keyword>Landwirtschaft</Keyword>
190
+ <Keyword> Bauernhof</Keyword>
191
+ <Keyword> OSM</Keyword>
192
+ </KeywordList>
193
+ <SRS>EPSG:4326</SRS>
194
+ <SRS>EPSG:31467</SRS>
195
+ <SRS>EPSG:31466</SRS>
196
+ <SRS>EPSG:31468</SRS>
197
+ <SRS>EPSG:31469</SRS>
198
+ <SRS>EPSG:31492</SRS>
199
+ <SRS>EPSG:31493</SRS>
200
+ <SRS>EPSG:31494</SRS>
201
+ <SRS>EPSG:31495</SRS>
202
+ <SRS>EPSG:31462</SRS>
203
+ <SRS>EPSG:31463</SRS>
204
+ <SRS>EPSG:31464</SRS>
205
+ <SRS>EPSG:31465</SRS>
206
+ <SRS>EPSG:25832</SRS>
207
+ <SRS>EPSG:25833</SRS>
208
+ <SRS>EPSG:31257</SRS>
209
+ <SRS>EPSG:31258</SRS>
210
+ <SRS>EPSG:31259</SRS>
211
+ <SRS>EPSG:31284</SRS>
212
+ <SRS>EPSG:31285</SRS>
213
+ <SRS>EPSG:31286</SRS>
214
+ <SRS>EPSG:31287</SRS>
215
+ <SRS>EPSG:28992</SRS>
216
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
217
+ <BoundingBox SRS="EPSG:4326"
218
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
219
+ <Style>
220
+ <Name>default</Name>
221
+ <Title>default</Title>
222
+ <LegendURL width="110" height="59">
223
+ <Format>image/png</Format>
224
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Landwirtschaft&amp;format=image/png&amp;STYLE=default"/>
225
+ </LegendURL>
226
+ </Style>
227
+ <ScaleHint min="0" max="99.7805696859274" />
228
+ </Layer>
229
+ <Layer queryable="0" opaque="0" cascaded="0">
230
+ <Name>Industriegebiet</Name>
231
+ <Title>Industriegebiet</Title>
232
+ <KeywordList>
233
+ <Keyword>Industrie</Keyword>
234
+ <Keyword> Industriegebiet</Keyword>
235
+ <Keyword> OSM</Keyword>
236
+ </KeywordList>
237
+ <SRS>EPSG:4326</SRS>
238
+ <SRS>EPSG:31467</SRS>
239
+ <SRS>EPSG:31466</SRS>
240
+ <SRS>EPSG:31468</SRS>
241
+ <SRS>EPSG:31469</SRS>
242
+ <SRS>EPSG:31492</SRS>
243
+ <SRS>EPSG:31493</SRS>
244
+ <SRS>EPSG:31494</SRS>
245
+ <SRS>EPSG:31495</SRS>
246
+ <SRS>EPSG:31462</SRS>
247
+ <SRS>EPSG:31463</SRS>
248
+ <SRS>EPSG:31464</SRS>
249
+ <SRS>EPSG:31465</SRS>
250
+ <SRS>EPSG:25832</SRS>
251
+ <SRS>EPSG:25833</SRS>
252
+ <SRS>EPSG:31257</SRS>
253
+ <SRS>EPSG:31258</SRS>
254
+ <SRS>EPSG:31259</SRS>
255
+ <SRS>EPSG:31284</SRS>
256
+ <SRS>EPSG:31285</SRS>
257
+ <SRS>EPSG:31286</SRS>
258
+ <SRS>EPSG:31287</SRS>
259
+ <SRS>EPSG:28992</SRS>
260
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
261
+ <BoundingBox SRS="EPSG:4326"
262
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
263
+ <Style>
264
+ <Name>default</Name>
265
+ <Title>default</Title>
266
+ <LegendURL width="110" height="59">
267
+ <Format>image/png</Format>
268
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Industriegebiet&amp;format=image/png&amp;STYLE=default"/>
269
+ </LegendURL>
270
+ </Style>
271
+ <ScaleHint min="0" max="49.8902848429637" />
272
+ </Layer>
273
+ <Layer queryable="0" opaque="0" cascaded="0">
274
+ <Name>Bauland</Name>
275
+ <Title>Bauland</Title>
276
+ <KeywordList>
277
+ <Keyword>Bauland</Keyword>
278
+ <Keyword> OSM</Keyword>
279
+ </KeywordList>
280
+ <SRS>EPSG:4326</SRS>
281
+ <SRS>EPSG:31467</SRS>
282
+ <SRS>EPSG:31466</SRS>
283
+ <SRS>EPSG:31468</SRS>
284
+ <SRS>EPSG:31469</SRS>
285
+ <SRS>EPSG:31492</SRS>
286
+ <SRS>EPSG:31493</SRS>
287
+ <SRS>EPSG:31494</SRS>
288
+ <SRS>EPSG:31495</SRS>
289
+ <SRS>EPSG:31462</SRS>
290
+ <SRS>EPSG:31463</SRS>
291
+ <SRS>EPSG:31464</SRS>
292
+ <SRS>EPSG:31465</SRS>
293
+ <SRS>EPSG:25832</SRS>
294
+ <SRS>EPSG:25833</SRS>
295
+ <SRS>EPSG:31257</SRS>
296
+ <SRS>EPSG:31258</SRS>
297
+ <SRS>EPSG:31259</SRS>
298
+ <SRS>EPSG:31284</SRS>
299
+ <SRS>EPSG:31285</SRS>
300
+ <SRS>EPSG:31286</SRS>
301
+ <SRS>EPSG:31287</SRS>
302
+ <SRS>EPSG:28992</SRS>
303
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
304
+ <BoundingBox SRS="EPSG:4326"
305
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
306
+ <Style>
307
+ <Name>default</Name>
308
+ <Title>default</Title>
309
+ <LegendURL width="80" height="59">
310
+ <Format>image/png</Format>
311
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Bauland&amp;format=image/png&amp;STYLE=default"/>
312
+ </LegendURL>
313
+ </Style>
314
+ <ScaleHint min="0" max="49.8902848429637" />
315
+ </Layer>
316
+ <Layer queryable="0" opaque="0" cascaded="0">
317
+ <Name>Gruenflaeche</Name>
318
+ <Title>Gruenflaeche</Title>
319
+ <KeywordList>
320
+ <Keyword>Grünfläche</Keyword>
321
+ <Keyword> Land</Keyword>
322
+ <Keyword> OSM</Keyword>
323
+ </KeywordList>
324
+ <SRS>EPSG:4326</SRS>
325
+ <SRS>EPSG:31467</SRS>
326
+ <SRS>EPSG:31466</SRS>
327
+ <SRS>EPSG:31468</SRS>
328
+ <SRS>EPSG:31469</SRS>
329
+ <SRS>EPSG:31492</SRS>
330
+ <SRS>EPSG:31493</SRS>
331
+ <SRS>EPSG:31494</SRS>
332
+ <SRS>EPSG:31495</SRS>
333
+ <SRS>EPSG:31462</SRS>
334
+ <SRS>EPSG:31463</SRS>
335
+ <SRS>EPSG:31464</SRS>
336
+ <SRS>EPSG:31465</SRS>
337
+ <SRS>EPSG:25832</SRS>
338
+ <SRS>EPSG:25833</SRS>
339
+ <SRS>EPSG:31257</SRS>
340
+ <SRS>EPSG:31258</SRS>
341
+ <SRS>EPSG:31259</SRS>
342
+ <SRS>EPSG:31284</SRS>
343
+ <SRS>EPSG:31285</SRS>
344
+ <SRS>EPSG:31286</SRS>
345
+ <SRS>EPSG:31287</SRS>
346
+ <SRS>EPSG:28992</SRS>
347
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
348
+ <BoundingBox SRS="EPSG:4326"
349
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
350
+ <Style>
351
+ <Name>default</Name>
352
+ <Title>default</Title>
353
+ <LegendURL width="105" height="59">
354
+ <Format>image/png</Format>
355
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Gruenflaeche&amp;format=image/png&amp;STYLE=default"/>
356
+ </LegendURL>
357
+ </Style>
358
+ <ScaleHint min="0" max="49.8902848429637" />
359
+ </Layer>
360
+ <Layer queryable="0" opaque="0" cascaded="0">
361
+ <Name>unkultiviertes_Land</Name>
362
+ <Title>unkultiviertes_Land</Title>
363
+ <KeywordList>
364
+ <Keyword>unkultiviertes Land</Keyword>
365
+ <Keyword> Unterholz</Keyword>
366
+ <Keyword> Busch</Keyword>
367
+ <Keyword> Land</Keyword>
368
+ <Keyword> OSM</Keyword>
369
+ </KeywordList>
370
+ <SRS>EPSG:4326</SRS>
371
+ <SRS>EPSG:31467</SRS>
372
+ <SRS>EPSG:31466</SRS>
373
+ <SRS>EPSG:31468</SRS>
374
+ <SRS>EPSG:31469</SRS>
375
+ <SRS>EPSG:31492</SRS>
376
+ <SRS>EPSG:31493</SRS>
377
+ <SRS>EPSG:31494</SRS>
378
+ <SRS>EPSG:31495</SRS>
379
+ <SRS>EPSG:31462</SRS>
380
+ <SRS>EPSG:31463</SRS>
381
+ <SRS>EPSG:31464</SRS>
382
+ <SRS>EPSG:31465</SRS>
383
+ <SRS>EPSG:25832</SRS>
384
+ <SRS>EPSG:25833</SRS>
385
+ <SRS>EPSG:31257</SRS>
386
+ <SRS>EPSG:31258</SRS>
387
+ <SRS>EPSG:31259</SRS>
388
+ <SRS>EPSG:31284</SRS>
389
+ <SRS>EPSG:31285</SRS>
390
+ <SRS>EPSG:31286</SRS>
391
+ <SRS>EPSG:31287</SRS>
392
+ <SRS>EPSG:28992</SRS>
393
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
394
+ <BoundingBox SRS="EPSG:4326"
395
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
396
+ <Style>
397
+ <Name>default</Name>
398
+ <Title>default</Title>
399
+ <LegendURL width="128" height="59">
400
+ <Format>image/png</Format>
401
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=unkultiviertes_Land&amp;format=image/png&amp;STYLE=default"/>
402
+ </LegendURL>
403
+ </Style>
404
+ <ScaleHint min="0" max="99.7805696859274" />
405
+ </Layer>
406
+ <Layer queryable="0" opaque="0" cascaded="0">
407
+ <Name>Park</Name>
408
+ <Title>Park</Title>
409
+ <KeywordList>
410
+ <Keyword>Park</Keyword>
411
+ <Keyword> Land</Keyword>
412
+ <Keyword> OSM</Keyword>
413
+ </KeywordList>
414
+ <SRS>EPSG:4326</SRS>
415
+ <SRS>EPSG:31467</SRS>
416
+ <SRS>EPSG:31466</SRS>
417
+ <SRS>EPSG:31468</SRS>
418
+ <SRS>EPSG:31469</SRS>
419
+ <SRS>EPSG:31492</SRS>
420
+ <SRS>EPSG:31493</SRS>
421
+ <SRS>EPSG:31494</SRS>
422
+ <SRS>EPSG:31495</SRS>
423
+ <SRS>EPSG:31462</SRS>
424
+ <SRS>EPSG:31463</SRS>
425
+ <SRS>EPSG:31464</SRS>
426
+ <SRS>EPSG:31465</SRS>
427
+ <SRS>EPSG:25832</SRS>
428
+ <SRS>EPSG:25833</SRS>
429
+ <SRS>EPSG:31257</SRS>
430
+ <SRS>EPSG:31258</SRS>
431
+ <SRS>EPSG:31259</SRS>
432
+ <SRS>EPSG:31284</SRS>
433
+ <SRS>EPSG:31285</SRS>
434
+ <SRS>EPSG:31286</SRS>
435
+ <SRS>EPSG:31287</SRS>
436
+ <SRS>EPSG:28992</SRS>
437
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
438
+ <BoundingBox SRS="EPSG:4326"
439
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
440
+ <Style>
441
+ <Name>default</Name>
442
+ <Title>default</Title>
443
+ <LegendURL width="64" height="59">
444
+ <Format>image/png</Format>
445
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Park&amp;format=image/png&amp;STYLE=default"/>
446
+ </LegendURL>
447
+ </Style>
448
+ <ScaleHint min="0" max="24.9451424214819" />
449
+ </Layer>
450
+ <Layer queryable="0" opaque="0" cascaded="0">
451
+ <Name>Naherholungsgebiet</Name>
452
+ <Title>Naherholungsgebiet</Title>
453
+ <KeywordList>
454
+ <Keyword>Naherholungsgebiet</Keyword>
455
+ <Keyword> Land</Keyword>
456
+ <Keyword> OSM</Keyword>
457
+ </KeywordList>
458
+ <SRS>EPSG:4326</SRS>
459
+ <SRS>EPSG:31467</SRS>
460
+ <SRS>EPSG:31466</SRS>
461
+ <SRS>EPSG:31468</SRS>
462
+ <SRS>EPSG:31469</SRS>
463
+ <SRS>EPSG:31492</SRS>
464
+ <SRS>EPSG:31493</SRS>
465
+ <SRS>EPSG:31494</SRS>
466
+ <SRS>EPSG:31495</SRS>
467
+ <SRS>EPSG:31462</SRS>
468
+ <SRS>EPSG:31463</SRS>
469
+ <SRS>EPSG:31464</SRS>
470
+ <SRS>EPSG:31465</SRS>
471
+ <SRS>EPSG:25832</SRS>
472
+ <SRS>EPSG:25833</SRS>
473
+ <SRS>EPSG:31257</SRS>
474
+ <SRS>EPSG:31258</SRS>
475
+ <SRS>EPSG:31259</SRS>
476
+ <SRS>EPSG:31284</SRS>
477
+ <SRS>EPSG:31285</SRS>
478
+ <SRS>EPSG:31286</SRS>
479
+ <SRS>EPSG:31287</SRS>
480
+ <SRS>EPSG:28992</SRS>
481
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
482
+ <BoundingBox SRS="EPSG:4326"
483
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
484
+ <Style>
485
+ <Name>default</Name>
486
+ <Title>default</Title>
487
+ <LegendURL width="135" height="59">
488
+ <Format>image/png</Format>
489
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Naherholungsgebiet&amp;format=image/png&amp;STYLE=default"/>
490
+ </LegendURL>
491
+ </Style>
492
+ <ScaleHint min="0" max="24.9451424214819" />
493
+ </Layer>
494
+ <Layer queryable="0" opaque="0" cascaded="0">
495
+ <Name>Wald</Name>
496
+ <Title>Wald/Forst</Title>
497
+ <KeywordList>
498
+ <Keyword>Wald/Forst</Keyword>
499
+ <Keyword> Land</Keyword>
500
+ <Keyword> OSM</Keyword>
501
+ </KeywordList>
502
+ <SRS>EPSG:4326</SRS>
503
+ <SRS>EPSG:31467</SRS>
504
+ <SRS>EPSG:31466</SRS>
505
+ <SRS>EPSG:31468</SRS>
506
+ <SRS>EPSG:31469</SRS>
507
+ <SRS>EPSG:31492</SRS>
508
+ <SRS>EPSG:31493</SRS>
509
+ <SRS>EPSG:31494</SRS>
510
+ <SRS>EPSG:31495</SRS>
511
+ <SRS>EPSG:31462</SRS>
512
+ <SRS>EPSG:31463</SRS>
513
+ <SRS>EPSG:31464</SRS>
514
+ <SRS>EPSG:31465</SRS>
515
+ <SRS>EPSG:25832</SRS>
516
+ <SRS>EPSG:25833</SRS>
517
+ <SRS>EPSG:31257</SRS>
518
+ <SRS>EPSG:31258</SRS>
519
+ <SRS>EPSG:31259</SRS>
520
+ <SRS>EPSG:31284</SRS>
521
+ <SRS>EPSG:31285</SRS>
522
+ <SRS>EPSG:31286</SRS>
523
+ <SRS>EPSG:31287</SRS>
524
+ <SRS>EPSG:28992</SRS>
525
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
526
+ <BoundingBox SRS="EPSG:4326"
527
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
528
+ <Style>
529
+ <Name>default</Name>
530
+ <Title>default</Title>
531
+ <LegendURL width="95" height="59">
532
+ <Format>image/png</Format>
533
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Wald&amp;format=image/png&amp;STYLE=default"/>
534
+ </LegendURL>
535
+ </Style>
536
+ <ScaleHint min="0" max="149.670854528891" />
537
+ </Layer>
538
+ <Layer queryable="0" opaque="0" cascaded="0">
539
+ <Name>Wiese</Name>
540
+ <Title>Wiese</Title>
541
+ <KeywordList>
542
+ <Keyword>Wiese</Keyword>
543
+ <Keyword> Land</Keyword>
544
+ <Keyword> OSM</Keyword>
545
+ </KeywordList>
546
+ <SRS>EPSG:4326</SRS>
547
+ <SRS>EPSG:31467</SRS>
548
+ <SRS>EPSG:31466</SRS>
549
+ <SRS>EPSG:31468</SRS>
550
+ <SRS>EPSG:31469</SRS>
551
+ <SRS>EPSG:31492</SRS>
552
+ <SRS>EPSG:31493</SRS>
553
+ <SRS>EPSG:31494</SRS>
554
+ <SRS>EPSG:31495</SRS>
555
+ <SRS>EPSG:31462</SRS>
556
+ <SRS>EPSG:31463</SRS>
557
+ <SRS>EPSG:31464</SRS>
558
+ <SRS>EPSG:31465</SRS>
559
+ <SRS>EPSG:25832</SRS>
560
+ <SRS>EPSG:25833</SRS>
561
+ <SRS>EPSG:31257</SRS>
562
+ <SRS>EPSG:31258</SRS>
563
+ <SRS>EPSG:31259</SRS>
564
+ <SRS>EPSG:31284</SRS>
565
+ <SRS>EPSG:31285</SRS>
566
+ <SRS>EPSG:31286</SRS>
567
+ <SRS>EPSG:31287</SRS>
568
+ <SRS>EPSG:28992</SRS>
569
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
570
+ <BoundingBox SRS="EPSG:4326"
571
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
572
+ <Style>
573
+ <Name>default</Name>
574
+ <Title>default</Title>
575
+ <LegendURL width="73" height="59">
576
+ <Format>image/png</Format>
577
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Wiese&amp;format=image/png&amp;STYLE=default"/>
578
+ </LegendURL>
579
+ </Style>
580
+ <ScaleHint min="0" max="149.670854528891" />
581
+ </Layer>
582
+ <Layer queryable="0" opaque="0" cascaded="0">
583
+ <Name>Fussgaengerzone</Name>
584
+ <Title>Fußgängerzone</Title>
585
+ <KeywordList>
586
+ <Keyword>Fußgängerzone</Keyword>
587
+ <Keyword> Strassen</Keyword>
588
+ <Keyword> OSM</Keyword>
589
+ </KeywordList>
590
+ <SRS>EPSG:4326</SRS>
591
+ <SRS>EPSG:31467</SRS>
592
+ <SRS>EPSG:31466</SRS>
593
+ <SRS>EPSG:31468</SRS>
594
+ <SRS>EPSG:31469</SRS>
595
+ <SRS>EPSG:31492</SRS>
596
+ <SRS>EPSG:31493</SRS>
597
+ <SRS>EPSG:31494</SRS>
598
+ <SRS>EPSG:31495</SRS>
599
+ <SRS>EPSG:31462</SRS>
600
+ <SRS>EPSG:31463</SRS>
601
+ <SRS>EPSG:31464</SRS>
602
+ <SRS>EPSG:31465</SRS>
603
+ <SRS>EPSG:25832</SRS>
604
+ <SRS>EPSG:25833</SRS>
605
+ <SRS>EPSG:31257</SRS>
606
+ <SRS>EPSG:31258</SRS>
607
+ <SRS>EPSG:31259</SRS>
608
+ <SRS>EPSG:31284</SRS>
609
+ <SRS>EPSG:31285</SRS>
610
+ <SRS>EPSG:31286</SRS>
611
+ <SRS>EPSG:31287</SRS>
612
+ <SRS>EPSG:28992</SRS>
613
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
614
+ <BoundingBox SRS="EPSG:4326"
615
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
616
+ <Style>
617
+ <Name>default</Name>
618
+ <Title>default</Title>
619
+ <LegendURL width="115" height="32">
620
+ <Format>image/png</Format>
621
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Fussgaengerzone&amp;format=image/png&amp;STYLE=default"/>
622
+ </LegendURL>
623
+ </Style>
624
+ <ScaleHint min="0" max="2.49451424214819" />
625
+ </Layer>
626
+ <Layer queryable="0" opaque="0" cascaded="0">
627
+ <Name>Gebaeude</Name>
628
+ <Title>Gebäude</Title>
629
+ <KeywordList>
630
+ <Keyword>Gebäude</Keyword>
631
+ <Keyword> OSM</Keyword>
632
+ </KeywordList>
633
+ <SRS>EPSG:4326</SRS>
634
+ <SRS>EPSG:31467</SRS>
635
+ <SRS>EPSG:31466</SRS>
636
+ <SRS>EPSG:31468</SRS>
637
+ <SRS>EPSG:31469</SRS>
638
+ <SRS>EPSG:31492</SRS>
639
+ <SRS>EPSG:31493</SRS>
640
+ <SRS>EPSG:31494</SRS>
641
+ <SRS>EPSG:31495</SRS>
642
+ <SRS>EPSG:31462</SRS>
643
+ <SRS>EPSG:31463</SRS>
644
+ <SRS>EPSG:31464</SRS>
645
+ <SRS>EPSG:31465</SRS>
646
+ <SRS>EPSG:25832</SRS>
647
+ <SRS>EPSG:25833</SRS>
648
+ <SRS>EPSG:31257</SRS>
649
+ <SRS>EPSG:31258</SRS>
650
+ <SRS>EPSG:31259</SRS>
651
+ <SRS>EPSG:31284</SRS>
652
+ <SRS>EPSG:31285</SRS>
653
+ <SRS>EPSG:31286</SRS>
654
+ <SRS>EPSG:31287</SRS>
655
+ <SRS>EPSG:28992</SRS>
656
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
657
+ <BoundingBox SRS="EPSG:4326"
658
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
659
+ <Style>
660
+ <Name>default</Name>
661
+ <Title>default</Title>
662
+ <LegendURL width="85" height="32">
663
+ <Format>image/png</Format>
664
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Gebaeude&amp;format=image/png&amp;STYLE=default"/>
665
+ </LegendURL>
666
+ </Style>
667
+ <ScaleHint min="0" max="2.49451424214819" />
668
+ </Layer>
669
+ <Layer queryable="0" opaque="0" cascaded="0">
670
+ <Name>Wasser</Name>
671
+ <Title>Gewaesser</Title>
672
+ <KeywordList>
673
+ <Keyword>Gewaesser</Keyword>
674
+ <Keyword> OSM</Keyword>
675
+ </KeywordList>
676
+ <SRS>EPSG:4326</SRS>
677
+ <SRS>EPSG:31467</SRS>
678
+ <SRS>EPSG:31466</SRS>
679
+ <SRS>EPSG:31468</SRS>
680
+ <SRS>EPSG:31469</SRS>
681
+ <SRS>EPSG:31492</SRS>
682
+ <SRS>EPSG:31493</SRS>
683
+ <SRS>EPSG:31494</SRS>
684
+ <SRS>EPSG:31495</SRS>
685
+ <SRS>EPSG:31462</SRS>
686
+ <SRS>EPSG:31463</SRS>
687
+ <SRS>EPSG:31464</SRS>
688
+ <SRS>EPSG:31465</SRS>
689
+ <SRS>EPSG:25832</SRS>
690
+ <SRS>EPSG:25833</SRS>
691
+ <SRS>EPSG:31257</SRS>
692
+ <SRS>EPSG:31258</SRS>
693
+ <SRS>EPSG:31259</SRS>
694
+ <SRS>EPSG:31284</SRS>
695
+ <SRS>EPSG:31285</SRS>
696
+ <SRS>EPSG:31286</SRS>
697
+ <SRS>EPSG:31287</SRS>
698
+ <SRS>EPSG:28992</SRS>
699
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
700
+ <BoundingBox SRS="EPSG:4326"
701
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
702
+ <Style>
703
+ <Name>default</Name>
704
+ <Title>default</Title>
705
+ <LegendURL width="95" height="59">
706
+ <Format>image/png</Format>
707
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Wasser&amp;format=image/png&amp;STYLE=default"/>
708
+ </LegendURL>
709
+ </Style>
710
+ <ScaleHint min="0" max="498.902848429637" />
711
+ </Layer>
712
+ <Layer queryable="0" opaque="0" cascaded="0">
713
+ <Name>Fluesse</Name>
714
+ <Title>Fluesse</Title>
715
+ <KeywordList>
716
+ <Keyword>Flüße</Keyword>
717
+ <Keyword> Wasser</Keyword>
718
+ <Keyword> OSM</Keyword>
719
+ </KeywordList>
720
+ <SRS>EPSG:4326</SRS>
721
+ <SRS>EPSG:31467</SRS>
722
+ <SRS>EPSG:31466</SRS>
723
+ <SRS>EPSG:31468</SRS>
724
+ <SRS>EPSG:31469</SRS>
725
+ <SRS>EPSG:31492</SRS>
726
+ <SRS>EPSG:31493</SRS>
727
+ <SRS>EPSG:31494</SRS>
728
+ <SRS>EPSG:31495</SRS>
729
+ <SRS>EPSG:31462</SRS>
730
+ <SRS>EPSG:31463</SRS>
731
+ <SRS>EPSG:31464</SRS>
732
+ <SRS>EPSG:31465</SRS>
733
+ <SRS>EPSG:25832</SRS>
734
+ <SRS>EPSG:25833</SRS>
735
+ <SRS>EPSG:31257</SRS>
736
+ <SRS>EPSG:31258</SRS>
737
+ <SRS>EPSG:31259</SRS>
738
+ <SRS>EPSG:31284</SRS>
739
+ <SRS>EPSG:31285</SRS>
740
+ <SRS>EPSG:31286</SRS>
741
+ <SRS>EPSG:31287</SRS>
742
+ <SRS>EPSG:28992</SRS>
743
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
744
+ <BoundingBox SRS="EPSG:4326"
745
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
746
+ <Style>
747
+ <Name>default</Name>
748
+ <Title>default</Title>
749
+ <LegendURL width="79" height="59">
750
+ <Format>image/png</Format>
751
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Fluesse&amp;format=image/png&amp;STYLE=default"/>
752
+ </LegendURL>
753
+ </Style>
754
+ <ScaleHint min="0" max="997.805696859274" />
755
+ </Layer>
756
+ <Layer queryable="0" opaque="0" cascaded="0">
757
+ <Name>Baeche</Name>
758
+ <Title>Baeche</Title>
759
+ <KeywordList>
760
+ <Keyword>Bach</Keyword>
761
+ <Keyword> Baeche</Keyword>
762
+ <Keyword> Wasser</Keyword>
763
+ <Keyword> OSM</Keyword>
764
+ </KeywordList>
765
+ <SRS>EPSG:4326</SRS>
766
+ <SRS>EPSG:31467</SRS>
767
+ <SRS>EPSG:31466</SRS>
768
+ <SRS>EPSG:31468</SRS>
769
+ <SRS>EPSG:31469</SRS>
770
+ <SRS>EPSG:31492</SRS>
771
+ <SRS>EPSG:31493</SRS>
772
+ <SRS>EPSG:31494</SRS>
773
+ <SRS>EPSG:31495</SRS>
774
+ <SRS>EPSG:31462</SRS>
775
+ <SRS>EPSG:31463</SRS>
776
+ <SRS>EPSG:31464</SRS>
777
+ <SRS>EPSG:31465</SRS>
778
+ <SRS>EPSG:25832</SRS>
779
+ <SRS>EPSG:25833</SRS>
780
+ <SRS>EPSG:31257</SRS>
781
+ <SRS>EPSG:31258</SRS>
782
+ <SRS>EPSG:31259</SRS>
783
+ <SRS>EPSG:31284</SRS>
784
+ <SRS>EPSG:31285</SRS>
785
+ <SRS>EPSG:31286</SRS>
786
+ <SRS>EPSG:31287</SRS>
787
+ <SRS>EPSG:28992</SRS>
788
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
789
+ <BoundingBox SRS="EPSG:4326"
790
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
791
+ <Style>
792
+ <Name>default</Name>
793
+ <Title>default</Title>
794
+ <LegendURL width="67" height="59">
795
+ <Format>image/png</Format>
796
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Baeche&amp;format=image/png&amp;STYLE=default"/>
797
+ </LegendURL>
798
+ </Style>
799
+ <ScaleHint min="0" max="24.9451424214819" />
800
+ </Layer>
801
+ <Layer queryable="0" opaque="0" cascaded="0">
802
+ <Name>Kanal</Name>
803
+ <Title>Kanal</Title>
804
+ <KeywordList>
805
+ <Keyword>Kanal</Keyword>
806
+ <Keyword> Wasser</Keyword>
807
+ <Keyword> OSM</Keyword>
808
+ </KeywordList>
809
+ <SRS>EPSG:4326</SRS>
810
+ <SRS>EPSG:31467</SRS>
811
+ <SRS>EPSG:31466</SRS>
812
+ <SRS>EPSG:31468</SRS>
813
+ <SRS>EPSG:31469</SRS>
814
+ <SRS>EPSG:31492</SRS>
815
+ <SRS>EPSG:31493</SRS>
816
+ <SRS>EPSG:31494</SRS>
817
+ <SRS>EPSG:31495</SRS>
818
+ <SRS>EPSG:31462</SRS>
819
+ <SRS>EPSG:31463</SRS>
820
+ <SRS>EPSG:31464</SRS>
821
+ <SRS>EPSG:31465</SRS>
822
+ <SRS>EPSG:25832</SRS>
823
+ <SRS>EPSG:25833</SRS>
824
+ <SRS>EPSG:31257</SRS>
825
+ <SRS>EPSG:31258</SRS>
826
+ <SRS>EPSG:31259</SRS>
827
+ <SRS>EPSG:31284</SRS>
828
+ <SRS>EPSG:31285</SRS>
829
+ <SRS>EPSG:31286</SRS>
830
+ <SRS>EPSG:31287</SRS>
831
+ <SRS>EPSG:28992</SRS>
832
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
833
+ <BoundingBox SRS="EPSG:4326"
834
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
835
+ <Style>
836
+ <Name>default</Name>
837
+ <Title>default</Title>
838
+ <LegendURL width="69" height="59">
839
+ <Format>image/png</Format>
840
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Kanal&amp;format=image/png&amp;STYLE=default"/>
841
+ </LegendURL>
842
+ </Style>
843
+ <ScaleHint min="0" max="24.9451424214819" />
844
+ </Layer>
845
+ <Layer queryable="0" opaque="0" cascaded="0">
846
+ <Name>Wasserbecken</Name>
847
+ <Title>Wasser- und Speicherbecken</Title>
848
+ <KeywordList>
849
+ <Keyword>Wasserbecken</Keyword>
850
+ <Keyword> Wasser</Keyword>
851
+ <Keyword> OSM</Keyword>
852
+ </KeywordList>
853
+ <SRS>EPSG:4326</SRS>
854
+ <SRS>EPSG:31467</SRS>
855
+ <SRS>EPSG:31466</SRS>
856
+ <SRS>EPSG:31468</SRS>
857
+ <SRS>EPSG:31469</SRS>
858
+ <SRS>EPSG:31492</SRS>
859
+ <SRS>EPSG:31493</SRS>
860
+ <SRS>EPSG:31494</SRS>
861
+ <SRS>EPSG:31495</SRS>
862
+ <SRS>EPSG:31462</SRS>
863
+ <SRS>EPSG:31463</SRS>
864
+ <SRS>EPSG:31464</SRS>
865
+ <SRS>EPSG:31465</SRS>
866
+ <SRS>EPSG:25832</SRS>
867
+ <SRS>EPSG:25833</SRS>
868
+ <SRS>EPSG:31257</SRS>
869
+ <SRS>EPSG:31258</SRS>
870
+ <SRS>EPSG:31259</SRS>
871
+ <SRS>EPSG:31284</SRS>
872
+ <SRS>EPSG:31285</SRS>
873
+ <SRS>EPSG:31286</SRS>
874
+ <SRS>EPSG:31287</SRS>
875
+ <SRS>EPSG:28992</SRS>
876
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
877
+ <BoundingBox SRS="EPSG:4326"
878
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
879
+ <Style>
880
+ <Name>default</Name>
881
+ <Title>default</Title>
882
+ <LegendURL width="113" height="59">
883
+ <Format>image/png</Format>
884
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Wasserbecken&amp;format=image/png&amp;STYLE=default"/>
885
+ </LegendURL>
886
+ </Style>
887
+ <ScaleHint min="0" max="24.9451424214819" />
888
+ </Layer>
889
+ <Layer queryable="0" opaque="0" cascaded="0">
890
+ <Name>Insel</Name>
891
+ <Title>Insel</Title>
892
+ <KeywordList>
893
+ <Keyword>Insel</Keyword>
894
+ <Keyword> OSM</Keyword>
895
+ </KeywordList>
896
+ <SRS>EPSG:4326</SRS>
897
+ <SRS>EPSG:31467</SRS>
898
+ <SRS>EPSG:31466</SRS>
899
+ <SRS>EPSG:31468</SRS>
900
+ <SRS>EPSG:31469</SRS>
901
+ <SRS>EPSG:31492</SRS>
902
+ <SRS>EPSG:31493</SRS>
903
+ <SRS>EPSG:31494</SRS>
904
+ <SRS>EPSG:31495</SRS>
905
+ <SRS>EPSG:31462</SRS>
906
+ <SRS>EPSG:31463</SRS>
907
+ <SRS>EPSG:31464</SRS>
908
+ <SRS>EPSG:31465</SRS>
909
+ <SRS>EPSG:25832</SRS>
910
+ <SRS>EPSG:25833</SRS>
911
+ <SRS>EPSG:31257</SRS>
912
+ <SRS>EPSG:31258</SRS>
913
+ <SRS>EPSG:31259</SRS>
914
+ <SRS>EPSG:31284</SRS>
915
+ <SRS>EPSG:31285</SRS>
916
+ <SRS>EPSG:31286</SRS>
917
+ <SRS>EPSG:31287</SRS>
918
+ <SRS>EPSG:28992</SRS>
919
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
920
+ <BoundingBox SRS="EPSG:4326"
921
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
922
+ <Style>
923
+ <Name>default</Name>
924
+ <Title>default</Title>
925
+ <LegendURL width="65" height="59">
926
+ <Format>image/png</Format>
927
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Insel&amp;format=image/png&amp;STYLE=default"/>
928
+ </LegendURL>
929
+ </Style>
930
+ <ScaleHint min="0" max="997.805696859274" />
931
+ </Layer>
932
+ <Layer queryable="0" opaque="0" cascaded="0">
933
+ <Name>Kueste</Name>
934
+ <Title>Kueste</Title>
935
+ <KeywordList>
936
+ <Keyword>Insel</Keyword>
937
+ <Keyword>Küste</Keyword>
938
+ <Keyword> OSM</Keyword>
939
+ </KeywordList>
940
+ <SRS>EPSG:4326</SRS>
941
+ <SRS>EPSG:31467</SRS>
942
+ <SRS>EPSG:31466</SRS>
943
+ <SRS>EPSG:31468</SRS>
944
+ <SRS>EPSG:31469</SRS>
945
+ <SRS>EPSG:31492</SRS>
946
+ <SRS>EPSG:31493</SRS>
947
+ <SRS>EPSG:31494</SRS>
948
+ <SRS>EPSG:31495</SRS>
949
+ <SRS>EPSG:31462</SRS>
950
+ <SRS>EPSG:31463</SRS>
951
+ <SRS>EPSG:31464</SRS>
952
+ <SRS>EPSG:31465</SRS>
953
+ <SRS>EPSG:25832</SRS>
954
+ <SRS>EPSG:25833</SRS>
955
+ <SRS>EPSG:31257</SRS>
956
+ <SRS>EPSG:31258</SRS>
957
+ <SRS>EPSG:31259</SRS>
958
+ <SRS>EPSG:31284</SRS>
959
+ <SRS>EPSG:31285</SRS>
960
+ <SRS>EPSG:31286</SRS>
961
+ <SRS>EPSG:31287</SRS>
962
+ <SRS>EPSG:28992</SRS>
963
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
964
+ <BoundingBox SRS="EPSG:4326"
965
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
966
+ <Style>
967
+ <Name>default</Name>
968
+ <Title>default</Title>
969
+ <LegendURL width="70" height="59">
970
+ <Format>image/png</Format>
971
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Kueste&amp;format=image/png&amp;STYLE=default"/>
972
+ </LegendURL>
973
+ </Style>
974
+ <ScaleHint min="0" max="997.805696859274" />
975
+ </Layer>
976
+ <Layer queryable="0" opaque="0" cascaded="0">
977
+ <Name>Inselpunkte</Name>
978
+ <Title>Inselpunkte</Title>
979
+ <KeywordList>
980
+ <Keyword>Insel</Keyword>
981
+ <Keyword> OSM</Keyword>
982
+ </KeywordList>
983
+ <SRS>EPSG:4326</SRS>
984
+ <SRS>EPSG:31467</SRS>
985
+ <SRS>EPSG:31466</SRS>
986
+ <SRS>EPSG:31468</SRS>
987
+ <SRS>EPSG:31469</SRS>
988
+ <SRS>EPSG:31492</SRS>
989
+ <SRS>EPSG:31493</SRS>
990
+ <SRS>EPSG:31494</SRS>
991
+ <SRS>EPSG:31495</SRS>
992
+ <SRS>EPSG:31462</SRS>
993
+ <SRS>EPSG:31463</SRS>
994
+ <SRS>EPSG:31464</SRS>
995
+ <SRS>EPSG:31465</SRS>
996
+ <SRS>EPSG:25832</SRS>
997
+ <SRS>EPSG:25833</SRS>
998
+ <SRS>EPSG:31257</SRS>
999
+ <SRS>EPSG:31258</SRS>
1000
+ <SRS>EPSG:31259</SRS>
1001
+ <SRS>EPSG:31284</SRS>
1002
+ <SRS>EPSG:31285</SRS>
1003
+ <SRS>EPSG:31286</SRS>
1004
+ <SRS>EPSG:31287</SRS>
1005
+ <SRS>EPSG:28992</SRS>
1006
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1007
+ <BoundingBox SRS="EPSG:4326"
1008
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1009
+ <Style>
1010
+ <Name>default</Name>
1011
+ <Title>default</Title>
1012
+ <LegendURL width="95" height="59">
1013
+ <Format>image/png</Format>
1014
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Inselpunkte&amp;format=image/png&amp;STYLE=default"/>
1015
+ </LegendURL>
1016
+ </Style>
1017
+ <ScaleHint min="0" max="99.7805696859274" />
1018
+ </Layer>
1019
+ <Layer queryable="0" opaque="0" cascaded="0">
1020
+ <Name>Strand</Name>
1021
+ <Title>Strand</Title>
1022
+ <KeywordList>
1023
+ <Keyword>Strand</Keyword>
1024
+ <Keyword> Land</Keyword>
1025
+ <Keyword> OSM</Keyword>
1026
+ </KeywordList>
1027
+ <SRS>EPSG:4326</SRS>
1028
+ <SRS>EPSG:31467</SRS>
1029
+ <SRS>EPSG:31466</SRS>
1030
+ <SRS>EPSG:31468</SRS>
1031
+ <SRS>EPSG:31469</SRS>
1032
+ <SRS>EPSG:31492</SRS>
1033
+ <SRS>EPSG:31493</SRS>
1034
+ <SRS>EPSG:31494</SRS>
1035
+ <SRS>EPSG:31495</SRS>
1036
+ <SRS>EPSG:31462</SRS>
1037
+ <SRS>EPSG:31463</SRS>
1038
+ <SRS>EPSG:31464</SRS>
1039
+ <SRS>EPSG:31465</SRS>
1040
+ <SRS>EPSG:25832</SRS>
1041
+ <SRS>EPSG:25833</SRS>
1042
+ <SRS>EPSG:31257</SRS>
1043
+ <SRS>EPSG:31258</SRS>
1044
+ <SRS>EPSG:31259</SRS>
1045
+ <SRS>EPSG:31284</SRS>
1046
+ <SRS>EPSG:31285</SRS>
1047
+ <SRS>EPSG:31286</SRS>
1048
+ <SRS>EPSG:31287</SRS>
1049
+ <SRS>EPSG:28992</SRS>
1050
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1051
+ <BoundingBox SRS="EPSG:4326"
1052
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1053
+ <Style>
1054
+ <Name>default</Name>
1055
+ <Title>default</Title>
1056
+ <LegendURL width="73" height="59">
1057
+ <Format>image/png</Format>
1058
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Strand&amp;format=image/png&amp;STYLE=default"/>
1059
+ </LegendURL>
1060
+ </Style>
1061
+ <ScaleHint min="0" max="49.8902848429637" />
1062
+ </Layer>
1063
+ <Layer queryable="0" opaque="0" cascaded="0">
1064
+ <Name>Fussgaengerweg</Name>
1065
+ <Title>Fußgängerwege</Title>
1066
+ <KeywordList>
1067
+ <Keyword>Fußgängerwege</Keyword>
1068
+ <Keyword> Strassen</Keyword>
1069
+ <Keyword> OSM</Keyword>
1070
+ </KeywordList>
1071
+ <SRS>EPSG:4326</SRS>
1072
+ <SRS>EPSG:31467</SRS>
1073
+ <SRS>EPSG:31466</SRS>
1074
+ <SRS>EPSG:31468</SRS>
1075
+ <SRS>EPSG:31469</SRS>
1076
+ <SRS>EPSG:31492</SRS>
1077
+ <SRS>EPSG:31493</SRS>
1078
+ <SRS>EPSG:31494</SRS>
1079
+ <SRS>EPSG:31495</SRS>
1080
+ <SRS>EPSG:31462</SRS>
1081
+ <SRS>EPSG:31463</SRS>
1082
+ <SRS>EPSG:31464</SRS>
1083
+ <SRS>EPSG:31465</SRS>
1084
+ <SRS>EPSG:25832</SRS>
1085
+ <SRS>EPSG:25833</SRS>
1086
+ <SRS>EPSG:31257</SRS>
1087
+ <SRS>EPSG:31258</SRS>
1088
+ <SRS>EPSG:31259</SRS>
1089
+ <SRS>EPSG:31284</SRS>
1090
+ <SRS>EPSG:31285</SRS>
1091
+ <SRS>EPSG:31286</SRS>
1092
+ <SRS>EPSG:31287</SRS>
1093
+ <SRS>EPSG:28992</SRS>
1094
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1095
+ <BoundingBox SRS="EPSG:4326"
1096
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1097
+ <Style>
1098
+ <Name>default</Name>
1099
+ <Title>default</Title>
1100
+ <LegendURL width="112" height="59">
1101
+ <Format>image/png</Format>
1102
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Fussgaengerweg&amp;format=image/png&amp;STYLE=default"/>
1103
+ </LegendURL>
1104
+ </Style>
1105
+ <ScaleHint min="0" max="2.49451424214819" />
1106
+ </Layer>
1107
+ <Layer queryable="0" opaque="0" cascaded="0">
1108
+ <Name>Radweg</Name>
1109
+ <Title>Radweg</Title>
1110
+ <KeywordList>
1111
+ <Keyword>Radweg</Keyword>
1112
+ <Keyword> Strassen</Keyword>
1113
+ <Keyword> OSM</Keyword>
1114
+ </KeywordList>
1115
+ <SRS>EPSG:4326</SRS>
1116
+ <SRS>EPSG:31467</SRS>
1117
+ <SRS>EPSG:31466</SRS>
1118
+ <SRS>EPSG:31468</SRS>
1119
+ <SRS>EPSG:31469</SRS>
1120
+ <SRS>EPSG:31492</SRS>
1121
+ <SRS>EPSG:31493</SRS>
1122
+ <SRS>EPSG:31494</SRS>
1123
+ <SRS>EPSG:31495</SRS>
1124
+ <SRS>EPSG:31462</SRS>
1125
+ <SRS>EPSG:31463</SRS>
1126
+ <SRS>EPSG:31464</SRS>
1127
+ <SRS>EPSG:31465</SRS>
1128
+ <SRS>EPSG:25832</SRS>
1129
+ <SRS>EPSG:25833</SRS>
1130
+ <SRS>EPSG:31257</SRS>
1131
+ <SRS>EPSG:31258</SRS>
1132
+ <SRS>EPSG:31259</SRS>
1133
+ <SRS>EPSG:31284</SRS>
1134
+ <SRS>EPSG:31285</SRS>
1135
+ <SRS>EPSG:31286</SRS>
1136
+ <SRS>EPSG:31287</SRS>
1137
+ <SRS>EPSG:28992</SRS>
1138
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1139
+ <BoundingBox SRS="EPSG:4326"
1140
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1141
+ <Style>
1142
+ <Name>default</Name>
1143
+ <Title>default</Title>
1144
+ <LegendURL width="80" height="32">
1145
+ <Format>image/png</Format>
1146
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Radweg&amp;format=image/png&amp;STYLE=default"/>
1147
+ </LegendURL>
1148
+ </Style>
1149
+ <ScaleHint min="0" max="0.997805696859274" />
1150
+ </Layer>
1151
+ <Layer queryable="0" opaque="0" cascaded="0">
1152
+ <Name>Wege</Name>
1153
+ <Title>Wege</Title>
1154
+ <KeywordList>
1155
+ <Keyword>Wege</Keyword>
1156
+ <Keyword> Strassen</Keyword>
1157
+ <Keyword> OSM</Keyword>
1158
+ </KeywordList>
1159
+ <SRS>EPSG:4326</SRS>
1160
+ <SRS>EPSG:31467</SRS>
1161
+ <SRS>EPSG:31466</SRS>
1162
+ <SRS>EPSG:31468</SRS>
1163
+ <SRS>EPSG:31469</SRS>
1164
+ <SRS>EPSG:31492</SRS>
1165
+ <SRS>EPSG:31493</SRS>
1166
+ <SRS>EPSG:31494</SRS>
1167
+ <SRS>EPSG:31495</SRS>
1168
+ <SRS>EPSG:31462</SRS>
1169
+ <SRS>EPSG:31463</SRS>
1170
+ <SRS>EPSG:31464</SRS>
1171
+ <SRS>EPSG:31465</SRS>
1172
+ <SRS>EPSG:25832</SRS>
1173
+ <SRS>EPSG:25833</SRS>
1174
+ <SRS>EPSG:31257</SRS>
1175
+ <SRS>EPSG:31258</SRS>
1176
+ <SRS>EPSG:31259</SRS>
1177
+ <SRS>EPSG:31284</SRS>
1178
+ <SRS>EPSG:31285</SRS>
1179
+ <SRS>EPSG:31286</SRS>
1180
+ <SRS>EPSG:31287</SRS>
1181
+ <SRS>EPSG:28992</SRS>
1182
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1183
+ <BoundingBox SRS="EPSG:4326"
1184
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1185
+ <Style>
1186
+ <Name>default</Name>
1187
+ <Title>default</Title>
1188
+ <LegendURL width="127" height="221">
1189
+ <Format>image/png</Format>
1190
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Wege&amp;format=image/png&amp;STYLE=default"/>
1191
+ </LegendURL>
1192
+ </Style>
1193
+ <ScaleHint min="0" max="4.98902848429637" />
1194
+ </Layer>
1195
+ <Layer queryable="0" opaque="0" cascaded="0">
1196
+ <Name>Wohnstrasse</Name>
1197
+ <Title>Wohnstrasse</Title>
1198
+ <KeywordList>
1199
+ <Keyword>Wohnstrasse</Keyword>
1200
+ <Keyword> Strassen</Keyword>
1201
+ <Keyword> OSM</Keyword>
1202
+ </KeywordList>
1203
+ <SRS>EPSG:4326</SRS>
1204
+ <SRS>EPSG:31467</SRS>
1205
+ <SRS>EPSG:31466</SRS>
1206
+ <SRS>EPSG:31468</SRS>
1207
+ <SRS>EPSG:31469</SRS>
1208
+ <SRS>EPSG:31492</SRS>
1209
+ <SRS>EPSG:31493</SRS>
1210
+ <SRS>EPSG:31494</SRS>
1211
+ <SRS>EPSG:31495</SRS>
1212
+ <SRS>EPSG:31462</SRS>
1213
+ <SRS>EPSG:31463</SRS>
1214
+ <SRS>EPSG:31464</SRS>
1215
+ <SRS>EPSG:31465</SRS>
1216
+ <SRS>EPSG:25832</SRS>
1217
+ <SRS>EPSG:25833</SRS>
1218
+ <SRS>EPSG:31257</SRS>
1219
+ <SRS>EPSG:31258</SRS>
1220
+ <SRS>EPSG:31259</SRS>
1221
+ <SRS>EPSG:31284</SRS>
1222
+ <SRS>EPSG:31285</SRS>
1223
+ <SRS>EPSG:31286</SRS>
1224
+ <SRS>EPSG:31287</SRS>
1225
+ <SRS>EPSG:28992</SRS>
1226
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1227
+ <BoundingBox SRS="EPSG:4326"
1228
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1229
+ <Style>
1230
+ <Name>default</Name>
1231
+ <Title>default</Title>
1232
+ <LegendURL width="105" height="32">
1233
+ <Format>image/png</Format>
1234
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Wohnstrasse&amp;format=image/png&amp;STYLE=default"/>
1235
+ </LegendURL>
1236
+ </Style>
1237
+ <ScaleHint min="0" max="19.9561139371855" />
1238
+ </Layer>
1239
+ <Layer queryable="0" opaque="0" cascaded="0">
1240
+ <Name>Zufahrtswege</Name>
1241
+ <Title>Zufahrtswege</Title>
1242
+ <KeywordList>
1243
+ <Keyword>Zufahrtswege</Keyword>
1244
+ <Keyword> Strassen</Keyword>
1245
+ <Keyword> OSM</Keyword>
1246
+ </KeywordList>
1247
+ <SRS>EPSG:4326</SRS>
1248
+ <SRS>EPSG:31467</SRS>
1249
+ <SRS>EPSG:31466</SRS>
1250
+ <SRS>EPSG:31468</SRS>
1251
+ <SRS>EPSG:31469</SRS>
1252
+ <SRS>EPSG:31492</SRS>
1253
+ <SRS>EPSG:31493</SRS>
1254
+ <SRS>EPSG:31494</SRS>
1255
+ <SRS>EPSG:31495</SRS>
1256
+ <SRS>EPSG:31462</SRS>
1257
+ <SRS>EPSG:31463</SRS>
1258
+ <SRS>EPSG:31464</SRS>
1259
+ <SRS>EPSG:31465</SRS>
1260
+ <SRS>EPSG:25832</SRS>
1261
+ <SRS>EPSG:25833</SRS>
1262
+ <SRS>EPSG:31257</SRS>
1263
+ <SRS>EPSG:31258</SRS>
1264
+ <SRS>EPSG:31259</SRS>
1265
+ <SRS>EPSG:31284</SRS>
1266
+ <SRS>EPSG:31285</SRS>
1267
+ <SRS>EPSG:31286</SRS>
1268
+ <SRS>EPSG:31287</SRS>
1269
+ <SRS>EPSG:28992</SRS>
1270
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1271
+ <BoundingBox SRS="EPSG:4326"
1272
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1273
+ <Style>
1274
+ <Name>default</Name>
1275
+ <Title>default</Title>
1276
+ <LegendURL width="106" height="32">
1277
+ <Format>image/png</Format>
1278
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Zufahrtswege&amp;format=image/png&amp;STYLE=default"/>
1279
+ </LegendURL>
1280
+ </Style>
1281
+ <ScaleHint min="0" max="49.8902848429637" />
1282
+ </Layer>
1283
+ <Layer queryable="0" opaque="0" cascaded="0">
1284
+ <Name>einfache_Strasse</Name>
1285
+ <Title>einfache Strasse</Title>
1286
+ <KeywordList>
1287
+ <Keyword>einfache Strasse</Keyword>
1288
+ <Keyword> Strassen</Keyword>
1289
+ <Keyword> OSM</Keyword>
1290
+ </KeywordList>
1291
+ <SRS>EPSG:4326</SRS>
1292
+ <SRS>EPSG:31467</SRS>
1293
+ <SRS>EPSG:31466</SRS>
1294
+ <SRS>EPSG:31468</SRS>
1295
+ <SRS>EPSG:31469</SRS>
1296
+ <SRS>EPSG:31492</SRS>
1297
+ <SRS>EPSG:31493</SRS>
1298
+ <SRS>EPSG:31494</SRS>
1299
+ <SRS>EPSG:31495</SRS>
1300
+ <SRS>EPSG:31462</SRS>
1301
+ <SRS>EPSG:31463</SRS>
1302
+ <SRS>EPSG:31464</SRS>
1303
+ <SRS>EPSG:31465</SRS>
1304
+ <SRS>EPSG:25832</SRS>
1305
+ <SRS>EPSG:25833</SRS>
1306
+ <SRS>EPSG:31257</SRS>
1307
+ <SRS>EPSG:31258</SRS>
1308
+ <SRS>EPSG:31259</SRS>
1309
+ <SRS>EPSG:31284</SRS>
1310
+ <SRS>EPSG:31285</SRS>
1311
+ <SRS>EPSG:31286</SRS>
1312
+ <SRS>EPSG:31287</SRS>
1313
+ <SRS>EPSG:28992</SRS>
1314
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1315
+ <BoundingBox SRS="EPSG:4326"
1316
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1317
+ <Style>
1318
+ <Name>default</Name>
1319
+ <Title>default</Title>
1320
+ <LegendURL width="149" height="32">
1321
+ <Format>image/png</Format>
1322
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=einfache_Strasse&amp;format=image/png&amp;STYLE=default"/>
1323
+ </LegendURL>
1324
+ </Style>
1325
+ <ScaleHint min="0" max="49.8902848429637" />
1326
+ </Layer>
1327
+ <Layer queryable="0" opaque="0" cascaded="0">
1328
+ <Name>Landstrasse</Name>
1329
+ <Title>Landstrasse</Title>
1330
+ <KeywordList>
1331
+ <Keyword>Landstrasse</Keyword>
1332
+ <Keyword> Strassen</Keyword>
1333
+ <Keyword> OSM</Keyword>
1334
+ </KeywordList>
1335
+ <SRS>EPSG:4326</SRS>
1336
+ <SRS>EPSG:31467</SRS>
1337
+ <SRS>EPSG:31466</SRS>
1338
+ <SRS>EPSG:31468</SRS>
1339
+ <SRS>EPSG:31469</SRS>
1340
+ <SRS>EPSG:31492</SRS>
1341
+ <SRS>EPSG:31493</SRS>
1342
+ <SRS>EPSG:31494</SRS>
1343
+ <SRS>EPSG:31495</SRS>
1344
+ <SRS>EPSG:31462</SRS>
1345
+ <SRS>EPSG:31463</SRS>
1346
+ <SRS>EPSG:31464</SRS>
1347
+ <SRS>EPSG:31465</SRS>
1348
+ <SRS>EPSG:25832</SRS>
1349
+ <SRS>EPSG:25833</SRS>
1350
+ <SRS>EPSG:31257</SRS>
1351
+ <SRS>EPSG:31258</SRS>
1352
+ <SRS>EPSG:31259</SRS>
1353
+ <SRS>EPSG:31284</SRS>
1354
+ <SRS>EPSG:31285</SRS>
1355
+ <SRS>EPSG:31286</SRS>
1356
+ <SRS>EPSG:31287</SRS>
1357
+ <SRS>EPSG:28992</SRS>
1358
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1359
+ <BoundingBox SRS="EPSG:4326"
1360
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1361
+ <Style>
1362
+ <Name>default</Name>
1363
+ <Title>default</Title>
1364
+ <LegendURL width="99" height="32">
1365
+ <Format>image/png</Format>
1366
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Landstrasse&amp;format=image/png&amp;STYLE=default"/>
1367
+ </LegendURL>
1368
+ </Style>
1369
+ <ScaleHint min="0" max="49.8902848429637" />
1370
+ </Layer>
1371
+ <Layer queryable="0" opaque="0" cascaded="0">
1372
+ <Name>Bundesstrasse</Name>
1373
+ <Title>Bundesstrasse</Title>
1374
+ <KeywordList>
1375
+ <Keyword>Bundesstrasse</Keyword>
1376
+ <Keyword> Strassen</Keyword>
1377
+ <Keyword> OSM</Keyword>
1378
+ </KeywordList>
1379
+ <SRS>EPSG:4326</SRS>
1380
+ <SRS>EPSG:31467</SRS>
1381
+ <SRS>EPSG:31466</SRS>
1382
+ <SRS>EPSG:31468</SRS>
1383
+ <SRS>EPSG:31469</SRS>
1384
+ <SRS>EPSG:31492</SRS>
1385
+ <SRS>EPSG:31493</SRS>
1386
+ <SRS>EPSG:31494</SRS>
1387
+ <SRS>EPSG:31495</SRS>
1388
+ <SRS>EPSG:31462</SRS>
1389
+ <SRS>EPSG:31463</SRS>
1390
+ <SRS>EPSG:31464</SRS>
1391
+ <SRS>EPSG:31465</SRS>
1392
+ <SRS>EPSG:25832</SRS>
1393
+ <SRS>EPSG:25833</SRS>
1394
+ <SRS>EPSG:31257</SRS>
1395
+ <SRS>EPSG:31258</SRS>
1396
+ <SRS>EPSG:31259</SRS>
1397
+ <SRS>EPSG:31284</SRS>
1398
+ <SRS>EPSG:31285</SRS>
1399
+ <SRS>EPSG:31286</SRS>
1400
+ <SRS>EPSG:31287</SRS>
1401
+ <SRS>EPSG:28992</SRS>
1402
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1403
+ <BoundingBox SRS="EPSG:4326"
1404
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1405
+ <Style>
1406
+ <Name>default</Name>
1407
+ <Title>default</Title>
1408
+ <LegendURL width="112" height="32">
1409
+ <Format>image/png</Format>
1410
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Bundesstrasse&amp;format=image/png&amp;STYLE=default"/>
1411
+ </LegendURL>
1412
+ </Style>
1413
+ <ScaleHint min="0" max="199.561139371855" />
1414
+ </Layer>
1415
+ <Layer queryable="0" opaque="0" cascaded="0">
1416
+ <Name>Kraftfahrstrasse</Name>
1417
+ <Title>Kraftfahrstrasse</Title>
1418
+ <KeywordList>
1419
+ <Keyword>Kraftfahrstrasse</Keyword>
1420
+ <Keyword> Strassen</Keyword>
1421
+ <Keyword> OSM</Keyword>
1422
+ </KeywordList>
1423
+ <SRS>EPSG:4326</SRS>
1424
+ <SRS>EPSG:31467</SRS>
1425
+ <SRS>EPSG:31466</SRS>
1426
+ <SRS>EPSG:31468</SRS>
1427
+ <SRS>EPSG:31469</SRS>
1428
+ <SRS>EPSG:31492</SRS>
1429
+ <SRS>EPSG:31493</SRS>
1430
+ <SRS>EPSG:31494</SRS>
1431
+ <SRS>EPSG:31495</SRS>
1432
+ <SRS>EPSG:31462</SRS>
1433
+ <SRS>EPSG:31463</SRS>
1434
+ <SRS>EPSG:31464</SRS>
1435
+ <SRS>EPSG:31465</SRS>
1436
+ <SRS>EPSG:25832</SRS>
1437
+ <SRS>EPSG:25833</SRS>
1438
+ <SRS>EPSG:31257</SRS>
1439
+ <SRS>EPSG:31258</SRS>
1440
+ <SRS>EPSG:31259</SRS>
1441
+ <SRS>EPSG:31284</SRS>
1442
+ <SRS>EPSG:31285</SRS>
1443
+ <SRS>EPSG:31286</SRS>
1444
+ <SRS>EPSG:31287</SRS>
1445
+ <SRS>EPSG:28992</SRS>
1446
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1447
+ <BoundingBox SRS="EPSG:4326"
1448
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1449
+ <Style>
1450
+ <Name>default</Name>
1451
+ <Title>default</Title>
1452
+ <LegendURL width="117" height="32">
1453
+ <Format>image/png</Format>
1454
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Kraftfahrstrasse&amp;format=image/png&amp;STYLE=default"/>
1455
+ </LegendURL>
1456
+ </Style>
1457
+ <ScaleHint min="0" max="498.902848429637" />
1458
+ </Layer>
1459
+ <Layer queryable="0" opaque="0" cascaded="0">
1460
+ <Name>Autobahn</Name>
1461
+ <Title>Autobahn</Title>
1462
+ <KeywordList>
1463
+ <Keyword>Autobahn</Keyword>
1464
+ <Keyword> Strassen</Keyword>
1465
+ <Keyword> OSM</Keyword>
1466
+ </KeywordList>
1467
+ <SRS>EPSG:4326</SRS>
1468
+ <SRS>EPSG:31467</SRS>
1469
+ <SRS>EPSG:31466</SRS>
1470
+ <SRS>EPSG:31468</SRS>
1471
+ <SRS>EPSG:31469</SRS>
1472
+ <SRS>EPSG:31492</SRS>
1473
+ <SRS>EPSG:31493</SRS>
1474
+ <SRS>EPSG:31494</SRS>
1475
+ <SRS>EPSG:31495</SRS>
1476
+ <SRS>EPSG:31462</SRS>
1477
+ <SRS>EPSG:31463</SRS>
1478
+ <SRS>EPSG:31464</SRS>
1479
+ <SRS>EPSG:31465</SRS>
1480
+ <SRS>EPSG:25832</SRS>
1481
+ <SRS>EPSG:25833</SRS>
1482
+ <SRS>EPSG:31257</SRS>
1483
+ <SRS>EPSG:31258</SRS>
1484
+ <SRS>EPSG:31259</SRS>
1485
+ <SRS>EPSG:31284</SRS>
1486
+ <SRS>EPSG:31285</SRS>
1487
+ <SRS>EPSG:31286</SRS>
1488
+ <SRS>EPSG:31287</SRS>
1489
+ <SRS>EPSG:28992</SRS>
1490
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1491
+ <BoundingBox SRS="EPSG:4326"
1492
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1493
+ <Style>
1494
+ <Name>default</Name>
1495
+ <Title>default</Title>
1496
+ <LegendURL width="88" height="32">
1497
+ <Format>image/png</Format>
1498
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Autobahn&amp;format=image/png&amp;STYLE=default"/>
1499
+ </LegendURL>
1500
+ </Style>
1501
+ <ScaleHint min="0" max="9978.05696859274" />
1502
+ </Layer>
1503
+ <Layer queryable="1" opaque="0" cascaded="0">
1504
+ <Name>Ortschaft</Name>
1505
+ <Title>Ortschaft</Title>
1506
+ <KeywordList>
1507
+ <Keyword>Ortschaft</Keyword>
1508
+ <Keyword> Orte</Keyword>
1509
+ <Keyword> OSM</Keyword>
1510
+ </KeywordList>
1511
+ <SRS>EPSG:4326</SRS>
1512
+ <SRS>EPSG:31467</SRS>
1513
+ <SRS>EPSG:31466</SRS>
1514
+ <SRS>EPSG:31468</SRS>
1515
+ <SRS>EPSG:31469</SRS>
1516
+ <SRS>EPSG:31492</SRS>
1517
+ <SRS>EPSG:31493</SRS>
1518
+ <SRS>EPSG:31494</SRS>
1519
+ <SRS>EPSG:31495</SRS>
1520
+ <SRS>EPSG:31462</SRS>
1521
+ <SRS>EPSG:31463</SRS>
1522
+ <SRS>EPSG:31464</SRS>
1523
+ <SRS>EPSG:31465</SRS>
1524
+ <SRS>EPSG:25832</SRS>
1525
+ <SRS>EPSG:25833</SRS>
1526
+ <SRS>EPSG:31257</SRS>
1527
+ <SRS>EPSG:31258</SRS>
1528
+ <SRS>EPSG:31259</SRS>
1529
+ <SRS>EPSG:31284</SRS>
1530
+ <SRS>EPSG:31285</SRS>
1531
+ <SRS>EPSG:31286</SRS>
1532
+ <SRS>EPSG:31287</SRS>
1533
+ <SRS>EPSG:28992</SRS>
1534
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1535
+ <BoundingBox SRS="EPSG:4326"
1536
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1537
+ <Style>
1538
+ <Name>default</Name>
1539
+ <Title>default</Title>
1540
+ <LegendURL width="86" height="32">
1541
+ <Format>image/png</Format>
1542
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Ortschaft&amp;format=image/png&amp;STYLE=default"/>
1543
+ </LegendURL>
1544
+ </Style>
1545
+ <ScaleHint min="0" max="39.912227874371" />
1546
+ </Layer>
1547
+ <Layer queryable="0" opaque="0" cascaded="0">
1548
+ <Name>Weiler</Name>
1549
+ <Title>Weiler</Title>
1550
+ <KeywordList>
1551
+ <Keyword>Weiler</Keyword>
1552
+ <Keyword> Orte</Keyword>
1553
+ <Keyword> OSM</Keyword>
1554
+ </KeywordList>
1555
+ <SRS>EPSG:4326</SRS>
1556
+ <SRS>EPSG:31467</SRS>
1557
+ <SRS>EPSG:31466</SRS>
1558
+ <SRS>EPSG:31468</SRS>
1559
+ <SRS>EPSG:31469</SRS>
1560
+ <SRS>EPSG:31492</SRS>
1561
+ <SRS>EPSG:31493</SRS>
1562
+ <SRS>EPSG:31494</SRS>
1563
+ <SRS>EPSG:31495</SRS>
1564
+ <SRS>EPSG:31462</SRS>
1565
+ <SRS>EPSG:31463</SRS>
1566
+ <SRS>EPSG:31464</SRS>
1567
+ <SRS>EPSG:31465</SRS>
1568
+ <SRS>EPSG:25832</SRS>
1569
+ <SRS>EPSG:25833</SRS>
1570
+ <SRS>EPSG:31257</SRS>
1571
+ <SRS>EPSG:31258</SRS>
1572
+ <SRS>EPSG:31259</SRS>
1573
+ <SRS>EPSG:31284</SRS>
1574
+ <SRS>EPSG:31285</SRS>
1575
+ <SRS>EPSG:31286</SRS>
1576
+ <SRS>EPSG:31287</SRS>
1577
+ <SRS>EPSG:28992</SRS>
1578
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1579
+ <BoundingBox SRS="EPSG:4326"
1580
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1581
+ <Style>
1582
+ <Name>default</Name>
1583
+ <Title>default</Title>
1584
+ <LegendURL width="73" height="32">
1585
+ <Format>image/png</Format>
1586
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Weiler&amp;format=image/png&amp;STYLE=default"/>
1587
+ </LegendURL>
1588
+ </Style>
1589
+ <ScaleHint min="0" max="9.97805696859274" />
1590
+ </Layer>
1591
+ <Layer queryable="1" opaque="0" cascaded="0">
1592
+ <Name>Stadtteil</Name>
1593
+ <Title>Stadtteil</Title>
1594
+ <KeywordList>
1595
+ <Keyword>Stadtteil</Keyword>
1596
+ <Keyword> Orte</Keyword>
1597
+ <Keyword> OSM</Keyword>
1598
+ </KeywordList>
1599
+ <SRS>EPSG:4326</SRS>
1600
+ <SRS>EPSG:31467</SRS>
1601
+ <SRS>EPSG:31466</SRS>
1602
+ <SRS>EPSG:31468</SRS>
1603
+ <SRS>EPSG:31469</SRS>
1604
+ <SRS>EPSG:31492</SRS>
1605
+ <SRS>EPSG:31493</SRS>
1606
+ <SRS>EPSG:31494</SRS>
1607
+ <SRS>EPSG:31495</SRS>
1608
+ <SRS>EPSG:31462</SRS>
1609
+ <SRS>EPSG:31463</SRS>
1610
+ <SRS>EPSG:31464</SRS>
1611
+ <SRS>EPSG:31465</SRS>
1612
+ <SRS>EPSG:25832</SRS>
1613
+ <SRS>EPSG:25833</SRS>
1614
+ <SRS>EPSG:31257</SRS>
1615
+ <SRS>EPSG:31258</SRS>
1616
+ <SRS>EPSG:31259</SRS>
1617
+ <SRS>EPSG:31284</SRS>
1618
+ <SRS>EPSG:31285</SRS>
1619
+ <SRS>EPSG:31286</SRS>
1620
+ <SRS>EPSG:31287</SRS>
1621
+ <SRS>EPSG:28992</SRS>
1622
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1623
+ <BoundingBox SRS="EPSG:4326"
1624
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1625
+ <Style>
1626
+ <Name>default</Name>
1627
+ <Title>default</Title>
1628
+ <LegendURL width="80" height="32">
1629
+ <Format>image/png</Format>
1630
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Stadtteil&amp;format=image/png&amp;STYLE=default"/>
1631
+ </LegendURL>
1632
+ </Style>
1633
+ <ScaleHint min="0" max="34.9231993900746" />
1634
+ </Layer>
1635
+ <Layer queryable="1" opaque="0" cascaded="0">
1636
+ <Name>Dorf</Name>
1637
+ <Title>Dorf</Title>
1638
+ <KeywordList>
1639
+ <Keyword>Dorf</Keyword>
1640
+ <Keyword> Orte</Keyword>
1641
+ <Keyword> OSM</Keyword>
1642
+ </KeywordList>
1643
+ <SRS>EPSG:4326</SRS>
1644
+ <SRS>EPSG:31467</SRS>
1645
+ <SRS>EPSG:31466</SRS>
1646
+ <SRS>EPSG:31468</SRS>
1647
+ <SRS>EPSG:31469</SRS>
1648
+ <SRS>EPSG:31492</SRS>
1649
+ <SRS>EPSG:31493</SRS>
1650
+ <SRS>EPSG:31494</SRS>
1651
+ <SRS>EPSG:31495</SRS>
1652
+ <SRS>EPSG:31462</SRS>
1653
+ <SRS>EPSG:31463</SRS>
1654
+ <SRS>EPSG:31464</SRS>
1655
+ <SRS>EPSG:31465</SRS>
1656
+ <SRS>EPSG:25832</SRS>
1657
+ <SRS>EPSG:25833</SRS>
1658
+ <SRS>EPSG:31257</SRS>
1659
+ <SRS>EPSG:31258</SRS>
1660
+ <SRS>EPSG:31259</SRS>
1661
+ <SRS>EPSG:31284</SRS>
1662
+ <SRS>EPSG:31285</SRS>
1663
+ <SRS>EPSG:31286</SRS>
1664
+ <SRS>EPSG:31287</SRS>
1665
+ <SRS>EPSG:28992</SRS>
1666
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1667
+ <BoundingBox SRS="EPSG:4326"
1668
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1669
+ <Style>
1670
+ <Name>default</Name>
1671
+ <Title>default</Title>
1672
+ <LegendURL width="63" height="32">
1673
+ <Format>image/png</Format>
1674
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Dorf&amp;format=image/png&amp;STYLE=default"/>
1675
+ </LegendURL>
1676
+ </Style>
1677
+ <ScaleHint min="0" max="34.9231993900746" />
1678
+ </Layer>
1679
+ <Layer queryable="1" opaque="0" cascaded="0">
1680
+ <Name>Stadt</Name>
1681
+ <Title>Stadt</Title>
1682
+ <KeywordList>
1683
+ <Keyword>Stadt</Keyword>
1684
+ <Keyword> Orte</Keyword>
1685
+ <Keyword> OSM</Keyword>
1686
+ </KeywordList>
1687
+ <SRS>EPSG:4326</SRS>
1688
+ <SRS>EPSG:31467</SRS>
1689
+ <SRS>EPSG:31466</SRS>
1690
+ <SRS>EPSG:31468</SRS>
1691
+ <SRS>EPSG:31469</SRS>
1692
+ <SRS>EPSG:31492</SRS>
1693
+ <SRS>EPSG:31493</SRS>
1694
+ <SRS>EPSG:31494</SRS>
1695
+ <SRS>EPSG:31495</SRS>
1696
+ <SRS>EPSG:31462</SRS>
1697
+ <SRS>EPSG:31463</SRS>
1698
+ <SRS>EPSG:31464</SRS>
1699
+ <SRS>EPSG:31465</SRS>
1700
+ <SRS>EPSG:25832</SRS>
1701
+ <SRS>EPSG:25833</SRS>
1702
+ <SRS>EPSG:31257</SRS>
1703
+ <SRS>EPSG:31258</SRS>
1704
+ <SRS>EPSG:31259</SRS>
1705
+ <SRS>EPSG:31284</SRS>
1706
+ <SRS>EPSG:31285</SRS>
1707
+ <SRS>EPSG:31286</SRS>
1708
+ <SRS>EPSG:31287</SRS>
1709
+ <SRS>EPSG:28992</SRS>
1710
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1711
+ <BoundingBox SRS="EPSG:4326"
1712
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1713
+ <Style>
1714
+ <Name>default</Name>
1715
+ <Title>default</Title>
1716
+ <LegendURL width="67" height="32">
1717
+ <Format>image/png</Format>
1718
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Stadt&amp;format=image/png&amp;STYLE=default"/>
1719
+ </LegendURL>
1720
+ </Style>
1721
+ <ScaleHint min="0" max="399.12227874371" />
1722
+ </Layer>
1723
+ <Layer queryable="1" opaque="0" cascaded="0">
1724
+ <Name>Grossstadt</Name>
1725
+ <Title>Grossstadt</Title>
1726
+ <KeywordList>
1727
+ <Keyword>Stadt</Keyword>
1728
+ <Keyword> Orte</Keyword>
1729
+ <Keyword> OSM</Keyword>
1730
+ </KeywordList>
1731
+ <SRS>EPSG:4326</SRS>
1732
+ <SRS>EPSG:31467</SRS>
1733
+ <SRS>EPSG:31466</SRS>
1734
+ <SRS>EPSG:31468</SRS>
1735
+ <SRS>EPSG:31469</SRS>
1736
+ <SRS>EPSG:31492</SRS>
1737
+ <SRS>EPSG:31493</SRS>
1738
+ <SRS>EPSG:31494</SRS>
1739
+ <SRS>EPSG:31495</SRS>
1740
+ <SRS>EPSG:31462</SRS>
1741
+ <SRS>EPSG:31463</SRS>
1742
+ <SRS>EPSG:31464</SRS>
1743
+ <SRS>EPSG:31465</SRS>
1744
+ <SRS>EPSG:25832</SRS>
1745
+ <SRS>EPSG:25833</SRS>
1746
+ <SRS>EPSG:31257</SRS>
1747
+ <SRS>EPSG:31258</SRS>
1748
+ <SRS>EPSG:31259</SRS>
1749
+ <SRS>EPSG:31284</SRS>
1750
+ <SRS>EPSG:31285</SRS>
1751
+ <SRS>EPSG:31286</SRS>
1752
+ <SRS>EPSG:31287</SRS>
1753
+ <SRS>EPSG:28992</SRS>
1754
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1755
+ <BoundingBox SRS="EPSG:4326"
1756
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1757
+ <Style>
1758
+ <Name>default</Name>
1759
+ <Title>default</Title>
1760
+ <LegendURL width="94" height="59">
1761
+ <Format>image/png</Format>
1762
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Grossstadt&amp;format=image/png&amp;STYLE=default"/>
1763
+ </LegendURL>
1764
+ </Style>
1765
+ <ScaleHint min="0" max="7483.54272644456" />
1766
+ </Layer>
1767
+ <Layer queryable="0" opaque="0" cascaded="0">
1768
+ <Name>Bahn</Name>
1769
+ <Title>Bahn</Title>
1770
+ <KeywordList>
1771
+ <Keyword>Bahn</Keyword>
1772
+ <Keyword> Zug</Keyword>
1773
+ <Keyword> OSM</Keyword>
1774
+ </KeywordList>
1775
+ <SRS>EPSG:4326</SRS>
1776
+ <SRS>EPSG:31467</SRS>
1777
+ <SRS>EPSG:31466</SRS>
1778
+ <SRS>EPSG:31468</SRS>
1779
+ <SRS>EPSG:31469</SRS>
1780
+ <SRS>EPSG:31492</SRS>
1781
+ <SRS>EPSG:31493</SRS>
1782
+ <SRS>EPSG:31494</SRS>
1783
+ <SRS>EPSG:31495</SRS>
1784
+ <SRS>EPSG:31462</SRS>
1785
+ <SRS>EPSG:31463</SRS>
1786
+ <SRS>EPSG:31464</SRS>
1787
+ <SRS>EPSG:31465</SRS>
1788
+ <SRS>EPSG:25832</SRS>
1789
+ <SRS>EPSG:25833</SRS>
1790
+ <SRS>EPSG:31257</SRS>
1791
+ <SRS>EPSG:31258</SRS>
1792
+ <SRS>EPSG:31259</SRS>
1793
+ <SRS>EPSG:31284</SRS>
1794
+ <SRS>EPSG:31285</SRS>
1795
+ <SRS>EPSG:31286</SRS>
1796
+ <SRS>EPSG:31287</SRS>
1797
+ <SRS>EPSG:28992</SRS>
1798
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1799
+ <BoundingBox SRS="EPSG:4326"
1800
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1801
+ <Style>
1802
+ <Name>default</Name>
1803
+ <Title>default</Title>
1804
+ <LegendURL width="67" height="32">
1805
+ <Format>image/png</Format>
1806
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Bahn&amp;format=image/png&amp;STYLE=default"/>
1807
+ </LegendURL>
1808
+ </Style>
1809
+ <ScaleHint min="0" max="446.518049344525" />
1810
+ </Layer>
1811
+ <Layer queryable="0" opaque="0" cascaded="0">
1812
+ <Name>Bahnhof</Name>
1813
+ <Title>Bahnhof</Title>
1814
+ <KeywordList>
1815
+ <Keyword>POI</Keyword>
1816
+ <Keyword> Bahnhof</Keyword>
1817
+ <Keyword> OSM</Keyword>
1818
+ </KeywordList>
1819
+ <SRS>EPSG:4326</SRS>
1820
+ <SRS>EPSG:31467</SRS>
1821
+ <SRS>EPSG:31466</SRS>
1822
+ <SRS>EPSG:31468</SRS>
1823
+ <SRS>EPSG:31469</SRS>
1824
+ <SRS>EPSG:31492</SRS>
1825
+ <SRS>EPSG:31493</SRS>
1826
+ <SRS>EPSG:31494</SRS>
1827
+ <SRS>EPSG:31495</SRS>
1828
+ <SRS>EPSG:31462</SRS>
1829
+ <SRS>EPSG:31463</SRS>
1830
+ <SRS>EPSG:31464</SRS>
1831
+ <SRS>EPSG:31465</SRS>
1832
+ <SRS>EPSG:25832</SRS>
1833
+ <SRS>EPSG:25833</SRS>
1834
+ <SRS>EPSG:31257</SRS>
1835
+ <SRS>EPSG:31258</SRS>
1836
+ <SRS>EPSG:31259</SRS>
1837
+ <SRS>EPSG:31284</SRS>
1838
+ <SRS>EPSG:31285</SRS>
1839
+ <SRS>EPSG:31286</SRS>
1840
+ <SRS>EPSG:31287</SRS>
1841
+ <SRS>EPSG:28992</SRS>
1842
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1843
+ <BoundingBox SRS="EPSG:4326"
1844
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1845
+ <Style>
1846
+ <Name>default</Name>
1847
+ <Title>default</Title>
1848
+ <LegendURL width="81" height="59">
1849
+ <Format>image/png</Format>
1850
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Bahnhof&amp;format=image/png&amp;STYLE=default"/>
1851
+ </LegendURL>
1852
+ </Style>
1853
+ <ScaleHint min="0" max="49.8902848429637" />
1854
+ </Layer>
1855
+ <Layer queryable="0" opaque="0" cascaded="0">
1856
+ <Name>Airport</Name>
1857
+ <Title>Flughafen</Title>
1858
+ <KeywordList>
1859
+ <Keyword>POI</Keyword>
1860
+ <Keyword> Flughafen</Keyword>
1861
+ <Keyword> OSM</Keyword>
1862
+ </KeywordList>
1863
+ <SRS>EPSG:4326</SRS>
1864
+ <SRS>EPSG:31467</SRS>
1865
+ <SRS>EPSG:31466</SRS>
1866
+ <SRS>EPSG:31468</SRS>
1867
+ <SRS>EPSG:31469</SRS>
1868
+ <SRS>EPSG:31492</SRS>
1869
+ <SRS>EPSG:31493</SRS>
1870
+ <SRS>EPSG:31494</SRS>
1871
+ <SRS>EPSG:31495</SRS>
1872
+ <SRS>EPSG:31462</SRS>
1873
+ <SRS>EPSG:31463</SRS>
1874
+ <SRS>EPSG:31464</SRS>
1875
+ <SRS>EPSG:31465</SRS>
1876
+ <SRS>EPSG:25832</SRS>
1877
+ <SRS>EPSG:25833</SRS>
1878
+ <SRS>EPSG:31257</SRS>
1879
+ <SRS>EPSG:31258</SRS>
1880
+ <SRS>EPSG:31259</SRS>
1881
+ <SRS>EPSG:31284</SRS>
1882
+ <SRS>EPSG:31285</SRS>
1883
+ <SRS>EPSG:31286</SRS>
1884
+ <SRS>EPSG:31287</SRS>
1885
+ <SRS>EPSG:28992</SRS>
1886
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1887
+ <BoundingBox SRS="EPSG:4326"
1888
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1889
+ <Style>
1890
+ <Name>default</Name>
1891
+ <Title>default</Title>
1892
+ <LegendURL width="89" height="32">
1893
+ <Format>image/png</Format>
1894
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Airport&amp;format=image/png&amp;STYLE=default"/>
1895
+ </LegendURL>
1896
+ </Style>
1897
+ <ScaleHint min="0" max="49.8902848429637" />
1898
+ </Layer>
1899
+ <Layer queryable="0" opaque="0" cascaded="0">
1900
+ <Name>Kirchengelaende</Name>
1901
+ <Title>Kirchengelände</Title>
1902
+ <KeywordList>
1903
+ <Keyword>Kirche</Keyword>
1904
+ <Keyword> POI</Keyword>
1905
+ <Keyword> OSM</Keyword>
1906
+ </KeywordList>
1907
+ <SRS>EPSG:4326</SRS>
1908
+ <SRS>EPSG:31467</SRS>
1909
+ <SRS>EPSG:31466</SRS>
1910
+ <SRS>EPSG:31468</SRS>
1911
+ <SRS>EPSG:31469</SRS>
1912
+ <SRS>EPSG:31492</SRS>
1913
+ <SRS>EPSG:31493</SRS>
1914
+ <SRS>EPSG:31494</SRS>
1915
+ <SRS>EPSG:31495</SRS>
1916
+ <SRS>EPSG:31462</SRS>
1917
+ <SRS>EPSG:31463</SRS>
1918
+ <SRS>EPSG:31464</SRS>
1919
+ <SRS>EPSG:31465</SRS>
1920
+ <SRS>EPSG:25832</SRS>
1921
+ <SRS>EPSG:25833</SRS>
1922
+ <SRS>EPSG:31257</SRS>
1923
+ <SRS>EPSG:31258</SRS>
1924
+ <SRS>EPSG:31259</SRS>
1925
+ <SRS>EPSG:31284</SRS>
1926
+ <SRS>EPSG:31285</SRS>
1927
+ <SRS>EPSG:31286</SRS>
1928
+ <SRS>EPSG:31287</SRS>
1929
+ <SRS>EPSG:28992</SRS>
1930
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1931
+ <BoundingBox SRS="EPSG:4326"
1932
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1933
+ <Style>
1934
+ <Name>default</Name>
1935
+ <Title>default</Title>
1936
+ <LegendURL width="119" height="32">
1937
+ <Format>image/png</Format>
1938
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Kirchengelaende&amp;format=image/png&amp;STYLE=default"/>
1939
+ </LegendURL>
1940
+ </Style>
1941
+ <ScaleHint min="0" max="9.97805696859274" />
1942
+ </Layer>
1943
+ <Layer queryable="0" opaque="0" cascaded="0">
1944
+ <Name>Friedhof</Name>
1945
+ <Title>Friedhof</Title>
1946
+ <KeywordList>
1947
+ <Keyword>Friedhof</Keyword>
1948
+ <Keyword> Land</Keyword>
1949
+ <Keyword> OSM</Keyword>
1950
+ </KeywordList>
1951
+ <SRS>EPSG:4326</SRS>
1952
+ <SRS>EPSG:31467</SRS>
1953
+ <SRS>EPSG:31466</SRS>
1954
+ <SRS>EPSG:31468</SRS>
1955
+ <SRS>EPSG:31469</SRS>
1956
+ <SRS>EPSG:31492</SRS>
1957
+ <SRS>EPSG:31493</SRS>
1958
+ <SRS>EPSG:31494</SRS>
1959
+ <SRS>EPSG:31495</SRS>
1960
+ <SRS>EPSG:31462</SRS>
1961
+ <SRS>EPSG:31463</SRS>
1962
+ <SRS>EPSG:31464</SRS>
1963
+ <SRS>EPSG:31465</SRS>
1964
+ <SRS>EPSG:25832</SRS>
1965
+ <SRS>EPSG:25833</SRS>
1966
+ <SRS>EPSG:31257</SRS>
1967
+ <SRS>EPSG:31258</SRS>
1968
+ <SRS>EPSG:31259</SRS>
1969
+ <SRS>EPSG:31284</SRS>
1970
+ <SRS>EPSG:31285</SRS>
1971
+ <SRS>EPSG:31286</SRS>
1972
+ <SRS>EPSG:31287</SRS>
1973
+ <SRS>EPSG:28992</SRS>
1974
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1975
+ <BoundingBox SRS="EPSG:4326"
1976
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
1977
+ <Style>
1978
+ <Name>default</Name>
1979
+ <Title>default</Title>
1980
+ <LegendURL width="81" height="59">
1981
+ <Format>image/png</Format>
1982
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Friedhof&amp;format=image/png&amp;STYLE=default"/>
1983
+ </LegendURL>
1984
+ </Style>
1985
+ <ScaleHint min="0" max="19.9561139371855" />
1986
+ </Layer>
1987
+ <Layer queryable="0" opaque="0" cascaded="0">
1988
+ <Name>Kirche</Name>
1989
+ <Title>Kirche</Title>
1990
+ <KeywordList>
1991
+ <Keyword>Kirche</Keyword>
1992
+ <Keyword> POI</Keyword>
1993
+ <Keyword> OSM</Keyword>
1994
+ </KeywordList>
1995
+ <SRS>EPSG:4326</SRS>
1996
+ <SRS>EPSG:31467</SRS>
1997
+ <SRS>EPSG:31466</SRS>
1998
+ <SRS>EPSG:31468</SRS>
1999
+ <SRS>EPSG:31469</SRS>
2000
+ <SRS>EPSG:31492</SRS>
2001
+ <SRS>EPSG:31493</SRS>
2002
+ <SRS>EPSG:31494</SRS>
2003
+ <SRS>EPSG:31495</SRS>
2004
+ <SRS>EPSG:31462</SRS>
2005
+ <SRS>EPSG:31463</SRS>
2006
+ <SRS>EPSG:31464</SRS>
2007
+ <SRS>EPSG:31465</SRS>
2008
+ <SRS>EPSG:25832</SRS>
2009
+ <SRS>EPSG:25833</SRS>
2010
+ <SRS>EPSG:31257</SRS>
2011
+ <SRS>EPSG:31258</SRS>
2012
+ <SRS>EPSG:31259</SRS>
2013
+ <SRS>EPSG:31284</SRS>
2014
+ <SRS>EPSG:31285</SRS>
2015
+ <SRS>EPSG:31286</SRS>
2016
+ <SRS>EPSG:31287</SRS>
2017
+ <SRS>EPSG:28992</SRS>
2018
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
2019
+ <BoundingBox SRS="EPSG:4326"
2020
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
2021
+ <Style>
2022
+ <Name>default</Name>
2023
+ <Title>default</Title>
2024
+ <LegendURL width="72" height="32">
2025
+ <Format>image/png</Format>
2026
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Kirche&amp;format=image/png&amp;STYLE=default"/>
2027
+ </LegendURL>
2028
+ </Style>
2029
+ <ScaleHint min="0" max="9.97805696859274" />
2030
+ </Layer>
2031
+ <Layer queryable="0" opaque="0" cascaded="0">
2032
+ <Name>Graeber</Name>
2033
+ <Title>Gräber</Title>
2034
+ <KeywordList>
2035
+ <Keyword>Friedhof</Keyword>
2036
+ <Keyword>Gräber</Keyword>
2037
+ <Keyword> Land</Keyword>
2038
+ <Keyword> OSM</Keyword>
2039
+ </KeywordList>
2040
+ <SRS>EPSG:4326</SRS>
2041
+ <SRS>EPSG:31467</SRS>
2042
+ <SRS>EPSG:31466</SRS>
2043
+ <SRS>EPSG:31468</SRS>
2044
+ <SRS>EPSG:31469</SRS>
2045
+ <SRS>EPSG:31492</SRS>
2046
+ <SRS>EPSG:31493</SRS>
2047
+ <SRS>EPSG:31494</SRS>
2048
+ <SRS>EPSG:31495</SRS>
2049
+ <SRS>EPSG:31462</SRS>
2050
+ <SRS>EPSG:31463</SRS>
2051
+ <SRS>EPSG:31464</SRS>
2052
+ <SRS>EPSG:31465</SRS>
2053
+ <SRS>EPSG:25832</SRS>
2054
+ <SRS>EPSG:25833</SRS>
2055
+ <SRS>EPSG:31257</SRS>
2056
+ <SRS>EPSG:31258</SRS>
2057
+ <SRS>EPSG:31259</SRS>
2058
+ <SRS>EPSG:31284</SRS>
2059
+ <SRS>EPSG:31285</SRS>
2060
+ <SRS>EPSG:31286</SRS>
2061
+ <SRS>EPSG:31287</SRS>
2062
+ <SRS>EPSG:28992</SRS>
2063
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
2064
+ <BoundingBox SRS="EPSG:4326"
2065
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
2066
+ <Style>
2067
+ <Name>default</Name>
2068
+ <Title>default</Title>
2069
+ <LegendURL width="75" height="59">
2070
+ <Format>image/png</Format>
2071
+ <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://example.org/service?SERVICE=WMS&amp;version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=Graeber&amp;format=image/png&amp;STYLE=default"/>
2072
+ </LegendURL>
2073
+ </Style>
2074
+ <ScaleHint min="0" max="9.97805696859274" />
2075
+ </Layer>
2076
+ <!-- WARNING: This layer has its status set to DEFAULT and will always be displayed when doing a GetMap request even if it is not requested by the client. This is not in line with the expected behavior of a WMS server. Using status ON or OFF is recommended. -->
2077
+ <Layer queryable="0" opaque="0" cascaded="0">
2078
+ <Name>copyright</Name>
2079
+ <Title>Copyright</Title>
2080
+ <KeywordList>
2081
+ <Keyword>Copyright</Keyword>
2082
+ <Keyword> Lizenz</Keyword>
2083
+ <Keyword> OSM</Keyword>
2084
+ </KeywordList>
2085
+ <SRS>EPSG:4326</SRS>
2086
+ <SRS>EPSG:31467</SRS>
2087
+ <SRS>EPSG:31466</SRS>
2088
+ <SRS>EPSG:31468</SRS>
2089
+ <SRS>EPSG:31469</SRS>
2090
+ <SRS>EPSG:31492</SRS>
2091
+ <SRS>EPSG:31493</SRS>
2092
+ <SRS>EPSG:31494</SRS>
2093
+ <SRS>EPSG:31495</SRS>
2094
+ <SRS>EPSG:31462</SRS>
2095
+ <SRS>EPSG:31463</SRS>
2096
+ <SRS>EPSG:31464</SRS>
2097
+ <SRS>EPSG:31465</SRS>
2098
+ <SRS>EPSG:25832</SRS>
2099
+ <SRS>EPSG:25833</SRS>
2100
+ <SRS>EPSG:31257</SRS>
2101
+ <SRS>EPSG:31258</SRS>
2102
+ <SRS>EPSG:31259</SRS>
2103
+ <SRS>EPSG:31284</SRS>
2104
+ <SRS>EPSG:31285</SRS>
2105
+ <SRS>EPSG:31286</SRS>
2106
+ <SRS>EPSG:31287</SRS>
2107
+ <SRS>EPSG:28992</SRS>
2108
+ <LatLonBoundingBox minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
2109
+ <BoundingBox SRS="EPSG:4326"
2110
+ minx="-10.4" miny="35.7" maxx="43" maxy="74.1" />
2111
+ </Layer>
2112
+ </Layer>
2113
+ </Capability>
2114
+ </WMT_MS_Capabilities>