[mapguide-commits] r5764 - in trunk/Tools/Maestro: MaestroAPITests MaestroAPITests/UserTestData OSGeo.MapGuide.MaestroAPI/Mapping OSGeo.MapGuide.MaestroAPI/Schema OSGeo.MapGuide.MaestroAPI/Services OSGeo.MapGuide.MaestroAPI.Http OSGeo.MapGuide.MaestroAPI.Native

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon May 9 11:15:01 EDT 2011


Author: jng
Date: 2011-05-09 08:15:01 -0700 (Mon, 09 May 2011)
New Revision: 5764

Added:
   trunk/Tools/Maestro/MaestroAPITests/UserTestData/wms_config_example2.xml
Modified:
   trunk/Tools/Maestro/MaestroAPITests/ConfigurationTests.cs
   trunk/Tools/Maestro/MaestroAPITests/MaestroAPITests.csproj
   trunk/Tools/Maestro/MaestroAPITests/RuntimeMapTests.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/HttpServerConnection.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/RequestBuilder.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Native/LocalNativeConnection.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMap.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMapLayer.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Schema/ClassDefinition.cs
   trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Services/IMappingService.cs
Log:
This submission contains the following changes:

 * #1680: Fix exception on reading a WMS configuration document due to improperly constructed XPath queries. Add the ticket config xml to the unit test suite for testing loading/saving configuration documents.
 * #1681: Re-model the layer manpulation APIs of RuntimeMap to behave more like a collection. Adding runtime layers is now a process of CreateLayer(), set properties then AddLayer() or InsertLayer() at the specified index.
 * #1683: Also add a RenderMapLegend() API to IMappingService with http and local implementations. Add a new unit test to verify this API and the draw order layer manipulation of the RuntimeMap


Modified: trunk/Tools/Maestro/MaestroAPITests/ConfigurationTests.cs
===================================================================
--- trunk/Tools/Maestro/MaestroAPITests/ConfigurationTests.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/MaestroAPITests/ConfigurationTests.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -146,6 +146,9 @@
 
             conf = ConfigurationDocument.LoadXml(File.ReadAllText("UserTestData\\wms_config_example1.xml")) as WmsConfigurationDocument;
             Assert.NotNull(conf);
+
+            conf = ConfigurationDocument.LoadXml(File.ReadAllText("UserTestData\\wms_config_example2.xml")) as WmsConfigurationDocument;
+            Assert.NotNull(conf);
         }
 
         [Test]

Modified: trunk/Tools/Maestro/MaestroAPITests/MaestroAPITests.csproj
===================================================================
--- trunk/Tools/Maestro/MaestroAPITests/MaestroAPITests.csproj	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/MaestroAPITests/MaestroAPITests.csproj	2011-05-09 15:15:01 UTC (rev 5764)
@@ -594,6 +594,9 @@
     <Content Include="UserTestData\wms_config_example1.xml">
       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     </Content>
+    <Content Include="UserTestData\wms_config_example2.xml">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </Content>
   </ItemGroup>
   <ItemGroup>
     <BootstrapperPackage Include="Microsoft.Net.Client.3.5">

Modified: trunk/Tools/Maestro/MaestroAPITests/RuntimeMapTests.cs
===================================================================
--- trunk/Tools/Maestro/MaestroAPITests/RuntimeMapTests.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/MaestroAPITests/RuntimeMapTests.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -43,6 +43,7 @@
     using OSGeo.MapGuide.ObjectModels.LoadProcedure;
     using System.Diagnostics;
     using OSGeo.MapGuide.MaestroAPI.CoordinateSystem;
+    using System.Drawing;
 
     [SetUpFixture]
     public class TestBootstrap
@@ -360,6 +361,56 @@
 
         #region render helpers
 
+        private static void RenderLegendAndVerifyConvenience(RuntimeMap map, int width, int height, string fileName, string format)
+        {
+            using (var stream = map.RenderMapLegend(width, height, Color.White, format))
+            {
+                using (var ms = new MemoryStream())
+                using (var ms2 = new MemoryStream())
+                using (var fs = new FileStream(fileName, FileMode.OpenOrCreate))
+                {
+                    Utility.CopyStream(stream, ms);
+                    Utility.CopyStream(ms, ms2);
+                    Utility.CopyStream(ms, fs);
+                    //See if System.Drawing.Image accepts this
+                    try
+                    {
+                        using (var img = System.Drawing.Image.FromStream(ms))
+                        { }
+                    }
+                    catch (Exception ex)
+                    {
+                        Assert.Fail(ex.Message);
+                    }
+                }
+            }
+        }
+
+        private static void RenderLegendAndVerify(IMappingService mapSvc, RuntimeMap map, int width, int height, string fileName, string format)
+        {
+            using (var stream = mapSvc.RenderMapLegend(map, width, height, Color.White, format))
+            {
+                using (var ms = new MemoryStream())
+                using (var ms2 = new MemoryStream())
+                using (var fs = new FileStream(fileName, FileMode.OpenOrCreate))
+                {
+                    Utility.CopyStream(stream, ms);
+                    Utility.CopyStream(ms, ms2);
+                    Utility.CopyStream(ms, fs);
+                    //See if System.Drawing.Image accepts this
+                    try
+                    {
+                        using (var img = System.Drawing.Image.FromStream(ms))
+                        { }
+                    }
+                    catch (Exception ex)
+                    {
+                        Assert.Fail(ex.Message);
+                    }
+                }
+            }
+        }
+
         private static void RenderDynamicOverlayAndVerifyConvenience(RuntimeMap map, string fileName, string format)
         {
             using (var stream = map.RenderDynamicOverlay(format, true))
@@ -529,6 +580,94 @@
             RenderDynamicOverlayAndVerifyConvenience(map, "TestRenderOverlay12kConvenience_ParcelsBackOn.png", "PNG");
         }
 
+        public virtual void TestMapManipulation()
+        {
+            //Render a map of sheboygan at 12k
+            //Verify that layer removal and addition produces the expected rendered result
+
+            var resSvc = _conn.ResourceService;
+            var mapSvc = _conn.GetService((int)ServiceType.Mapping) as IMappingService;
+            Assert.NotNull(mapSvc);
+
+            var mdf = resSvc.GetResource("Library://UnitTests/Maps/Sheboygan.MapDefinition") as IMapDefinition;
+            Assert.NotNull(mdf);
+
+            //FIXME: We have a problem. Can we calculate this value without MgCoordinateSystem and just using the WKT?
+            //The answer to this will answer whether we can actually support the Rendering Service API over http 
+            //using pure client-side runtime maps 
+            //
+            //The hard-coded value here was the output of MgCoordinateSystem.ConvertCoordinateSystemUnitsToMeters(1.0)
+            //for this particular map.
+            double metersPerUnit = 111319.490793274;
+            var cs = CoordinateSystemBase.Create(mdf.CoordinateSystem);
+            metersPerUnit = cs.MetersPerUnitX;
+            Trace.TraceInformation("Using MPU of: {0}", metersPerUnit);
+
+            var mid = "Session:" + _conn.SessionID + "//TestMapManipulation.Map";
+            var map = mapSvc.CreateMap(mid, mdf, metersPerUnit);
+            map.ViewScale = 12000;
+            map.DisplayWidth = 1024;
+            map.DisplayHeight = 1024;
+            map.DisplayDpi = 96;
+
+            //Doesn't exist yet because save isn't called
+            Assert.IsTrue(!resSvc.ResourceExists(mid));
+            map.Save();
+
+            //Render default
+            RenderAndVerify(mapSvc, map, "TestMapManipulation12kWithRail.png", "PNG");
+            RenderAndVerifyConvenience(map, "TestMapManipulation12kConvenienceWithRail.png", "PNG");
+            RenderDynamicOverlayAndVerify(mapSvc, map, "TestMapManipulationOverlay12kWithRail.png", "PNG");
+            RenderDynamicOverlayAndVerifyConvenience(map, "TestMapManipulationOverlay12kConvenienceWithRail.png", "PNG");
+
+            RenderLegendAndVerify(mapSvc, map, 200, 600, "TestLegend12kWithRail.png", "PNG");
+            RenderLegendAndVerifyConvenience(map, 200, 600, "TestLegend12kConvenienceWithRail.png", "PNG");
+
+            //Remove parcels
+            var rail = map.GetLayerByName("Rail");
+            Assert.NotNull(rail);
+            map.RemoveLayer(rail);
+            map.Save();
+
+            //Render again
+            RenderAndVerify(mapSvc, map, "TestMapManipulation12k_RailRemoved.png", "PNG");
+            RenderAndVerifyConvenience(map, "TestMapManipulation12kConvenience_RailRemoved.png", "PNG");
+            RenderDynamicOverlayAndVerify(mapSvc, map, "TestMapManipulationOverlay12k_RailRemoved.png", "PNG");
+            RenderDynamicOverlayAndVerifyConvenience(map, "TestMapManipulationOverlay12kConvenience_RailRemoved.png", "PNG");
+
+            RenderLegendAndVerify(mapSvc, map, 200, 600, "TestLegend12k_RailRemoved.png", "PNG");
+            RenderLegendAndVerifyConvenience(map, 200, 600, "TestLegend12kConvenience_RailRemoved.png", "PNG");
+
+            //Add rail again
+            rail = null;
+            rail = map.GetLayerByName("Rail");
+            Assert.Null(rail);
+
+            rail = map.CreateLayer("Library://UnitTests/Layers/Rail.LayerDefinition", null);
+            rail.LegendLabel = "Rail";
+            rail.Visible = true;
+            rail.ShowInLegend = true;
+            rail.ExpandInLegend = true;
+
+            map.InsertLayer(0, rail);
+
+            //map.AddLayer(rail);
+            //Set draw order above parcels
+            //var parcels = map.GetLayerByName("Parcels");
+            //rail.SetDrawOrder(parcels.DisplayOrder - 0.000001);
+
+            map.Save();
+
+            //Render again. Rail should be above parcels
+            RenderAndVerify(mapSvc, map, "TestMapManipulation12k_RailReAdded.png", "PNG");
+            RenderAndVerifyConvenience(map, "TestMapManipulation12kConvenience_RailReAdded.png", "PNG");
+            RenderDynamicOverlayAndVerify(mapSvc, map, "TestMapManipulationOverlay12k_RailReAdded.png", "PNG");
+            RenderDynamicOverlayAndVerifyConvenience(map, "TestMapManipulationOverlay12kConvenience_RailReAdded.png", "PNG");
+
+            RenderLegendAndVerify(mapSvc, map, 200, 600, "TestLegend12k_RailReAdded.png", "PNG");
+            RenderLegendAndVerifyConvenience(map, 200, 600, "TestLegend12kConvenience_RailReAdded.png", "PNG");
+        }
+
         public virtual void TestResourceEvents()
         {
             bool deleteCalled = false;
@@ -615,7 +754,7 @@
         }
     }
 
-    [TestFixture(Ignore = true)]
+    [TestFixture(Ignore = false)]
     public class HttpRuntimeMapTests : RuntimeMapTests
     {
         protected override IServerConnection CreateTestConnection()
@@ -657,6 +796,12 @@
         }
 
         [Test]
+        public override void TestMapManipulation()
+        {
+            base.TestMapManipulation();
+        }
+
+        [Test]
         public override void TestLargeMapCreatePerformance()
         {
             base.TestLargeMapCreatePerformance();
@@ -705,6 +850,12 @@
         }
 
         [Test]
