BKG WebMap - Konfigurationsreferenz

Im folgenden werden die zur verfügung stehenden Konfigurationen für die Factory-Funktionen für

aufgelistet.

Layer

Layer können über die Funktion BKGWebMap.MapBuilder.setLayers der Karte hinzugefügt werden. Eine weitere Möglichkeit Layer direkt zu erzeugen ist mittels BKGWebMap.Layer.create.
Die Konfiguration erfolgt per JavaScript-Objekt. Über die type-Property kann die Art und die Parameter der zu erzeugenden Layer gesteuert werden.

Basistypen

typeErgebnisParameterBeispiel
WMS OpenLayers.Layer.WMS Siehe Properties OpenLayers.Layer.WMS.
Die Request-Parameter params werden im Attribut params angegeben.
{
  type: 'WMS',
  name: 'DOP-Befliegungsdatum',
  url: BKGWebMap.Layer.BASE_URL + 'wms_dop_info',
  singleTile: true,
  maxResolution: 300,
  params: {
    layers: '0',
    format: 'image/png32',
    transparent: true
  }
}
          
WMTS OpenLayers.Layer.WMTS Siehe Properties OpenLayers.Layer.WMTS.
{
  type: 'WMTS',
  name: 'basemap.de',
  url: BKGWebMap.Layer.BASE_URL + 'wmts_basemapde/tile',
  layer: 'webatlasde',
  isBaseLayer: true,
  style: 'default',
  matrixSet: 'default028mm',
  format: 'image/png',
  requestEncoding: 'REST',
  tileOrigin: new OpenLayers.LonLat(-46133.17, 6301219.54),
  tileSize: new OpenLayers.Size(256,256),
  serverResolutions: BKGWebMap.Layer.basemap.de.RESOLUTIONS
}
          
WFS OpenLayers.Layer.Vektor Siehe Properties OpenLayers.Layer.Vektor.
Die Property protocol wird hierbei mit einem WFS-Protokol initialisiert. Die Parameter werden dem Konfigurationsobjekt wfs entnommen.
Für strategies wird standardmäßig eine BBOX-Strategie verwendet. Und für styleMap wird standardmäßig mit BKGWebMap.STYLES.ROT.Polygon inizialisiert. Beides kann in der Konfiguration bei Bedarf überschrieben werden.
{
  type: 'WFS',
  name: 'VG250',
  wfs: {
    url: "http://sg.geodatenzentrum.de/wfs_vg250",
    featureType: "Kreis",
    featureNS: "http://www.geodatenzentrum.de/vg250",
    geometryName: "Shape",
  }
}
          
EMPTY OpenLayers.Layer Siehe Properties OpenLayers.Layer.
{
  type: 'EMPTY',
  name: 'Ein leerer Layer',
  isBaseLayer: false
}
          
BKG.WMS BKGWebMap.Layer.WMS Siehe Properties BKGWebMap.Layer.WMS. Im Gegensatz zum OpenLayers.Layer.WMS können die Layer über die Property layers angegeben und mit Zusatzinformationen versehen werden.
{
  type: 'BKG.WMS',
  name: 'Postleitzahlgebiete',
  url: BKGWebMap.Layer.BASE_URL + 'wms_plz',
  singleTile: true,
  layers: [ {
      title: 'Postleitzahlgebiete',
      name: 'gebiete',
      active: true
  } ],
  params: {
    style: 'rot_schrift',
    format: 'image/png32',
    transparent: true
  }
}
          

basemap.de

typeErgebnisParameterBeispiel
WMS.BASEMAPDE.FARBE OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_basemapde.
{ type: 'WMS.BASEMAPDE.FARBE' }
WMS.BASEMAPDE.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_basemapde.
{ type: 'WMS.BASEMAPDE.GRAU' }
WMTS.BASEMAPDE.FARBE OpenLayers.Layer.WMTS Siehe WMTS. Enthält Konfiguration für wmts_basemapde.
{ type: 'WMTS.BASEMAPDE.FARBE' }
WMTS.BASEMAPDE.GRAU OpenLayers.Layer.WMTS Siehe WMTS. Enthält Konfiguration für wmts_basemapde.
{ type: 'WMTS.BASEMAPDE.GRAU' }
BASEMAPDE.FARBE OpenLayers.Layer.WMS oder OpenLayers.Layer.WMTS Erstellt in Abhängigkeit der Kartenprojektion einen Layer mit wms_basemapde oder wmts_basemapde.
{ type: 'BASEMAPDE.FARBE' }
BASEMAPDE.GRAU OpenLayers.Layer.WMS oder OpenLayers.Layer.WMTS Erstellt in Abhängigkeit der Kartenprojektion einen Layer mit wms_basemapde oder wmts_basemapde.
{ type: 'BASEMAPDE.GRAU' }

