WordPress Plugin OpenStreetMap – Beispiel Projekte basis & woge

The following article is German only.

Im Folgenden sind beispielhaft drei Projekte des sozialen Trägers basis & woge e.V. über das WordPress Plugin OSM – OpenStreetMap eingebunden, um den beteiligten Akteur*innen eine bessere Übersicht der unter dem Dach des Trägers versammelten Projekte zu geben.

Folgende Websites halfen beim Einrichten:

Zusammenfassung

Zwar lässt sich aller Voraussicht OpenStreetMap wie angedacht einbinden, inklusive der Beachtung des funktionalen Datenschutzes (d.h. Einwilligung von Nutzer*innen einholen, Abschnitt in den Datenschutzerklärungen einfügen, Deaktivierung der Einbindung bzw. Darstellung bei Rücknahme von Einwilligung).

Jedoch bietet der Betreiber von OpenStreetMap keinen Vertrag zur Auftragsvereinbarung an. Entsprechend sollte auf eine Einbindung des Dienstes verzichtet werden.

Ausarbeitung

Beispiel-Code

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
  <name>basis und woge Projekte</name>

    <Style id="geschaeftsstelle_pin">
      <IconStyle>
        <scale>1</scale>
        <Icon>
          <href>../../../../app/plugins/osm/icons/mic_geschaeftsstelle.png</href>
        </Icon>
        <hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
      </IconStyle>
    </Style>

    <Style id="regionbillstedt_pin">
      <IconStyle>
        <scale>1</scale>
        <Icon>
          <href>../../../../app/plugins/osm/icons/mic_regionbillstedt.png</href>
        </Icon>
        <hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
      </IconStyle>
    </Style>

    <Style id="regionnord_pin">
      <IconStyle>
        <scale>1</scale>
        <Icon>
          <href>../../../../app/plugins/osm/icons/mic_regionnord.png</href>
        </Icon>
        <hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
      </IconStyle>
    </Style>

    <Style id="stationaerehilfe_pin">
      <IconStyle>
        <scale>1</scale>
        <Icon>
          <href>../../../../app/plugins/osm/icons/mic_stationaerehilfe.png</href>
        </Icon>
        <hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
      </IconStyle>
    </Style>

    <!-- KATEGORIE: GESCHÄFTSSTELLE -->
    <Placemark>
      <name><![CDATA[<strong>Geschäftsführung</strong>]]></name>
      <description>
        <![CDATA[
        Steindamm 11<br>
        20099 Hamburg
      ]]>
      </description>
      <styleUrl>#geschaeftsstelle_pin</styleUrl>
      <Point><coordinates>10.01119,53.553270,0</coordinates></Point>
    </Placemark>

    <!-- KATEGORIE: STATIONÄRE HILFEN ZUR ERZIEHUNG -->
    <Placemark>
      <name><![CDATA[<strong>Wohngruppe Billstedter Mühlenweg</strong>]]></name>
      <description>
        <![CDATA[
        Billstedter Mühlenweg 10<br>
        22117 Hamburg
      ]]>
      </description>
      <styleUrl>#stationaerehilfe_pin</styleUrl>
      <Point><coordinates>10.11629,53.53448,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>Jugendwohnung Franz-Marc</strong>]]></name>
      <description>
        <![CDATA[
        Franz-Marc-Str. 6<br>
        22115 Hamburg
      ]]>
      </description>
      <styleUrl>#stationaerehilfe_pin</styleUrl>
      <Point><coordinates>10.1456492692,53.5268275346,0</coordinates></Point>
    </Placemark>
    
    <!-- KATEGORIE: REGION NORD -->
    <Placemark>
      <name><![CDATA[<strong>Globus</strong>]]></name>
      <description>
        <![CDATA[
        Straßburger Platz 3<br>
        22049 Hamburg
      ]]>
      </description>
      <styleUrl>#regionnord_pin</styleUrl>
      <Point><coordinates>10.0612229846,53.5817549691,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>Villa Dulsberg</strong>]]></name>
      <description>
        <![CDATA[
        Alter Teichweg 139<br>
        22049 Hamburg
      ]]>
      </description>
      <styleUrl>#regionnord_pin</styleUrl>
      <Point><coordinates>10.0672466134,53.5876373342,0</coordinates></Point>
    </Placemark> 

    <Placemark>
      <name><![CDATA[<strong>Patenprojekt Connect</strong>]]></name>
      <description>
        <![CDATA[
        Pestalozzistraße 29<br>
        22305 Hamburg
      ]]>
      </description>
      <styleUrl>#regionnord_pin</styleUrl>
      <Point><coordinates>10.0486472539,53.5874641577,0</coordinates></Point>
    </Placemark>      

  <!-- KATEGORIE: REGION BILLSTEDT/ MITTE -->
    <Placemark>
      <name><![CDATA[<strong>MUT – Frühe Hilfen Mümmelmannsberg</strong>]]></name>
      <description>
        <![CDATA[
        Havighorster Redder 46d<br>
        22115 Hamburg
      ]]>
      </description>
      <styleUrl>#regionbillstedt_pin</styleUrl>
      <Point><coordinates>10.1483758288,53.5275683534,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>MUT Mümmelmannsberg</strong>]]></name>
      <description>
        <![CDATA[
        Havighorster Redder 46b<br>
        22115 Hamburg
      ]]>
      </description>
      <styleUrl>#regionbillstedt_pin</styleUrl>
      <Point><coordinates>10.1485577423,53.5286095264,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>Familienteam Frühe Hilfen</strong>]]></name>
      <description>
        <![CDATA[
        Feiningerstraße 14<br>
        22115 Hamburg
      ]]>
      </description>
      <styleUrl>#regionbillstedt_pin</styleUrl>
      <Point><coordinates>10.1485899288,53.5285648843,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>Netzwerk Billstieg</strong>]]></name>
      <description>
        <![CDATA[
        Billbrookdeich 266<br>
        22113 Hamburg
      ]]>
      </description>
      <styleUrl>#regionbillstedt_pin</styleUrl>
      <Point><coordinates>10.1103395846,53.532989161,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>Haus der Begegnung Billstedt</strong>]]></name>
      <description>
        <![CDATA[
        Billstedter Hauptstraße 90<br>
        22117 Hamburg
      ]]>
      </description>
      <styleUrl>#regionbillstedt_pin</styleUrl>
      <Point><coordinates>10.1068854134,53.537776682,0</coordinates></Point>
    </Placemark>

    <Placemark>
      <name><![CDATA[<strong>FamilienRatsBüro für Billstedt / Horn / Mümmelmannsberg</strong>]]></name>
      <description>
        <![CDATA[
        Möllner Landstraße 18<br>
        22111 Hamburg
      ]]>
      </description>
      <styleUrl>#regionbillstedt_pin</styleUrl>
      <Point><coordinates>10.1057410576,53.5393216245,0</coordinates></Point>
    </Placemark>

  </Document>
</kml>

Hinweis: Da die Einbindung von OpenStreetMap aktuell nicht DSGVO-konform ist, folgt ein Screenshot des ansonsten interaktiven Kartenausschnitts.

Screenshot Copyright OpenStreetMap