+        public override void TestMapManipulation()
+        {
+            base.TestMapManipulation();
+        }
+
+        [Test]
         public override void TestLargeMapCreatePerformance()
         {
             base.TestLargeMapCreatePerformance();

Added: trunk/Tools/Maestro/MaestroAPITests/UserTestData/wms_config_example2.xml
===================================================================
--- trunk/Tools/Maestro/MaestroAPITests/UserTestData/wms_config_example2.xml	                        (rev 0)
+++ trunk/Tools/Maestro/MaestroAPITests/UserTestData/wms_config_example2.xml	2011-05-09 15:15:01 UTC (rev 5764)
@@ -0,0 +1,13152 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- 
+WMS configuration document for 
+
+http://trac.osgeo.org/mapguide/ticket/1680
+ -->
+<fdo:DataStore xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml" xmlns:fdo="http://fdo.osgeo.org/schemas" xmlns:fds="http://fdo.osgeo.org/schemas/fds">
+    <gml:DerivedCRS id="EPSG:21781">
+        <gml:metaDataProperty>
+            <gml:GenericMetaData>
+                <fdo:XYTolerance>0.001</fdo:XYTolerance>
+                <fdo:ZTolerance>0.001</fdo:ZTolerance>
+            </gml:GenericMetaData>
+        </gml:metaDataProperty>
+        <gml:remarks></gml:remarks>
+        <gml:srsName>EPSG:21781</gml:srsName>
+        <gml:validArea>
+            <gml:boundingBox>
+                <gml:pos>450000 50000</gml:pos>
+                <gml:pos>860000 320000</gml:pos>
+            </gml:boundingBox>
+        </gml:validArea>
+        <gml:baseCRS>
+            <fdo:WKTCRS gml:id="EPSG:21781">
+                <gml:srsName>EPSG:21781</gml:srsName>
+                <fdo:WKT>PROJCS["CH1903/GSB.LV03-M",GEOGCS["CH1903/GSB.LL",DATUM["CH1903/GSB",SPHEROID["BESSEL",6377397.155,299.15281535]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Swiss_Oblique_Cylindrical"],PARAMETER["false_easting",600000.000],PARAMETER["false_northing",200000.000],PARAMETER["latitude_of_origin",46.95240555555556],PARAMETER["central_meridian",7.43958333333333],UNIT["Meter",1.00000000000000]]</fdo:WKT>
+            </fdo:WKTCRS>
+        </gml:baseCRS>
+        <gml:definedByConversion xlink:href="http://fdo.osgeo.org/coord_conversions#identity" />
+        <gml:derivedCRSType codeSpace="http://fdo.osgeo.org/crs_types">geographic</gml:derivedCRSType>
+        <gml:usesCS xlink:href="http://fdo.osgeo.org/cs#default_cartesian" />
+    </gml:DerivedCRS>
+    <gml:DerivedCRS id="EPSG:4326">
+        <gml:metaDataProperty>
+            <gml:GenericMetaData>
+                <fdo:XYTolerance>0.001</fdo:XYTolerance>
+                <fdo:ZTolerance>0.001</fdo:ZTolerance>
+            </gml:GenericMetaData>
+        </gml:metaDataProperty>
+        <gml:remarks></gml:remarks>
+        <gml:srsName>EPSG:4326</gml:srsName>
+        <gml:validArea>
+            <gml:boundingBox>
+                <gml:pos>5.4282045449999998 45.552104145999998</gml:pos>
+                <gml:pos>15.581093964000001 55.025098643</gml:pos>
+            </gml:boundingBox>
+        </gml:validArea>
+        <gml:baseCRS>
+            <fdo:WKTCRS gml:id="EPSG:4326">
+                <gml:srsName>EPSG:4326</gml:srsName>
+                <fdo:WKT>GEOGCS["LL84",DATUM["WGS84",SPHEROID["WGS84",6378137.000,298.25722293]],PRIMEM["Greenwich",0],UNIT["Degree",0.01745329251994]]</fdo:WKT>
+            </fdo:WKTCRS>
+        </gml:baseCRS>
+        <gml:definedByConversion xlink:href="http://fdo.osgeo.org/coord_conversions#identity" />
+        <gml:derivedCRSType codeSpace="http://fdo.osgeo.org/crs_types">geographic</gml:derivedCRSType>
+        <gml:usesCS xlink:href="http://fdo.osgeo.org/cs#default_cartesian" />
+    </gml:DerivedCRS>
+    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://fdo.osgeo.org/schemas/feature/WMS_Schema" xmlns:fdo="http://fdo.osgeo.org/schemas" xmlns:WMS_Schema="http://fdo.osgeo.org/schemas/feature/WMS_Schema" elementFormDefault="qualified" attributeFormDefault="unqualified">
+        <xs:element name="GeoTask Internet Map Server" type="WMS_Schema:GeoTask Internet Map ServerType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="GeoTask Internet Map ServerKey">
+                <xs:selector xpath=".//GeoTask Internet Map Server" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="GeoTask Internet Map ServerType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_2" type="WMS_Schema:map_2Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_2Key">
+                <xs:selector xpath=".//map_2" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_2Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_3" type="WMS_Schema:map_3Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_3Key">
+                <xs:selector xpath=".//map_3" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_3Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_5" type="WMS_Schema:map_5Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_5Key">
+                <xs:selector xpath=".//map_5" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_5Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_6" type="WMS_Schema:map_6Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_6Key">
+                <xs:selector xpath=".//map_6" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_6Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="r) Politische Grenzen" type="WMS_Schema:r) Politische GrenzenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="r) Politische GrenzenKey">
+                <xs:selector xpath=".//r) Politische Grenzen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="r) Politische GrenzenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_117" type="WMS_Schema:map_117Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_117Key">
+                <xs:selector xpath=".//map_117" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_117Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_84" type="WMS_Schema:layer_84Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_84Key">
+                <xs:selector xpath=".//layer_84" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_84Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1228" type="WMS_Schema:layer_1228Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1228Key">
+                <xs:selector xpath=".//layer_1228" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1228Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_46" type="WMS_Schema:layer_46Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_46Key">
+                <xs:selector xpath=".//layer_46" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_46Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_47" type="WMS_Schema:layer_47Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_47Key">
+                <xs:selector xpath=".//layer_47" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_47Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1868" type="WMS_Schema:layer_1868Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1868Key">
+                <xs:selector xpath=".//layer_1868" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1868Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="e) Proj  Gebäude+Grundstücke" type="WMS_Schema:e) Proj  Gebäude+GrundstückeType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="e) Proj  Gebäude+GrundstückeKey">
+                <xs:selector xpath=".//e) Proj  Gebäude+Grundstücke" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="e) Proj  Gebäude+GrundstückeType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_86" type="WMS_Schema:map_86Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_86Key">
+                <xs:selector xpath=".//map_86" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_86Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_276" type="WMS_Schema:map_276Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_276Key">
+                <xs:selector xpath=".//map_276" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_276Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="a) Überl  Elem Nutzungsplan" type="WMS_Schema:a) Überl  Elem NutzungsplanType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="a) Überl  Elem NutzungsplanKey">
+                <xs:selector xpath=".//a) Überl  Elem Nutzungsplan" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="a) Überl  Elem NutzungsplanType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_82" type="WMS_Schema:map_82Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_82Key">
+                <xs:selector xpath=".//map_82" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_82Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_83" type="WMS_Schema:map_83Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_83Key">
+                <xs:selector xpath=".//map_83" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_83Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_84" type="WMS_Schema:map_84Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_84Key">
+                <xs:selector xpath=".//map_84" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_84Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_265" type="WMS_Schema:map_265Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_265Key">
+                <xs:selector xpath=".//map_265" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_265Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1854" type="WMS_Schema:layer_1854Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1854Key">
+                <xs:selector xpath=".//layer_1854" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1854Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1855" type="WMS_Schema:layer_1855Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1855Key">
+                <xs:selector xpath=".//layer_1855" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1855Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1857" type="WMS_Schema:layer_1857Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1857Key">
+                <xs:selector xpath=".//layer_1857" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1857Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1856" type="WMS_Schema:layer_1856Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1856Key">
+                <xs:selector xpath=".//layer_1856" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1856Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="h) Natur und Landschaft" type="WMS_Schema:h) Natur und LandschaftType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="h) Natur und LandschaftKey">
+                <xs:selector xpath=".//h) Natur und Landschaft" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="h) Natur und LandschaftType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_85" type="WMS_Schema:map_85Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_85Key">
+                <xs:selector xpath=".//map_85" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_85Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_894" type="WMS_Schema:map_894Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_894Key">
+                <xs:selector xpath=".//map_894" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_894Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1566" type="WMS_Schema:layer_1566Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1566Key">
+                <xs:selector xpath=".//layer_1566" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1566Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1571" type="WMS_Schema:layer_1571Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1571Key">
+                <xs:selector xpath=".//layer_1571" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1571Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1746" type="WMS_Schema:layer_1746Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1746Key">
+                <xs:selector xpath=".//layer_1746" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1746Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1122" type="WMS_Schema:layer_1122Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1122Key">
+                <xs:selector xpath=".//layer_1122" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1122Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_20" type="WMS_Schema:map_20Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_20Key">
+                <xs:selector xpath=".//map_20" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_20Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_21" type="WMS_Schema:map_21Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_21Key">
+                <xs:selector xpath=".//map_21" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_21Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="s) Beschriftungen" type="WMS_Schema:s) BeschriftungenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="s) BeschriftungenKey">
+                <xs:selector xpath=".//s) Beschriftungen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="s) BeschriftungenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6684" type="WMS_Schema:layer_6684Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6684Key">
+                <xs:selector xpath=".//layer_6684" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6684Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_709" type="WMS_Schema:layer_709Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_709Key">
+                <xs:selector xpath=".//layer_709" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_709Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_706" type="WMS_Schema:layer_706Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_706Key">
+                <xs:selector xpath=".//layer_706" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_706Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_40" type="WMS_Schema:layer_40Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_40Key">
+                <xs:selector xpath=".//layer_40" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_40Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1642" type="WMS_Schema:layer_1642Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1642Key">
+                <xs:selector xpath=".//layer_1642" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1642Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_708" type="WMS_Schema:layer_708Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_708Key">
+                <xs:selector xpath=".//layer_708" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_708Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_87" type="WMS_Schema:layer_87Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_87Key">
+                <xs:selector xpath=".//layer_87" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_87Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1221" type="WMS_Schema:layer_1221Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1221Key">
+                <xs:selector xpath=".//layer_1221" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1221Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="d) Abstandslinien" type="WMS_Schema:d) AbstandslinienType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="d) AbstandslinienKey">
+                <xs:selector xpath=".//d) Abstandslinien" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="d) AbstandslinienType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_997" type="WMS_Schema:map_997Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_997Key">
+                <xs:selector xpath=".//map_997" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_997Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_998" type="WMS_Schema:map_998Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_998Key">
+                <xs:selector xpath=".//map_998" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_998Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_999" type="WMS_Schema:map_999Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_999Key">
+                <xs:selector xpath=".//map_999" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_999Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_5284" type="WMS_Schema:layer_5284Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_5284Key">
+                <xs:selector xpath=".//layer_5284" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_5284Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6184" type="WMS_Schema:layer_6184Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6184Key">
+                <xs:selector xpath=".//layer_6184" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6184Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_704" type="WMS_Schema:layer_704Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_704Key">
+                <xs:selector xpath=".//layer_704" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_704Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_3483" type="WMS_Schema:layer_3483Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_3483Key">
+                <xs:selector xpath=".//layer_3483" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_3483Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_5184" type="WMS_Schema:layer_5184Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_5184Key">
+                <xs:selector xpath=".//layer_5184" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_5184Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_5784" type="WMS_Schema:layer_5784Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_5784Key">
+                <xs:selector xpath=".//layer_5784" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_5784Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6084" type="WMS_Schema:layer_6084Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6084Key">
+                <xs:selector xpath=".//layer_6084" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6084Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="i) Grundwasser" type="WMS_Schema:i) GrundwasserType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="i) GrundwasserKey">
+                <xs:selector xpath=".//i) Grundwasser" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="i) GrundwasserType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="2) Bohrungen/Messstellen" type="WMS_Schema:2) Bohrungen/MessstellenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="2) Bohrungen/MessstellenKey">
+                <xs:selector xpath=".//2) Bohrungen/Messstellen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="2) Bohrungen/MessstellenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1331" type="WMS_Schema:layer_1331Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1331Key">
+                <xs:selector xpath=".//layer_1331" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1331Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6902" type="WMS_Schema:layer_6902Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6902Key">
+                <xs:selector xpath=".//layer_6902" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6902Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6903" type="WMS_Schema:layer_6903Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6903Key">
+                <xs:selector xpath=".//layer_6903" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6903Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6904" type="WMS_Schema:layer_6904Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6904Key">
+                <xs:selector xpath=".//layer_6904" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6904Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6905" type="WMS_Schema:layer_6905Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6905Key">
+                <xs:selector xpath=".//layer_6905" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6905Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6906" type="WMS_Schema:layer_6906Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6906Key">
+                <xs:selector xpath=".//layer_6906" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6906Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7215" type="WMS_Schema:layer_7215Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7215Key">
+                <xs:selector xpath=".//layer_7215" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7215Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="4) Quellen" type="WMS_Schema:4) QuellenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="4) QuellenKey">
+                <xs:selector xpath=".//4) Quellen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="4) QuellenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_5087" type="WMS_Schema:layer_5087Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_5087Key">
+                <xs:selector xpath=".//layer_5087" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_5087Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_5088" type="WMS_Schema:layer_5088Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_5088Key">
+                <xs:selector xpath=".//layer_5088" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_5088Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6286" type="WMS_Schema:layer_6286Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6286Key">
+                <xs:selector xpath=".//layer_6286" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6286Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="3) Pumpwerke" type="WMS_Schema:3) PumpwerkeType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="3) PumpwerkeKey">
+                <xs:selector xpath=".//3) Pumpwerke" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="3) PumpwerkeType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_5086" type="WMS_Schema:layer_5086Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_5086Key">
+                <xs:selector xpath=".//layer_5086" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_5086Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="1) Grundw zonen/-bereiche" type="WMS_Schema:1) Grundw zonen/-bereicheType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="1) Grundw zonen/-bereicheKey">
+                <xs:selector xpath=".//1) Grundw zonen/-bereiche" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="1) Grundw zonen/-bereicheType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_95" type="WMS_Schema:map_95Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_95Key">
+                <xs:selector xpath=".//map_95" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_95Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1560" type="WMS_Schema:layer_1560Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1560Key">
+                <xs:selector xpath=".//layer_1560" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1560Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="l) Wald" type="WMS_Schema:l) WaldType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="l) WaldKey">
+                <xs:selector xpath=".//l) Wald" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="l) WaldType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_91" type="WMS_Schema:map_91Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_91Key">
+                <xs:selector xpath=".//map_91" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_91Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_92" type="WMS_Schema:map_92Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_92Key">
+                <xs:selector xpath=".//map_92" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_92Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_93" type="WMS_Schema:map_93Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_93Key">
+                <xs:selector xpath=".//map_93" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_93Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="1) Böden Wald" type="WMS_Schema:1) Böden WaldType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="1) Böden WaldKey">
+                <xs:selector xpath=".//1) Böden Wald" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="1) Böden WaldType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1007" type="WMS_Schema:map_1007Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1007Key">
+                <xs:selector xpath=".//map_1007" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1007Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1004" type="WMS_Schema:map_1004Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1004Key">
+                <xs:selector xpath=".//map_1004" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1004Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1005" type="WMS_Schema:map_1005Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1005Key">
+                <xs:selector xpath=".//map_1005" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1005Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1006" type="WMS_Schema:map_1006Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1006Key">
+                <xs:selector xpath=".//map_1006" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1006Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1003" type="WMS_Schema:map_1003Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1003Key">
+                <xs:selector xpath=".//map_1003" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1003Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6785" type="WMS_Schema:layer_6785Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6785Key">
+                <xs:selector xpath=".//layer_6785" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6785Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1249" type="WMS_Schema:layer_1249Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1249Key">
+                <xs:selector xpath=".//layer_1249" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1249Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1248" type="WMS_Schema:layer_1248Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1248Key">
+                <xs:selector xpath=".//layer_1248" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1248Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="k) Boden" type="WMS_Schema:k) BodenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="k) BodenKey">
+                <xs:selector xpath=".//k) Boden" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="k) BodenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Schutzbedürftige Böden" type="WMS_Schema:Schutzbedürftige BödenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Schutzbedürftige BödenKey">
+                <xs:selector xpath=".//Schutzbedürftige Böden" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Schutzbedürftige BödenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1264" type="WMS_Schema:layer_1264Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1264Key">
+                <xs:selector xpath=".//layer_1264" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1264Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1265" type="WMS_Schema:layer_1265Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1265Key">
+                <xs:selector xpath=".//layer_1265" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1265Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1266" type="WMS_Schema:layer_1266Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1266Key">
+                <xs:selector xpath=".//layer_1266" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1266Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1267" type="WMS_Schema:layer_1267Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1267Key">
+                <xs:selector xpath=".//layer_1267" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1267Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1268" type="WMS_Schema:layer_1268Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1268Key">
+                <xs:selector xpath=".//layer_1268" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1268Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1269" type="WMS_Schema:layer_1269Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1269Key">
+                <xs:selector xpath=".//layer_1269" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1269Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1270" type="WMS_Schema:layer_1270Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1270Key">
+                <xs:selector xpath=".//layer_1270" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1270Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Böden Landwirtschaft" type="WMS_Schema:Böden LandwirtschaftType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Böden LandwirtschaftKey">
+                <xs:selector xpath=".//Böden Landwirtschaft" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Böden LandwirtschaftType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_87" type="WMS_Schema:map_87Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_87Key">
+                <xs:selector xpath=".//map_87" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_87Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_88" type="WMS_Schema:map_88Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_88Key">
+                <xs:selector xpath=".//map_88" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_88Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_89" type="WMS_Schema:map_89Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_89Key">
+                <xs:selector xpath=".//map_89" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_89Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_90" type="WMS_Schema:map_90Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_90Key">
+                <xs:selector xpath=".//map_90" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_90Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Bodennutzung" type="WMS_Schema:BodennutzungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="BodennutzungKey">
+                <xs:selector xpath=".//Bodennutzung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="BodennutzungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6289" type="WMS_Schema:layer_6289Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6289Key">
+                <xs:selector xpath=".//layer_6289" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6289Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Böden Wald" type="WMS_Schema:Böden WaldType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Böden WaldKey">
+                <xs:selector xpath=".//Böden Wald" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Böden WaldType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Bodenerosion" type="WMS_Schema:BodenerosionType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="BodenerosionKey">
+                <xs:selector xpath=".//Bodenerosion" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="BodenerosionType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1137" type="WMS_Schema:map_1137Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1137Key">
+                <xs:selector xpath=".//map_1137" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1137Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8185" type="WMS_Schema:layer_8185Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8185Key">
+                <xs:selector xpath=".//layer_8185" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8185Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8485" type="WMS_Schema:layer_8485Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8485Key">
+                <xs:selector xpath=".//layer_8485" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8485Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="b) Kulturobjekte" type="WMS_Schema:b) KulturobjekteType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="b) KulturobjekteKey">
+                <xs:selector xpath=".//b) Kulturobjekte" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="b) KulturobjekteType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_94" type="WMS_Schema:map_94Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_94Key">
+                <xs:selector xpath=".//map_94" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_94Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="k) Geologie" type="WMS_Schema:k) GeologieType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="k) GeologieKey">
+                <xs:selector xpath=".//k) Geologie" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="k) GeologieType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_116" type="WMS_Schema:map_116Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_116Key">
+                <xs:selector xpath=".//map_116" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_116Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_30" type="WMS_Schema:map_30Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_30Key">
+                <xs:selector xpath=".//map_30" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_30Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_391" type="WMS_Schema:map_391Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_391Key">
+                <xs:selector xpath=".//map_391" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_391Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="c) Baugesuche" type="WMS_Schema:c) BaugesucheType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="c) BaugesucheKey">
+                <xs:selector xpath=".//c) Baugesuche" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="c) BaugesucheType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1167" type="WMS_Schema:layer_1167Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1167Key">
+                <xs:selector xpath=".//layer_1167" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1167Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1170" type="WMS_Schema:layer_1170Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1170Key">
+                <xs:selector xpath=".//layer_1170" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1170Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1205" type="WMS_Schema:layer_1205Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1205Key">
+                <xs:selector xpath=".//layer_1205" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1205Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1168" type="WMS_Schema:layer_1168Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1168Key">
+                <xs:selector xpath=".//layer_1168" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1168Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1169" type="WMS_Schema:layer_1169Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1169Key">
+                <xs:selector xpath=".//layer_1169" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1169Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_23" type="WMS_Schema:layer_23Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_23Key">
+                <xs:selector xpath=".//layer_23" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_23Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1182" type="WMS_Schema:layer_1182Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1182Key">
+                <xs:selector xpath=".//layer_1182" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1182Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="i) Gewässer" type="WMS_Schema:i) GewässerType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="i) GewässerKey">
+                <xs:selector xpath=".//i) Gewässer" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="i) GewässerType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Wasserbaukonzept" type="WMS_Schema:WasserbaukonzeptType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="WasserbaukonzeptKey">
+                <xs:selector xpath=".//Wasserbaukonzept" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="WasserbaukonzeptType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1412" type="WMS_Schema:layer_1412Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1412Key">
+                <xs:selector xpath=".//layer_1412" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1412Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1413" type="WMS_Schema:layer_1413Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1413Key">
+                <xs:selector xpath=".//layer_1413" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1413Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1414" type="WMS_Schema:layer_1414Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1414Key">
+                <xs:selector xpath=".//layer_1414" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1414Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1415" type="WMS_Schema:layer_1415Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1415Key">
+                <xs:selector xpath=".//layer_1415" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1415Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1416" type="WMS_Schema:layer_1416Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1416Key">
+                <xs:selector xpath=".//layer_1416" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1416Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1417" type="WMS_Schema:layer_1417Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1417Key">
+                <xs:selector xpath=".//layer_1417" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1417Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1418" type="WMS_Schema:layer_1418Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1418Key">
+                <xs:selector xpath=".//layer_1418" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1418Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Wasserentnahme" type="WMS_Schema:WasserentnahmeType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="WasserentnahmeKey">
+                <xs:selector xpath=".//Wasserentnahme" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="WasserentnahmeType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1870" type="WMS_Schema:layer_1870Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1870Key">
+                <xs:selector xpath=".//layer_1870" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1870Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1871" type="WMS_Schema:layer_1871Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1871Key">
+                <xs:selector xpath=".//layer_1871" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1871Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1872" type="WMS_Schema:layer_1872Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1872Key">
+                <xs:selector xpath=".//layer_1872" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1872Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1873" type="WMS_Schema:layer_1873Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1873Key">
+                <xs:selector xpath=".//layer_1873" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1873Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Gewässerzustand" type="WMS_Schema:GewässerzustandType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="GewässerzustandKey">
+                <xs:selector xpath=".//Gewässerzustand" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="GewässerzustandType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Lebensraumgestaltung" type="WMS_Schema:LebensraumgestaltungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="LebensraumgestaltungKey">
+                <xs:selector xpath=".//Lebensraumgestaltung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="LebensraumgestaltungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1443" type="WMS_Schema:layer_1443Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1443Key">
+                <xs:selector xpath=".//layer_1443" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1443Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1468" type="WMS_Schema:layer_1468Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1468Key">
+                <xs:selector xpath=".//layer_1468" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1468Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1469" type="WMS_Schema:layer_1469Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1469Key">
+                <xs:selector xpath=".//layer_1469" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1469Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1470" type="WMS_Schema:layer_1470Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1470Key">
+                <xs:selector xpath=".//layer_1470" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1470Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1471" type="WMS_Schema:layer_1471Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1471Key">
+                <xs:selector xpath=".//layer_1471" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1471Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1465" type="WMS_Schema:layer_1465Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1465Key">
+                <xs:selector xpath=".//layer_1465" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1465Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1237" type="WMS_Schema:layer_1237Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1237Key">
+                <xs:selector xpath=".//layer_1237" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1237Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1783" type="WMS_Schema:layer_1783Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1783Key">
+                <xs:selector xpath=".//layer_1783" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1783Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1784" type="WMS_Schema:layer_1784Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1784Key">
+                <xs:selector xpath=".//layer_1784" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1784Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Fischfauna Beurteilung" type="WMS_Schema:Fischfauna BeurteilungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Fischfauna BeurteilungKey">
+                <xs:selector xpath=".//Fischfauna Beurteilung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Fischfauna BeurteilungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7873" type="WMS_Schema:layer_7873Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7873Key">
+                <xs:selector xpath=".//layer_7873" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7873Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7869" type="WMS_Schema:layer_7869Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7869Key">
+                <xs:selector xpath=".//layer_7869" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7869Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7870" type="WMS_Schema:layer_7870Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7870Key">
+                <xs:selector xpath=".//layer_7870" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7870Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7871" type="WMS_Schema:layer_7871Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7871Key">
+                <xs:selector xpath=".//layer_7871" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7871Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7872" type="WMS_Schema:layer_7872Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7872Key">
+                <xs:selector xpath=".//layer_7872" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7872Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7868" type="WMS_Schema:layer_7868Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7868Key">
+                <xs:selector xpath=".//layer_7868" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7868Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Fischarten Verbreitungskarte" type="WMS_Schema:Fischarten VerbreitungskarteType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Fischarten VerbreitungskarteKey">
+                <xs:selector xpath=".//Fischarten Verbreitungskarte" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Fischarten VerbreitungskarteType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7852" type="WMS_Schema:layer_7852Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7852Key">
+                <xs:selector xpath=".//layer_7852" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7852Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7853" type="WMS_Schema:layer_7853Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7853Key">
+                <xs:selector xpath=".//layer_7853" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7853Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7854" type="WMS_Schema:layer_7854Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7854Key">
+                <xs:selector xpath=".//layer_7854" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7854Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7855" type="WMS_Schema:layer_7855Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7855Key">
+                <xs:selector xpath=".//layer_7855" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7855Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7856" type="WMS_Schema:layer_7856Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7856Key">
+                <xs:selector xpath=".//layer_7856" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7856Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7857" type="WMS_Schema:layer_7857Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7857Key">
+                <xs:selector xpath=".//layer_7857" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7857Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7858" type="WMS_Schema:layer_7858Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7858Key">
+                <xs:selector xpath=".//layer_7858" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7858Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7859" type="WMS_Schema:layer_7859Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7859Key">
+                <xs:selector xpath=".//layer_7859" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7859Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7860" type="WMS_Schema:layer_7860Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7860Key">
+                <xs:selector xpath=".//layer_7860" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7860Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7861" type="WMS_Schema:layer_7861Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7861Key">
+                <xs:selector xpath=".//layer_7861" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7861Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7862" type="WMS_Schema:layer_7862Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7862Key">
+                <xs:selector xpath=".//layer_7862" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7862Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7863" type="WMS_Schema:layer_7863Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7863Key">
+                <xs:selector xpath=".//layer_7863" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7863Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7864" type="WMS_Schema:layer_7864Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7864Key">
+                <xs:selector xpath=".//layer_7864" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7864Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7865" type="WMS_Schema:layer_7865Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7865Key">
+                <xs:selector xpath=".//layer_7865" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7865Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7866" type="WMS_Schema:layer_7866Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7866Key">
+                <xs:selector xpath=".//layer_7866" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7866Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7867" type="WMS_Schema:layer_7867Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7867Key">
+                <xs:selector xpath=".//layer_7867" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7867Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Makrofauna" type="WMS_Schema:MakrofaunaType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="MakrofaunaKey">
+                <xs:selector xpath=".//Makrofauna" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="MakrofaunaType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7881" type="WMS_Schema:layer_7881Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7881Key">
+                <xs:selector xpath=".//layer_7881" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7881Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7882" type="WMS_Schema:layer_7882Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7882Key">
+                <xs:selector xpath=".//layer_7882" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7882Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7883" type="WMS_Schema:layer_7883Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7883Key">
+                <xs:selector xpath=".//layer_7883" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7883Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7880" type="WMS_Schema:layer_7880Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7880Key">
+                <xs:selector xpath=".//layer_7880" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7880Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7879" type="WMS_Schema:layer_7879Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7879Key">
+                <xs:selector xpath=".//layer_7879" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7879Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="REP Birs" type="WMS_Schema:REP BirsType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="REP BirsKey">
+                <xs:selector xpath=".//REP Birs" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="REP BirsType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1401" type="WMS_Schema:layer_1401Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1401Key">
+                <xs:selector xpath=".//layer_1401" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1401Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1402" type="WMS_Schema:layer_1402Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1402Key">
+                <xs:selector xpath=".//layer_1402" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1402Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_7823" type="WMS_Schema:layer_7823Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_7823Key">
+                <xs:selector xpath=".//layer_7823" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_7823Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Gewässernetz" type="WMS_Schema:GewässernetzType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="GewässernetzKey">
+                <xs:selector xpath=".//Gewässernetz" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="GewässernetzType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_277" type="WMS_Schema:map_277Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_277Key">
+                <xs:selector xpath=".//map_277" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_277Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1359" type="WMS_Schema:layer_1359Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1359Key">
+                <xs:selector xpath=".//layer_1359" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1359Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1360" type="WMS_Schema:layer_1360Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1360Key">
+                <xs:selector xpath=".//layer_1360" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1360Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1329" type="WMS_Schema:layer_1329Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1329Key">
+                <xs:selector xpath=".//layer_1329" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1329Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1336" type="WMS_Schema:layer_1336Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1336Key">
+                <xs:selector xpath=".//layer_1336" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1336Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="c) Bebauungsst +Baureife '10" type="WMS_Schema:c) Bebauungsst +Baureife '10Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="c) Bebauungsst +Baureife '10Key">
+                <xs:selector xpath=".//c) Bebauungsst +Baureife '10" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="c) Bebauungsst +Baureife '10Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1317" type="WMS_Schema:layer_1317Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1317Key">
+                <xs:selector xpath=".//layer_1317" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1317Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1318" type="WMS_Schema:layer_1318Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1318Key">
+                <xs:selector xpath=".//layer_1318" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1318Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1319" type="WMS_Schema:layer_1319Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1319Key">
+                <xs:selector xpath=".//layer_1319" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1319Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1320" type="WMS_Schema:layer_1320Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1320Key">
+                <xs:selector xpath=".//layer_1320" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1320Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1321" type="WMS_Schema:layer_1321Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1321Key">
+                <xs:selector xpath=".//layer_1321" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1321Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1322" type="WMS_Schema:layer_1322Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1322Key">
+                <xs:selector xpath=".//layer_1322" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1322Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1323" type="WMS_Schema:layer_1323Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1323Key">
+                <xs:selector xpath=".//layer_1323" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1323Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1324" type="WMS_Schema:layer_1324Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1324Key">
+                <xs:selector xpath=".//layer_1324" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1324Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="n) Lärm" type="WMS_Schema:n) LärmType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="n) LärmKey">
+                <xs:selector xpath=".//n) Lärm" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="n) LärmType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1369" type="WMS_Schema:layer_1369Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1369Key">
+                <xs:selector xpath=".//layer_1369" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1369Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1368" type="WMS_Schema:layer_1368Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1368Key">
+                <xs:selector xpath=".//layer_1368" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1368Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1370" type="WMS_Schema:layer_1370Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1370Key">
+                <xs:selector xpath=".//layer_1370" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1370Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="m) Verkehr" type="WMS_Schema:m) VerkehrType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="m) VerkehrKey">
+                <xs:selector xpath=".//m) Verkehr" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="m) VerkehrType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Strassen" type="WMS_Schema:StrassenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="StrassenKey">
+                <xs:selector xpath=".//Strassen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="StrassenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Basisbezugssystem Kantonsstrassen" type="WMS_Schema:Basisbezugssystem KantonsstrassenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Basisbezugssystem KantonsstrassenKey">
+                <xs:selector xpath=".//Basisbezugssystem Kantonsstrassen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Basisbezugssystem KantonsstrassenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1034" type="WMS_Schema:map_1034Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1034Key">
+                <xs:selector xpath=".//map_1034" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1034Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8886" type="WMS_Schema:layer_8886Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8886Key">
+                <xs:selector xpath=".//layer_8886" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8886Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8887" type="WMS_Schema:layer_8887Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8887Key">
+                <xs:selector xpath=".//layer_8887" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8887Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Strassen nach Strassengesetz" type="WMS_Schema:Strassen nach StrassengesetzType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Strassen nach StrassengesetzKey">
+                <xs:selector xpath=".//Strassen nach Strassengesetz" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Strassen nach StrassengesetzType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1033" type="WMS_Schema:map_1033Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1033Key">
+                <xs:selector xpath=".//map_1033" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1033Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1133" type="WMS_Schema:map_1133Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1133Key">
+                <xs:selector xpath=".//map_1133" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1133Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1141" type="WMS_Schema:layer_1141Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1141Key">
+                <xs:selector xpath=".//layer_1141" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1141Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Strassenkreise" type="WMS_Schema:StrassenkreiseType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="StrassenkreiseKey">
+                <xs:selector xpath=".//Strassenkreise" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="StrassenkreiseType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1142" type="WMS_Schema:layer_1142Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1142Key">
+                <xs:selector xpath=".//layer_1142" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1142Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="öffentlicher Verkehr" type="WMS_Schema:öffentlicher VerkehrType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="öffentlicher VerkehrKey">
+                <xs:selector xpath=".//öffentlicher Verkehr" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="öffentlicher VerkehrType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1313" type="WMS_Schema:layer_1313Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1313Key">
+                <xs:selector xpath=".//layer_1313" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1313Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1314" type="WMS_Schema:layer_1314Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1314Key">
+                <xs:selector xpath=".//layer_1314" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1314Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1315" type="WMS_Schema:layer_1315Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1315Key">
+                <xs:selector xpath=".//layer_1315" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1315Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1316" type="WMS_Schema:layer_1316Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1316Key">
+                <xs:selector xpath=".//layer_1316" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1316Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Wanderwege" type="WMS_Schema:WanderwegeType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="WanderwegeKey">
+                <xs:selector xpath=".//Wanderwege" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="WanderwegeType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1326" type="WMS_Schema:layer_1326Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1326Key">
+                <xs:selector xpath=".//layer_1326" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1326Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1327" type="WMS_Schema:layer_1327Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1327Key">
+                <xs:selector xpath=".//layer_1327" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1327Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1328" type="WMS_Schema:layer_1328Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1328Key">
+                <xs:selector xpath=".//layer_1328" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1328Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1335" type="WMS_Schema:layer_1335Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1335Key">
+                <xs:selector xpath=".//layer_1335" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1335Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1338" type="WMS_Schema:layer_1338Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1338Key">
+                <xs:selector xpath=".//layer_1338" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1338Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Radrouten" type="WMS_Schema:RadroutenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="RadroutenKey">
+                <xs:selector xpath=".//Radrouten" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="RadroutenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_105" type="WMS_Schema:map_105Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_105Key">
+                <xs:selector xpath=".//map_105" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_105Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_106" type="WMS_Schema:map_106Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_106Key">
+                <xs:selector xpath=".//map_106" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_106Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_107" type="WMS_Schema:map_107Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_107Key">
+                <xs:selector xpath=".//map_107" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_107Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_9093" type="WMS_Schema:layer_9093Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_9093Key">
+                <xs:selector xpath=".//layer_9093" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_9093Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="historische Verkehrswege" type="WMS_Schema:historische VerkehrswegeType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="historische VerkehrswegeKey">
+                <xs:selector xpath=".//historische Verkehrswege" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="historische VerkehrswegeType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1410" type="WMS_Schema:layer_1410Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1410Key">
+                <xs:selector xpath=".//layer_1410" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1410Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1411" type="WMS_Schema:layer_1411Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1411Key">
+                <xs:selector xpath=".//layer_1411" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1411Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1565" type="WMS_Schema:layer_1565Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1565Key">
+                <xs:selector xpath=".//layer_1565" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1565Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="o) Risiken Chemie" type="WMS_Schema:o) Risiken ChemieType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="o) Risiken ChemieKey">
+                <xs:selector xpath=".//o) Risiken Chemie" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="o) Risiken ChemieType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Chemische Risiken" type="WMS_Schema:Chemische RisikenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Chemische RisikenKey">
+                <xs:selector xpath=".//Chemische Risiken" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Chemische RisikenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1183" type="WMS_Schema:layer_1183Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1183Key">
+                <xs:selector xpath=".//layer_1183" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1183Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1222" type="WMS_Schema:layer_1222Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1222Key">
+                <xs:selector xpath=".//layer_1222" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1222Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1223" type="WMS_Schema:layer_1223Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1223Key">
+                <xs:selector xpath=".//layer_1223" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1223Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1224" type="WMS_Schema:layer_1224Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1224Key">
+                <xs:selector xpath=".//layer_1224" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1224Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1225" type="WMS_Schema:layer_1225Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1225Key">
+                <xs:selector xpath=".//layer_1225" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1225Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1226" type="WMS_Schema:layer_1226Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1226Key">
+                <xs:selector xpath=".//layer_1226" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1226Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1227" type="WMS_Schema:layer_1227Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1227Key">
+                <xs:selector xpath=".//layer_1227" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1227Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Transportrisiken Strasse" type="WMS_Schema:Transportrisiken StrasseType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Transportrisiken StrasseKey">
+                <xs:selector xpath=".//Transportrisiken Strasse" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Transportrisiken StrasseType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1334" type="WMS_Schema:layer_1334Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1334Key">
+                <xs:selector xpath=".//layer_1334" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1334Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1332" type="WMS_Schema:layer_1332Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1332Key">
+                <xs:selector xpath=".//layer_1332" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1332Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1333" type="WMS_Schema:layer_1333Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1333Key">
+                <xs:selector xpath=".//layer_1333" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1333Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1330" type="WMS_Schema:layer_1330Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1330Key">
+                <xs:selector xpath=".//layer_1330" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1330Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Transportrisiken Schiene" type="WMS_Schema:Transportrisiken SchieneType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Transportrisiken SchieneKey">
+                <xs:selector xpath=".//Transportrisiken Schiene" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Transportrisiken SchieneType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1646" type="WMS_Schema:layer_1646Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1646Key">
+                <xs:selector xpath=".//layer_1646" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1646Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1645" type="WMS_Schema:layer_1645Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1645Key">
+                <xs:selector xpath=".//layer_1645" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1645Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="q) Übersichtspläne" type="WMS_Schema:q) ÜbersichtspläneType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="q) ÜbersichtspläneKey">
+                <xs:selector xpath=".//q) Übersichtspläne" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="q) ÜbersichtspläneType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1430" type="WMS_Schema:layer_1430Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1430Key">
+                <xs:selector xpath=".//layer_1430" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1430Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_409" type="WMS_Schema:layer_409Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_409Key">
+                <xs:selector xpath=".//layer_409" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_409Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="q) Orthofotos" type="WMS_Schema:q) OrthofotosType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="q) OrthofotosKey">
+                <xs:selector xpath=".//q) Orthofotos" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="q) OrthofotosType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_269" type="WMS_Schema:map_269Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_269Key">
+                <xs:selector xpath=".//map_269" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_269Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_270" type="WMS_Schema:map_270Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_270Key">
+                <xs:selector xpath=".//map_270" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_270Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1434" type="WMS_Schema:layer_1434Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1434Key">
+                <xs:selector xpath=".//layer_1434" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1434Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1613" type="WMS_Schema:layer_1613Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1613Key">
+                <xs:selector xpath=".//layer_1613" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1613Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1621" type="WMS_Schema:layer_1621Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1621Key">
+                <xs:selector xpath=".//layer_1621" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1621Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="j) Wärmeverbundkataster" type="WMS_Schema:j) WärmeverbundkatasterType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="j) WärmeverbundkatasterKey">
+                <xs:selector xpath=".//j) Wärmeverbundkataster" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="j) WärmeverbundkatasterType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1466" type="WMS_Schema:layer_1466Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1466Key">
+                <xs:selector xpath=".//layer_1466" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1466Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1447" type="WMS_Schema:layer_1447Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1447Key">
+                <xs:selector xpath=".//layer_1447" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1447Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1467" type="WMS_Schema:layer_1467Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1467Key">
+                <xs:selector xpath=".//layer_1467" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1467Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="j) Abwasser" type="WMS_Schema:j) AbwasserType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="j) AbwasserKey">
+                <xs:selector xpath=".//j) Abwasser" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="j) AbwasserType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="kantonale Mischwasserkanalisation (AIB)" type="WMS_Schema:kantonale Mischwasserkanalisation (AIB)Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="kantonale Mischwasserkanalisation (AIB)Key">
+                <xs:selector xpath=".//kantonale Mischwasserkanalisation (AIB)" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="kantonale Mischwasserkanalisation (AIB)Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1408" type="WMS_Schema:layer_1408Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1408Key">
+                <xs:selector xpath=".//layer_1408" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1408Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1409" type="WMS_Schema:layer_1409Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1409Key">
+                <xs:selector xpath=".//layer_1409" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1409Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="o) Naturgefahren" type="WMS_Schema:o) NaturgefahrenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="o) NaturgefahrenKey">
+                <xs:selector xpath=".//o) Naturgefahren" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="o) NaturgefahrenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Gefahrenhinweiskarte" type="WMS_Schema:GefahrenhinweiskarteType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="GefahrenhinweiskarteKey">
+                <xs:selector xpath=".//Gefahrenhinweiskarte" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="GefahrenhinweiskarteType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Sturzgefahren" type="WMS_Schema:SturzgefahrenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="SturzgefahrenKey">
+                <xs:selector xpath=".//Sturzgefahren" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="SturzgefahrenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1376" type="WMS_Schema:layer_1376Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1376Key">
+                <xs:selector xpath=".//layer_1376" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1376Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1391" type="WMS_Schema:layer_1391Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1391Key">
+                <xs:selector xpath=".//layer_1391" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1391Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Rutschgefahren" type="WMS_Schema:RutschgefahrenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="RutschgefahrenKey">
+                <xs:selector xpath=".//Rutschgefahren" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="RutschgefahrenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1379" type="WMS_Schema:layer_1379Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1379Key">
+                <xs:selector xpath=".//layer_1379" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1379Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1382" type="WMS_Schema:layer_1382Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1382Key">
+                <xs:selector xpath=".//layer_1382" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1382Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1383" type="WMS_Schema:layer_1383Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1383Key">
+                <xs:selector xpath=".//layer_1383" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1383Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1377" type="WMS_Schema:layer_1377Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1377Key">
+                <xs:selector xpath=".//layer_1377" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1377Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1381" type="WMS_Schema:layer_1381Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1381Key">
+                <xs:selector xpath=".//layer_1381" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1381Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1380" type="WMS_Schema:layer_1380Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1380Key">
+                <xs:selector xpath=".//layer_1380" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1380Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1378" type="WMS_Schema:layer_1378Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1378Key">
+                <xs:selector xpath=".//layer_1378" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1378Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1390" type="WMS_Schema:layer_1390Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1390Key">
+                <xs:selector xpath=".//layer_1390" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1390Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1384" type="WMS_Schema:layer_1384Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1384Key">
+                <xs:selector xpath=".//layer_1384" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1384Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Wassergefahren" type="WMS_Schema:WassergefahrenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="WassergefahrenKey">
+                <xs:selector xpath=".//Wassergefahren" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="WassergefahrenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1385" type="WMS_Schema:layer_1385Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1385Key">
+                <xs:selector xpath=".//layer_1385" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1385Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1386" type="WMS_Schema:layer_1386Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1386Key">
+                <xs:selector xpath=".//layer_1386" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1386Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1387" type="WMS_Schema:layer_1387Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1387Key">
+                <xs:selector xpath=".//layer_1387" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1387Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1388" type="WMS_Schema:layer_1388Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1388Key">
+                <xs:selector xpath=".//layer_1388" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1388Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Erdbebenmikrozonierung" type="WMS_Schema:ErdbebenmikrozonierungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="ErdbebenmikrozonierungKey">
+                <xs:selector xpath=".//Erdbebenmikrozonierung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="ErdbebenmikrozonierungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_398" type="WMS_Schema:map_398Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_398Key">
+                <xs:selector xpath=".//map_398" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_398Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_399" type="WMS_Schema:map_399Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_399Key">
+                <xs:selector xpath=".//map_399" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_399Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="q) Höhenmodelle" type="WMS_Schema:q) HöhenmodelleType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="q) HöhenmodelleKey">
+                <xs:selector xpath=".//q) Höhenmodelle" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="q) HöhenmodelleType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1000" type="WMS_Schema:map_1000Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1000Key">
+                <xs:selector xpath=".//map_1000" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1000Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1001" type="WMS_Schema:map_1001Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1001Key">
+                <xs:selector xpath=".//map_1001" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1001Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1558" type="WMS_Schema:layer_1558Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1558Key">
+                <xs:selector xpath=".//layer_1558" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1558Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="k) Landwirtschaft" type="WMS_Schema:k) LandwirtschaftType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="k) LandwirtschaftKey">
+                <xs:selector xpath=".//k) Landwirtschaft" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="k) LandwirtschaftType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Rebflächen" type="WMS_Schema:RebflächenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="RebflächenKey">
+                <xs:selector xpath=".//Rebflächen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="RebflächenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1259" type="WMS_Schema:layer_1259Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1259Key">
+                <xs:selector xpath=".//layer_1259" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1259Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1260" type="WMS_Schema:layer_1260Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1260Key">
+                <xs:selector xpath=".//layer_1260" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1260Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1261" type="WMS_Schema:layer_1261Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1261Key">
+                <xs:selector xpath=".//layer_1261" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1261Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1262" type="WMS_Schema:layer_1262Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1262Key">
+                <xs:selector xpath=".//layer_1262" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1262Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1263" type="WMS_Schema:layer_1263Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1263Key">
+                <xs:selector xpath=".//layer_1263" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1263Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Landwirtschaft allgemein" type="WMS_Schema:Landwirtschaft allgemeinType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Landwirtschaft allgemeinKey">
+                <xs:selector xpath=".//Landwirtschaft allgemein" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Landwirtschaft allgemeinType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1118" type="WMS_Schema:layer_1118Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1118Key">
+                <xs:selector xpath=".//layer_1118" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1118Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1570" type="WMS_Schema:layer_1570Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1570Key">
+                <xs:selector xpath=".//layer_1570" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1570Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1569" type="WMS_Schema:layer_1569Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1569Key">
+                <xs:selector xpath=".//layer_1569" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1569Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1858" type="WMS_Schema:layer_1858Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1858Key">
+                <xs:selector xpath=".//layer_1858" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1858Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Fruchtfolgeflächen" type="WMS_Schema:FruchtfolgeflächenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="FruchtfolgeflächenKey">
+                <xs:selector xpath=".//Fruchtfolgeflächen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="FruchtfolgeflächenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1840" type="WMS_Schema:layer_1840Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1840Key">
+                <xs:selector xpath=".//layer_1840" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1840Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1833" type="WMS_Schema:layer_1833Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1833Key">
+                <xs:selector xpath=".//layer_1833" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1833Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Kulturflächen" type="WMS_Schema:KulturflächenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="KulturflächenKey">
+                <xs:selector xpath=".//Kulturflächen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="KulturflächenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_389" type="WMS_Schema:map_389Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_389Key">
+                <xs:selector xpath=".//map_389" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_389Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Meliorationsleitungskataster" type="WMS_Schema:MeliorationsleitungskatasterType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="MeliorationsleitungskatasterKey">
+                <xs:selector xpath=".//Meliorationsleitungskataster" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="MeliorationsleitungskatasterType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_395" type="WMS_Schema:map_395Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_395Key">
+                <xs:selector xpath=".//map_395" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_395Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_394" type="WMS_Schema:map_394Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_394Key">
+                <xs:selector xpath=".//map_394" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_394Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_2483" type="WMS_Schema:layer_2483Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_2483Key">
+                <xs:selector xpath=".//layer_2483" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_2483Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_109" type="WMS_Schema:map_109Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_109Key">
+                <xs:selector xpath=".//map_109" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_109Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="o) Klimafunktionskarten" type="WMS_Schema:o) KlimafunktionskartenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="o) KlimafunktionskartenKey">
+                <xs:selector xpath=".//o) Klimafunktionskarten" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="o) KlimafunktionskartenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="A Durchlüftung" type="WMS_Schema:A DurchlüftungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="A DurchlüftungKey">
+                <xs:selector xpath=".//A Durchlüftung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="A DurchlüftungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1576" type="WMS_Schema:layer_1576Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1576Key">
+                <xs:selector xpath=".//layer_1576" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1576Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1577" type="WMS_Schema:layer_1577Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1577Key">
+                <xs:selector xpath=".//layer_1577" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1577Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1578" type="WMS_Schema:layer_1578Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1578Key">
+                <xs:selector xpath=".//layer_1578" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1578Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1579" type="WMS_Schema:layer_1579Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1579Key">
+                <xs:selector xpath=".//layer_1579" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1579Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="B Lufthygiene" type="WMS_Schema:B LufthygieneType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="B LufthygieneKey">
+                <xs:selector xpath=".//B Lufthygiene" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="B LufthygieneType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1580" type="WMS_Schema:layer_1580Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1580Key">
+                <xs:selector xpath=".//layer_1580" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1580Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1581" type="WMS_Schema:layer_1581Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1581Key">
+                <xs:selector xpath=".//layer_1581" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1581Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="C Thermische Situation" type="WMS_Schema:C Thermische SituationType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="C Thermische SituationKey">
+                <xs:selector xpath=".//C Thermische Situation" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="C Thermische SituationType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1582" type="WMS_Schema:layer_1582Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1582Key">
+                <xs:selector xpath=".//layer_1582" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1582Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1583" type="WMS_Schema:layer_1583Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1583Key">
+                <xs:selector xpath=".//layer_1583" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1583Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="p) Luft" type="WMS_Schema:p) LuftType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="p) LuftKey">
+                <xs:selector xpath=".//p) Luft" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="p) LuftType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Luftqualitätskarten" type="WMS_Schema:LuftqualitätskartenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="LuftqualitätskartenKey">
+                <xs:selector xpath=".//Luftqualitätskarten" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="LuftqualitätskartenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="2005" type="WMS_Schema:2005Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="2005Key">
+                <xs:selector xpath=".//2005" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="2005Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1824" type="WMS_Schema:layer_1824Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1824Key">
+                <xs:selector xpath=".//layer_1824" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1824Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1825" type="WMS_Schema:layer_1825Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1825Key">
+                <xs:selector xpath=".//layer_1825" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1825Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1826" type="WMS_Schema:layer_1826Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1826Key">
+                <xs:selector xpath=".//layer_1826" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1826Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1827" type="WMS_Schema:layer_1827Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1827Key">
+                <xs:selector xpath=".//layer_1827" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1827Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1828" type="WMS_Schema:layer_1828Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1828Key">
+                <xs:selector xpath=".//layer_1828" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1828Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1829" type="WMS_Schema:layer_1829Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1829Key">
+                <xs:selector xpath=".//layer_1829" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1829Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1830" type="WMS_Schema:layer_1830Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1830Key">
+                <xs:selector xpath=".//layer_1830" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1830Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="2010" type="WMS_Schema:2010Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="2010Key">
+                <xs:selector xpath=".//2010" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="2010Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8089" type="WMS_Schema:layer_8089Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8089Key">
+                <xs:selector xpath=".//layer_8089" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8089Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8094" type="WMS_Schema:layer_8094Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8094Key">
+                <xs:selector xpath=".//layer_8094" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8094Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8101" type="WMS_Schema:layer_8101Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8101Key">
+                <xs:selector xpath=".//layer_8101" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8101Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8102" type="WMS_Schema:layer_8102Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8102Key">
+                <xs:selector xpath=".//layer_8102" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8102Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8187" type="WMS_Schema:layer_8187Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8187Key">
+                <xs:selector xpath=".//layer_8187" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8187Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8188" type="WMS_Schema:layer_8188Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8188Key">
+                <xs:selector xpath=".//layer_8188" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8188Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8189" type="WMS_Schema:layer_8189Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8189Key">
+                <xs:selector xpath=".//layer_8189" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8189Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8194" type="WMS_Schema:layer_8194Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8194Key">
+                <xs:selector xpath=".//layer_8194" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8194Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8195" type="WMS_Schema:layer_8195Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8195Key">
+                <xs:selector xpath=".//layer_8195" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8195Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1831" type="WMS_Schema:layer_1831Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1831Key">
+                <xs:selector xpath=".//layer_1831" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1831Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="r) Administrative Grenzen" type="WMS_Schema:r) Administrative GrenzenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="r) Administrative GrenzenKey">
+                <xs:selector xpath=".//r) Administrative Grenzen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="r) Administrative GrenzenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1859" type="WMS_Schema:layer_1859Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1859Key">
+                <xs:selector xpath=".//layer_1859" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1859Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_6885" type="WMS_Schema:layer_6885Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_6885Key">
+                <xs:selector xpath=".//layer_6885" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_6885Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_19" type="WMS_Schema:map_19Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_19Key">
+                <xs:selector xpath=".//map_19" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_19Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1134" type="WMS_Schema:map_1134Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1134Key">
+                <xs:selector xpath=".//map_1134" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1134Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="o) Risiken Biologie" type="WMS_Schema:o) Risiken BiologieType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="o) Risiken BiologieKey">
+                <xs:selector xpath=".//o) Risiken Biologie" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="o) Risiken BiologieType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Tätigkeiten nach ESV" type="WMS_Schema:Tätigkeiten nach ESVType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Tätigkeiten nach ESVKey">
+                <xs:selector xpath=".//Tätigkeiten nach ESV" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Tätigkeiten nach ESVType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1309" type="WMS_Schema:layer_1309Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1309Key">
+                <xs:selector xpath=".//layer_1309" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1309Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1310" type="WMS_Schema:layer_1310Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1310Key">
+                <xs:selector xpath=".//layer_1310" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1310Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_1311" type="WMS_Schema:layer_1311Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_1311Key">
+                <xs:selector xpath=".//layer_1311" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_1311Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="Invasive Neophyten" type="WMS_Schema:Invasive NeophytenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="Invasive NeophytenKey">
+                <xs:selector xpath=".//Invasive Neophyten" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="Invasive NeophytenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8389" type="WMS_Schema:layer_8389Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8389Key">
+                <xs:selector xpath=".//layer_8389" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8389Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="p) Nichtionisierende Strahlung (NIS)" type="WMS_Schema:p) Nichtionisierende Strahlung (NIS)Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="p) Nichtionisierende Strahlung (NIS)Key">
+                <xs:selector xpath=".//p) Nichtionisierende Strahlung (NIS)" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="p) Nichtionisierende Strahlung (NIS)Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8685" type="WMS_Schema:layer_8685Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8685Key">
+                <xs:selector xpath=".//layer_8685" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8685Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8490" type="WMS_Schema:layer_8490Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8490Key">
+                <xs:selector xpath=".//layer_8490" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8490Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="a) Kantonaler Richtplan" type="WMS_Schema:a) Kantonaler RichtplanType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="a) Kantonaler RichtplanKey">
+                <xs:selector xpath=".//a) Kantonaler Richtplan" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="a) Kantonaler RichtplanType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="1) Siedlung" type="WMS_Schema:1) SiedlungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="1) SiedlungKey">
+                <xs:selector xpath=".//1) Siedlung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="1) SiedlungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8595" type="WMS_Schema:layer_8595Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8595Key">
+                <xs:selector xpath=".//layer_8595" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8595Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8598" type="WMS_Schema:layer_8598Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8598Key">
+                <xs:selector xpath=".//layer_8598" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8598Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8599" type="WMS_Schema:layer_8599Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8599Key">
+                <xs:selector xpath=".//layer_8599" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8599Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8596" type="WMS_Schema:layer_8596Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8596Key">
+                <xs:selector xpath=".//layer_8596" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8596Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8597" type="WMS_Schema:layer_8597Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8597Key">
+                <xs:selector xpath=".//layer_8597" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8597Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8600" type="WMS_Schema:layer_8600Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8600Key">
+                <xs:selector xpath=".//layer_8600" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8600Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="3) Verkehr" type="WMS_Schema:3) VerkehrType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="3) VerkehrKey">
+                <xs:selector xpath=".//3) Verkehr" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="3) VerkehrType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1337" type="WMS_Schema:map_1337Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1337Key">
+                <xs:selector xpath=".//map_1337" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1337Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="map_1338" type="WMS_Schema:map_1338Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="map_1338Key">
+                <xs:selector xpath=".//map_1338" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="map_1338Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8607" type="WMS_Schema:layer_8607Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8607Key">
+                <xs:selector xpath=".//layer_8607" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8607Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8608" type="WMS_Schema:layer_8608Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8608Key">
+                <xs:selector xpath=".//layer_8608" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8608Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="2) Landschaft" type="WMS_Schema:2) LandschaftType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="2) LandschaftKey">
+                <xs:selector xpath=".//2) Landschaft" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="2) LandschaftType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8589" type="WMS_Schema:layer_8589Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8589Key">
+                <xs:selector xpath=".//layer_8589" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8589Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8591" type="WMS_Schema:layer_8591Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8591Key">
+                <xs:selector xpath=".//layer_8591" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8591Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8592" type="WMS_Schema:layer_8592Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8592Key">
+                <xs:selector xpath=".//layer_8592" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8592Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8588" type="WMS_Schema:layer_8588Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8588Key">
+                <xs:selector xpath=".//layer_8588" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8588Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8593" type="WMS_Schema:layer_8593Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8593Key">
+                <xs:selector xpath=".//layer_8593" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8593Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="4) Ver- und Entsorgung" type="WMS_Schema:4) Ver- und EntsorgungType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="4) Ver- und EntsorgungKey">
+                <xs:selector xpath=".//4) Ver- und Entsorgung" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="4) Ver- und EntsorgungType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8609" type="WMS_Schema:layer_8609Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8609Key">
+                <xs:selector xpath=".//layer_8609" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8609Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8610" type="WMS_Schema:layer_8610Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8610Key">
+                <xs:selector xpath=".//layer_8610" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8610Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8611" type="WMS_Schema:layer_8611Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8611Key">
+                <xs:selector xpath=".//layer_8611" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8611Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="5) Gebietsplanungen" type="WMS_Schema:5) GebietsplanungenType" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="5) GebietsplanungenKey">
+                <xs:selector xpath=".//5) Gebietsplanungen" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="5) GebietsplanungenType" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+        <xs:element name="layer_8594" type="WMS_Schema:layer_8594Type" abstract="false" substitutionGroup="gml:_Feature">
+            <xs:key name="layer_8594Key">
+                <xs:selector xpath=".//layer_8594" />
+                <xs:field xpath="Id" />
+            </xs:key>
+        </xs:element>
+        <xs:complexType name="layer_8594Type" abstract="false">
+            <xs:complexContent>
+                <xs:extension base="gml:AbstractFeatureType">
+                    <xs:sequence>
+                        <xs:element name="Id" minOccurs="1">
+                            <xs:simpleType>
+                                <xs:restriction base="xs:string" />
+                            </xs:simpleType>
+                        </xs:element>
+                        <xs:element name="Image" type="fdo:RasterPropertyType" fdo:defaultImageXSize="1024" fdo:defaultImageYSize="1024" fdo:srsName="EPSG:21781" />
+                    </xs:sequence>
+                </xs:extension>
+            </xs:complexContent>
+        </xs:complexType>
+    </xs:schema>
+    <SchemaMapping provider="OSGeo.WMS.3.2" xmlns="http://fdowms.osgeo.org/schemas" name="WMS_Schema">
+        <complexType name="GeoTask Internet Map ServerType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:GeoTask Internet Map Server">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_2Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_2">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_3Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_3">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_5Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_5">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_6Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_6">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="r) Politische GrenzenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:r) Politische Grenzen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_117Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_117">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_84Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_84">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1228Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1228">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_46Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_46">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_47Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_47">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1868Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1868">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="e) Proj  Gebäude+GrundstückeType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:e) Proj  Gebäude+Grundstücke">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_86Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_86">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_276Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_276">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="a) Überl  Elem NutzungsplanType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:a) Überl  Elem Nutzungsplan">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_82Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_82">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_83Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_83">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_84Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_84">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_265Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_265">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1854Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1854">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1855Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1855">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1857Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1857">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1856Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1856">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="h) Natur und LandschaftType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:h) Natur und Landschaft">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_85Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_85">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_894Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_894">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1566Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1566">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1571Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1571">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1746Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1746">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1122Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1122">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_20Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_20">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_21Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_21">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="s) BeschriftungenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:s) Beschriftungen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6684Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6684">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_709Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_709">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_706Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_706">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_40Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_40">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1642Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1642">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_708Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_708">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_87Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_87">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1221Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1221">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="d) AbstandslinienType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:d) Abstandslinien">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_997Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_997">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_998Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_998">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_999Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_999">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_5284Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_5284">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6184Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6184">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_704Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_704">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_3483Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_3483">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_5184Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_5184">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_5784Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_5784">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6084Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6084">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="i) GrundwasserType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:i) Grundwasser">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="2) Bohrungen/MessstellenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:2) Bohrungen/Messstellen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1331Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1331">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6902Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6902">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6903Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6903">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6904Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6904">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6905Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6905">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6906Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6906">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7215Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7215">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="4) QuellenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:4) Quellen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_5087Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_5087">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_5088Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_5088">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6286Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6286">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="3) PumpwerkeType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:3) Pumpwerke">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_5086Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_5086">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="1) Grundw zonen/-bereicheType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:1) Grundw zonen/-bereiche">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_95Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_95">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1560Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1560">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="l) WaldType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:l) Wald">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_91Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_91">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_92Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_92">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_93Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_93">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="1) Böden WaldType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:1) Böden Wald">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1007Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1007">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1004Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1004">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1005Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1005">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1006Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1006">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1003Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1003">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6785Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6785">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1249Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1249">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1248Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1248">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="k) BodenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:k) Boden">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Schutzbedürftige BödenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Schutzbedürftige Böden">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1264Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1264">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1265Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1265">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1266Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1266">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1267Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1267">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1268Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1268">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1269Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1269">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1270Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1270">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Böden LandwirtschaftType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Böden Landwirtschaft">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_87Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_87">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_88Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_88">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_89Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_89">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_90Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_90">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="BodennutzungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Bodennutzung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6289Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6289">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Böden WaldType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Böden Wald">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="BodenerosionType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Bodenerosion">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1137Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1137">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8185Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8185">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8485Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8485">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="b) KulturobjekteType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:b) Kulturobjekte">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_94Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_94">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="k) GeologieType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:k) Geologie">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_116Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_116">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_30Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_30">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_391Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_391">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="c) BaugesucheType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:c) Baugesuche">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1167Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1167">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1170Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1170">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1205Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1205">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1168Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1168">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1169Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1169">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_23Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_23">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1182Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1182">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="i) GewässerType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:i) Gewässer">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="WasserbaukonzeptType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Wasserbaukonzept">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1412Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1412">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1413Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1413">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1414Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1414">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1415Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1415">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1416Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1416">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1417Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1417">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1418Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1418">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="WasserentnahmeType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Wasserentnahme">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1870Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1870">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1871Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1871">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1872Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1872">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1873Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1873">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="GewässerzustandType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Gewässerzustand">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="LebensraumgestaltungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Lebensraumgestaltung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1443Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1443">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1468Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1468">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1469Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1469">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1470Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1470">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1471Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1471">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1465Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1465">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1237Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1237">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1783Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1783">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1784Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1784">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Fischfauna BeurteilungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Fischfauna Beurteilung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7873Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7873">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7869Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7869">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7870Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7870">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7871Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7871">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7872Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7872">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7868Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7868">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Fischarten VerbreitungskarteType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Fischarten Verbreitungskarte">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7852Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7852">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7853Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7853">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7854Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7854">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7855Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7855">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7856Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7856">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7857Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7857">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7858Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7858">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7859Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7859">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7860Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7860">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7861Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7861">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7862Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7862">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7863Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7863">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7864Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7864">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7865Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7865">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7866Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7866">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7867Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7867">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="MakrofaunaType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Makrofauna">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7881Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7881">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7882Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7882">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7883Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7883">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7880Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7880">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7879Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7879">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="REP BirsType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:REP Birs">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1401Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1401">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1402Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1402">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_7823Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_7823">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="GewässernetzType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Gewässernetz">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_277Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_277">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1359Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1359">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1360Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1360">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1329Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1329">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1336Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1336">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="c) Bebauungsst +Baureife '10Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:c) Bebauungsst +Baureife '10">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1317Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1317">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1318Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1318">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1319Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1319">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1320Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1320">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1321Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1321">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1322Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1322">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1323Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1323">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1324Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1324">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="n) LärmType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:n) Lärm">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1369Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1369">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1368Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1368">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1370Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1370">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="m) VerkehrType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:m) Verkehr">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="StrassenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Strassen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Basisbezugssystem KantonsstrassenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Basisbezugssystem Kantonsstrassen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1034Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1034">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8886Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8886">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8887Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8887">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Strassen nach StrassengesetzType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Strassen nach Strassengesetz">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1033Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1033">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1133Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1133">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1141Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1141">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="StrassenkreiseType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Strassenkreise">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1142Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1142">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="öffentlicher VerkehrType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:öffentlicher Verkehr">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1313Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1313">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1314Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1314">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1315Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1315">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1316Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1316">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="WanderwegeType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Wanderwege">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1326Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1326">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1327Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1327">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1328Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1328">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1335Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1335">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1338Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1338">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="RadroutenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Radrouten">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_105Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_105">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_106Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_106">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_107Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_107">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_9093Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_9093">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="historische VerkehrswegeType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:historische Verkehrswege">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1410Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1410">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1411Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1411">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1565Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1565">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="o) Risiken ChemieType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:o) Risiken Chemie">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Chemische RisikenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Chemische Risiken">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1183Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1183">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1222Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1222">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1223Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1223">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1224Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1224">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1225Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1225">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1226Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1226">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1227Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1227">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Transportrisiken StrasseType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Transportrisiken Strasse">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1334Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1334">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1332Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1332">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1333Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1333">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1330Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1330">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Transportrisiken SchieneType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Transportrisiken Schiene">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1646Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1646">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1645Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1645">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="q) ÜbersichtspläneType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:q) Übersichtspläne">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1430Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1430">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_409Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_409">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="q) OrthofotosType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:q) Orthofotos">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_269Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_269">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_270Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_270">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1434Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1434">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1613Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1613">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1621Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1621">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="j) WärmeverbundkatasterType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:j) Wärmeverbundkataster">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1466Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1466">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1447Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1447">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1467Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1467">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="j) AbwasserType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:j) Abwasser">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="kantonale Mischwasserkanalisation (AIB)Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:kantonale Mischwasserkanalisation (AIB)">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1408Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1408">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1409Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1409">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="o) NaturgefahrenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:o) Naturgefahren">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="GefahrenhinweiskarteType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Gefahrenhinweiskarte">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="SturzgefahrenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Sturzgefahren">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1376Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1376">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1391Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1391">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="RutschgefahrenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Rutschgefahren">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1379Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1379">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1382Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1382">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1383Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1383">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1377Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1377">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1381Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1381">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1380Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1380">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1378Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1378">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1390Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1390">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1384Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1384">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="WassergefahrenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Wassergefahren">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1385Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1385">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1386Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1386">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1387Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1387">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1388Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1388">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="ErdbebenmikrozonierungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Erdbebenmikrozonierung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_398Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_398">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_399Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_399">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="q) HöhenmodelleType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:q) Höhenmodelle">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1000Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1000">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1001Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1001">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1558Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1558">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="k) LandwirtschaftType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:k) Landwirtschaft">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="RebflächenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Rebflächen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1259Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1259">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1260Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1260">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1261Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1261">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1262Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1262">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1263Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1263">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Landwirtschaft allgemeinType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Landwirtschaft allgemein">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1118Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1118">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1570Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1570">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1569Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1569">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1858Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1858">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="FruchtfolgeflächenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Fruchtfolgeflächen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1840Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1840">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1833Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1833">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="KulturflächenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Kulturflächen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_389Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_389">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="MeliorationsleitungskatasterType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Meliorationsleitungskataster">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_395Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_395">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_394Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_394">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_2483Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_2483">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_109Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_109">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="o) KlimafunktionskartenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:o) Klimafunktionskarten">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="A DurchlüftungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:A Durchlüftung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1576Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1576">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1577Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1577">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1578Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1578">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1579Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1579">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="B LufthygieneType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:B Lufthygiene">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1580Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1580">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1581Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1581">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="C Thermische SituationType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:C Thermische Situation">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1582Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1582">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1583Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1583">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="p) LuftType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:p) Luft">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="LuftqualitätskartenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Luftqualitätskarten">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="2005Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:2005">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1824Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1824">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1825Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1825">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1826Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1826">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1827Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1827">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1828Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1828">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1829Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1829">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1830Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1830">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="2010Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:2010">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8089Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8089">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8094Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8094">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8101Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8101">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8102Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8102">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8187Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8187">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8188Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8188">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8189Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8189">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8194Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8194">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8195Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8195">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1831Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1831">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="r) Administrative GrenzenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:r) Administrative Grenzen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1859Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1859">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_6885Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_6885">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_19Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_19">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1134Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1134">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="o) Risiken BiologieType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:o) Risiken Biologie">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Tätigkeiten nach ESVType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Tätigkeiten nach ESV">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1309Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1309">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1310Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1310">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_1311Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_1311">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="Invasive NeophytenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:Invasive Neophyten">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8389Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8389">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="p) Nichtionisierende Strahlung (NIS)Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:p) Nichtionisierende Strahlung (NIS)">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8685Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8685">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8490Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8490">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="a) Kantonaler RichtplanType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:a) Kantonaler Richtplan">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="1) SiedlungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:1) Siedlung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8595Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8595">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8598Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8598">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8599Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8599">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8596Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8596">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8597Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8597">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8600Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8600">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="3) VerkehrType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:3) Verkehr">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1337Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1337">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="map_1338Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:map_1338">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8607Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8607">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8608Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8608">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="2) LandschaftType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:2) Landschaft">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8589Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8589">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8591Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8591">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8592Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8592">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8588Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8588">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8593Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8593">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="4) Ver- und EntsorgungType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:4) Ver- und Entsorgung">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8609Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8609">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8610Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8610">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8611Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8611">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="5) GebietsplanungenType">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:5) Gebietsplanungen">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+        <complexType name="layer_8594Type">
+            <RasterDefinition name="Image">
+                <Format>PNG</Format>
+                <Transparent>true</Transparent>
+                <UseTileCache>false</UseTileCache>
+                <BackgroundColor>0xffffff</BackgroundColor>
+                <Time></Time>
+                <Elevation></Elevation>
+                <SpatialContext>EPSG:21781</SpatialContext>
+                <Layer name="WMS_Schema:layer_8594">
+                    <Style name="default" />
+                </Layer>
+            </RasterDefinition>
+        </complexType>
+    </SchemaMapping>
+</fdo:DataStore>
\ No newline at end of file

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMap.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMap.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMap.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -140,6 +140,8 @@
         private IMappingService _mapSvc;
         private IGetResourceContents _getRes;
 