Orthophotos/Satellitenbilder

typeErgebnisParameterBeispiel
WMS.DOP20 BKGWebMap.Layer.WMS Erstellt einen Layer mit den Digitalen Orthophotos 20cm Bodenauflösung RGB-Darstellung für den Dienst wms_dop.
{ type: 'WMS.DOP20' }
WMTS.DOP20 OpenLayers.Layer.WMTS Erstellt einen Layer mit den Digitalen Orthophotos 20cm Bodenauflösung RGB-Darstellung für den Dienst wmts_dop.
{ type: 'WMTS.DOP20' }
WMS.DOP40 BKGWebMap.Layer.WMS Erstellt einen Layer mit den Digitalen Orthophotos 40cm Bodenauflösung RGB-Darstellung für den Dienst wms_dop40.
{ type: 'WMS.DOP40' }
WMS.DOP20.IR BKGWebMap.Layer.WMS Erstellt einen Layer mit den Digitalen Orthophotos 20cm Bodenauflösung Infrarot-Darstellung für den Dienst wms_dop.
{ type: 'WMS.DOP20.IR' }
WMTS.DOP20.IR OpenLayers.Layer.WMTS Erstellt einen Layer mit den Digitalen Orthophotos 20cm Bodenauflösung Infrarot-Darstellung für den Dienst wmts_dop.
{ type: 'WMTS.DOP20.IR' }
WMS.DOP40.IR BKGWebMap.Layer.WMS Erstellt einen Layer mit den Digitalen Orthophotos 40cm Bodenauflösung Infrarot-Darstellung für den Dienst wms_dop40.
{ type: 'WMS.DOP40.IR' }
WMS.DOP20.CIR BKGWebMap.Layer.WMS Erstellt einen Layer mit den Digitalen Orthophotos 20cm Bodenauflösung Falschfarben-Infrarot-Darstellung für den Dienst wms_dop.
{ type: 'WMS.DOP20.CIR' }
WMTS.DOP20.CIR OpenLayers.Layer.WMTS Erstellt einen Layer mit den Digitalen Orthophotos 20cm Bodenauflösung Falschfarben-Infrarot-Darstellung für den Dienst wmts_dop.
{ type: 'WMTS.DOP20.CIR' }
WMS.DOP40.CIR BKGWebMap.Layer.WMS Erstellt einen Layer mit den Digitalen Orthophotos 40cm Bodenauflösung Falschfarben-Infrarot-Darstellung für den Dienst wms_dop40.
{ type: 'WMS.DOP40.CIR' }
WMS.RAPIDEYE.2009 BKGWebMap.Layer.WMS Erstellt einen Layer für den Dienst wms_rapideye_2009.
{ type: 'WMS.RAPIDEYE.2009' }
WMS.RAPIDEYE.2009.IR BKGWebMap.Layer.WMS Erstellt einen Layer mit der Infrarotdarstellung für den Dienst wms_rapideye_2009.
{ type: 'WMS.RAPIDEYE.2009.IR' }
WMS.RAPIDEYE.2012 BKGWebMap.Layer.WMS Erstellt einen Layer für den Dienst wms_rapideye_2012.
{ type: 'WMS.RAPIDEYE.2012' }
WMS.RAPIDEYE.2012.IR BKGWebMap.Layer.WMS Erstellt einen Layer mit der Infrarotdarstellung für den Dienst wms_rapideye_2012.
{ type: 'WMS.RAPIDEYE.2012.IR' }

DGM