+        public const double Z_ORDER_INCREMENT = 100.0;
+
         internal RuntimeMap(IServerConnection conn)
         {
             _disableChangeTracking = true;
@@ -962,19 +964,93 @@
         protected Dictionary<string, ILayerDefinition> layerDefinitionCache = new Dictionary<string, ILayerDefinition>();
 
         /// <summary>
-        /// Creates and adds the layer to the map
+        /// Adds the layer to the map. Does nothing if the layer instance is already in the map.
         /// </summary>
-        /// <param name="layerDefinitionId">The layer definition id.</param>
-        /// <param name="group">The group.</param>
+        /// <param name="layer"></param>
         /// <returns></returns>
-        public RuntimeMapLayer AddLayer(string layerDefinitionId, RuntimeMapGroup group)
+        public void AddLayer(RuntimeMapLayer layer)
         {
-            ILayerDefinition ldf = GetLayerDefinition(layerDefinitionId);
+            if (_layerIdMap.ContainsKey(layer.ObjectId))
+                return;
 
-            var layer = new RuntimeMapLayer(this, ldf);
-
             AddLayerInternal(layer);
+        }
 
+        /// <summary>
+        /// Inserts the specified layer at the specified index. Does nothing
+        /// if the layer instance is already in the map.
+        /// </summary>
+        /// <param name="index"></param>
+        /// <param name="layer"></param>
+        public void InsertLayer(int index, RuntimeMapLayer layer)
+        {
+            if (index >= _layers.Count || index < 0)
+                throw new ArgumentOutOfRangeException("index");
+
+            AddLayerInternal(layer, index);
+        }
+
+        public void SetLayerIndex(int index, RuntimeMapLayer layer)
+        {
+            if (index >= _layers.Count || index < 0)
+                throw new ArgumentOutOfRangeException("index");
+
+            int idx = IndexOfLayer(layer);
+            if (idx >= 0)
+            {
+                RemoveLayerAt(idx);
+                AddLayerInternal(layer, index);
+            }
+        }
+
+        public void RemoveLayerAt(int index)
+        {
+            if (index >= _layers.Count || index < 0)
+                throw new ArgumentOutOfRangeException("index");
+
+            RemoveLayerInternal(index);
+        }
+
+        /// <summary>
+        /// Gets the index of the specified layer
+        /// </summary>
+        /// <param name="layer"></param>
+        /// <returns></returns>
+        public int IndexOfLayer(RuntimeMapLayer layer)
+        {
+            return _layers.IndexOf(layer);
+        }
+
+        /// <summary>
+        /// Gets the index of the first layer whose name matches the specified name
+        /// </summary>
+        /// <param name="layerName"></param>
+        /// <returns></returns>
+        public int IndexOfLayer(string layerName)
+        {
+            Check.NotEmpty(layerName, "layerName");
+
+            for (int i = 0; i < _layers.Count; i++)
+            {
+                if (layerName.Equals(_layers[i].Name))
+                    return i;
+            }
+            return -1;
+        }
+
+        /// <summary>
+        /// Creates a new runtime layer from a layer definition. The created layer needs
+        /// to be added to the map.
+        /// </summary>
+        /// <param name="layerDefinitionId"></param>
+        /// <param name="group"></param>
+        /// <returns></returns>
+        public RuntimeMapLayer CreateLayer(string layerDefinitionId, RuntimeMapGroup group)
+        {
+            ILayerDefinition ldf = GetLayerDefinition(layerDefinitionId);
+            var layer = new RuntimeMapLayer(this, ldf);
+            if (group != null)
+                layer.Group = group.Name;
             return layer;
         }
 
@@ -1000,7 +1076,7 @@
         /// Adds the layer.
         /// </summary>
         /// <param name="layer">The layer.</param>
-        protected void AddLayerInternal(RuntimeMapLayer layer)
+        internal void AddLayerInternal(RuntimeMapLayer layer)
         {
             _layers.Add(layer);
             _layerIdMap[layer.ObjectId] = layer;
@@ -1009,6 +1085,19 @@
         }
 
         /// <summary>
+        /// Adss the layer
+        /// </summary>
+        /// <param name="layer"></param>
+        /// <param name="index"></param>
+        internal void AddLayerInternal(RuntimeMapLayer layer, int index)
+        {
+            _layers.Insert(index, layer);
+            _layerIdMap[layer.ObjectId] = layer;
+
+            OnLayerAdded(layer);
+        }
+
+        /// <summary>
         /// Creates the group and adds it to the map
         /// </summary>
         /// <param name="name">The name.</param>
@@ -1020,7 +1109,7 @@
             return group;
         }
 