typeErgebnisParameterBeispiel
WMS.DGM1000.RELIEF BKGWebMap.Layer.WMS Erstellt einen Layer mit der Reliefdarstellung für den Dienst wms_dgm1000.
{ type: 'WMS.DGM1000.RELIEF' }
WMS.DGM1000.SCHUMMERUNG BKGWebMap.Layer.WMS Erstellt einen Layer mit der Scummerungsdarstellung für den Dienst wms_dgm1000.
{ type: 'WMS.DGM1000.SCHUMMERUNG' }
WMS.DGM1000.COLORMAP BKGWebMap.Layer.WMS Erstellt einen Layer mit der Colormapdarstellung für den Dienst wms_dgm1000.
{ type: 'WMS.DGM1000.COLORMAP' }
WMS.DGM1000.HOEHE BKGWebMap.Layer.WMS Erstellt einen Layer mit der Höhenwertdarstellung für den Dienst wms_dgm1000.
{ type: 'WMS.DGM1000.HOEHE' }
WMS.DGM200.RELIEF BKGWebMap.Layer.WMS Erstellt einen Layer mit der Reliefdarstellung für den Dienst wms_dgm200.
{ type: 'WMS.DGM200.RELIEF' }
WMS.DGM200.SCHUMMERUNG BKGWebMap.Layer.WMS Erstellt einen Layer mit der Scummerungsdarstellung für den Dienst wms_dgm200.
{ type: 'WMS.DGM200.SCHUMMERUNG' }
WMS.DGM200.COLORMAP BKGWebMap.Layer.WMS Erstellt einen Layer mit der Colormapdarstellung für den Dienst wms_dgm200.
{ type: 'WMS.DGM200.COLORMAP' }
WMS.DGM200.HOEHE BKGWebMap.Layer.WMS Erstellt einen Layer mit der Höhenwertdarstellung für den Dienst wms_dgm200.
{ type: 'WMS.DGM200.HOEHE' }
WMS.DGM50.RELIEF BKGWebMap.Layer.WMS Erstellt einen Layer mit der Reliefdarstellung für den Dienst wms_dgm50.
{ type: 'WMS.DGM50.RELIEF' }
WMS.DGM50.SCHUMMERUNG BKGWebMap.Layer.WMS Erstellt einen Layer mit der Scummerungsdarstellung für den Dienst wms_dgm50.
{ type: 'WMS.DGM50.SCHUMMERUNG' }
WMS.DGM50.COLORMAP BKGWebMap.Layer.WMS Erstellt einen Layer mit der Colormapdarstellung für den Dienst wms_dgm50.
{ type: 'WMS.DGM50.COLORMAP' }
WMS.DGM50.HOEHE BKGWebMap.Layer.WMS Erstellt einen Layer mit der Höhenwertdarstellung für den Dienst wms_dgm50.
{ type: 'WMS.DGM50.HOEHE' }
WMS.DGM25.RELIEF BKGWebMap.Layer.WMS Erstellt einen Layer mit der Reliefdarstellung für den Dienst wms_dgm25.
{ type: 'WMS.DGM25.RELIEF' }
WMS.DGM25.SCHUMMERUNG BKGWebMap.Layer.WMS Erstellt einen Layer mit der Scummerungsdarstellung für den Dienst wms_dgm25.
{ type: 'WMS.DGM25.SCHUMMERUNG' }
WMS.DGM25.COLORMAP BKGWebMap.Layer.WMS Erstellt einen Layer mit der Colormapdarstellung für den Dienst wms_dgm25.
{ type: 'WMS.DGM25.COLORMAP' }
WMS.DGM25.HOEHE BKGWebMap.Layer.WMS Erstellt einen Layer mit der Höhenwertdarstellung für den Dienst wms_dgm25.
{ type: 'WMS.DGM25.HOEHE' }
WMS.DGM10.RELIEF BKGWebMap.Layer.WMS Erstellt einen Layer mit der Reliefdarstellung für den Dienst wms_dgm10.
{ type: 'WMS.DGM10.RELIEF' }
WMS.DGM10.SCHUMMERUNG BKGWebMap.Layer.WMS Erstellt einen Layer mit der Scummerungsdarstellung für den Dienst wms_dgm10.
{ type: 'WMS.DGM10.SCHUMMERUNG' }
WMS.DGM10.COLORMAP BKGWebMap.Layer.WMS Erstellt einen Layer mit der Colormapdarstellung für den Dienst wms_dgm10.
{ type: 'WMS.DGM10.COLORMAP' }
WMS.DGM10.HOEHE BKGWebMap.Layer.WMS Erstellt einen Layer mit der Höhenwertdarstellung für den Dienst wms_dgm10.
{ type: 'WMS.DGM10.HOEHE' }
WMS.DGM.EU.RELIEF BKGWebMap.Layer.WMS Erstellt einen Layer mit der Reliefdarstellung für den Dienst wms_euro_dem.
{ type: 'WMS.DGM.EU.RELIEF' }
WMS.DGM.EU.SCHUMMERUNG BKGWebMap.Layer.WMS Erstellt einen Layer mit Schummerungsdarstellung für den Dienst wms_euro_dem.
{ type: 'WMS.DGM.EU.SCHUMMERUNG' }
WMS.DGM.EU.SCHUMMERUNG_HELL BKGWebMap.Layer.WMS Erstellt einen Layer mit aufgehellter Schummerungsdarstellung für den Dienst wms_euro_dem.
{ type: 'WMS.DGM.EU.SCHUMMERUNG_HELL' }
WMS.INFO.DGM10.VERTRIEB OpenLayers.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_info mit Layer der DGM10 Aktualitäten im Vertrieb.
{ type: 'WMS.INFO.DGM10.VERTRIEB' }
WMS.INFO.DGM10.LIEFERUNG OpenLayers.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_info mit Layer der DGM10 Aktualitäten in Bearbeitung.
{ type: 'WMS.INFO.DGM10.LIEFERUNG' }
WMS.INFO.DGM10.ERFASSUNGSEINHEITEN OpenLayers.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_info mit Layer der DGM10 Erfassungseinheiten.
{ type: 'WMS.INFO.DGM10.ERFASSUNGSEINHEITEN' }
WMS.INFO.DGM5.VERTRIEB OpenLayers.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_info mit Layer der DGM5 Aktualitäten im Vertrieb.
{ type: 'WMS.INFO.DGM10.VERTRIEB' }
WMS.INFO.DGM5.LIEFERUNG OpenLayers.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_info mit Layer der DGM5 Aktualitäten in Bearbeitung.
{ type: 'WMS.INFO.DGM5.LIEFERUNG' }
WMS.INFO.DGM5.ERFASSUNGSEINHEITEN OpenLayers.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_info mit Layer der DGM5 Erfassungseinheiten.
{ type: 'WMS.INFO.DGM5.ERFASSUNGSEINHEITEN' }