-        private void AddGroupInternal(RuntimeMapGroup group)
+        internal void AddGroupInternal(RuntimeMapGroup group)
         {
             _groups.Add(group);
             OnGroupAdded(group);
@@ -1030,7 +1119,7 @@
         /// Removes the layer
         /// </summary>
         /// <param name="layer">The layer.</param>
-        protected void RemoveLayerInternal(RuntimeMapLayer layer)
+        internal void RemoveLayerInternal(RuntimeMapLayer layer)
         {
             if (_layers.Remove(layer))
             {
@@ -1038,6 +1127,16 @@
             }
         }
 
+        private void RemoveLayerInternal(int index)
+        {
+            if (index >= 0 && index < _layers.Count)
+            {
+                var layer = _layers[index];
+                _layers.RemoveAt(index);
+                OnLayerRemoved(layer);
+            }
+        }
+
         /// <summary>
         /// Removes the specified layer.
         /// </summary>
@@ -1058,7 +1157,7 @@
             RemoveGroupInternal(group);
         }
 
-        private void RemoveGroupInternal(RuntimeMapGroup group)
+        internal void RemoveGroupInternal(RuntimeMapGroup group)
         {
             if (_groups.Remove(group))
             {
@@ -1347,6 +1446,30 @@
                 format,
                 keepSelection);
         }