DTK

typeErgebnisParameterBeispiel
WMS.DTK.BKG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_bkg.
{ type: 'WMS.DTK.BKG' }
WMS.DTK.KLEIN OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_klein in Farbdarstellung.
{ type: 'WMS.DTK.KLEIN' }
WMS.DTK.KLEIN.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_klein in Graustufendarstellung.
{ type: 'WMS.DTK.KLEIN.GRAU' }
WMS.DTK.GROSS OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_gross in Farbdarstellung.
{ type: 'WMS.DTK.GROSS' }
WMS.DTK.GROSS.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_gross in Graustufendarstellung.
{ type: 'WMS.DTK.GROSS.GRAU' }
WMS.DTK OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk in Farbdarstellung.
{ type: 'WMS.DTK' }
WMS.DTK.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_grau in Graustufendarstellung.
{ type: 'WMS.DTK.GROSS.GRAU' }
WMS.DTK1000 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk1000.
{ type: 'WMS.DTK1000' }
WMS.DTK1000.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk1000_grau.
{ type: 'WMS.DTK1000.GRAU' }
WMS.DTK500 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk500.
{ type: 'WMS.DTK500' }
WMS.DTK500.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk500_grau.
{ type: 'WMS.DTK500.GRAU' }
WMS.DTK250 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk250 mit dem Layer dtk250.
{ type: 'WMS.DTK250' }
WMS.DTK250.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk250 mit dem Layer dtk250_grau.
{ type: 'WMS.DTK250.GRAU' }
WMS.DTK100 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk100.
{ type: 'WMS.DTK100' }
WMS.DTK100.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk100_grau.
{ type: 'WMS.DTK100.GRAU' }
WMS.DTK50 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk50.
{ type: 'WMS.DTK50' }
WMS.DTK50.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk50_grau.
{ type: 'WMS.DTK50.GRAU' }
WMS.DTK25 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk25.
{ type: 'WMS.DTK25' }
WMS.DTK25.GRAU OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk25_grau.
{ type: 'WMS.DTK25.GRAU' }
WMS.DTK.INFO.DTK25 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_info mit Aktualitätslayer der DTK25.
{ type: 'WMS.DTK.INFO.DTK25' }
WMS.DTK.INFO.DTK50 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_info mit Aktualitätslayer der DTK50.
{ type: 'WMS.DTK.INFO.DTK50' }
WMS.DTK.INFO.DTK100 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_info mit Aktualitätslayer der DTK100.
{ type: 'WMS.DTK.INFO.DTK100' }
WMS.DTK.INFO.DTK200 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_info mit Aktualitätslayer der DTK200.
{ type: 'WMS.DTK.INFO.DTK200' }
WMS.DTK.INFO.DTK500 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_info mit Aktualitätslayer der DTK500.
{ type: 'WMS.DTK.INFO.DTK200' }
WMS.DTK.INFO.DTK1000 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_info mit Aktualitätslayer der DTK1000.
{ type: 'WMS.DTK.INFO.DTK1000' }
WMS.DTK.META.DTK25.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der DTK25-V Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK25.VERTRIEB' }
WMS.DTK.META.DTK25.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK25-V Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK25.LIEFERUNG' }
WMS.DTK.META.DTK50.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der DTK50-V Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK50.VERTRIEB' }
WMS.DTK.META.DTK50.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK50-V Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK50.LIEFERUNG' }
WMS.DTK.META.DTK100.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der DTK100-V Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK100.VERTRIEB' }
WMS.DTK.META.DTK100.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK100-V Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK100.LIEFERUNG' }
WMS.DTK.META.DTK200.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der DTK200-V Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK200.VERTRIEB' }
WMS.DTK.META.DTK200.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK200-V Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK200.LIEFERUNG' }
WMS.DTK.META.DTK500.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der DTK500-V Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK500.VERTRIEB' }
WMS.DTK.META.DTK500.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK500-V Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK500.LIEFERUNG' }
WMS.DTK.META.DTK1000.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der DTK1000-V Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK1000.VERTRIEB' }
WMS.DTK.META.DTK1000.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK1000-V Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK1000.LIEFERUNG' }
WMS.DTK.META.DTK25N.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtkn_meta mit Layer der DTK25-N Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK25N.VERTRIEB' }
WMS.DTK.META.DTK25N.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK25-N Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK25N.LIEFERUNG' }
WMS.DTK.META.DTK50N.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtkn_meta mit Layer der DTK50-N Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK50N.VERTRIEB' }
WMS.DTK.META.DTK50N.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK50-N Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK50N.LIEFERUNG' }
WMS.DTK.META.DTK100N.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtkn_meta mit Layer der DTK100-N Erfassungseinheiten im Vertrieb.
{ type: 'WMS.DTK.META.DTK100N.VERTRIEB' }
WMS.DTK.META.DTK100N.LIEFERUNG OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dtk_meta mit Layer der gelieferten DTK100-N Erfassungseinheiten.
{ type: 'WMS.DTK.META.DTK100N.LIEFERUNG' }