+
+        /// <summary>
+        /// Convenience method for rendering the legend for this map
+        /// </summary>
+        /// <param name="width"></param>
+        /// <param name="height"></param>
+        /// <param name="color"></param>
+        /// <param name="format"></param>
+        /// <returns></returns>
+        public System.IO.Stream RenderMapLegend(int width, int height, System.Drawing.Color color, string format)
+        {
+            if (_mapSvc == null)
+                throw new NotSupportedException();
+
+            return _mapSvc.RenderMapLegend(
+                this,
+                width,
+                height,
+                color,
+                format);
+        }
+
         #endregion
+
+        
     }
 }

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMapLayer.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMapLayer.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Mapping/RuntimeMapLayer.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -230,15 +230,6 @@
         }
 
         /// <summary>
-        /// Sets the display order of this layer
-        /// </summary>
-        /// <param name="priority"></param>
-        public void SetDrawOrder(double priority)
-        {
-            this.DisplayOrder = priority;
-        }
-
-        /// <summary>
         /// Gets the layer definition ID.
         /// </summary>
         /// <value>The layer definition ID.</value>

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Schema/ClassDefinition.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Schema/ClassDefinition.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Schema/ClassDefinition.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -418,7 +418,7 @@
 
             //Process identity properties
             var parent = node.ParentNode;
-            var key = parent.SelectSingleNode("xs:element[@name='" + this.Name + "']/xs:key", mgr);
+            var key = parent.SelectSingleNode("xs:element[@name=\"" + this.Name + "\"]/xs:key", mgr);
             if (key != null)
             {
                 var fields = key.SelectNodes("xs:field", mgr);

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Services/IMappingService.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Services/IMappingService.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI/Services/IMappingService.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -22,6 +22,7 @@
 using System.Text;
 using OSGeo.MapGuide.ObjectModels.MapDefinition;
 using OSGeo.MapGuide.MaestroAPI.Mapping;
+using System.Drawing;
 
 namespace OSGeo.MapGuide.MaestroAPI.Services
 {
@@ -205,178 +206,16 @@
         /// <param name="clip">if set to <c>true</c> [clip].</param>
         /// <returns></returns>
         System.IO.Stream RenderRuntimeMap(string resourceId, double x1, double y1, double x2, double y2, int width, int height, int dpi, string format, bool clip);
-        /*
-        /// <summary>
-        /// Creates a runtime map on the server. 
-        /// The map name will be the name of the resource, without path information.
-        /// This is equivalent to the way the AJAX viewer creates the runtime map.
-        /// </summary>
-        /// <param name="resourceID">The mapDefinition resource id</param>
-        void CreateRuntimeMap(string resourceID);
 
         /// <summary>
-        /// Creates a runtime map on the server
+        /// Renders the legend for the specified <see cref="RuntimeMap"/> to the requested size and format
         /// </summary>
-        /// <param name="resourceID">The target resource id for the runtime map</param>
-        /// <param name="mapdefinition">The mapdefinition to base the map on</param>
-        void CreateRuntimeMap(string resourceID, string mapdefinition);
-
-        /// <summary>
-        /// Creates a runtime map on the server
-        /// </summary>
-        /// <param name="resourceID">The target resource id for the runtime map</param>
-        /// <param name="map">The mapdefinition to base the map on</param>
-        void CreateRuntimeMap(string resourceID, IMapDefinition map);
-
-        /// <summary>
-        /// Creates a runtime map on the server
-        /// </summary>
-        /// <param name="resourceID">The target resource id for the runtime map</param>
-        /// <param name="map">The mapdefinition to base the map on</param>
-        void CreateRuntimeMap(string resourceID, RuntimeMapBase map);
-
-        /// <summary>
-        /// Updates an existing runtime map
-        /// </summary>
-        /// <param name="resourceID">The target resource id for the runtime map</param>
-        /// <param name="map">The runtime map to update with</param>
-        void SaveRuntimeMap(string resourceID, RuntimeMapBase map);
-
-        /// <summary>
-        /// Gets the runtime map.
-        /// </summary>
-        /// <param name="resourceID">The resource ID.</param>
+        /// <param name="map"></param>
+        /// <param name="width"></param>
+        /// <param name="height"></param>
+        /// <param name="backgroundColor"></param>
+        /// <param name="format"></param>
         /// <returns></returns>
-        RuntimeMapBase GetRuntimeMap(string resourceID);
-
-        /// <summary>
-        /// Renders the runtime map.
-        /// </summary>
-        /// <param name="resourceId">The resource id.</param>
-        /// <param name="x">The x.</param>
-        /// <param name="y">The y.</param>
-        /// <param name="scale">The scale.</param>
-        /// <param name="width">The width.</param>
-        /// <param name="height">The height.</param>
-        /// <param name="dpi">The dpi.</param>
-        /// <returns></returns>
-        System.IO.Stream RenderRuntimeMap(string resourceId, double x, double y, double scale, int width, int height, int dpi);
-        /// <summary>
-        /// Renders the runtime map.
-        /// </summary>
-        /// <param name="resourceId">The resource id.</param>
-        /// <param name="x1">The x1.</param>
-        /// <param name="y1">The y1.</param>
-        /// <param name="x2">The x2.</param>
-        /// <param name="y2">The y2.</param>
-        /// <param name="width">The width.</param>
-        /// <param name="height">The height.</param>
-        /// <param name="dpi">The dpi.</param>
-        /// <returns></returns>
-        System.IO.Stream RenderRuntimeMap(string resourceId, double x1, double y1, double x2, double y2, int width, int height, int dpi);
-
-        /// <summary>
-        /// Renders the runtime map.
-        /// </summary>
-        /// <param name="resourceId">The resource id.</param>
-        /// <param name="x">The x.</param>
-        /// <param name="y">The y.</param>
-        /// <param name="scale">The scale.</param>
-        /// <param name="width">The width.</param>
-        /// <param name="height">The height.</param>
-        /// <param name="dpi">The dpi.</param>
-        /// <param name="format">The format.</param>
-        /// <returns></returns>
-        System.IO.Stream RenderRuntimeMap(string resourceId, double x, double y, double scale, int width, int height, int dpi, string format);
-        /// <summary>
-        /// Renders the runtime map.
-        /// </summary>
-        /// <param name="resourceId">The resource id.</param>
-        /// <param name="x1">The x1.</param>
-        /// <param name="y1">The y1.</param>
-        /// <param name="x2">The x2.</param>
-        /// <param name="y2">The y2.</param>
-        /// <param name="width">The width.</param>
-        /// <param name="height">The height.</param>
-        /// <param name="dpi">The dpi.</param>
-        /// <param name="format">The format.</param>
-        /// <returns></returns>
-        System.IO.Stream RenderRuntimeMap(string resourceId, double x1, double y1, double x2, double y2, int width, int height, int dpi, string format);
-
-        /// <summary>
-        /// Renders the runtime map.
-        /// </summary>
-        /// <param name="resourceId">The resource id.</param>
-        /// <param name="x">The x.</param>
-        /// <param name="y">The y.</param>
-        /// <param name="scale">The scale.</param>
-        /// <param name="width">The width.</param>
-        /// <param name="height">The height.</param>
-        /// <param name="dpi">The dpi.</param>
-        /// <param name="format">The format.</param>
-        /// <param name="clip">if set to <c>true</c> [clip].</param>
-        /// <returns></returns>
-        System.IO.Stream RenderRuntimeMap(string resourceId, double x, double y, double scale, int width, int height, int dpi, string format, bool clip);
-        /// <summary>
-        /// Renders the runtime map.
-        /// </summary>
-        /// <param name="resourceId">The resource id.</param>
-        /// <param name="x1">The x1.</param>
-        /// <param name="y1">The y1.</param>
-        /// <param name="x2">The x2.</param>
-        /// <param name="y2">The y2.</param>
-        /// <param name="width">The width.</param>
-        /// <param name="height">The height.</param>
-        /// <param name="dpi">The dpi.</param>
-        /// <param name="format">The format.</param>
-        /// <param name="clip">if set to <c>true</c> [clip].</param>
-        /// <returns></returns>
-        System.IO.Stream RenderRuntimeMap(string resourceId, double x1, double y1, double x2, double y2, int width, int height, int dpi, string format, bool clip);
-
-        /// <summary>
-        /// Sets the selection of a map
-        /// </summary>
-        /// <param name="runtimeMap">The resourceID of the runtime map</param>
-        /// <param name="selectionXml">The selection xml</param>
-        void SetSelectionXml(string runtimeMap, string selectionXml);
-
-        /// <summary>
-        /// Gets the selection from a map
-        /// </summary>
-        /// <param name="runtimeMap">The resourceID of the runtime map</param>
-        /// <returns>The selection xml</returns>
-        string GetSelectionXml(string runtimeMap);
-
-
-        /// <summary>
-        /// Selects features from a runtime map, returning a selection Xml.
-        /// </summary>
-        /// <param name="runtimemap">The map to query. NOT a resourceID, only the map name!</param>
-        /// <param name="wkt">The WKT of the geometry to query with (always uses intersection)</param>
-        /// <param name="persist">True if the selection should be saved in the runtime map, false otherwise.</param>
-        /// <param name="attributes">The type of layer to include in the query</param>
-        /// <param name="raw">True if the result should contain the tooltip and link info</param>
-        /// <returns>The selection Xml, or an empty string if there were no data.</returns>
-        string QueryMapFeatures(string runtimemap, string wkt, bool persist, QueryMapFeaturesLayerAttributes attributes, bool raw);
-
-        /// <summary>
-        /// Selects features from a runtime map, returning a selection Xml.
-        /// </summary>
-        /// <param name="runtimemap">The map to query. NOT a resourceID, only the map name!</param>
-        /// <param name="wkt">The WKT of the geometry to query with (always uses intersection)</param>
-        /// <param name="persist">True if the selection should be saved in the runtime map, false otherwise.</param>
-        /// <returns>The selection Xml, or an empty string if there were no data.</returns>
-        string QueryMapFeatures(string runtimemap, string wkt, bool persist);
-
-        /// <summary>
-        /// Renders a minature bitmap of the layers style
-        /// </summary>
-        /// <param name="scale">The scale for the bitmap to match</param>
-        /// <param name="layerdefinition">The layer the image should represent</param>
-        /// <param name="themeIndex">If the layer is themed, this gives the theme index, otherwise set to 0</param>
-        /// <param name="type">The geometry type, 1 for point, 2 for line, 3 for area, 4 for composite</param>
-        /// <returns>The minature bitmap</returns>
-        System.Drawing.Image GetLegendImage(double scale, string layerdefinition, int themeIndex, int type);
-        */
+        System.IO.Stream RenderMapLegend(RuntimeMap map, int width, int height, Color backgroundColor, string format);
     }
 }

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/HttpServerConnection.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/HttpServerConnection.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/HttpServerConnection.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -42,6 +42,7 @@
 using OSGeo.MapGuide.MaestroAPI.Http.Commands;
 using OSGeo.MapGuide.MaestroAPI.Schema;
 using OSGeo.MapGuide.MaestroAPI.Feature;