DLM/AAA

typeErgebnisParameterBeispiel
WMS.BDLM OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm mit allen Layern.
{ type: 'WMS.BDLM' }
WMS.BDLM_OV OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_ov mit allen Layern.
{ type: 'WMS.BDLM_OV' }
WMS.DLM1000 OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dlm1000 mit allen Layern.
{ type: 'WMS.DLM1000' }
WMS.DLM OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_dlm mit allen Layern.
{ type: 'WMS.DLM' }
WMS.BDLM.META OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_meta mit allen Layern.
{ type: 'WMS.BDLM.META' }
WMS.BDLM.META.AAA.ERFASSUNGSEINHEITEN OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_meta mit Layer AAA Erfassungseinheiten.
{ type: 'WMS.BDLM.META.AAA.ERFASSUNGSEINHEITEN' }
WMS.BDLM.META.AAA.GRUND.GELIEFERT OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_meta mit Layer AAA Grundaktualität geliefert.
{ type: 'WMS.BDLM.META.AAA.GRUND.GELIEFERT' }
WMS.BDLM.META.AAA.SPITZE.GELIEFERT OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_meta mit Layer AAA Spitzenaktualität geliefert.
{ type: 'WMS.BDLM.META.AAA.SPITZE.GELIEFERT' }
WMS.BDLM.META.AAA.GRUND.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_meta mit Layer AAA Grundaktualität im Vertrieb.
{ type: 'WMS.BDLM.META.AAA.GRUND.GELIEFERT' }
WMS.BDLM.META.AAA.SPITZE.VERTRIEB OpenLayers.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_bdlm_meta mit Layer AAA Spitzenaktualität im Vertrieb.
{ type: 'WMS.BDLM.META.AAA.SPITZE.VERTRIEB' }
WMS.LBM.2009 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_lbm_2009 mit Layer lbm.
{ type: 'WMS.LBM.2009' }
WMS.CLC.2009 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_lbm_2009 mit Layer clc.
{ type: 'WMS.CLC.2009' }
WMS.LBM.2012 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_lbm_2012 mit Layer lbm.
{ type: 'WMS.LBM.2012' }
WMS.CLC.2012 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_lbm_2012 mit Layer clc.
{ type: 'WMS.CLC.2012' }
WMS.LBM.2015 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_lbm_2015 mit Layer lbm.
{ type: 'WMS.LBM.2015' }
WMS.CLC.2015 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_lbm_2015 mit Layer clc.
{ type: 'WMS.CLC.2015' }

Sonstige Vektordaten

typeErgebnisParameterBeispiel
WMS.VG25 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vg25 mit allen Layern.
{ type: 'WMS.VG25' }
WMS.VG250 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vg250 mit allen Layern.
{ type: 'WMS.VG250' }
WMS.VG250.EW BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vg250-ew mit allen Layern.
{ type: 'WMS.VG250.EW' }
WMS.VG1000 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vg1000 mit allen Layern.
{ type: 'WMS.VG1000' }
WMS.VG1000.EW BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vg1000-ew mit allen Layern.
{ type: 'WMS.VG1000.EW' }
WMS.VG2500 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vg2500 mit allen Layern.
{ type: 'WMS.VG2500' }
WMS.VZ250.0101 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vz250_0101.
{ type: 'WMS.VZ250.0101' }
WMS.VZ250.1231 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_vz250_1231.
{ type: 'WMS.VZ250.1231' }
WMS.INSPIRE.NUTS250 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_nuts250.
{ type: 'WMS.INSPIRE.NUTS250' }
WMS.INSPIRE.NUTS5000 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_nuts5000.
{ type: 'WMS.INSPIRE.NUTS5000' }
WMS.GN250 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_gn250.
{ type: 'WMS.GN250' }
WMS.INSPIRE.GN250 BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_gn250_inspire.
{ type: 'WMS.INSPIRE.GN' }
WMS.LANDSCHAFTEN BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_landschaftsnamen.
{ type: 'WMS.LANDSCHAFTEN' }
WMS.HU BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_hu.
{ type: 'WMS.HU' }
WMS.PLZ BKGWebMap.Layer.WMS Siehe BKG.WMS. Enthält Konfiguration für wms_plz.
{ type: 'WMS.PLZ' }
WMS.POI BKGWebMap.Layer.WMS Erstellt einen Layer für den Dienst wms_poi.
{ type: 'WMS.POI' }
WMS.KOORDINATENNETZE.25832 BKGWebMap.Layer.WMS Erstellt einen Layer mit Koordinatennetzgitter in UM32s (EPSG:25832) mit dem Dienst wms_koordinatennetze.
{ type: 'WMS.KOORDINATENNETZE.25832' }
WMS.KOORDINATENNETZE.25833 BKGWebMap.Layer.WMS Erstellt einen Layer mit Koordinatennetzgitter in UM33s (EPSG:25833) mit dem Dienst wms_koordinatennetze.
{ type: 'WMS.KOORDINATENNETZE.25832' }

Sonstige Bund