+using System.Drawing;
 
 namespace OSGeo.MapGuide.MaestroAPI
 {
@@ -904,6 +905,14 @@
             }
         }
 
+        public Stream RenderMapLegend(RuntimeMap map, int width, int height, System.Drawing.Color backgroundColor, string format)
+        {
+            System.IO.MemoryStream ms = new System.IO.MemoryStream();
+            string req = m_reqBuilder.RenderMapLegend(map.Name, width, height, ColorTranslator.ToHtml(backgroundColor), format);
+
+            return this.OpenRead(req);
+        }
+
 		public override System.IO.Stream RenderRuntimeMap(string resourceId, double x, double y, double scale, int width, int height, int dpi, string format, bool clip)
 		{
             ResourceIdentifier.Validate(resourceId, ResourceTypes.RuntimeMap);

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/RequestBuilder.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/RequestBuilder.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Http/RequestBuilder.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -21,6 +21,7 @@
 using System;
 using System.Collections.Specialized;
 using OSGeo.MapGuide.ObjectModels.Common;
+using System.Globalization;
 
 namespace OSGeo.MapGuide.MaestroAPI
 {
@@ -1555,5 +1556,23 @@
 
             return m_hosturi + "?" + EncodeParameters(param);
         }
+
+        internal string RenderMapLegend(string mapName, int width, int height, string color, string format)
+        {
+            NameValueCollection param = new NameValueCollection();
+            param.Add("OPERATION", "GETMAPLEGENDIMAGE");
+            param.Add("VERSION", "1.0.0");
+            param.Add("SESSION", m_sessionID);
+            param.Add("MAPNAME", mapName);
+            param.Add("CLIENTAGENT", m_userAgent);
+
+            if (format != null && format.Length != 0)
+                param.Add("FORMAT", format);
+
+            param.Add("WIDTH", width.ToString(CultureInfo.InvariantCulture));
+            param.Add("HEIGHT", height.ToString(CultureInfo.InvariantCulture));
+
+            return m_hosturi + "?" + EncodeParameters(param);
+        }
     }
 }