typeErgebnisParameterBeispiel
WMS.TOPPLUS.WEB.OPEN BKGWebMap.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_topplus_open mit Layer Normalausgabe.
{ type: 'WMS.TOPPLUS.WEB.OPEN' }
WMS.TOPPLUS.WEB.OPEN.GRAU BKGWebMap.Layer.WMS Siehe WMS. Enthält Konfiguration für wms_topplus_open mit Layer Graustufen.
{ type: 'WMS.TOPPLUS.WEB.OPEN.GRAU' }
WMTS.TOPPLUS.WEB.OPEN OpenLayers.Layer.WMTS Siehe WMTS. Enthält Konfiguration für wmts_topplus_open mit Layer Normalausgabe.
{ type: 'WMTS.TOPPLUS.WEB.OPEN' }
WMTS.TOPPLUS.WEB.OPEN.GRAU OpenLayers.Layer.WMTS Siehe WMTS. Enthält Konfiguration für wmts_topplus_open mit Layer Graustufen.
{ type: 'WMTS.TOPPLUS.WEB.OPEN.GRAU' }
TOPPLUS.WEB.OPEN BKGWebMap.Layer.WMS oder OpenLayers.Layer.WMTS Erstellt in Abhängigkeit der Kartenprojektion einen Layer mit wms_topplus_open oder wmts_topplus_open mit Layer Normalausgabe.
{ type: 'TOPPLUS.WEB.OPEN' }
TOPPLUS.WEB.OPEN.GRAU BKGWebMap.Layer.WMS oder OpenLayers.Layer.WMTS Erstellt in Abhängigkeit der Kartenprojektion einen Layer mit wms_topplus_open oder wmts_topplus_open mit Layer Graustufen.
{ type: 'TOPPLUS.WEB.OPEN.GRAU' }
WMS.TOPPLUS.OPEN.P5 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p5 mit Layer für TopPlus P5 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P5' }
WMS.TOPPLUS.OPEN.P5.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p5 mit Layer für TopPlus P5 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P5.GRAU' }
WMS.TOPPLUS.OPEN.P5.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p5 mit Layer für TopPlus P5 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P5.HELL' }
WMS.TOPPLUS.OPEN.P10 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p10 mit Layer für TopPlus P10 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P10' }
WMS.TOPPLUS.OPEN.P10.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p10 mit Layer für TopPlus P10 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P10.GRAU' }
WMS.TOPPLUS.OPEN.P10.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p10 mit Layer für TopPlus P10 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P10.HELL' }
WMS.TOPPLUS.OPEN.P17.5 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p17 mit Layer für TopPlus P17.5 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P17.5' }
WMS.TOPPLUS.OPEN.P17.5.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p17 mit Layer für TopPlus P17.5 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P17.5.GRAU' }
WMS.TOPPLUS.OPEN.P17.5.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p17 mit Layer für TopPlus P17.5 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P17.5.HELL' }
WMS.TOPPLUS.OPEN.P25 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p25 mit Layer für TopPlus P25 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P25' }
WMS.TOPPLUS.OPEN.P25.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p25 mit Layer für TopPlus P25 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P25.GRAU' }
WMS.TOPPLUS.OPEN.P25.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p25 mit Layer für TopPlus P25 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P25.HELL' }
WMS.TOPPLUS.OPEN.P50 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p50 mit Layer für TopPlus P50 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P50' }
WMS.TOPPLUS.OPEN.P50.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p50 mit Layer für TopPlus P50 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P50.GRAU' }
WMS.TOPPLUS.OPEN.P50.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p50 mit Layer für TopPlus P50 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P50.HELL' }
WMS.TOPPLUS.OPEN.P100 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p100 mit Layer für TopPlus P100 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P50' }
WMS.TOPPLUS.OPEN.P100.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p100 mit Layer für TopPlus P100 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P50.GRAU' }
WMS.TOPPLUS.OPEN.P100.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p100 mit Layer für TopPlus P100 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P100.HELL' }
WMS.TOPPLUS.OPEN.P250 BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p250 mit Layer für TopPlus P250 in der Normalvariante.
{ type: 'WMS.TOPPLUS.OPEN.P250' }
WMS.TOPPLUS.OPEN.P250.GRAU BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p250 mit Layer für TopPlus P250 in der Graustufendarstellung.
{ type: 'WMS.TOPPLUS.OPEN.P250.GRAU' }
WMS.TOPPLUS.OPEN.P250.HELL BKGWebMap.Layer.WMS Erstellt einen Layer für wms_topplus_open_p250 mit Layer für TopPlus P250 in der aufgehellte Darstellung.
{ type: 'WMS.TOPPLUS.OPEN.P250.HELL' }

Controls

Steuerelemente können über die Funktion BKGWebMap.MapBuilder.setControls der Karte hinzugefügt werden. Eine weitere Möglichkeit Controls direkt zu erzeugen ist mittels BKGWebMap.Control.create.
Die Konfiguration erfolgt per JavaScript-Objekt. Mit jeder Property kann ein Control-Element erzeugt werden. Der Propertyname ist dabei das Schlüsselwort für die Control-Klasse und der Propertywert die Parameter.

SchlüsselwortErgebnisBeschreibungParameterBeispiel
checkCookies BKGWebMap.Control.CookieCheck Erstellt einen Test zur Überprüfung, ob Drittanbietercookies zugelassen sind. Diese werden bei der Einbindung geschützter Dienste benötigt. true
checkCookies: true
legend BKGWebMap.Control.Legend Erstellt eine Legende für die aktiven Layer im Dienst. true
legend: true
permaLink BKGWebMap.Control.Permalink Erstellt ein Element, welches den Link zur aktuellen Kartenansicht enthält. true
permaLink: true
scaleLine OpenLayers.Control.ScaleLine Erstellt eine Maßstabsanzeige. true
scaleLine: true
zoomBar OpenLayers.Control.PanZoomBar Erstellt die Zoom-Steuerelemente. true
zoomBar: true
zoomLevel BKGWebMap.Control.ZoomLevel Erstellt ein Element, welches die aktuelle Zoomstufe anzeigt. true für Standardeinstellungen, ansonsten Konfiguration für BKGWebMap.Control.ZoomLevel.
zoomLevel: true
panel OpenLayers.Control.Panel Erstellt ein Panel für weitere Steuerelemente. Konfiguration für OpenLayers.Control.Panel. In der Property controls können weitere Controls konfiguriert werden.
controls: {
  controls: { featureInfo: { ... } }
}
      
defaultToolPanel BKGWebMap.Control.NavToolbar Erstellt ein Toolpanel mit den Standardnavigationselementen (Zoom auf maxExtent, vor, zurück, BBOX-Zoom). true für Standardeinstellungen, ansonsten Konfiguration für BKGWebMap.Control.NavToolbar. In der Property controls können weitere Controls konfiguriert werden.
defaultToolPanel: {
  controls: { featureInfo: { ... } }
}
        
sidePanel BKGWebMap.Control.SidePanel Erstellt ein ein- und ausklappbares Seitenpanel für weitere HTML-Inhalte. Konfiguration für BKGWebMap.Control.SidePanel.
sidePanel: {
  size: 200,
  maximized: true,
  content: 'Hallo Welt!'
}
      
position OpenLayers.Control.MousePosition Erstellt eine Anzeige für die Mausposition. true für Standardeinstellungen, ansonsten Konfiguration für OpenLayers.Control.MousePosition.
position: {
  separator: ' | ',
  numDigits: 2
}
      
measure BKGWebMap.Control.Measurement Erstellt eine Messwerkzeug. true für Standardeinstellungen, ansonsten Konfiguration für BKGWebMap.Control.Measurement. Bei den Stilen kann per String auf die vorgefertigten unter BKGWebMap.STYLES zurückgegriffen werden.
measure: {
  styles: 'GELB'
}
      
overviewMap BKGWebMap.Control.OverviewMap Erstellt eine Übersichtskarte. Konfiguration für BKGWebMap.Control.OverviewMap. Die Property layers kann für die Layerkonfiguration verwendet werden.
overviewMap: {
  size: new OpenLayers.Size(200,200),
  layers: [{type: 'WMS.VG2500'}]
}
      
layerSwitcher BKGWebMap.Control.LayerSwitcher Erstellt eine Layerauswahl für die Karte. true für Standardeinstellungen, ansonsten Konfiguration für BKGWebMap.Control.LayerSwitcher.
layerSwitcher: {
  size:200,
  maximized:true,
  style: 'wmPanel',
  ascending: false
}
      
featureInfo BKGWebMap.Control.WMSGetFeatureInfo Erstellt ein Werkzeug zur Abfrage der WMSGetFeatureInfo. Konfiguration für BKGWebMap.Control.WMSGetFeatureInfo.
featureInfo: {
  drillDown: true,
  popupSize: new OpenLayers.Size(500, 200)
}
      
geocoder BKGWebMap.Control.WMSGetFeatureInfo Erstellt ein Suchfeld für die Ortssuche Konfiguration für BKGWebMap.Control.Geocoder.
geocoder: {
  protocol: new BKGWebMap.Protocol.Geokodierung({
    url: BKGWebMap.Util.getServiceUrl('gdz_ortssuche')
  })
}