Modified: trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Native/LocalNativeConnection.cs
===================================================================
--- trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Native/LocalNativeConnection.cs	2011-05-08 17:31:01 UTC (rev 5763)
+++ trunk/Tools/Maestro/OSGeo.MapGuide.MaestroAPI.Native/LocalNativeConnection.cs	2011-05-09 15:15:01 UTC (rev 5764)
@@ -37,6 +37,8 @@
 using OSGeo.MapGuide.MaestroAPI.Native.Commands;
 using OSGeo.MapGuide.MaestroAPI.Schema;
 using OSGeo.MapGuide.MaestroAPI.Feature;
+using System.Drawing;
+using System.Globalization;
 
 namespace OSGeo.MapGuide.MaestroAPI.Native
 {
@@ -618,6 +620,26 @@
             return result;
         }
 
+        public Stream RenderMapLegend(RuntimeMap map, int width, int height, System.Drawing.Color backgroundColor, string format)
+        {
+            MgRenderingService rnd = this.Connection.CreateService(MgServiceType.RenderingService) as MgRenderingService;
+            MgResourceService res = this.Connection.CreateService(MgServiceType.ResourceService) as MgResourceService;
+
+            MgMap mmap = new MgMap();
+            mmap.Open(res, map.Name);
+            MgSelection sel = new MgSelection(mmap);
+
+            MgColor color = new MgColor(backgroundColor);
+
+            object[] args = new object[] { mmap, width, height, color, format };
+            Type[] types = new Type[] { args[0].GetType(), args[1].GetType(), args[2].GetType(), args[3].GetType(), args[4].GetType() };
+            var result = Utility.MgStreamToNetStream(rnd, rnd.GetType().GetMethod("RenderMapLegend", types), args);
+
+            LogMethodCall("MgRenderingService::RenderMapLegend", true, "MgMap", width.ToString(CultureInfo.InvariantCulture), height.ToString(CultureInfo.InvariantCulture), "#" + ColorTranslator.ToHtml(backgroundColor), format);
+
+            return result;
+        }
+
 		public override bool IsSessionExpiredException(Exception ex)
 		{
 			return ex != null && ex.GetType() == typeof(OSGeo.MapGuide.MgSessionExpiredException) ||  ex.GetType() == typeof(OSGeo.MapGuide.MgSessionNotFoundException);



More information about the mapguide-commits mailing list